/* ============================================
   MANOLYA GARDEN — Logo-based palette (purple+green)
   ============================================ */

:root {
  --bg: #fafaf7;
  --bg-soft: #f5f0f5;
  --bg-card: #ffffff;
  --ink: #1f1330;
  --ink-soft: #5a4f63;
  --ink-mute: #8a8294;
  --line: #ebe3ec;
  --line-soft: #f3eef3;

  /* Logo-derived palette */
  --primary: #7B2D8E;      /* manolya purple */
  --primary-dark: #5C1F6B;
  --primary-soft: #d2a8de;
  --accent: #5C8C3E;       /* leaf green */
  --accent-dark: #436a2c;
  --gold: #c8a96a;         /* keep for elegance */
  --gold-dark: #a4843d;
  --rose: #e8c7dc;

  --shadow-sm: 0 2px 12px rgba(60,30,80,0.06);
  --shadow-md: 0 8px 32px rgba(60,30,80,0.10);
  --shadow-lg: 0 20px 60px rgba(60,30,80,0.14);
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container: 1280px;
  --serif: 'Playfair Display', 'Georgia', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--primary); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.18; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(44px, 6vw, 80px) 0; position: relative; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { color: var(--ink); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--primary); gap: 14px; }

/* ====== HEADER / NAV (dynamic, bold) ====== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--line-soft);
  transition: all 0.3s var(--ease);
  box-shadow: 0 1px 0 rgba(123,45,142,0.04);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(60,30,80,0.08);
}
.site-header::before {
  content:'';
  position: absolute; left:0; right:0; bottom:0; height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  background-size: 200% 100%;
  animation: header-shine 8s linear infinite;
  opacity: 0.55;
}
@keyframes header-shine {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; transition: transform 0.3s var(--ease); }
.nav-logo:hover { transform: scale(1.04); }
.nav-logo img { height: 80px; width: auto; transition: height 0.3s var(--ease); }
.site-header.scrolled .nav-logo img { height: 68px; }
.nav-logo-text { display: none; }

.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu > li > a {
  padding: 10px 16px;
  font-size: 0.93rem;
  font-weight: 600;
  position: relative;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--ink);
}
.nav-menu > li > a::before {
  content: ''; position: absolute; left: 50%; bottom: 4px;
  width: 0; height: 2px; background: var(--primary);
  transition: all 0.25s var(--ease); transform: translateX(-50%);
  border-radius: 2px;
}
.nav-menu > li > a:hover::before, .nav-menu > li > a.active::before { width: 22px; }
.nav-menu > li > a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu .has-dropdown { position: relative; }
.nav-menu .has-dropdown > a::after { content: '▾'; font-size: 0.7rem; opacity: 0.6; transition: transform 0.2s; }
.nav-menu .has-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-menu .dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px;
  list-style: none;
  opacity: 0; visibility: hidden;
  transition: all 0.25s var(--ease);
}
.nav-menu .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-menu .dropdown a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 0.9rem; }
.nav-menu .dropdown a:hover { background: var(--bg-soft); color: var(--primary); }
.nav-cta { background: var(--primary); color: #fff !important; padding: 10px 22px !important; }
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.nav-toggle { display: none; z-index: 1100; position: relative; }

@media (max-width: 980px) {
  .nav-logo img { height: 56px; }
  .site-header.scrolled .nav-logo img { height: 50px; }
  .nav-menu > li > a::before { display: none; }
  .nav-menu {
    position: fixed; top: 0; right: 0; left: 0;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
    flex-direction: column; gap: 0;
    padding: 110px 30px 40px;
    overflow-y: auto;
    clip-path: circle(0 at calc(100% - 38px) 38px);
    transition: clip-path 0.6s var(--ease);
    z-index: 1050;
    align-items: stretch;
  }
  .nav-menu.open { clip-path: circle(150% at calc(100% - 38px) 38px); }
  .nav-menu li {
    width: 100%; border-bottom: 1px solid var(--line-soft);
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-menu.open li { opacity: 1; transform: translateY(0); }
  .nav-menu.open li:nth-child(1) { transition-delay: 0.20s; }
  .nav-menu.open li:nth-child(2) { transition-delay: 0.26s; }
  .nav-menu.open li:nth-child(3) { transition-delay: 0.32s; }
  .nav-menu.open li:nth-child(4) { transition-delay: 0.38s; }
  .nav-menu.open li:nth-child(5) { transition-delay: 0.44s; }
  .nav-menu.open li:nth-child(6) { transition-delay: 0.50s; }
  .nav-menu > li > a {
    display: block; padding: 16px 4px; font-size: 1.1rem; border-radius: 0;
    text-align: left; font-family: var(--serif); font-weight: 500;
  }
  .nav-menu .has-dropdown > a::after { content: none; }
  .nav-menu .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none;
    padding: 0 0 16px 0; min-width: auto;
    background: transparent;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  }
  .nav-menu .dropdown a {
    font-size: 0.88rem; padding: 8px 10px;
    color: var(--ink-soft); background: #fff;
    border-radius: 8px; border: 1px solid var(--line-soft);
  }
  .nav-cta {
    background: var(--primary) !important; color: #fff !important;
    text-align: center; border-radius: 12px !important;
    margin-top: 18px !important;
    padding: 16px !important;
    font-size: 1.05rem !important;
  }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 6px; padding: 12px;
    background: var(--bg-soft); border: 1px solid var(--line);
    border-radius: 50%; width: 48px; height: 48px;
    align-items: center; justify-content: center;
  }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: 0.3s var(--ease); border-radius: 2px; }
  .nav-toggle.open { background: var(--primary); border-color: var(--primary); }
  .nav-toggle.open span { background: #fff; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
}

/* Push first section below fixed header on non-hero pages */
body:not(.has-hero) .page-header { padding-top: 160px; }

