/* ═══════════════════════════════════════════════════════════════════
   THE BRIDAL PHOTOGRAPHY — Design System v2
   Theme: Editorial Luxury — Warm White with Gold Accents
   ═══════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ─────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-white:      #FFFFFF;
  --bg-off:        #FAF8F4;
  --bg-warm:       #F5EFE6;
  --bg-cream:      #EDE4D6;
  --bg-dark:       #0D0B09;
  --bg-dark-2:     #1A1611;
  --bg-dark-3:     #231E18;

  /* Text */
  --text-primary:  #1C1612;
  --text-body:     #3D3028;
  --text-muted:    #7A6654;
  --text-light:    #B09882;
  --text-inverse:  #F8F4EF;

  /* Accent */
  --gold:          #C9A96E;
  --gold-dark:     #A8843E;
  --gold-light:    #E8D5B0;
  --gold-pale:     #F5EDD8;

  /* Borders */
  --border-light:  rgba(26,18,8, .08);
  --border-gold:   rgba(201,169,110,.22);
  --border-warm:   rgba(201,169,110,.12);

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(26,18,8,.06);
  --shadow-md:     0 6px 32px rgba(26,18,8,.10);
  --shadow-lg:     0 16px 64px rgba(26,18,8,.14);

  /* Spacing */
  --section-pad:   5.5rem 2.5rem;
  --section-pad-sm:3rem 1.5rem;

  /* Typography */
  --font-serif:    'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body:     'Jost', 'DM Sans', sans-serif;
}

/* ── RESET + BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-body);
  overflow-x: hidden;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-off); }
::-webkit-scrollbar-thumb { background: var(--gold); }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────────── */
.t-serif { font-family: var(--font-serif); }
.t-display {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.rule-center {
  width: 52px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}
.rule-left {
  width: 52px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.rule-gold { width: 2.5rem; height: 2px; background: var(--gold); }

/* ── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .9rem 2.2rem; border: none; cursor: pointer;
  transition: all .25s ease; text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
}
.btn-gold:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,.35); color: #fff; }

.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; }

.btn-outline-dark {
  background: transparent; color: var(--text-primary);
  border: 1.5px solid var(--text-primary);
}
.btn-outline-dark:hover { background: var(--text-primary); color: var(--bg-white); }

.btn-dark { background: var(--bg-dark); color: var(--text-inverse); }
.btn-dark:hover { background: var(--bg-dark-2); }

.btn-white { background: #fff; color: var(--text-primary); }
.btn-white:hover { background: var(--gold-pale); }

/* ── NAVIGATION ─────────────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .4s ease, padding .3s ease, box-shadow .3s ease;
  padding: 1.4rem 2.5rem;
  background: transparent;
}
.site-nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-light), 0 4px 24px rgba(0,0,0,.04);
  padding: .8rem 2.5rem;
}
.site-nav.nav-dark { background: var(--bg-dark); }
.site-nav.nav-dark.scrolled { background: rgba(13,11,9,.97); box-shadow: 0 1px 0 var(--border-gold); }

.nav-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 48px; width: auto; display: block; }
.site-nav.scrolled .nav-logo-dark { display: none; }
.site-nav:not(.scrolled) .nav-logo-light { display: none; }

.nav-links {
  display: flex; align-items: center; gap: 1.8rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-size: 0.95rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.82); transition: color .2s;
  font-family: var(--font-body); font-weight: 400;
}
.site-nav.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover,
.nav-links a.active { color: var(--gold) !important; }

.nav-dropdown { position: relative; }
/* Invisible bridge fills the gap so cursor stays "inside" the dropdown parent */
.nav-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: .75rem;
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + .75rem); left: 50%;
  min-width: 220px; background: var(--bg-white);
  border: 1px solid var(--border-light); border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  list-style: none; margin: 0; padding: .4rem 0;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; pointer-events: all; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: .65rem 1.2rem;
  font-size: .75rem; color: var(--text-muted) !important;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu a:hover { background: var(--bg-off); color: var(--gold) !important; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff !important; padding: .6rem 1.5rem; font-weight: 500;
  letter-spacing: .08em; font-size: .75rem; text-transform: uppercase;
  transition: opacity .2s, transform .2s !important;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px) !important; color: #fff !important; }

.nav-ham {
  display: none; background: none; border: none; cursor: pointer;
  padding: .3rem; color: rgba(255,255,255,.9);
  transition: color .2s;
}
.site-nav.scrolled .nav-ham { color: var(--text-primary); }
.nav-ham .ham-close { display: none; }
.nav-ham.is-open .ham-icon { display: none; }
.nav-ham.is-open .ham-close { display: block; }

#nav-mobile {
  display: none; background: var(--bg-white);
  border-top: 2px solid var(--gold);
  padding: .5rem 1.5rem 1.5rem;
  max-height: calc(100vh - 70px); overflow-y: auto;
}
#nav-mobile.open { display: block; }
#nav-mobile > a {
  display: block; padding: .85rem 0;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); border-bottom: 1px solid var(--border-light);
  transition: color .2s;
}
#nav-mobile > a:hover { color: var(--gold); }

/* Mobile accordion groups */
.mob-group { border-bottom: 1px solid var(--border-light); }
.mob-group-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: .85rem 0;
  background: none; border: none; cursor: pointer;
  font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted); font-family: var(--font-body);
  transition: color .2s;
}
.mob-group-toggle:hover { color: var(--gold); }
.mob-group-toggle svg { transition: transform .25s ease; flex-shrink: 0; }
.mob-group.open .mob-group-toggle { color: var(--gold); }
.mob-group.open .mob-group-toggle svg { transform: rotate(180deg); }
.mob-group-links {
  display: none; padding: 0 0 .5rem .75rem;
  border-left: 2px solid var(--border-gold);
}
.mob-group.open .mob-group-links { display: block; }
.mob-group-links a {
  display: block; padding: .6rem 0;
  font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-light); border-bottom: none; transition: color .2s;
}
.mob-group-links a:hover { color: var(--gold); }

#nav-mobile .mob-cta {
  display: block; margin-top: 1rem; text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff !important; padding: .85rem; font-weight: 500;
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  border-bottom: none !important;
}

