/* ============================================================
   IMA WELLNESS — PREMIUM DESIGN SYSTEM
   Shared across: index, services, about, contact, faq
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Palette — warm, considered, premium */
  --bg:            #fcfaf6;     /* premium ivory */
  --bg-warm:       #f4ecdc;     /* soft sand */
  --bg-deep:       #ede0c8;     /* deeper warm */
  --bg-elevated:   #ffffff;
  --ink:           #1a1814;     /* warm black */
  --ink-2:         #4a4540;
  --ink-3:         #6b6359;
  --muted:         #8a8278;
  --line:          #e8e1d3;
  --line-2:        #d6cdb8;

  --accent:        #6e3725;     /* deep terracotta */
  --accent-hover:  #8b4730;
  --accent-light:  #e8d4c8;
  --accent-soft:   #fbf2eb;

  --gold:          #b08d3f;     /* signature accent */
  --gold-light:    #f0e3c0;

  --green-wa:      #25d366;
  --green-wa-dark: #128c7e;

  --shadow-sm: 0 1px 2px rgba(26,24,20,.04), 0 1px 3px rgba(26,24,20,.06);
  --shadow-md: 0 4px 12px rgba(26,24,20,.06), 0 8px 24px rgba(26,24,20,.04);
  --shadow-lg: 0 10px 30px rgba(110,55,37,.10), 0 20px 50px rgba(26,24,20,.06);
  --shadow-xl: 0 20px 60px rgba(110,55,37,.14);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --easing:      cubic-bezier(.22, .61, .36, 1);
  --easing-out:  cubic-bezier(.16, 1, .3, 1);

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1, 'liga' 1;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- TYPOGRAPHY ---------- */
.serif { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.01em; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 .5em;
}
h1 { font-size: clamp(40px, 7vw, 76px); font-weight: 500; }
h2 { font-size: clamp(30px, 4.5vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(18px, 2.2vw, 22px); font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-2); }
.lead { font-size: 18px; color: var(--ink-2); line-height: 1.6; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 24px; height: 1px; background: var(--accent);
  vertical-align: middle; margin-right: 12px;
}
em.italic, .italic { font-style: italic; font-family: var(--font-serif); color: var(--accent); }

.muted { color: var(--muted); }
.small { font-size: 13px; }

/* ---------- LAYOUT ---------- */
.wrap     { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-sm  { max-width: 840px;  margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
@media (min-width: 760px) { section { padding: 120px 0; } }
@media (min-width: 1100px){ section { padding: 140px 0; } }

.divider {
  width: 60px; height: 1px;
  background: var(--accent); border: 0;
  margin: 24px 0;
}

/* ---------- HEADER (premium, sticky, shrink-on-scroll) ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(252, 250, 246, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: padding .35s var(--easing), background .35s var(--easing), border-color .35s var(--easing);
}
.site-header.scrolled {
  background: rgba(252, 250, 246, 0.96);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 18px 24px;
  transition: padding .35s var(--easing);
}
.site-header.scrolled .header-inner { padding-top: 12px; padding-bottom: 12px; }

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  letter-spacing: -0.01em; color: var(--ink);
  text-decoration: none;
}

/* New: image-based logo (used on every page header) */
.brand-logo {
  height: 48px;
  width: auto;
  display: block;
  transition: opacity .25s var(--easing);
}
.site-header.scrolled .brand-logo {
  height: 40px;     /* shrinks with the sticky header */
}
.brand-logo:hover { opacity: .85; }

/* Fallback for when logo file is missing — keeps the old typographic brand */
.brand-logo-fallback {
  display: none; /* hidden by default */
  align-items: center; gap: 12px;
}
.brand-logo[data-loaded="false"] + .brand-logo-fallback,
.brand:not(:has(.brand-logo[src])) .brand-logo-fallback {
  display: inline-flex;
}

/* Legacy SVG mark — kept as the fallback inside .brand-logo-fallback */
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8b4730);
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-serif); font-style: italic;
  font-size: 18px; font-weight: 600;
  box-shadow: 0 2px 8px rgba(110,55,37,.30);
}
.brand-name { letter-spacing: -0.01em; }
.brand-name em { font-style: italic; color: var(--accent); margin-right: 2px; }

/* Footer brand — text-only (logo's dark colours don't read on dark navy) */
.site-footer .brand-logo { display: none; }
.site-footer .brand-logo-fallback { display: inline-flex !important; }