/* ====== HERO WRAP (allows stats card to escape clip) ====== */
.hero-wrap { position: relative; }

/* ====== HERO SLIDER (Ken Burns + content fade) ====== */
.hero-slider {
  position: relative; width: 100%; height: 100vh; min-height: 600px; max-height: 920px;
  overflow: hidden;
  margin-top: 0; padding-top: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-slide::before {
  /* Ken Burns image layer (zoom while slide is active) */
  content: '';
  position: absolute; inset: -30px;
  background-image: var(--bg-img);
  background-size: cover; background-position: center;
  transform: scale(1.0);
  transition: transform 4s ease-out;
  z-index: 0;
}
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(31,19,48,0.45) 0%, rgba(31,19,48,0.10) 50%, rgba(31,19,48,0.55) 100%),
    linear-gradient(180deg, rgba(31,19,48,0.10) 0%, rgba(31,19,48,0.55) 100%);
  z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide.active::before { transform: scale(1.10); }

.hero-slide .container { position: relative; z-index: 2; color: #fff; }
.hero-slide .container > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.hero-slide.active .container .eyebrow { opacity: 1; transform: translateY(0); transition-delay: 0.10s; }
.hero-slide.active .container h1     { opacity: 1; transform: translateY(0); transition-delay: 0.20s; }
.hero-slide.active .container p      { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }
.hero-slide.active .container .hero-cta { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }

.hero-slide .eyebrow { color: #f5d6f7; letter-spacing: 0.3em; font-weight: 700; }
.hero-slide h1 { color: #fff; max-width: 820px; margin-bottom: 22px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); font-size: clamp(2.4rem, 6vw, 5.2rem); }
.hero-slide h1 em { font-style: italic; color: #f5c7f0; font-weight: 500; }
.hero-slide p { color: rgba(255,255,255,0.95); font-size: 1.18rem; max-width: 580px; margin-bottom: 36px; text-shadow: 0 1px 12px rgba(0,0,0,0.3); }
.hero-slide .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-slide .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; backdrop-filter: blur(8px); background: rgba(255,255,255,0.08); }
.hero-slide .btn-outline:hover { background: #fff; color: var(--ink); }

.slider-arrows { position: absolute; bottom: 40px; right: 40px; display: flex; gap: 10px; z-index: 10; }
.slider-arrows button {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3);
  font-size: 1.2rem; backdrop-filter: blur(8px); transition: 0.25s var(--ease);
}
.slider-arrows button:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.05); }

.slider-dots { position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.slider-dots button {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,0.4); border: 0; transition: 0.25s var(--ease);
}
.slider-dots button.active { background: #fff; width: 32px; border-radius: 6px; }

.slider-mini-stats {
  /* Now lives inside .hero-wrap (not inside clipped .hero-slider) */
  position: absolute; left: 50%; bottom: 0;
  transform: translate(-50%, 50%);
  background: #fff; padding: 26px 48px;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(60,30,80,0.18);
  display: flex; gap: 48px;
  z-index: 25;
  border: 1px solid var(--line-soft);
}
.slider-mini-stats .stat { text-align: center; color: var(--ink); }
.slider-mini-stats .stat .num { display: block !important; font-family: var(--serif) !important; font-size: 2rem !important; color: var(--primary) !important; line-height: 1 !important; font-weight: 600; }
.slider-mini-stats .stat .lbl { display: block !important; font-size: 0.74rem !important; color: var(--ink-mute) !important; letter-spacing: 0.14em !important; text-transform: uppercase !important; margin-top: 8px !important; opacity: 1 !important; font-weight: 500; }
@media (max-width: 700px) {
  .slider-arrows { bottom: 30px; right: 20px; }
  .slider-arrows button { width: 44px; height: 44px; }
  .slider-mini-stats { padding: 16px 22px; gap: 22px; }
  .slider-mini-stats .num { font-size: 1.3rem; }
  .slider-mini-stats .lbl { font-size: 0.62rem; }
}

/* ====== SECTION HEAD ====== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; margin-top: 16px; }

/* ====== SERVICES GRID (3 col) ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  border: 1px solid var(--line-soft);
  display: block;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-soft); color: var(--ink); }
.service-card .img-wrap { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover img { transform: scale(1.06); }
.service-card .body { padding: 26px; }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 16px; }
.service-card .arrow { color: var(--primary); font-weight: 500; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.25s var(--ease); }
.service-card:hover .arrow { gap: 12px; color: var(--primary-dark); }

/* ====== ABOUT / SPLIT ====== */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-visual { position: relative; }
.split-visual img { border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.split-visual .badge {
  position: absolute; bottom: -30px; right: -20px;
  background: var(--primary); color: #fff;
  padding: 24px 32px; border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.split-visual .badge .num { font-family: var(--serif); font-size: 2.4rem; color: #fff; display:block; line-height:1; }
.split-visual .badge .lbl { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.85; margin-top: 6px; display:block; color: #fff; }
.split-content h2 { margin-bottom: 20px; }
.split-content p { color: var(--ink-soft); margin-bottom: 16px; }
.split-content .features { list-style: none; margin: 24px 0; }
.split-content .features li { padding: 12px 0; border-bottom: 1px solid var(--line-soft); display: flex; align-items: center; gap: 12px; }
.split-content .features li::before { content: '✦'; color: var(--primary); font-size: 1rem; }

/* ====== STATS BAND ====== */
.stats-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.10), transparent 50%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px; text-align: center; position: relative; z-index: 1;
}
.stat .num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.4rem); color: #fff; display:block; line-height:1; }
.stat .lbl { font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.85; margin-top: 12px; display:block; }

/* ====== PAGE HEADER (with bg image, compact) ====== */
.page-header {
  padding: 160px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  border-bottom: 1px solid var(--line);
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/assets/img/hero/slide-2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.30;
  filter: blur(1px);
  z-index: 0;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31,19,48,0.20) 0%, rgba(31,19,48,0.65) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(31,19,48,0.4) 100%);
  z-index: 1;
}
.page-header .container { position: relative; z-index: 2; }
.page-header .eyebrow { color: var(--rose); }
.page-header h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); margin-bottom: 12px; color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,0.3); }
.page-header .breadcrumb {
  display: flex; justify-content: center; gap: 10px;
  font-size: 0.9rem; color: rgba(255,255,255,0.85);
  margin-top: 14px;
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.85); transition: 0.2s; }
.page-header .breadcrumb a:hover { color: #fff; text-decoration: underline; }
.page-header .breadcrumb span { color: var(--rose); }

/* ====== GALLERY GRID ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(31,19,48,0.45);
  opacity: 0; transition: opacity 0.3s var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .zoom-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.6);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.95); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  opacity: 0; transition: 0.3s var(--ease);
  z-index: 2;
}
.gallery-item:hover .zoom-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ====== BLOG ====== */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: all 0.3s var(--ease);
  display: block;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--ink); border-color: var(--primary-soft); }