@media(max-width:1200px) { .nav-links a { font-size: 0.8rem; } }
@media(max-width:1100px) { .nav-links { gap: 1.2rem; } }
@media(max-width:900px)  { .nav-links { display: none; } .nav-ham { display: block; } }

/* ── HERO SECTIONS ──────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  min-height: 90vh;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(13,11,9,.82) 0%,
    rgba(13,11,9,.55) 55%,
    rgba(13,11,9,.35) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  padding: 7rem 2.5rem 5rem; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(201,169,110,.3);
  padding: .5rem 1rem; margin-bottom: 1.6rem;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5.2rem); color: #fff;
  line-height: 1.06; letter-spacing: -.02em; margin: 0 0 1.2rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: .95rem; color: rgba(255,255,255,.65);
  line-height: 1.85; max-width: 520px; margin-bottom: 2.2rem;
}
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-light);
}
.hero-stats-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 1.4rem 2.5rem;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: var(--font-serif); font-size: 2rem;
  color: var(--text-primary); font-weight: 400; line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted); margin-top: .25rem;
}

/* ── SECTIONS ───────────────────────────────────────────────────── */
.section { padding: var(--section-pad); }
.section-white { background: var(--bg-white); }
.section-off   { background: var(--bg-off); }
.section-warm  { background: var(--bg-warm); }
.section-cream { background: var(--bg-cream); }
.section-dark  { background: var(--bg-dark); }
.section-dark-2{ background: var(--bg-dark-2); }

.container { max-width: 1320px; margin: 0 auto; width: 100%; }
.container-sm { max-width: 880px; margin: 0 auto; }
.container-xs { max-width: 640px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head-left { text-align: left; margin-bottom: 3.5rem; }
.section-title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-primary); line-height: 1.12; margin: 0;
  letter-spacing: -.01em;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-title-inv { color: var(--text-inverse); }
.section-title-inv em { color: var(--gold); }
.section-sub {
  font-size: .95rem; color: var(--text-muted); line-height: 1.85;
  max-width: 600px; margin: .85rem auto 0;
}

/* ── SERVICE GRID CARDS ─────────────────────────────────────────── */
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border-light); border: 1px solid var(--border-light);
}
.service-card {
  position: relative; overflow: hidden; display: block;
  aspect-ratio: 4/5; text-decoration: none;
  background: var(--bg-white);
}
.service-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.service-card:hover img { transform: scale(1.07); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,11,9,.88) 0%, rgba(13,11,9,.2) 50%, transparent 100%);
  transition: background .3s;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(0deg, rgba(13,11,9,.92) 0%, rgba(13,11,9,.4) 60%, rgba(13,11,9,.1) 100%);
}
.service-card-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.6rem;
}
.service-card-title {
  font-family: var(--font-serif); font-weight: 400; font-size: 1.35rem;
  color: #fff; margin: 0 0 .5rem;
}
.service-card-price {
  font-size: .78rem; color: var(--gold-light); letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: .75rem;
}
.service-card-bar {
  width: 1.8rem; height: 2px; background: var(--gold);
  transition: width .3s ease;
}
.service-card:hover .service-card-bar { width: 3rem; }

/* ── CONTENT CARDS (white) ──────────────────────────────────────── */
.card-white {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.card-white:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-warm {
  background: var(--bg-off);
  border: 1px solid var(--border-light);
  transition: border-color .3s, transform .3s;
}
.card-warm:hover { border-color: var(--border-gold); transform: translateY(-3px); }

/* ── PACKAGE CARDS ──────────────────────────────────────────────── */
.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  align-items: start;
}
.pkg-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm); padding: 2.2rem; position: relative;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.pkg-card:hover { border-color: var(--border-gold); box-shadow: var(--shadow-md); }
.pkg-card.featured {
  border-color: var(--gold); border-width: 2px;
  box-shadow: 0 8px 40px rgba(201,169,110,.2);
  transform: translateY(-8px) scale(1.01);
}
.pkg-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-size: .68rem; padding: .32rem 1rem; letter-spacing: .12em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 600; white-space: nowrap;
}
.pkg-tier { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.pkg-name { font-family: var(--font-serif); font-size: 1.9rem; color: var(--text-primary); margin-bottom: .3rem; }
.pkg-price { font-family: var(--font-serif); font-size: 2.2rem; color: var(--gold); font-weight: 400; }
.pkg-period { font-size: .75rem; color: var(--text-light); margin-bottom: 1.4rem; }
.pkg-features { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.pkg-features li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .875rem; color: var(--text-muted); padding: .45rem 0;
  border-bottom: 1px solid var(--border-light);
}
.pkg-features li::before { content: "✓"; color: var(--gold); flex-shrink: 0; font-weight: 600; margin-top: .05rem; }

/* ── INFO BLOCKS / FEATURE STRIPS ──────────────────────────────── */
.feature-row {
  display: grid; grid-template-columns: .7fr 1fr; gap: 4rem; align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-img-wrap { position: relative; }
.feature-img-wrap img { width: 100%; display: block; }
.feature-img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--bg-dark); padding: 1.5rem;
  border: 1px solid var(--border-gold); min-width: 140px; text-align: center;
}
.feature-img-badge-num {
  font-family: var(--font-serif); font-size: 2.2rem; color: var(--gold); line-height: 1;
}
.feature-img-badge-label {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: .3rem;
}

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonial-card {
  background: var(--bg-white); padding: 2rem; border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; letter-spacing: .1em; }
.testimonial-text { font-size: .95rem; color: var(--text-muted); line-height: 1.8; font-style: italic; margin-bottom: 1rem; }
.testimonial-author { font-size: .75rem; font-weight: 500; color: var(--text-primary); letter-spacing: .05em; }

