/* =====================================================================
   AAYU LAXMI — Ayurveda • Yoga • Wellness
   Stylesheet  |  Royal Blue · Gold · Ivory · Emerald
   A luxurious, classic, elegant design system.
   ===================================================================== */

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

/* ---------------------------------------------------------------------
   1. Design tokens
   ------------------------------------------------------------------ */
:root {
  /* Brand palette */
  --c-ivory:        #FBFAF4;   /* page background — warm white       */
  --c-surface:      #FFFFFF;   /* cards / panels                     */
  --c-sand:         #F4F0E6;   /* alternating sections               */
  --c-sand-deep:    #ECE5D2;   /* borders, soft fills                */

  --c-royal:        #1B3A6F;   /* primary deep — royal blue          */
  --c-royal-700:    #16315A;
  --c-royal-900:    #0E2043;   /* deepest — footer, hero base        */
  --c-royal-50:     #EAEFF7;   /* cool tint                          */

  --c-gold:         #B8954A;   /* antique gold accent                */
  --c-gold-400:     #C9A85C;
  --c-gold-300:     #DCC088;
  --c-gold-soft:    #F2E8CE;

  --c-emerald:      #1E6B4E;   /* secondary jewel accent             */
  --c-emerald-700:  #155339;

  --c-ink:          #1E2A3A;   /* body text                          */
  --c-ink-soft:     #33414F;
  --c-muted:        #5C6877;   /* secondary text                     */
  --c-line:         #E6DFCC;   /* warm hairline                      */
  --c-line-cool:    #E1E7F0;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Scale (fluid) */
  --fs-hero:    clamp(2.75rem, 6vw, 5.25rem);
  --fs-h1:      clamp(2.25rem, 4.2vw, 3.5rem);
  --fs-h2:      clamp(1.85rem, 3.2vw, 2.6rem);
  --fs-h3:      clamp(1.3rem, 2vw, 1.7rem);
  --fs-lead:    clamp(1.1rem, 1.6vw, 1.3rem);
  --fs-body:    1.025rem;
  --fs-sm:      0.9rem;
  --fs-xs:      0.78rem;

  /* Spacing & rhythm */
  --space-section: clamp(3.5rem, 8vw, 7rem);
  --container:     1180px;
  --container-narrow: 760px;

  /* Radius, shadow, line */
  --radius:      4px;
  --radius-lg:   10px;
  --radius-pill: 999px;
  --shadow-sm:   0 1px 2px rgba(14,32,67,.05), 0 6px 18px rgba(14,32,67,.05);
  --shadow-md:   0 10px 40px rgba(14,32,67,.10);
  --shadow-lg:   0 22px 60px rgba(14,32,67,.16);
  --line:        1px solid var(--c-line);
}

/* ---------------------------------------------------------------------
   2. Reset & base
   ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; height: auto; }
a { color: var(--c-royal); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-gold); }

ul, ol { padding-left: 1.15rem; }
li { margin: .35rem 0; }

::selection { background: var(--c-gold-soft); color: var(--c-royal-900); }

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------------------------------------------------------------------
   3. Typography
   ------------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--c-royal);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--c-ink-soft);
  font-weight: 300;
}

/* Overline — small gold uppercase label above headings */
.overline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .9rem;
}
.overline::before,
.overline.center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--c-gold);
  opacity: .7;
}
.overline.center { justify-content: center; }

.text-center { text-align: center; }
.muted { color: var(--c-muted); }
.gold { color: var(--c-gold); }
.serif { font-family: var(--font-display); }
.italic { font-style: italic; }

/* Drop cap for editorial / vlog intros */
.dropcap::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 3.6rem;
  line-height: .8;
  padding: .25rem .55rem 0 0;
  color: var(--c-gold);
  font-weight: 600;
}