.blog-card .img-wrap { aspect-ratio: 16/10; overflow: hidden; }
.blog-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover img { transform: scale(1.05); }
.blog-card .body { padding: 24px; }
.blog-card .meta { display: flex; gap: 12px; font-size: 0.78rem; color: var(--ink-mute); margin-bottom: 12px; letter-spacing: 0.04em; }
.blog-card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.blog-card p { color: var(--ink-soft); font-size: 0.92rem; }
.blog-card .read-more { display: inline-block; margin-top: 16px; color: var(--primary); font-weight: 500; font-size: 0.9rem; }

.article { max-width: 780px; margin: 0 auto; }
.article-header { text-align: center; margin-bottom: 50px; }
.article-header h1 { margin: 16px 0; }
.article-meta { display: flex; gap: 20px; justify-content: center; font-size: 0.88rem; color: var(--ink-mute); }
.article-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 50px; }
.article-body { font-size: 1.08rem; line-height: 1.8; color: #2e2638; }
.article-body h2 { margin: 50px 0 18px; font-size: 1.9rem; }
.article-body h3 { margin: 36px 0 14px; font-size: 1.4rem; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 20px 0 20px 28px; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); }
.article-body blockquote { border-left: 4px solid var(--primary); padding: 16px 24px; margin: 30px 0; background: var(--bg-soft); border-radius: 8px; font-style: italic; }
.article-body a { color: var(--primary); border-bottom: 1px solid currentColor; }