/* ── LOCATION CARDS ─────────────────────────────────────────────── */
.location-card {
  background: var(--bg-white); border: 1px solid var(--border-light);
  padding: 1.8rem; transition: border-color .3s, transform .3s, box-shadow .3s;
}
.location-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.location-num {
  font-family: var(--font-serif); font-size: 2.5rem; color: var(--gold-light);
  font-weight: 400; line-height: 1; margin-bottom: .75rem;
}
.location-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--text-primary); margin-bottom: .3rem; }
.location-dist { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.location-body { font-size: .93rem; color: var(--text-muted); line-height: 1.78; }
.card-white img { max-width: 100%; height: auto; }
.location-images img { object-fit: cover; }

/* ── CARD-WHITE UTILITY CLASSES ────────────────────────────────── */
.card-white-padded { padding: 2.5rem; }
.card-white-padded-sm { padding: 1.6rem; }
.card-white-spaced { margin-bottom: 2.5rem; }
.card-white-gap-top { margin-top: 2rem; }
.card-white-center { text-align: center; }
.card-white-heading { font-family: var(--font-serif); font-size: 1.6rem; color: var(--text-primary); margin-bottom: .5rem; }
.card-white-heading-lg { font-family: var(--font-serif); font-size: 1.4rem; color: var(--text-primary); margin-bottom: .5rem; }
.card-white-subheading-gold { font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); margin-bottom: 1rem; }
.card-white-desc { font-size: .93rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 1.5rem; }
.card-white-note { font-size: .93rem; color: var(--text-muted); line-height: 1.78; margin-top: 1rem; }
.card-white-title { font-family: var(--font-serif); font-size: 1.1rem; color: var(--text-primary); margin-bottom: .5rem; }
.card-white-text { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }
.card-white-full-img { width: 100%; margin-bottom: 1rem; }

/* ── PKG-CARD UTILITY CLASSES ──────────────────────────────────── */
.pkg-card-img { width: 100%; margin-bottom: 1.2rem; }
.pkg-card-btn { display: block; text-align: center; }

/* ── GRID UTILITY CLASSES ──────────────────────────────────────── */
.grid-gap { gap: 1.5rem; }
.grid-gap-sm { gap: .5rem; }
.grid-gap-lg { gap: 2rem; }
.quick-facts-wrap { margin-top: -1px; }
.section-sub-gap { margin-top: 1rem; }

/* ── FEATURE ROW UTILITY CLASSES ───────────────────────────────── */
.feature-row-spaced { margin-bottom: 2rem; }
.feature-item { margin-bottom: 1.2rem; }
.feature-img-full { width: 100%; height: auto; }
.section-center-img { text-align: center; margin-top: 2rem; }
.section-img-medium { width: 100%; max-width: 600px; height: auto; }

/* ── PACKAGE DETAIL LIST ───────────────────────────────────────── */
/* ── ARTICLE CONTENT CLASSES ────────────────────────────────────── */
.article-heading {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: .8rem;
}
.article-heading-sm {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: .6rem;
}
.article-heading-gap { margin-top: 2rem; }
.article-text {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.78;
}
.article-text-gap { margin-top: 1rem; }
.article-img-center {
  text-align: center;
  margin: 2rem 0;
}
.article-img {
  width: 100%;
  max-width: 800px;
  height: auto;
}
.article-img-portrait {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.article-text-dropcap::first-letter {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  float: left;
  line-height: 1;
  margin-right: .6rem;
  margin-top: .1rem;
  color: var(--text-primary);
}
.article-content-block { margin-bottom: 1rem; }
.article-link { color: var(--gold); }

/* ── MATERNITY GALLERY ─────────────────────────────────────────── */
.maternity-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.maternity-gallery-img {
  width: 100%;
  height: auto;
  border: 1px solid var(--border-light);
  transition: transform .3s, box-shadow .3s;
}
.maternity-gallery-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.maternity-gallery-3col {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

/* ── ENGAGEMENT PHOTO GRID ──────────────────────────────────────── */
.engage-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
  margin-top: 2rem;
}
.engage-photo-grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
  transition: transform .4s ease, box-shadow .4s ease;
}
.engage-photo-grid-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
@media(max-width:768px) {
  .engage-photo-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
}
@media(max-width:480px) {
  .engage-photo-grid { grid-template-columns: 1fr; gap: .5rem; }
}

/* ── CITY HUB SERVICE CARDS ─────────────────────────────────────── */
.mumbai-service-card {
  text-decoration: none;
  display: block;
  padding: 0;
  overflow: hidden;
  text-align: center;
}
.mumbai-service-img {
  width: 100%;
  height: auto;
  transition: transform .4s;
}
.mumbai-service-card:hover .mumbai-service-img {
  transform: scale(1.03);
}
.mumbai-service-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-primary);
  padding: 1.2rem 1rem;
  margin: 0;
}

/* ── SERVICE PAGE FEATURE IMAGES ───────────────────────────────── */
.svc-round-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 36px rgba(0,0,0,.10);
  transition: transform .4s ease, box-shadow .4s ease;
}
.svc-round-img:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
}

/* ── SERVICE PAGE FEATURE ROW LAYOUT ───────────────────────────── */
.feature-row-svc {
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.feature-row-svc .article-heading {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  padding-bottom: .9rem;
  position: relative;
}
.feature-row-svc .article-heading::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: 0;
}
.feature-row-svc .article-text {
  font-size: .98rem;
  line-height: 1.85;
}
/* Tighten vertical rhythm between the stacked service blocks */
.section:has(.feature-row-svc) { padding: 3.5rem 2.5rem; }

/* ── BALANCED FEATURE ROW (mixed portrait/landscape images) ────── */
.feature-row-balanced {
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.feature-row-balanced .feature-img-full {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 36px rgba(0,0,0,.10);
  transition: transform .4s ease, box-shadow .4s ease;
}
.feature-row-balanced .feature-img-full:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(0,0,0,.14);
}
.feature-row-balanced .article-heading {
  font-size: 1.2rem;
  margin-bottom: .7rem;
}
.section:has(.feature-row-balanced) { padding: 3.5rem 2.5rem; }

/* ── UNIFORM GRID-2 IMAGES (side-by-side galleries) ────────────── */
.grid-2-uniform img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
}



/* ── PRE-WEDDING PUNE PAGE: About-Shoot CTA row + Locations dark band ── */
.about-shoot-cta-row { margin: 1.6rem 0 0; }
.locations-we-cover { padding-top: 4rem; padding-bottom: 4rem; }
.locations-we-cover .section-head { margin-bottom: 0; }
.locations-we-cover .section-sub { color: rgba(248,244,239,.8); max-width: 820px; }
.locations-we-cover .section-sub strong { color: var(--gold); }

/* ── MATERNITY LOCATIONS PAGE: Intro accent rule ───────────────── */
.matloc-intro-rule { margin-bottom: 1.2rem; }