/* ---------------------------------------------------------------------
   4. Layout helpers
   ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 4vw, 2.2rem);
}
.container.narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-section); }
.section.tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section.alt { background: var(--c-sand); }
.section.cool { background: var(--c-royal-50); }
.section.royal {
  background: linear-gradient(160deg, var(--c-royal) 0%, var(--c-royal-900) 100%);
  color: #EAF0FA;
}
.section.royal h1, .section.royal h2, .section.royal h3 { color: #fff; }
.section.royal .muted { color: #C3D0E6; }

.grid { display: grid; gap: clamp(1.3rem, 3vw, 2.2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.stack { display: flex; flex-direction: column; gap: 1rem; }
.center-col { display: flex; flex-direction: column; align-items: center; text-align: center; }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
}
.section-head.left { margin-inline: 0; text-align: left; }
.section-head p { margin-top: .85rem; }

/* Ornamental divider — gold lines + lotus diamond */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: .9rem; margin: 1.4rem auto; color: var(--c-gold);
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: min(90px, 18vw);
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.ornament svg { width: 22px; height: 22px; opacity: .9; }
.ornament.left { justify-content: flex-start; margin-inline: 0; }

/* ---------------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--c-royal);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .95rem 2rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  text-align: center;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: var(--c-royal-700);
  border-color: var(--c-royal-700);
}
.btn-gold { --btn-bg: var(--c-gold); }
.btn-gold:hover { background: var(--c-gold-400); border-color: var(--c-gold-400); }
.btn-outline {
  --btn-bg: transparent; --btn-fg: var(--c-royal);
  border-color: var(--c-gold); color: var(--c-royal);
}
.btn-outline:hover { background: var(--c-gold); color: #fff; border-color: var(--c-gold); }
.btn-light {
  --btn-bg: transparent; --btn-fg: #fff;
  border-color: rgba(255,255,255,.6); color: #fff;
}
.btn-light:hover { background: #fff; color: var(--c-royal); border-color: #fff; }
.btn-sm { padding: .7rem 1.4rem; font-size: .74rem; }
.btn-block { display: flex; width: 100%; }

.link-gold {
  font-weight: 600; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--c-gold);
  display: inline-flex; align-items: center; gap: .4rem;
}
.link-gold:hover { color: var(--c-royal); }
.link-gold::after { content: "→"; transition: transform .2s ease; }
.link-gold:hover::after { transform: translateX(4px); }

/* ---------------------------------------------------------------------
   6. Header / Navigation
   ------------------------------------------------------------------ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(251,250,244,.0);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding-block: .9rem;
}
.site-header.scrolled {
  background: rgba(251,250,244,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--c-line), var(--shadow-sm);
  padding-block: .55rem;
}
/* On inner (non-home) pages header is solid by default */
.site-header.solid {
  background: rgba(251,250,244,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--c-line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
}
.brand { display: flex; align-items: center; gap: .7rem; color: #fff; }
.site-header.scrolled .brand,
.site-header.solid .brand { color: var(--c-royal); }
.brand:hover { color: var(--c-gold); }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 600; line-height: 1;
  letter-spacing: .02em;
}
.brand-sub {
  display: block; font-family: var(--font-body);
  font-size: .56rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--c-gold); margin-top: .2rem; font-weight: 600;
}

.nav-menu { display: flex; align-items: center; gap: .25rem; list-style: none; padding: 0; margin: 0; }
.nav-menu > li { position: relative; }
.nav-menu a {
  color: rgba(255,255,255,.92);
  font-size: .78rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  padding: .6rem .8rem; display: inline-flex; align-items: center; gap: .3rem;
  border-radius: var(--radius);
}
.site-header.scrolled .nav-menu a,
.site-header.solid .nav-menu a { color: var(--c-ink-soft); }
.nav-menu a:hover { color: var(--c-gold); }
.nav-menu a[aria-current="page"] { color: var(--c-gold); }
.nav-menu .caret { font-size: .6rem; opacity: .7; }

/* Dropdown */
.dropdown { position: absolute; top: 100%; left: 50%; transform: translate(-50%, 10px);
  min-width: 250px; background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: .5rem;
  opacity: 0; visibility: hidden; transition: all .25s ease; list-style: none; margin: 0;
}
.has-drop:hover > .dropdown,
.has-drop:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a {
  color: var(--c-ink-soft); text-transform: none; letter-spacing: 0;
  font-size: .9rem; padding: .6rem .8rem; border-radius: var(--radius); width: 100%;
}
.dropdown a:hover { background: var(--c-sand); color: var(--c-royal); }
.dropdown .drop-title {
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-gold); padding: .5rem .8rem .25rem; font-weight: 700;
}