/* desktop nav */
.nav {
  display: none;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) { .nav { display: flex; } }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 4px 0;
  transition: color .25s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--easing);
}
.nav a:hover, .nav a.active { color: var(--accent); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.header-actions { display: flex; gap: 8px; align-items: center; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-elevated); border: 1px solid var(--line);
  color: var(--ink-2); transition: all .25s;
}
.icon-btn:hover { background: var(--accent-soft); border-color: var(--accent-light); color: var(--accent); }
.icon-btn svg { width: 18px; height: 18px; }

/* mobile menu toggle */
.menu-toggle {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-elevated); border: 1px solid var(--line);
  color: var(--ink); cursor: pointer;
}
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 18px; height: 18px; }

/* mobile menu (slide-down) */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  background: var(--bg);
  padding: 100px 24px 40px;
  transform: translateY(-110%);
  transition: transform .45s var(--easing);
  height: 100vh;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0; }
.mobile-menu nav a {
  font-family: var(--font-serif); font-size: 32px; font-weight: 500;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  color: var(--ink); transition: color .2s;
}
.mobile-menu nav a:hover { color: var(--accent); }
.mobile-menu .wa-cta {
  margin-top: 32px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 999px; border: 0;
  text-decoration: none;
  cursor: pointer;
  transition: all .35s var(--easing);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-wa {
  background: var(--green-wa);
  color: #fff;
}
.btn-wa:hover {
  background: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37,211,102,.30);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  background: var(--bg-elevated);
  border-color: var(--ink);
}
.btn svg { width: 16px; height: 16px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em; text-transform: uppercase;
  position: relative;
}
.link-arrow::after {
  content: "→";
  transition: transform .3s var(--easing);
}
.link-arrow:hover::after { transform: translateX(6px); }

/* ---------- CARDS ---------- */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .45s var(--easing);
}
.card:hover {
  border-color: var(--accent-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* ---------- IMAGE PLACEHOLDERS (premium aesthetic) ---------- */
.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-warm);
  position: relative;
}
.img-placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background:
    linear-gradient(135deg, rgba(110,55,37,.7), rgba(176,141,63,.5)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,.04) 20px 40px);
  color: rgba(255,255,255,.95);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  text-align: center;
  padding: 24px;
  text-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--easing); display: block; }
.img-frame:hover img { transform: scale(1.04); }
.img-frame.hover-zoom .img-placeholder { transition: transform 1.2s var(--easing); }
.img-frame.hover-zoom:hover .img-placeholder { transform: scale(1.04); }

/* ---------- SERVICE CARDS WITH IMAGES (premium) ---------- */
.svc-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .45s var(--easing);
}
.svc-card:hover {
  border-color: var(--accent-light);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.svc-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(110,55,37,.7), rgba(176,141,63,.5)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,.04) 20px 40px);
}
.svc-card-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--easing);
}
.svc-card:hover .svc-card-image img {
  transform: scale(1.06);
}
/* graceful "alt-text" overlay shown when img has no src or fails */
.svc-card-image::after {
  content: attr(data-fallback);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,.95);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  text-align: center;
  padding: 24px;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
  opacity: 0;
  transition: opacity .3s;
}
.svc-card-image:not(:has(img[src])):after,
.svc-card-image.fallback::after {
  opacity: 1;
}
.svc-card-image .badge-overlay {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent);
  z-index: 2;
}
.svc-card-image .badge-overlay.gold {
  background: var(--ink); color: var(--gold-light);
}
.svc-card-body {
  padding: 28px 28px 24px;
  display: flex; flex-direction: column;
  flex: 1;
}
.svc-card-body h3 {
  font-size: 24px;
  margin: 0 0 8px;
}
.svc-card-body .desc {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.svc-card-body .meta-row {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.svc-card-body .best-for {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 24px;
  flex: 1;
}
.svc-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.svc-card-foot .duration {
  font-size: 13px;
  color: var(--muted);
}
.svc-card-foot .price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

/* ---------- HERO IMAGE WITH OVERLAY ---------- */
.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(110,55,37,.7), rgba(176,141,63,.5)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,.04) 20px 40px);
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image-wrap::after {
  content: attr(data-fallback);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: rgba(255,255,255,.95);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  text-align: center;
  padding: 24px;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0,0,0,.25);
  opacity: 0;
}
.hero-image-wrap:not(:has(img[src])):after,
.hero-image-wrap.fallback::after { opacity: 1; }