/* ── MATERNITY LOCATIONS PAGE: Uniform 3-col gallery ──────────── */
.matloc-gallery {
  gap: .75rem;
}
.matloc-gallery .maternity-gallery-img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: none;
}

/* ── BABY SHOWER: Inline image stack (2 portraits side-by-side) ── */
.bshower-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.bshower-stack-img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  display: block;
  transition: transform .3s, box-shadow .3s;
}
.bshower-stack-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
}

/* ── BABY SHOWER: Card stack (vertical cards beside images) ────── */
.bshower-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 600px) {
  .bshower-img-stack { grid-template-columns: 1fr; gap: .75rem; }
}

/* ── BABY SHOWER: Portfolio gallery (5-col, uniform portrait) ─── */
.bshower-gallery {
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
  margin-top: 2.5rem;
}
.bshower-gallery .maternity-gallery-img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: none;
  transition: transform .3s, box-shadow .3s;
}
.bshower-gallery .maternity-gallery-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
@media (max-width: 1024px) {
  .bshower-gallery { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
}
@media (max-width: 600px) {
  .bshower-gallery { grid-template-columns: repeat(2, 1fr); gap: .5rem; }
}

/* ── ROKA PAGE: Grid images (natural aspect, no crop) ─────────── */
.roka-grid-uniform img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  transition: transform .4s ease, box-shadow .4s ease;
}
.roka-grid-uniform img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
}
.roka-grid-uniform {
  align-items: start;
}

/* ── NATURAL-ASPECT FEATURE ROW (2-col, no image crop) ────────── */
.feature-row-natural {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.feature-row-natural .feature-img-wrap img,
.feature-row-natural .feature-img-full {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 36px rgba(0,0,0,.10);
  transition: transform .4s ease, box-shadow .4s ease;
}
.feature-row-natural .feature-img-wrap img:hover,
.feature-row-natural .feature-img-full:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,.14);
}
.feature-row-natural .article-heading {
  font-size: 1.35rem;
  margin-bottom: .85rem;
}
.feature-row-natural .article-heading-sm {
  font-size: 1.2rem;
  margin-bottom: .7rem;
}
.section:has(.feature-row-natural) { padding: 3.5rem 2.5rem; }

/* ── PRE-WEDDING COLLAGE ───────────────────────────────────────── */
.pw-collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: .8rem;
}
.pw-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.pw-collage-tall { grid-row: span 2; }
.pw-collage-wide { grid-column: span 1; }
.pw-collage-sm { grid-column: span 1; }

/* ── SECTION HEAD GAP ──────────────────────────────────────────── */
.section-head-gap { margin-top: 2.5rem; }

/* ── ENQUIRE SECTION ───────────────────────────────────────────── */
.enquire-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 1.5rem;
}
.enquire-section-bold {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-primary);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  font-style: italic;
}
.enquire-section-sub {
  font-size: .93rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.78;
  margin-bottom: 2.5rem;
}
.enquire-contact-card {
  background: var(--bg-off);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  height: 100%;
}
.enquire-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.enquire-contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 4px;
}
.enquire-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
.enquire-contact-link {
  font-size: .95rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.enquire-contact-link:hover { opacity: .8; }
.enquire-contact-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1.5rem;
}
.enquire-form-card {
  background: var(--bg-off);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
}
.enquire-form-label {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  display: block;
}
.enquire-form-field { margin-bottom: 1.2rem; }
.enquire-form-input,
.enquire-form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--border-light);
  background: var(--bg-white);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-primary);
  transition: border-color .3s;
  border-radius: 4px;
}
.enquire-form-input:focus,
.enquire-form-textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.enquire-form-textarea { resize: vertical; min-height: 100px; }
.enquire-form-submit {
  width: 100%;
  padding: .9rem;
  background: var(--gold);
  color: #fff;
  border: none;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .3s;
  margin-top: .5rem;
}
.enquire-form-submit:hover { opacity: .88; }

.pkg-detail-list {
  list-style: none; margin: 0; padding: 0;
}
.pkg-detail-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .88rem; color: var(--text-muted); padding: .5rem 0;
  border-bottom: 1px solid var(--border-light); line-height: 1.6;
}
.pkg-detail-list li::before {
  content: "\2713"; color: var(--gold); flex-shrink: 0; font-weight: 600; margin-top: .1rem;
}

/* ── ADDONS TABLE ──────────────────────────────────────────────── */
.addons-table {
  width: 100%; border-collapse: collapse; font-size: .85rem;
}
.addons-table td {
  padding: .6rem .5rem; border-bottom: 1px solid var(--border-light);
  color: var(--text-muted); vertical-align: top;
}
.addons-table td:first-child {
  font-weight: 600; color: var(--text-primary); white-space: nowrap;
}
.addons-table td:last-child {
  color: var(--gold); font-weight: 500; white-space: nowrap; text-align: right;
}