/* ====== FAQ ACCORDION (animated) ====== */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item.open { border-color: var(--primary-soft); box-shadow: var(--shadow-sm); }
.faq-item .faq-summary {
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--serif);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color 0.25s, background 0.25s;
  user-select: none;
  color: var(--ink);
}
.faq-item .faq-summary:hover { color: var(--primary); background: var(--bg-soft); }
.faq-item .faq-summary .faq-toggle {
  position: relative; width: 24px; height: 24px; flex-shrink: 0;
}
.faq-item .faq-summary .faq-toggle::before,
.faq-item .faq-summary .faq-toggle::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--primary); border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease);
}
.faq-item .faq-summary .faq-toggle::before { width: 14px; height: 2px; }
.faq-item .faq-summary .faq-toggle::after { width: 2px; height: 14px; }
.faq-item.open .faq-summary .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-item.open .faq-summary .faq-toggle::before { transform: translate(-50%, -50%) rotate(180deg); }

.faq-item .answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}
.faq-item .answer {
  padding: 0 26px 24px;
  color: var(--ink-soft);
  line-height: 1.75;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.35s var(--ease) 0.05s, transform 0.35s var(--ease) 0.05s;
}
.faq-item.open .answer { opacity: 1; transform: translateY(0); }
.faq-item .answer p { margin-bottom: 10px; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* ====== INFO BAR / FEATURE CARDS (forced 3-col grid) ====== */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .feature-cards.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 880px) { .feature-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-cards, .feature-cards.cols-4 { grid-template-columns: 1fr; } }

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  transition: 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, transparent 0%, rgba(123,45,142,0.04) 100%);
  opacity: 0; transition: 0.3s;
}
.feature-card:hover { transform: translateY(-6px); border-color: var(--primary-soft); box-shadow: var(--shadow-md); }
.feature-card:hover::before { opacity: 1; }
.feature-card > * { position: relative; }
.feature-card .icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(123,45,142,0.25);
  transition: 0.3s var(--ease);
}
.feature-card .icon svg { width: 28px; height: 28px; }
.feature-card:hover .icon { transform: rotate(-6deg) scale(1.08); }
.feature-card h4 { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 10px; color: var(--ink); }
.feature-card p { color: var(--ink-soft); font-size: 0.93rem; line-height: 1.65; }