/* ---------- BADGES ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.badge-gold { background: var(--gold-light); color: var(--gold); }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-row {
  display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-2);
  font-weight: 500;
}
.trust-row > span { display: inline-flex; align-items: center; gap: 8px; }
.trust-row svg { width: 16px; height: 16px; color: var(--accent); }

/* ---------- FOOTER ---------- */
footer.site-footer {
  background: var(--ink);
  color: #c8c1b6;
  padding: 80px 0 40px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.site-footer .brand { color: #fff; }
.site-footer .brand-name em { color: var(--gold-light); }
.site-footer h5 {
  font-family: var(--font-sans);
  color: #fff; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin: 0 0 20px;
}
.site-footer a {
  display: block; padding: 6px 0;
  color: #c8c1b6; font-size: 14px;
  transition: color .25s;
}
.site-footer a:hover { color: #fff; }
.site-footer p { color: #8b8276; font-size: 13px; margin: 12px 0 0; max-width: 32ch; }
.foot-meta {
  border-top: 1px solid #2a2620;
  margin-top: 56px; padding-top: 28px;
  font-size: 12px; color: #6b635a;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ---------- FLOATING WHATSAPP ---------- */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--green-wa); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
  transition: transform .3s var(--easing);
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; }
.float-wa::before {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--green-wa); opacity: .5;
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(.95); opacity: .5; }
  50% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   ANIMATIONS — scroll-reveal, hover, etc
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--easing-out), transform .9s var(--easing-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* staggered reveal — child elements */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--easing-out), transform .8s var(--easing-out);
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: 0.75s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* fade-in for hero on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 1.2s var(--easing-out) both; }
.fade-up-delay-1 { animation-delay: .15s; }
.fade-up-delay-2 { animation-delay: .30s; }
.fade-up-delay-3 { animation-delay: .45s; }
.fade-up-delay-4 { animation-delay: .60s; }

/* Subtle scale-in for images */
@keyframes scaleIn {
  from { transform: scale(1.08); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.scale-in { animation: scaleIn 1.4s var(--easing-out) both; }

/* Marquee for testimonials/quotes */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee {
  display: flex; gap: 64px;
  animation: marquee 60s linear infinite;
  width: max-content;
}
.marquee-wrap { overflow: hidden; padding: 24px 0; }

/* ============================================================
   PAGE-SPECIFIC HELPERS (used across pages)
   ============================================================ */

/* PAGE-INTRO BANNER (used on Services, About, Contact, FAQ) */
.page-intro {
  padding: 160px 0 80px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--line);
}
.page-intro h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 24px;
}
.page-intro .lead { max-width: 56ch; }

/* SECTION HEADER (centered, premium feel) */
.section-head { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-head h2 { margin-bottom: 16px; }

/* GRIDS */
.grid-2 { display: grid; gap: 32px; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 48px; } }
@media (min-width: 760px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px){ .grid-3 { grid-template-columns: 1fr 1fr 1fr; gap: 32px; } }

/* split layout */
.split { display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1.1fr 1fr; gap: 80px; }
  .split.reverse { grid-template-columns: 1fr 1.1fr; }
  .split.reverse > :first-child { order: 2; }
}

/* spacing utilities */
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }

/* respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   "BEFORE YOU BOOK" — Boundaries / professional-conduct section
   ============================================================ */
.boundaries {
  background: linear-gradient(180deg, var(--ink) 0%, #0f1117 100%);
  color: #e8e1d3;
  position: relative;
}
.boundaries::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}
.boundaries .section-head { color: #fff; max-width: 760px; }
.boundaries .section-head h2 { color: #fff; }
.boundaries .section-head .eyebrow { color: var(--gold-light); }
.boundaries .section-head .lead { color: #c8c1b6; }

.boundaries-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .boundaries-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.boundary-rule {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 225, 211, 0.10);
  border-radius: var(--radius);
  transition: all .35s var(--easing);
}
.boundary-rule:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 225, 211, 0.18);
  transform: translateY(-2px);
}
.boundary-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  color: var(--gold-light);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}
.boundary-text h4 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.boundary-text p {
  color: #c8c1b6;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.boundary-text strong { color: #fff; }

.boundaries-footer {
  margin-top: 40px;
  padding: 20px 24px;
  background: rgba(176, 141, 63, 0.10);
  border-left: 3px solid var(--gold-light);
  border-radius: 4px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  color: #f4ecdc;
  font-size: 15px;
  font-family: var(--font-serif);
  font-style: italic;
}
.boundaries-footer strong {
  font-style: normal;
  font-family: var(--font-sans);
  color: #fff;
  font-weight: 600;
}