/* ── BLOG CARDS ─────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--bg-white); border: 1px solid var(--border-light); overflow: hidden; transition: box-shadow .3s, transform .3s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img { overflow: hidden; aspect-ratio: 16/10; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
.blog-card-title { font-family: var(--font-serif); font-size: 1.15rem; color: var(--text-primary); line-height: 1.45; margin: 0 0 .7rem; flex: 1; }
.blog-card-excerpt { font-size: .875rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.2rem; }
.blog-card-meta { font-size: .75rem; color: var(--text-light); letter-spacing: .04em; margin-bottom: .75rem; }
.blog-card-link { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: .4rem; transition: gap .2s; margin-top: auto; }
.blog-card-link:hover { gap: .7rem; color: var(--gold-dark); }
.blog-card-link::after { content: "→"; }

/* ── BREADCRUMB ─────────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: .35rem;padding:0; font-size: .81rem; font-family: var(--font-body);
}
.breadcrumb a { color: var(--text-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--text-light); font-size: .72rem; }
.breadcrumb-current { color: var(--text-primary); font-weight: 500; }
.breadcrumb-wrap {
  background: var(--bg-off);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-gold);
  padding: .75rem 2.5rem;margin-bottom:20px
}

/* ── FAQ ACCORDION ──────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-trigger {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; cursor: pointer; gap: 1rem; background: none; border: none; width: 100%; text-align: left;
}
.faq-trigger:hover .faq-q { color: var(--gold); }
.faq-q { font-size: .95rem; color: var(--text-primary); font-weight: 500; line-height: 1.5; flex: 1; }
.faq-icon { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; transition: transform .3s; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-body.open { max-height: 600px; }
.faq-body p { font-size: .95rem; color: var(--text-muted); line-height: 1.82; padding-bottom: 1.2rem; margin: 0; }
.faq-body a { color: var(--gold); }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer { background: var(--bg-dark); padding: 5rem 2.5rem 0; }
.footer-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 4rem; padding-bottom: 3.5rem; }
.footer-brand-text { color: rgba(248,244,239,.35); font-size: .82rem; line-height: 1.8; margin: 1.2rem 0 0; max-width: 280px; }
.footer-col-title { font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-family: var(--font-body); font-weight: 600; }
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { color: rgba(248,244,239,.4); font-size: .82rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(201,169,110,.1); padding: 1.5rem 0; max-width: 1320px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.footer-copy { color: rgba(248,244,239,.2); font-size: .8rem; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.footer-social { width: 34px; height: 34px; border: 1px solid rgba(201,169,110,.2); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: rgba(201,169,110,.55); transition: color .2s, border-color .2s, background-color .2s; }
.footer-social svg { width: 16px; height: 16px; display: block; }
.footer-social:hover { border-color: var(--gold); color: var(--gold); }

/* ── CTA SECTION ────────────────────────────────────────────────── */
.cta-section {
  padding: 5.5rem 2.5rem;
  background: var(--bg-warm);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-dark {
  background: var(--bg-dark-2);
}
.cta-dark::before {
  background: none; 
  background-image: repeating-linear-gradient(45deg, rgba(201,169,110,.03) 0, rgba(201,169,110,.03) 1px, transparent 0, transparent 50%);
  background-size: 18px 18px;
}
.cta-title { font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 3rem); color: var(--text-primary); margin-bottom: 1rem; }
.cta-dark .cta-title { color: var(--text-inverse); }
.cta-sub { font-size: .95rem; color: var(--text-muted); max-width: 520px; margin: 0 auto 2.5rem; line-height: 1.8; }
.cta-dark .cta-sub { color: rgba(248,244,239,.5); }
.cta-section-inner { position: relative; z-index: 1; text-align: center; }
.cta-title-em { color: var(--gold); font-style: italic; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }
.page-hero-content-inner { max-width: 860px; }
.page-hero-eyebrow { margin-bottom: .8rem; }
.page-hero-rule { width: 52px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 1.4rem; }
.page-hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; }
.section-head-eyebrow { margin-bottom: .7rem; }
.section-head-rule { margin-bottom: 1.4rem; }
.section-related-pages { padding: 2.5rem; background: var(--bg-warm); border-top: 1px solid var(--border-light); }
.section-related-eyebrow { margin-bottom: .9rem; }

/* Mumbai content list spacing (inside .pkg-detail-list within card-white-padded) */
.mumbai-list-gap { margin-top: 1rem; margin-bottom: .25rem; }

/* Mumbai office / managed-by contact card */
.mumbai-office-card {
  border-left: 3px solid var(--gold);
  margin-top: 2.5rem;
  text-align: left;
}
.mumbai-office-item { align-items: flex-start; margin-bottom: 0; }
.mumbai-office-divider { border-top: 1px solid var(--border-light); padding-top: 1.5rem; margin-top: 1.5rem; }
.mumbai-office-body { flex: 1; }
.mumbai-office-label {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .3rem;
  font-weight: 600;
}
.mumbai-office-text {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* ── WHATSAPP FLOAT ─────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 2rem; right: 1.5rem; z-index: 999;
  background: #25D366; border-radius: 50%; width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s; text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.wa-float svg { width: 28px; height: 28px; }

/* ── PAGE HERO (internal pages) ─────────────────────────────────── */
.page-hero {
  padding: 8rem 2.5rem 5rem;
  background: var(--bg-dark);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,11,9,.92) 0%, rgba(13,11,9,.6) 100%);
}
.page-hero-img { position: absolute; inset: 0; }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.page-hero-engage .page-hero-img img { object-position: center 25%; opacity: .5; }
.page-hero-content { position: relative; z-index: 2; max-width: 1320px; margin: 0 auto; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.8rem); color: #fff; font-weight: 400; margin: 1rem 0; letter-spacing: -.01em; }
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero-sub { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.8; max-width: 560px; margin-top: .5rem; }

/* ── QUICK FACTS STRIP ──────────────────────────────────────────── */
.quick-facts {
  background: var(--bg-white); border: 1px solid var(--border-light);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  border-top: 3px solid var(--gold);box-shadow: var(--shadow-sm);margin-bottom:20px;
}
.quick-fact { padding: 1.2rem 1.5rem; border-right: 1px solid var(--border-light); }
.quick-fact:last-child { border-right: none; }
.quick-fact-label { font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .3rem; }
.quick-fact-value { font-size: .92rem; font-weight: 500; color: var(--text-primary); }
.quick-fact-value.gold { color: var(--gold); }

/* ── RELATED LINKS ──────────────────────────────────────────────── */
.tag-links { display: flex; flex-wrap: wrap; gap: .5rem; }
.tag-link {
  border: 1px solid var(--border-gold); padding: .45rem .9rem;
  font-size: .75rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-muted); transition: all .2s;
}
.tag-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }

/* ── ADMIN ──────────────────────────────────────────────────────── */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--bg-dark); padding: 1.5rem; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-sidebar-logo { padding: .5rem 0 2rem; border-bottom: 1px solid rgba(201,169,110,.15); margin-bottom: 1.5rem; }
.admin-nav a { display: flex; align-items: center; gap: .65rem; padding: .7rem 1rem; color: rgba(248,244,239,.5); font-size: .8rem; border-radius: 4px; margin-bottom: .2rem; transition: all .2s; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(201,169,110,.1); color: var(--gold); }
.admin-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.admin-main { background: #F8F7F5; padding: 0; }
.admin-topbar { background: var(--bg-white); border-bottom: 1px solid var(--border-light); padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.admin-topbar-title { font-size: 1rem; font-weight: 600; color: var(--text-primary); }
.admin-content { padding: 2rem; max-width: 1100px; }
.admin-card { background: var(--bg-white); border: 1px solid var(--border-light); padding: 1.5rem; box-shadow: var(--shadow-sm); margin-bottom: 1.5rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: .75rem 1rem; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); border-bottom: 2px solid var(--border-light); background: var(--bg-off); }
.admin-table td { padding: .9rem 1rem; font-size: .875rem; border-bottom: 1px solid var(--border-light); color: var(--text-body); vertical-align: middle; }
.admin-table tr:hover td { background: var(--bg-off); }
.admin-badge { display: inline-flex; align-items: center; padding: .2rem .65rem; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 500; }
.admin-badge-green { background: #E8F5E9; color: #2E7D32; }
.admin-badge-yellow { background: #FFF8E1; color: #F57F17; }
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: .85rem; font-weight: 500; color: var(--text-primary); margin-bottom: .45rem; letter-spacing: .02em; }
.form-control {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border-light);
  background: var(--bg-white); color: var(--text-primary); font-size: .88rem;
  font-family: var(--font-body); outline: none; transition: border-color .2s;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.12); }
.form-hint { font-size: .78rem; color: var(--text-light); margin-top: .3rem; }
.btn-sm { padding: .45rem 1rem; font-size: .75rem; }
.btn-danger { background: #EF4444; color: #fff; }
.btn-danger:hover { background: #DC2626; }
.btn-success { background: #22C55E; color: #fff; }
.btn-success:hover { background: #16A34A; }
.alert { padding: .9rem 1.2rem; margin-bottom: 1.2rem; font-size: .84rem; border-left: 3px solid; }
.alert-success { background: #F0FDF4; color: #166534; border-color: #22C55E; }
.alert-error { background: #FEF2F2; color: #991B1B; border-color: #EF4444; }
.alert-warning { background: #FFFBEB; color: #7A4F00; border-color: #E6A700; }
.alert-list { margin: .4rem 0 0; padding-left: 1.2rem; }
.alert-list li { list-style: disc; }

/* ── UTILITIES ──────────────────────────────────────────────────── */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}.mt-6{margin-top:3rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}.mb-4{margin-bottom:2rem}
.gap-2{gap:1rem}.gap-3{gap:1.5rem}.gap-4{gap:2rem}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.flex{display:flex}.flex-center{display:flex;align-items:center;justify-content:center}
.flex-between{display:flex;align-items:center;justify-content:space-between}
.flex-wrap{flex-wrap:wrap}
.text-center{text-align:center}.text-left{text-align:left}
.text-gold{color:var(--gold)}.text-muted{color:var(--text-muted)}.text-primary{color:var(--text-primary)}
.w-full{width:100%}

/* ── FEATURED BLOG POST ─────────────────────────────────────────── */
.featured-post {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--bg-off); border: 1px solid var(--border-light);
  text-decoration: none; transition: box-shadow .3s;
}
.featured-post:hover { box-shadow: 0 12px 48px rgba(0,0,0,.1); }
.featured-post-img { overflow: hidden; }
.featured-post-img img {
  width: 100%; height: 100%; min-height: 380px;
  object-fit: cover; display: block; transition: transform .5s;
}
.featured-post:hover .featured-post-img img { transform: scale(1.04); }
.featured-post-body {
  padding: 3rem; display: flex; flex-direction: column; justify-content: center;
}
.featured-post-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--text-primary); font-weight: 400;
  line-height: 1.25; margin: 0 0 1rem;
}
.featured-post-excerpt {
  font-size: .88rem; color: var(--text-muted); line-height: 1.82; margin: 0 0 1.8rem;
}
.featured-post-link {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: .5rem;
}

/* ── SERVICES SPLIT (About / split-content pages) ───────────────── */
.services-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.services-split + .services-split { margin-top: 4rem; }
.services-split.alt .services-split-img { order: 2; }
.services-split.alt .services-split-text { order: 1; }
.services-split-img img { width: 100%; display: block; }
.services-split-text p { font-size: .95rem; color: var(--text-muted); line-height: 1.82; margin: 0 0 1rem; }
.services-split-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--text-primary); font-weight: 400;
  line-height: 1.25; margin: 0 0 1rem;
}

/* ── WHY ICON GRID ──────────────────────────────────────────────── */
.why-icon-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.why-icon-box { padding: 1.5rem; }
.why-icon-box-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; color: var(--gold);
  transition: background .2s, color .2s;
}
.why-icon-box:hover .why-icon-box-icon { background: var(--gold); color: #fff; }
.why-icon-box h3 {
  font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--text-primary); font-weight: 400; margin: 0 0 .5rem;
}
.why-icon-box p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
/* ── ABOUT: STATS CARDS ────────────────────────────────────────── */
.about-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.about-stat-card {
  background: #fff; text-align: center;
  padding: 2.5rem 1rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.about-stat-num {
  font-family: var(--font-serif); font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #e31837; font-weight: 400; line-height: 1;
  margin-bottom: .5rem;
}
.about-stat-label {
  font-size: .85rem; font-weight: 600; letter-spacing: .03em;
  color: var(--text-primary); text-transform: capitalize;
}

/* ── ABOUT: QUOTE GALLERY ──────────────────────────────────────── */
.about-quote-gallery {
  display: grid; grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2.5rem; align-items: center;
}
.about-quote-gallery-img img {
  width: 100%; display: block; object-fit: cover;
}
.about-quote-gallery-text { text-align: center; padding: 1rem; }
.about-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--text-primary); font-weight: 400;
  line-height: 1.5; font-style: italic;
}

/* ── PACKAGES: BOOKING TERMS NOTE ──────────────────────────────── */
.packages-terms-note {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .98rem;
  color: var(--text-muted);
  letter-spacing: .01em;
}

/* ── ABOUT: MEET OUR TEAM PHOTO ────────────────────────────────── */
.about-team-photo {
  max-width: 1100px; margin: 0 auto;
  border-top: 3px solid var(--gold);
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
  overflow: hidden;
}
.about-team-photo img {
  width: 100%; height: auto; display: block;
}