.nav-cta { display: flex; align-items: center; gap: .8rem; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 0; color: #fff;
}
.site-header.scrolled .nav-toggle,
.site-header.solid .nav-toggle { color: var(--c-royal); }
.nav-toggle span {
  display: block; height: 2px; width: 26px; background: currentColor;
  margin: 5px auto; transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   7. Hero
   ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  color: #EAF0FA;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(184,149,74,.20), transparent 55%),
    radial-gradient(90% 80% at 10% 90%, rgba(30,107,78,.22), transparent 55%),
    linear-gradient(160deg, var(--c-royal) 0%, var(--c-royal-900) 100%);
  overflow: hidden;
}
.hero::before { /* subtle botanical line pattern */
  content: ""; position: absolute; inset: 0; opacity: .12;
  background-image: url("../img/pattern.svg");
  background-size: 340px; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; padding-block: 7rem 5rem; max-width: 860px; }
.hero h1 { color: #fff; font-size: var(--fs-hero); margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--c-gold-300); }
.hero .lead { color: #D7E0F0; max-width: 620px; margin-bottom: 2rem; }
.hero .overline { color: var(--c-gold-300); }
.hero .overline::before { background: var(--c-gold-300); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-meta {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 2.4rem; margin-top: 3.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.16);
}
.hero-meta .item .num { font-family: var(--font-display); font-size: 2rem; color: var(--c-gold-300); line-height: 1; }
.hero-meta .item .lbl { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #B9C7DD; margin-top: .4rem; }

/* Inner-page hero (slimmer) */
.page-hero {
  position: relative;
  background:
    radial-gradient(100% 120% at 85% 0%, rgba(184,149,74,.18), transparent 55%),
    linear-gradient(160deg, var(--c-royal) 0%, var(--c-royal-900) 100%);
  color: #EAF0FA;
  padding: clamp(7rem, 14vh, 9.5rem) 0 clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; opacity: .1;
  background-image: url("../img/pattern.svg"); background-size: 320px;
}
.page-hero .container { position: relative; z-index: 2; max-width: 880px; }
.page-hero h1 { color: #fff; }
.page-hero .overline { color: var(--c-gold-300); }
.page-hero .overline::before { background: var(--c-gold-300); }
.page-hero p { color: #D7E0F0; max-width: 640px; margin-top: 1rem; }

/* Breadcrumbs */
.breadcrumbs { font-size: var(--fs-sm); color: #B9C7DD; margin-bottom: 1rem; }
.breadcrumbs a { color: var(--c-gold-300); }
.breadcrumbs span { margin: 0 .45rem; opacity: .6; }

/* ---------------------------------------------------------------------
   8. Cards
   ------------------------------------------------------------------ */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-gold-300); }
.card .icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 50%; background: var(--c-royal-50); color: var(--c-royal);
  margin-bottom: 1.2rem;
}
.card .icon svg { width: 26px; height: 26px; }
.card.gold-icon .icon { background: var(--c-gold-soft); color: var(--c-gold); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--c-ink-soft); }

/* Service / feature card with top accent */
.card.accent { border-top: 3px solid var(--c-gold); }

/* Pricing / tier card */
.tier { position: relative; text-align: left; display: flex; flex-direction: column; }
.tier.featured {
  border-color: var(--c-gold); box-shadow: var(--shadow-md);
  outline: 1px solid var(--c-gold-300); outline-offset: 4px;
}
.tier .ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--c-gold); color: #fff; font-size: .64rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; padding: .35rem 1rem; border-radius: var(--radius-pill);
}
.tier .price { font-family: var(--font-display); font-size: 2.6rem; color: var(--c-royal); line-height: 1; margin: .4rem 0; }
.tier .price small { font-size: 1rem; color: var(--c-muted); font-family: var(--font-body); }
.tier ul { list-style: none; padding: 0; margin: 1.2rem 0; }
.tier li { padding-left: 1.6rem; position: relative; font-size: .95rem; color: var(--c-ink-soft); }
.tier li::before { content: "✦"; position: absolute; left: 0; color: var(--c-gold); font-size: .8rem; top: .15rem; }