/* ====== TIMELINE (planning steps) ====== */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; position: relative; }
.timeline-step { position: relative; padding: 28px 24px; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.timeline-step .step-num { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--serif); font-weight: 500; margin-bottom: 14px; }
.timeline-step h4 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 6px; }
.timeline-step p { font-size: 0.9rem; color: var(--ink-soft); }

/* ====== PACKAGE / PRICING CARDS ====== */
.packages { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.package {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: 0.3s var(--ease);
}
.package:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package.featured { border-color: var(--primary); background: linear-gradient(180deg, #fff, var(--bg-soft)); }
.package.featured::before {
  content: 'Önerilen'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: #fff; padding: 4px 16px; border-radius: 999px; font-size: 0.72rem; letter-spacing: 0.1em; font-weight: 600;
}
.package h3 { font-family: var(--serif); font-size: 1.5rem; margin-bottom: 6px; color: var(--primary); }
.package .pkg-sub { color: var(--ink-mute); font-size: 0.88rem; margin-bottom: 20px; }
.package ul { list-style: none; margin: 20px 0; }
.package li { padding: 8px 0; font-size: 0.92rem; color: var(--ink-soft); display: flex; gap: 10px; align-items: start; }
.package li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ====== CONTACT ====== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 30px; } }
.contact-info { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; padding: 50px; border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.contact-info::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.15), transparent 50%); pointer-events: none; }
.contact-info h3 { color: #fff; margin-bottom: 24px; position: relative; }
.contact-info .info-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: start; position: relative; }
.contact-info .info-item .icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; color: #fff; flex-shrink: 0; font-size: 1.2rem; }
.contact-info .info-item .icon svg { width: 20px; height: 20px; }
.contact-info .info-item .label { font-size: 0.78rem; opacity: 0.7; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-info .info-item .value { font-size: 1.05rem; margin-top: 4px; }
.contact-info .info-item .value a { color: #fff; }
.contact-info .info-item .value a:hover { color: var(--gold); }
.contact-info .quick-actions { margin-top: 28px; display: flex; gap: 10px; flex-wrap: wrap; }
.contact-info .quick-actions a { background: rgba(255,255,255,0.15); color: #fff; padding: 10px 18px; border-radius: 999px; font-size: 0.88rem; border: 1px solid rgba(255,255,255,0.25); transition: 0.25s; display: inline-flex; align-items: center; gap: 8px; }
.contact-info .quick-actions a svg { width: 16px; height: 16px; }
.contact-info .quick-actions a:hover { background: #fff; color: var(--primary); }
.btn svg { width: 18px; height: 18px; }

.contact-form { background: #fff; padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--ink-soft); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit; font-size: 0.95rem;
  background: var(--bg);
  transition: all 0.25s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(123,45,142,0.10); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-message { padding: 14px 18px; border-radius: 10px; margin-bottom: 18px; font-size: 0.92rem; display: none; }
.form-message.success { background: #e7f3e8; color: #2a5d36; display: block; }
.form-message.error { background: #fbe7e7; color: #7d2a2a; display: block; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 480px; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ====== FOOTER ====== */
.site-footer {
  background: linear-gradient(180deg, #251638 0%, #1a0e2a 100%);
  color: #d8d0e2;
  padding: 80px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 86px; margin-bottom: 20px; background: #fff; padding: 12px 18px; border-radius: 14px; box-shadow: 0 6px 22px rgba(0,0,0,0.22); }
.footer-brand p { font-size: 0.92rem; opacity: 0.75; line-height: 1.7; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.92rem; opacity: 0.75; }
.footer-col a:hover { opacity: 1; color: var(--primary-soft); }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
  color: #fff;
}
.social-row a svg { width: 18px; height: 18px; }
.social-row a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 0.82rem; opacity: 0.7; flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--primary-soft); }

/* ====== FLOAT BUTTONS ====== */
.float-buttons { position: fixed; right: 20px; bottom: 20px; z-index: 900; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease);
  position: relative;
}
.float-btn:hover { transform: scale(1.08); color: #fff; }
.float-btn svg { width: 28px; height: 28px; }
.float-btn.wa { background: #25D366; }
.float-btn.tel { background: var(--primary); }

/* WhatsApp tooltip / chat bubble */
.float-btn.wa::before {
  content: 'Bize WhatsApp\'tan ulaşın';
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%);
  background: #fff; color: var(--ink);
  padding: 10px 16px; border-radius: 22px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  white-space: nowrap; font-size: 0.88rem; font-weight: 500;
  opacity: 1;
  pointer-events: none;
  animation: wa-bounce 2.6s ease-in-out infinite;
}
.float-btn.wa::after {
  content: ''; position: absolute; right: calc(100% + 6px); top: 50%; transform: translateY(-50%);
  width: 0; height: 0; border: 8px solid transparent; border-left-color: #fff;
  filter: drop-shadow(2px 0 2px rgba(0,0,0,0.06));
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-6px); }
}
@media (max-width: 600px) {
  .float-btn.wa::before, .float-btn.wa::after { display: none; }
}

/* ====== COOKIE BANNER ====== */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px;
  max-width: 480px; padding: 22px 26px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  z-index: 950; font-size: 0.9rem;
  display: none;
}
.cookie-banner.show { display: block; animation: slideUp 0.4s var(--ease); }
.cookie-banner h4 { font-family: var(--sans); font-size: 1rem; margin-bottom: 8px; }
.cookie-banner p { color: var(--ink-soft); margin-bottom: 14px; }
.cookie-banner .actions { display: flex; gap: 8px; }
.cookie-banner button { padding: 9px 18px; border-radius: 999px; font-size: 0.85rem; font-weight: 500; }
.cookie-banner .accept { background: var(--primary); color: #fff; }
.cookie-banner .decline { background: var(--bg-soft); color: var(--ink); }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ====== ANIMATIONS (multi-direction reveal) ====== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease); filter: blur(4px); }
.reveal.visible { opacity: 1; transform: translateY(0) translateX(0) scale(1); filter: blur(0); }
.reveal-left { transform: translateX(-50px) translateY(0); }
.reveal-right { transform: translateX(50px) translateY(0); }
.reveal-scale { transform: scale(0.92); }
.reveal-rotate { transform: rotate(-3deg) translateY(20px); }

/* Stagger children inside .reveal-group */
.reveal-group > * { opacity: 0; transform: translateY(30px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-group.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.05s; }
.reveal-group.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.15s; }
.reveal-group.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.25s; }
.reveal-group.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.35s; }
.reveal-group.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.45s; }
.reveal-group.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.55s; }
.reveal-group.visible > *:nth-child(7) { opacity: 1; transform: none; transition-delay: 0.65s; }
.reveal-group.visible > *:nth-child(8) { opacity: 1; transform: none; transition-delay: 0.75s; }