/* ── HOME: ABOUT SECTION ───────────────────────────────────────── */
.home-about-layout {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.home-about-images-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
  margin-bottom: .75rem;
}
.home-about-images-top img {
  width: 100%; height: 220px; object-fit: cover; display: block;
}
.home-about-images-bottom {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
  align-items: stretch;
}
.home-about-images-bottom img {
  width: 100%; height: 280px; object-fit: cover; display: block;
}
.home-about-counter {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--bg-off); border: 1px solid var(--border-light);
}
.home-about-counter-num {
  font-family: var(--font-serif); font-size: 3rem;
  color: var(--text-primary); font-weight: 400; line-height: 1;
}
.home-about-counter-num span { color: var(--gold); }
.home-about-counter-label {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-muted); margin-top: .3rem;
}
.home-about-text p {
  font-size: .95rem; color: var(--text-muted); line-height: 1.82;
}
.home-about-services {
  display: flex; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap;
}
.home-about-service-card {
  flex: 1; min-width: 140px; padding: 1rem .75rem;
  background: var(--bg-white); border: 1px solid var(--border-light);
  text-align: center; text-decoration: none;
  font-size: .85rem; font-weight: 500; color: var(--text-primary);
  transition: border-color .2s, box-shadow .2s;
}
.home-about-service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 12px rgba(201,169,110,.15);
}

/* ── HOME: WHY CHOOSE US BOXES ─────────────────────────────────── */
.home-whychoose-boxes { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
.home-whychoose-box {
  display: flex; gap: 1rem; align-items: flex-start;
}
.home-whychoose-box-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: background .2s, color .2s;
}
.home-whychoose-box:hover .home-whychoose-box-icon {
  background: var(--gold); color: #fff;
}
.home-whychoose-box h5 {
  font-family: var(--font-serif); font-size: 1.05rem;
  color: var(--text-primary); font-weight: 400;
  margin: 0 0 .3rem;
}
.home-whychoose-box p {
  font-size: .88rem; color: var(--text-muted); line-height: 1.75; margin: 0;
}

/* ── HOME: WHY CHOOSE US IMAGES ────────────────────────────────── */
.home-whychoose-images {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
}
.home-whychoose-img-circle {
  width: 240px; height: 240px;
  border-radius: 50%; overflow: hidden;
  border: 4px solid var(--gold);
}
.home-whychoose-img-circle img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.home-whychoose-img-rect {
  width: 280px; height: 180px; overflow: hidden;
}
.home-whychoose-img-rect img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── HOME: VIDEO GRID ──────────────────────────────────────────── */
.home-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.home-video-item {
  position: relative; width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
}
.home-video-item iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}

/* ── FILM GRID (Wedding Films page) ────────────────────────────── */
.film-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.film-grid-item {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border: 1px solid var(--border-light);
}
.film-grid-item iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.film-grid-title {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .5rem;
  line-height: 1.4;
}

/* ── HOME: TAGLINE ─────────────────────────────────────────────── */
.home-tagline {
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.25;
  max-width: 820px;
  margin: 3rem auto 0;
}

/* ── HOME: WHAT WE OFFER GRID ─────────────────────────────────── */
.home-offer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.home-offer-card {
  position: relative; display: block; overflow: hidden;
  text-decoration: none; aspect-ratio: 2/1;
}
.home-offer-card img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .4s;
}
.home-offer-card:hover img { transform: scale(1.05); }
.home-offer-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, transparent 60%);
}
.home-offer-card-title {
  position: absolute; bottom: .8rem; left: .8rem; right: .8rem;
  font-family: var(--font-serif); font-size: .9rem;
  color: #fff; font-weight: 400;
}

/* ── HOME: CONTACT FORM ───────────────────────────────────────── */
.home-contact-form-wrap {
  max-width: 700px; margin: 0 auto;
}
.home-contact-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.home-contact-field input {
  width: 100%; padding: .85rem 1rem;
  border: 1px solid var(--border-light);
  background: var(--bg-off); font-family: var(--font-body);
  font-size: .9rem; color: var(--text-primary);
  transition: border-color .2s;
}
.home-contact-field input:focus {
  outline: none; border-color: var(--gold);
}