/* Image-free media block — elegant gradient panel with motif */
.media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 320px; display: grid; place-items: center;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(184,149,74,.30), transparent 55%),
    radial-gradient(90% 80% at 10% 90%, rgba(30,107,78,.30), transparent 55%),
    linear-gradient(160deg, var(--c-royal) 0%, var(--c-royal-900) 100%);
  box-shadow: var(--shadow-md);
}
.media::after {
  content: ""; position: absolute; inset: 0; opacity: .14;
  background-image: url("../img/pattern.svg"); background-size: 300px;
}
.media .motif { position: relative; z-index: 2; color: rgba(255,255,255,.85); text-align: center; padding: 2rem; }
.media .motif svg { width: 84px; height: 84px; margin: 0 auto .8rem; opacity: .9; }
.media .motif .kicker { font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--c-gold-300); }
.media .motif .name { font-family: var(--font-display); font-size: 1.8rem; color: #fff; }
.media.gold {
  background: linear-gradient(160deg, var(--c-gold-300) 0%, var(--c-gold) 60%, var(--c-gold) 100%);
}
.media.gold .motif .kicker { color: rgba(255,255,255,.85); }
.media.emerald {
  background: linear-gradient(160deg, var(--c-emerald) 0%, var(--c-emerald-700) 100%);
}

/* Split section (text + media) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse .split-text { order: 2; }

/* ---------------------------------------------------------------------
   9. Service / offering list
   ------------------------------------------------------------------ */
.feature-list { list-style: none; padding: 0; display: grid; gap: 1rem; }
.feature-list li { display: flex; gap: .9rem; align-items: flex-start; }
.feature-list .fi { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--c-gold-soft); color: var(--c-gold); }
.feature-list .fi svg { width: 16px; height: 16px; }
.feature-list strong { display: block; color: var(--c-royal); font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.feature-list span { color: var(--c-muted); font-size: .95rem; }

/* Steps / process */
.steps { counter-reset: step; list-style: none; padding: 0; display: grid; gap: 1.6rem; }
.steps li { position: relative; padding-left: 4rem; }
.steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -.2rem;
  font-family: var(--font-display); font-size: 2rem; color: var(--c-gold); font-weight: 600;
}
.steps strong { display: block; font-family: var(--font-display); font-size: 1.25rem; color: var(--c-royal); }

/* ---------------------------------------------------------------------
   10. Testimonials / quote
   ------------------------------------------------------------------ */
.quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.4; color: var(--c-royal);
  text-align: center; max-width: 800px; margin: 0 auto;
}
.quote::before, .quote::after { color: var(--c-gold); font-size: 2.4rem; line-height: 0; vertical-align: -.45em; }
.quote::before { content: "“"; margin-right: .15em; }
.quote::after  { content: "”"; margin-left: .05em; }
.quote-by { display: block; margin-top: 1.2rem; font-family: var(--font-body); font-style: normal;
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--c-gold); }

.testimonial { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); }
.testimonial .stars { color: var(--c-gold); letter-spacing: .15em; margin-bottom: .8rem; font-size: .9rem; }
.testimonial blockquote { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--c-ink-soft); line-height: 1.5; margin: 0 0 1rem; }
.testimonial .who { display: flex; align-items: center; gap: .8rem; }
.testimonial .av { width: 42px; height: 42px; border-radius: 50%; background: var(--c-royal-50); color: var(--c-royal); display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; }
.testimonial .who b { color: var(--c-royal); font-weight: 600; display: block; font-size: .95rem; }
.testimonial .who small { color: var(--c-muted); }

/* ---------------------------------------------------------------------
   11. Vlog / article cards
   ------------------------------------------------------------------ */
.post-card { display: flex; flex-direction: column; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; height: 100%; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--c-gold-300); }
.post-card .thumb { position: relative; min-height: 190px; display: grid; place-items: center; }
.post-card .thumb .tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; background: rgba(255,255,255,.92); color: var(--c-royal); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; padding: .3rem .7rem; border-radius: var(--radius-pill); }
.post-card .thumb svg { width: 64px; height: 64px; color: rgba(255,255,255,.7); }
.post-card .body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card .meta { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-gold); font-weight: 600; }
.post-card h3 { margin: .6rem 0 .7rem; font-size: 1.35rem; }
.post-card p { color: var(--c-muted); font-size: .95rem; flex: 1; }
.post-card .read { margin-top: 1rem; }