/* Animated underline reveal for section headings */
.section-head .eyebrow { position: relative; display: inline-block; padding-bottom: 6px; }
.section-head .eyebrow::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width 1.2s var(--ease) 0.3s;
}
.section-head.visible .eyebrow::after,
.reveal.visible .eyebrow::after { width: 40px; }

/* Counter number entrance */
.counter-num { display: inline-block; }
.counter-num.counting { animation: pulse-num 0.4s ease-out; }
@keyframes pulse-num { 0% { transform: scale(1); } 50% { transform: scale(1.08); } 100% { transform: scale(1); } }

/* Reduce specific section padding (capacity calculator) */
.section-tight { padding: clamp(30px, 4vw, 56px) 0 !important; }

/* Section head margin tightened */
.section-head { margin-bottom: 40px !important; }

/* === Per-page thoughtful details === */

/* Date-availability widget (Düğün) */
.date-pulse { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: #e8f5ec; color: #2a5d36; border-radius: 999px; font-size: 0.82rem; font-weight: 500; }
.date-pulse::before { content: ''; width: 8px; height: 8px; background: #2a5d36; border-radius: 50%; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(42,93,54,0.5); } 70% { box-shadow: 0 0 0 8px rgba(42,93,54,0); } 100% { box-shadow: 0 0 0 0 rgba(42,93,54,0); } }

/* Seasonal availability bars (Nişan) */
.season-bar { display: flex; gap: 6px; max-width: 480px; margin: 24px auto 0; }
.season-bar .month { flex: 1; text-align: center; }
.season-bar .month .name { font-size: 0.7rem; color: var(--ink-mute); margin-top: 6px; letter-spacing: 0.08em; text-transform: uppercase; }
.season-bar .month .fill {
  height: 50px; border-radius: 6px;
  background: linear-gradient(180deg, var(--primary-soft), var(--primary));
  opacity: 0.35; position: relative;
}
.season-bar .month.high .fill { opacity: 1; }
.season-bar .month.med .fill { opacity: 0.6; }
.season-bar .month .fill::after {
  content: attr(data-pct); position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; color: var(--ink-soft);
}

/* Live countdown (Kına) - elegant card */
.countdown-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 36px; border-radius: var(--radius-lg);
  text-align: center; max-width: 600px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.countdown-card::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(255,255,255,0.2), transparent 50%); }