/* ── CONTACT PAGE ───────────────────────────────────────────────── */
.contact-hero {
  padding: 7rem 2.5rem 5rem;
  background: var(--bg-off);
  text-align: center;
}
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 4rem; align-items: start;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-icon-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px; background: var(--gold);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon-label {
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .3rem; font-family: var(--font-body);
}
.contact-icon-value {
  font-size: 1rem; color: var(--text-primary); font-weight: 500;
  text-decoration: none; display: block; line-height: 1.5;
}
.contact-icon-value:hover { color: var(--gold); }
.contact-icon-value-sm { font-size: .88rem; color: var(--text-primary); line-height: 1.6; margin: 0; }
.contact-services-box {
  padding: 1.4rem; background: var(--bg-warm); border-left: 3px solid var(--gold);
}
.contact-services-label {
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .8rem; font-family: var(--font-body);
}
.contact-services-text { font-size: .82rem; color: var(--text-muted); margin: 0; line-height: 1.9; }
.contact-services-cities { font-size: .78rem; color: var(--text-muted); margin: .7rem 0 0; }
.contact-info-heading { text-align: left; font-size: 1.9rem; }
.contact-info-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.8; margin: 1.2rem 0 2rem; }
.contact-form-heading { font-family: var(--font-serif); font-size: 1.5rem; color: var(--text-primary); font-weight: 400; margin: 0 0 .4rem; }
.contact-form-subtext { font-size: .8rem; color: var(--text-muted); margin: 0 0 2rem; }
.contact-form-required { color: #c0392b; }
.contact-form-field-gap { margin-bottom: 2rem; }
.contact-offices-head { margin-bottom: 2.5rem; }
.contact-map { line-height: 0; }
.contact-map iframe { border: 0; display: block; }
.contact-h1 { font-family: var(--font-serif); font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--text-primary); margin-bottom: .5rem; }
.contact-h6 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--text-muted); font-weight: 400; margin-top: .8rem; }
.contact-ornament { display: block; margin: 1rem auto; max-width: 80px; }
.contact-appointment-heading { font-family: var(--font-serif); font-size: 1.6rem; color: var(--text-primary); margin-bottom: .5rem; }
.contact-form-card {
  background: var(--bg-white); padding: 2.5rem;
  border: 1px solid var(--border-light); border-top: 3px solid var(--gold);
}
.contact-form-field { margin-bottom: 1.4rem; }
.contact-form-label {
  display: block; font-size: .7rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: .45rem; font-family: var(--font-body);
}
.contact-form-input,
.contact-form-select,
.contact-form-textarea {
  width: 100%; box-sizing: border-box; padding: .75rem 1rem;
  border: 1px solid var(--border-light); background: var(--bg-off);
  font-family: var(--font-body); font-size: .9rem; color: var(--text-primary);
  outline: none; transition: border-color .2s, background .2s;
}
.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus { border-color: var(--gold); background: var(--bg-white); }
.contact-form-select { appearance: none; cursor: pointer; }
.contact-form-textarea { resize: vertical; }
.contact-form-submit {
  width: 100%; padding: .9rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff; border: none; font-family: var(--font-body); font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; cursor: pointer; transition: opacity .2s;
}
.contact-form-submit:hover { opacity: .88; }
.contact-offices-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.8rem;
}
.contact-office-card {
  border: 1px solid var(--border-light); border-top: 3px solid var(--gold);
  padding: 1.8rem; background: var(--bg-off);
}
.contact-office-label {
  font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold);
  font-weight: 400; margin: 0 0 1rem; letter-spacing: .02em;
}
.contact-office-name { font-size: .88rem; font-weight: 600; color: var(--text-primary); margin: 0 0 1rem; }
.contact-office-row { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .9rem; }
.contact-office-row:last-child { margin-bottom: 0; }
.contact-office-row p { font-size: .9rem; color: var(--text-muted); margin: 0; line-height: 1.65; }
.contact-office-row a { font-size: .88rem; color: var(--text-primary); font-weight: 500; text-decoration: none; }
.contact-office-row a:hover { color: var(--gold); }
.contact-office-icon { flex-shrink: 0; margin-top: 2px; }

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media(max-width:1024px) {
  .feature-row { grid-template-columns: 1fr; gap: 3rem; }
  .feature-row.reverse { direction: ltr; }
  .feature-img-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-stats-inner { grid-template-columns: repeat(4, 1fr); }
  .pkg-grid { gap: 1rem; }
  .admin-layout { grid-template-columns: 200px 1fr; }
}
@media(max-width:768px) {
  :root { --section-pad: 3.5rem 1.5rem; }
  .section-title { font-size: 1.9rem; }
  .hero h1 { font-size: 2.4rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card.featured { transform: none; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .quick-facts { grid-template-columns: repeat(2, 1fr); }
  .grid-3,.grid-4 { grid-template-columns: repeat(2,1fr); }
  .services-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-split.alt .services-split-img { order: unset; }
  .services-split.alt .services-split-text { order: unset; }
  .why-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .home-about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-offer-grid { grid-template-columns: repeat(2, 1fr); }
  .home-video-grid { grid-template-columns: repeat(2, 1fr); }
  .home-contact-form-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 2.5rem; }
  .home-whychoose-images { flex-direction: row; justify-content: center; }
  .home-whychoose-img-circle { width: 180px; height: 180px; }
  .home-whychoose-img-rect { width: 200px; height: 140px; }
  .about-quote-gallery { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-quote-gallery-img:last-child { display: none; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout .contact-form-card { order: 1; }
  .contact-layout .contact-info { order: 2; }
  .contact-hero { padding: 5rem 1.5rem 3.5rem; }
  /* Blog featured post */
  .featured-post { grid-template-columns: 1fr; }
  .featured-post-img img { min-height: 240px; }
  .featured-post-body { padding: 1.8rem; }
}
@media(max-width:480px) {
  .service-grid, .blog-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .quick-facts { grid-template-columns: 1fr 1fr; }
  .home-offer-grid { grid-template-columns: repeat(2, 1fr); }
  .home-video-grid { grid-template-columns: 1fr; }
  .film-grid { grid-template-columns: 1fr; }
  .maternity-gallery { grid-template-columns: repeat(2, 1fr); }
  .home-about-services { flex-direction: column; }
  .home-about-images-top, .home-about-images-bottom { grid-template-columns: 1fr; }
  .home-about-images-bottom img { height: 200px; }
}

/* ── HOME INTRO STRIP ───────────────────────────────────────────── */
.intro-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}
.intro-strip-badge {
  text-align: center;
  border-left: 1px solid var(--border-light);
  padding-left: 2.5rem;
}
.intro-strip-badge-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.intro-strip-badge-label {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media(max-width:768px) {
  .intro-strip-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .intro-strip-badge {
    border-left: none;
    border-top: 1px solid var(--border-light);
    padding-left: 0;
    padding-top: 1.5rem;
  }
  .intro-strip-badge-num {
    font-size: 2.4rem;
  }
}

/* ── MOBILE OVERFLOW SAFETY ─────────────────────────────────────── */
html { overflow-x: clip; }
iframe, table { max-width: 100%; }

@media(max-width:768px) {
  .page-hero { padding: 6.5rem 1.5rem 3.5rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); margin: .75rem 0; }
  .page-hero-sub { font-size: .88rem; line-height: 1.65; }
  .quick-facts-wrap { padding: 0 1.5rem; }
  .addons-table { font-size: .78rem; }
  .addons-table td { padding: .55rem .4rem; }
  .addons-table td:first-child,
  .addons-table td:last-child { white-space: normal; }
  .section-related-pages { padding: 2rem 1.5rem; }
  .cta-section { padding: 3.5rem 1.5rem; }
  .feature-img-wrap img,
  .card-white-full-img,
  .section-img-medium { max-width: 100%; height: auto; }
}

@media(max-width:480px) {
  .page-hero { padding: 5rem 1rem 2.5rem; }
  .page-hero-buttons { gap: .6rem; }
  .page-hero-buttons .btn { padding: .7rem 1.1rem; font-size: .78rem; }
  .quick-facts-wrap { padding: 0 1rem; }
  .quick-fact { padding: .9rem 1rem; }
  .section-related-pages { padding: 1.8rem 1rem; }
  .cta-section { padding: 3rem 1rem; }
  .tag-links { gap: .5rem; flex-wrap: wrap; }
  .tag-link { font-size: .78rem; padding: .45rem .9rem; }
  .addons-table td { padding: .5rem .3rem; font-size: .75rem; }
}