/* Article body */
.article { font-size: 1.08rem; line-height: 1.85; color: var(--c-ink-soft); }
.article h2 { margin: 2.4rem 0 .9rem; }
.article h3 { margin: 1.8rem 0 .7rem; color: var(--c-royal-700); }
.article p { margin-bottom: 1.3rem; }
.article ul, .article ol { margin: 0 0 1.3rem; }
.article blockquote {
  border-left: 3px solid var(--c-gold); padding: .4rem 0 .4rem 1.5rem; margin: 1.8rem 0;
  font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--c-royal);
}
.article .pull {
  background: var(--c-sand); border-radius: var(--radius-lg); padding: 1.6rem 1.8rem;
  border-left: 3px solid var(--c-gold); margin: 1.8rem 0;
}
.article .pull b { color: var(--c-royal); }

.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.tag-pill { font-size: .72rem; letter-spacing: .08em; color: var(--c-royal); background: var(--c-royal-50); padding: .3rem .8rem; border-radius: var(--radius-pill); }

.share-row { display: flex; align-items: center; gap: .8rem; margin-top: 2.5rem; padding-top: 1.6rem; border-top: var(--line); }
.share-row span { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-muted); }
.share-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--c-line); display: grid; place-items: center; color: var(--c-royal); }
.share-row a:hover { background: var(--c-royal); color: #fff; border-color: var(--c-royal); }

.author-box { display: flex; gap: 1.2rem; align-items: center; background: var(--c-sand); border-radius: var(--radius-lg); padding: 1.6rem; margin-top: 2.5rem; }
.author-box .av { width: 64px; height: 64px; border-radius: 50%; background: var(--c-royal); color: var(--c-gold-300); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; flex: none; }
.author-box b { color: var(--c-royal); display: block; }
.author-box small { color: var(--c-muted); }

/* ---------------------------------------------------------------------
   12. FAQ accordion
   ------------------------------------------------------------------ */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 1.3rem; color: var(--c-royal); font-weight: 600;
  padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .pm { flex: none; width: 30px; height: 30px; border: 1px solid var(--c-gold); border-radius: 50%; color: var(--c-gold); position: relative; transition: transform .3s ease; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--c-gold); top: 50%; left: 50%; transform: translate(-50%,-50%); transition: opacity .25s ease; }
.faq-q .pm::before { width: 12px; height: 1.5px; }
.faq-q .pm::after  { width: 1.5px; height: 12px; }
.faq-q[aria-expanded="true"] .pm { transform: rotate(180deg); background: var(--c-gold); }
.faq-q[aria-expanded="true"] .pm::before, .faq-q[aria-expanded="true"] .pm::after { background: #fff; }
.faq-q[aria-expanded="true"] .pm::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a .inner { padding: 0 0 1.5rem; color: var(--c-ink-soft); }

/* ---------------------------------------------------------------------
   13. Forms
   ------------------------------------------------------------------ */
.form-card {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.8rem); box-shadow: var(--shadow-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--c-royal); }
.field label .req { color: var(--c-gold); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--c-ink);
  background: var(--c-ivory); border: 1px solid var(--c-line-cool);
  border-radius: var(--radius); padding: .85rem 1rem; transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-gold); box-shadow: 0 0 0 3px var(--c-gold-soft); background: #fff;
}
.field .hint { font-size: .78rem; color: var(--c-muted); }
.checks { display: grid; gap: .5rem; }
.check { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; color: var(--c-ink-soft); }
.check input { margin-top: .25rem; accent-color: var(--c-gold); width: 16px; height: 16px; }
.form-note { font-size: .8rem; color: var(--c-muted); margin-top: 1rem; }
.form-success {
  display: none; background: var(--c-emerald); color: #fff; padding: 1rem 1.2rem;
  border-radius: var(--radius); margin-top: 1rem; font-size: .92rem;
}
.form-success.show { display: block; }