.countdown-card > * { position: relative; }
.countdown-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 24px 0; }
.countdown-unit { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 14px 8px; backdrop-filter: blur(8px); }
.countdown-unit .v { font-family: var(--serif); font-size: 2rem; font-weight: 500; display: block; line-height: 1; }
.countdown-unit .u { font-size: 0.7rem; opacity: 0.75; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 6px; display: block; }

/* Floor plan / capacity indicator (Kurumsal) */
.layout-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 30px 0; }
.layout-option {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 16px; text-align: center;
  transition: 0.25s; cursor: default;
}
.layout-option:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.layout-option .icon-box { font-size: 2rem; margin-bottom: 8px; }
.layout-option .cap { font-family: var(--serif); font-size: 1.4rem; color: var(--primary); }
.layout-option .name { font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; }
@media (max-width: 600px) { .layout-options { grid-template-columns: repeat(2, 1fr); } }

/* Menu sample card (Serpme Kahvaltı) */
.menu-cloud { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 720px; margin: 0 auto; }
.menu-cloud span {
  padding: 8px 14px; background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: 0.88rem; color: var(--ink-soft);
  transition: 0.25s;
}
.menu-cloud span:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }

/* Mini map preview for distance (Butik Otel) */
.distance-list { max-width: 560px; margin: 0 auto; }
.distance-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); align-items: center; }
.distance-row:last-child { border-bottom: 0; }
.distance-row .place { font-family: var(--serif); font-size: 1.05rem; }
.distance-row .place small { display: block; font-family: var(--sans); font-size: 0.78rem; color: var(--ink-mute); margin-top: 2px; }
.distance-row .time { background: var(--bg-soft); padding: 8px 14px; border-radius: 999px; font-weight: 500; color: var(--primary); font-size: 0.92rem; }

/* Anniversary calc (Söz / özel günler) */
.anniv-calc { max-width: 480px; margin: 0 auto; background: #fff; padding: 30px; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.anniv-calc input[type=date] { width: 100%; padding: 12px; font-size: 1rem; border-radius: 10px; border: 1px solid var(--line); font-family: inherit; }
.anniv-result { margin-top: 20px; padding: 20px; background: var(--bg-soft); border-radius: 12px; text-align: center; font-size: 1.1rem; }
.anniv-result strong { color: var(--primary); font-family: var(--serif); font-size: 1.5rem; display: block; margin-bottom: 4px; }

/* ====== LIGHTBOX with prev/next ====== */
.lightbox { position: fixed; inset: 0; background: rgba(10,5,15,0.95); z-index: 9999; display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 8px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; color: #fff; cursor: pointer;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: 0.25s; backdrop-filter: blur(8px);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--primary); border-color: var(--primary); }
.lightbox-close { top: 30px; right: 30px; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-counter { position: absolute; top: 40px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 0.85rem; opacity: 0.7; letter-spacing: 0.1em; }
@media (max-width: 600px) {
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 1.1rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 14px; right: 14px; }
}

/* ====== UTILITIES ====== */
.text-center { text-align: center; }
.bg-soft { background: var(--bg-soft); }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.full-width-img { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: var(--radius-lg); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff; text-align: center; padding: 80px 0;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { opacity: 0.9; font-size: 1.1rem; margin: 14px 0 30px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.cta-banner .btn-outline:hover { background: #fff; color: var(--primary); }