/* Inline contact chips */
.contact-chips { display: flex; flex-wrap: wrap; gap: 1rem; }
.chip {
  display: flex; align-items: center; gap: .8rem; background: var(--c-surface);
  border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 1rem 1.3rem;
  box-shadow: var(--shadow-sm); transition: transform .25s ease, border-color .25s ease; flex: 1; min-width: 220px;
}
.chip:hover { transform: translateY(-3px); border-color: var(--c-gold-300); }
.chip .ci { width: 42px; height: 42px; border-radius: 50%; background: var(--c-royal-50); color: var(--c-royal); display: grid; place-items: center; flex: none; }
.chip .ci svg { width: 20px; height: 20px; }
.chip small { color: var(--c-muted); display: block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.chip b { color: var(--c-royal); font-weight: 600; }
.chip a { color: var(--c-royal); }

/* ---------------------------------------------------------------------
   14. Donation / community tiers
   ------------------------------------------------------------------ */
.donate-amounts { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.amt {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--c-royal); font-weight: 600;
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-pill);
  padding: .7rem 1.6rem; cursor: pointer; transition: all .25s ease;
}
.amt:hover, .amt.active { background: var(--c-royal); color: #fff; border-color: var(--c-royal); }

/* Gift certificate styling */
.gift-card-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 2.2rem;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(184,149,74,.35), transparent 55%),
    linear-gradient(160deg, var(--c-royal) 0%, var(--c-royal-900) 100%);
  color: #fff; box-shadow: var(--shadow-lg); min-height: 280px; display: flex; flex-direction: column; justify-content: space-between;
}
.gift-card-visual::before { content:""; position:absolute; inset:10px; border:1px solid rgba(220,192,136,.5); border-radius: calc(var(--radius-lg) - 4px); pointer-events:none; }
.gift-card-visual .gc-kicker { font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; color: var(--c-gold-300); }
.gift-card-visual .gc-title { font-family: var(--font-display); font-size: 2rem; color: #fff; margin: .4rem 0; }
.gift-card-visual .gc-amt { font-family: var(--font-display); font-size: 3.2rem; color: var(--c-gold-300); line-height: 1; }

/* ---------------------------------------------------------------------
   15. Call-to-action band
   ------------------------------------------------------------------ */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 100% at 85% 10%, rgba(184,149,74,.28), transparent 55%),
    linear-gradient(160deg, var(--c-royal) 0%, var(--c-royal-900) 100%);
  color: #fff; text-align: center; padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.cta-band::before { content:""; position:absolute; inset:0; opacity:.1; background-image:url("../img/pattern.svg"); background-size:320px; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #D7E0F0; max-width: 600px; margin: 1rem auto 2rem; }
.cta-band .overline { color: var(--c-gold-300); justify-content: center; }
.cta-band .overline::after { content:""; width:26px; height:1px; background:var(--c-gold-300); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------------------------------------------------------------------
   16. Footer
   ------------------------------------------------------------------ */
.site-footer {
  background: var(--c-royal-900); color: #B9C7DD;
  padding-top: clamp(3.5rem, 7vw, 5rem);
}
.site-footer .container { }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand p { color: #9FB0C8; font-size: .92rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; margin-bottom: 1.1rem; }
.footer-col h4::after { content:""; display:block; width: 24px; height: 2px; background: var(--c-gold); margin-top: .5rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin: .5rem 0; }
.footer-col a { color: #B9C7DD; font-size: .92rem; }
.footer-col a:hover { color: var(--c-gold-300); }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; color: #9FB0C8; font-size: .9rem; }
.footer-contact svg { width: 16px; height: 16px; color: var(--c-gold-300); margin-top: .2rem; flex: none; }
.social-row { display: flex; gap: .6rem; margin-top: 1.2rem; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: #B9C7DD; }
.social-row a:hover { background: var(--c-gold); color: #fff; border-color: var(--c-gold); }
.social-row svg { width: 18px; height: 18px; }
.footer-news { margin-top: 1.4rem; display: flex; gap: .5rem; }
.footer-news input { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-pill); padding: .7rem 1rem; color: #fff; font-size: .9rem; }
.footer-news input::placeholder { color: #8FA1BA; }
.footer-news button { background: var(--c-gold); border: 0; color: #fff; border-radius: 50%; width: 42px; height: 42px; cursor: pointer; display: grid; place-items: center; flex: none; }
.footer-news button:hover { background: var(--c-gold-400); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 1.8rem; font-size: .82rem; color: #8FA1BA; }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom a { color: #8FA1BA; }
.footer-bottom a:hover { color: var(--c-gold-300); }

/* ---------------------------------------------------------------------
   17. Floating buttons (WhatsApp / scroll-top)
   ------------------------------------------------------------------ */
.float-wa {
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
  transition: transform .25s ease; animation: waPulse 2.6s infinite;
}
.float-wa:hover { color: #fff; transform: scale(1.07); }
.float-wa svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45), var(--shadow-lg); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), var(--shadow-lg); }
}

/* ---------------------------------------------------------------------
   18. Reveal-on-scroll
   ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-wa { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------------
   19. Misc utilities & tables
   ------------------------------------------------------------------ */
.hr-gold { height: 1px; border: 0; background: linear-gradient(90deg, transparent, var(--c-gold), transparent); margin: 2.5rem 0; }
.badge { display: inline-block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--c-gold); border: 1px solid var(--c-gold); padding: .25rem .7rem; border-radius: var(--radius-pill); }
.note-box { background: var(--c-royal-50); border-left: 3px solid var(--c-royal); border-radius: var(--radius); padding: 1.2rem 1.4rem; }
.note-box.warn { background: var(--c-gold-soft); border-left-color: var(--c-gold); }
.note-box b { color: var(--c-royal); }

.prose-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: .95rem; }
.prose-table th, .prose-table td { border: 1px solid var(--c-line); padding: .8rem 1rem; text-align: left; vertical-align: top; }
.prose-table th { background: var(--c-sand); color: var(--c-royal); font-family: var(--font-display); font-weight: 600; }

.toc { background: var(--c-sand); border-radius: var(--radius-lg); padding: 1.5rem 1.8rem; margin-bottom: 2.5rem; }
.toc h4 { color: var(--c-royal); margin-bottom: .8rem; font-size: 1.05rem; }
.toc ol { margin: 0; }
.toc a { color: var(--c-ink-soft); }
.legal-body h2 { margin-top: 2.5rem; }
.legal-body h3 { margin-top: 1.8rem; color: var(--c-royal-700); }
.legal-body p, .legal-body li { color: var(--c-ink-soft); }
.legal-body .updated { font-size: .82rem; color: var(--c-muted); letter-spacing: .08em; }

/* ---------------------------------------------------------------------
   19b. Accessibility & small utilities
   ------------------------------------------------------------------ */
.skip-link {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-120%);
  top: 8px; z-index: 2000; background: var(--c-royal); color: #fff;
  padding: .7rem 1.3rem; border-radius: var(--radius-pill); font-size: .8rem;
  font-weight: 600; letter-spacing: .08em; transition: transform .25s ease;
}
.skip-link:focus { transform: translateX(-50%) translateY(0); color: #fff; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: .6rem; } .mt-2 { margin-top: 1.4rem; } .mt-3 { margin-top: 2.4rem; }
.mb-2 { margin-bottom: 1.4rem; } .mb-3 { margin-bottom: 2.4rem; }
.flow > * + * { margin-top: 1rem; }
.nowrap { white-space: nowrap; }
.img-round { border-radius: 50%; }

/* Two-column reading layout for legal / long text */
.two-col { columns: 2; column-gap: 2.5rem; }
@media (max-width: 720px) { .two-col { columns: 1; } }

/* ---------------------------------------------------------------------
   20. Responsive
   ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    background: var(--c-ivory); flex-direction: column; align-items: stretch;
    padding: 6rem 1.5rem 2rem; gap: 0; transform: translateX(100%);
    transition: transform .35s ease; box-shadow: var(--shadow-lg); overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu > li { width: 100%; border-bottom: 1px solid var(--c-line); }
  .nav-menu a { color: var(--c-ink-soft) !important; width: 100%; padding: 1rem .2rem; font-size: .9rem; justify-content: space-between; }
  .nav-menu a[aria-current="page"] { color: var(--c-gold) !important; }
  .nav-cta .btn { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; padding: 0 0 .5rem 1rem; min-width: 0; background: transparent; }
  .dropdown a { padding: .55rem .2rem; font-size: .85rem; color: var(--c-muted) !important; }
  .dropdown .drop-title { display: none; }
  .has-drop > a .caret { transition: transform .25s; }
  .has-drop.open > a .caret { transform: rotate(180deg); }

  .split { grid-template-columns: 1fr; }
  .split.reverse .split-text { order: 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.5rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
}
