0,500;0,600;1,400;1,500&family=Marcellus&family=Mulish:wght@300;400;500;600;700&display=swap');

  :root {
    --bg: #FFFFFF;
    --surface: #FCFBF7;
    --surface-2: #F5F1E7;
    --sand: #EFE8D6;
    --ink: #17150F;
    --ink-soft: #565046;
    --gold: #A9812F;
    --gold-soft: #C4A05A;
    --maroon: #A9812F;
    --sage: #A9812F;
    --line: rgba(169, 129, 47, 0.28);
    --line-soft: rgba(23, 21, 15, 0.09);
    --glow: rgba(196, 160, 90, 0.14);
    --shadow: 0 24px 60px -34px rgba(120, 92, 30, 0.28);
    --nav-h: 60px;
    color-scheme: light;
  }

  * { box-sizing: border-box; }
  /* Site-wide font override */
  * { font-family: 'Manrope', sans-serif !important; }
  .ml, .sv-ml, [lang="ml"] { font-family: 'Noto Sans Malayalam', 'Manrope', sans-serif !important; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Mulish', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.8;
    font-size: 1.0625rem;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  h1, h2, h3, .display { font-family: 'Cormorant Garamond', 'Georgia', serif; font-weight: 500; line-height: 1.12; text-wrap: balance; color: var(--ink); }
  h1, h2, .display, .hero .subtitle, .page-hero .sub { color: var(--gold); }
  p { text-wrap: pretty; }
  a { color: inherit; text-decoration: none; }

  .wrap { width: min(1140px, 100% - 3rem); margin-inline: auto; }
  .prose { max-width: 60ch; }
  .center { text-align: center; margin-inline: auto; }

  .eyebrow {
    font-family: 'Marcellus', serif;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: 0.72rem;
    color: var(--gold);
    margin: 0 0 1.1rem;
    display: block;
  }
  .eyebrow.center { letter-spacing: 0.28em; }

  /* ---------- Ornaments ---------- */
  .ornament { display: block; color: var(--gold); }
  .ornament svg { display: block; width: 100%; height: 100%; }
  .lotus-div { width: 216px; height: 30px; margin: 1.4rem 0; }
  .lotus-div.center { margin-inline: auto; }

  /* ---------- Header / Nav ---------- */
  header.site {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    min-height: 60px;
    padding-top: 12px; padding-bottom: 12px;
    background: #fff;
    border-bottom: 1px solid var(--line-soft);
    transition: border-color .4s ease, box-shadow .4s ease;
  }
  header.site.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -22px rgba(120, 92, 30, 0.5); }
  .nav {
    height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  }
  .brand { display: flex; align-items: center; gap: 0.85rem; }
  .brand .mark { width: 34px; height: 44px; color: var(--gold); flex: none; }
  .brand .name {
    font-family: 'Marcellus', serif; font-size: 1.02rem; line-height: 1.15;
    letter-spacing: 0.04em; color: var(--ink);
  }
  .brand .name small { display: block; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
  .nav-links { display: flex; align-items: center; gap: 2.1rem; list-style: none; margin: 0; padding: 0; }
  .nav-links a {
    font-size: 0.82rem; letter-spacing: 0.06em; color: var(--ink-soft);
    text-transform: uppercase; font-weight: 500; position: relative; padding: 4px 0;
    transition: color .3s ease;
  }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 1px;
    background: var(--gold); transition: right .35s ease;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
  .nav-links a[aria-current="page"] { color: var(--gold); }

  .hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }
  .hamburger span { display: block; width: 24px; height: 1.6px; background: currentColor; margin: 5px 0; transition: transform .35s ease, opacity .3s ease; }
  .hamburger.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: 'Marcellus', serif; font-size: 0.82rem; letter-spacing: 0.13em; text-transform: uppercase;
    padding: 0.95rem 1.8rem; border-radius: 2px; cursor: pointer; border: 1px solid transparent;
    transition: transform .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
  }
  .btn .arw { transition: transform .3s ease; }
  .btn:hover .arw { transform: translateX(4px); }
  .btn-primary { background: var(--ink); color: var(--bg); }
  .btn-primary:hover { background: color-mix(in srgb, var(--ink) 80%, var(--gold)); }
  .btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
  .btn-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

  /* ---------- Pages / routing ---------- */
  main { padding-top: calc(var(--nav-h) + 24px); }
  .page { display: none; }
  .page.active { display: block; animation: pageIn .7s ease both; }
  @keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

  section { padding-block: clamp(3.6rem, 8vw, 7rem); }

  /* ---------- Reveal ---------- */
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
  .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

  /* ---------- Hero ---------- */
  .hero { position: relative; padding-block: clamp(3rem, 7vw, 6rem) clamp(3.6rem, 8vw, 6.5rem); overflow: hidden; }
  .hero-glow { position: absolute; top: -12%; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; max-width: 130vw;
    background: radial-gradient(circle, var(--glow) 0%, transparent 62%); pointer-events: none; z-index: 0; }
  .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
  .hero h1 { font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 500; letter-spacing: 0.01em; margin: 0.4rem 0 0; }
  .hero .subtitle { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.25rem, 2.4vw, 1.7rem); color: var(--maroon); margin: 1rem 0 0; }
  .hero .lede { color: var(--ink-soft); font-size: 1.075rem; margin: 1.6rem 0 2.2rem; max-width: 42ch; }
  .hero-art { position: relative; display: grid; place-items: center; }
  .hero-lamp { width: min(280px, 74%); color: var(--gold); filter: drop-shadow(0 20px 40px rgba(120,70,20,.18)); }
  .hero-ring { position: absolute; inset: 0; margin: auto; width: 340px; height: 340px; max-width: 92%; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; z-index: -1; }
  .hero-ring::after { content: ""; position: absolute; inset: 22px; border: 1px solid var(--line-soft); border-radius: 50%; }

  /* ---------- Panels / generic sections ---------- */
  .split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
  .split.reverse .col-art { order: 2; }
  h2 { font-size: clamp(1.95rem, 3.6vw, 2.9rem); margin: 0 0 0.2rem; }
  .section-head { margin-bottom: 2.6rem; }
  .lead-p { color: var(--ink-soft); }
  .stack > * + * { margin-top: 1.15rem; }

  /* Art frame placeholder */
  .art-frame {
    position: relative; aspect-ratio: 4 / 5; border-radius: 3px;
    background:
      radial-gradient(120% 90% at 50% 8%, color-mix(in srgb, var(--gold) 12%, transparent), transparent 60%),
      var(--surface-2);
    border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden;
    box-shadow: var(--shadow);
  }
  .art-frame::before { content: ""; position: absolute; inset: 12px; border: 1px solid var(--line); border-radius: 2px; pointer-events: none; }
  .art-frame svg { width: 58%; height: 58%; color: var(--gold); }
  .art-frame.wide { aspect-ratio: 3 / 2; }
  .art-frame.photo { aspect-ratio: 2 / 3; background: var(--surface-2); }
  .art-frame.photo.wide { aspect-ratio: 5 / 3; }
  .art-frame.photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 1; }
  .art-frame.photo::before { z-index: 2; border-color: rgba(255,255,255,0.35); }
  .art-cap { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; font-family: 'Marcellus', serif; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-soft); }
  .art-frame.photo .art-cap { z-index: 3; color: #fff; padding: 34px 0 14px; background: linear-gradient(to top, rgba(20, 14, 4, 0.66), transparent); bottom: 0; }

  /* ---------- Blessings grid ---------- */
  .bless-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
  .bless {
    background: var(--surface); padding: 2.4rem 1.8rem; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    transition: background .4s ease;
  }
  .bless:hover { background: var(--surface-2); }
  .bless .ic { width: 42px; height: 42px; color: var(--gold); }
  .bless h3 { font-size: 1.5rem; margin: 0; font-weight: 500; }
  .bless p { margin: 0; font-size: 0.94rem; color: var(--ink-soft); line-height: 1.6; }

  /* ---------- Timings ---------- */
  .timings { background: var(--surface); border-block: 1px solid var(--line); }
  .timings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); max-width: 720px; margin-inline: auto; margin-top: 2.4rem; }
  .timing { text-align: center; padding: 2.4rem 1.6rem; border: 1px solid var(--line); border-radius: 3px; background: var(--bg); }
  .timing .ic { width: 46px; height: 46px; color: var(--gold); margin: 0 auto 1rem; }
  .timing .label { font-family: 'Marcellus', serif; text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem; color: var(--gold); }
  .timing .time { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.7rem, 3vw, 2.2rem); color: var(--ink); margin-top: 0.4rem; }
  /* Minimal timings: no boxes, a single hairline between the two */
  .timings-grid.minimal { max-width: 620px; gap: 0; }
  .timings-grid.minimal .timing { border: 0; background: transparent; padding: 0.5rem clamp(1rem, 4vw, 2.6rem); }
  .timings-grid.minimal .timing:first-child { border-right: 1px solid var(--line); }
  .timings-grid.minimal .label { font-family: 'Marcellus', serif; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.74rem; color: var(--gold); }
  .timings-grid.minimal .time {
    font-family: 'Mulish', system-ui, sans-serif; font-weight: 600;
    font-size: clamp(1.15rem, 2.4vw, 1.4rem); color: var(--ink); margin-top: 0.7rem;
    letter-spacing: 0.01em; font-variant-numeric: tabular-nums;
  }
  @media (max-width: 560px) {
    .timings-grid.minimal { grid-template-columns: 1fr; }
    .timings-grid.minimal .timing:first-child { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 1.8rem; }
    .timings-grid.minimal .timing:last-child { padding-top: 1.8rem; }
  }

  /* ---------- Contact ---------- */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
  .addr-card { background: var(--surface); border: 1px solid var(--line); border-radius: 3px; padding: clamp(2rem, 4vw, 3rem); }
  .addr-card address { font-style: normal; color: var(--ink-soft); line-height: 2; font-size: 1.05rem; }
  .addr-card .row { display: flex; gap: 0.9rem; align-items: flex-start; margin-top: 1.6rem; }
  .addr-card .row svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 5px; }
  .addr-card a:hover { color: var(--gold); }
  .map-frame { border: 1px solid var(--line); border-radius: 3px; background: var(--surface-2);
    min-height: 340px; position: relative; overflow: hidden; }
  .map-frame iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }
  .map-link { font-family: 'Marcellus', serif; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.74rem; color: var(--gold); }
  .map-link:hover { color: var(--ink); }

  /* ---------- Quote band ---------- */
  .quote-band { text-align: center; }
  .quote-band .q { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.6rem, 3.4vw, 2.5rem); line-height: 1.45; color: var(--ink); max-width: 22ch; margin: 1.6rem auto 0; }
  .quote-band .q .dbg { color: var(--maroon); }
  .quote-band .q.mantra { font-style: normal; color: var(--gold); max-width: 32ch; font-size: clamp(1.05rem, 2.2vw, 1.25rem); line-height: 1.85; }

  /* ---------- Page hero (interior) ---------- */
  .page-hero { text-align: center; padding-block: clamp(3.4rem, 8vw, 6rem) clamp(2rem,4vw,3rem); position: relative; }
  .page-hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.2rem); font-weight: 500; margin: 0.6rem 0 0; }
  .page-hero .sub { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--maroon); font-size: clamp(1.2rem, 2.4vw, 1.7rem); margin-top: 0.9rem; }

  /* ---------- Timeline ---------- */
  .timeline { max-width: 760px; margin-inline: auto; position: relative; padding-left: 2.4rem; }
  .timeline::before { content: ""; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
  .tl-item { position: relative; padding-bottom: 2.8rem; }
  .tl-item:last-child { padding-bottom: 0; }
  .tl-item::before { content: ""; position: absolute; left: -2.4rem; top: 6px; width: 15px; height: 15px; border-radius: 50%; border: 1px solid var(--gold); background: var(--bg); }
  .tl-item::after { content: ""; position: absolute; left: calc(-2.4rem + 4px); top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
  .tl-item h3 { font-size: 1.7rem; margin: 0 0 0.5rem; }
  .tl-item p { margin: 0; color: var(--ink-soft); }
  .tl-year { font-family: 'Marcellus', serif; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.72rem; color: var(--gold); }

  /* ---------- Simple step timeline (through the years) ---------- */
  .steps { display: flex; flex-direction: column; align-items: center; gap: 0; max-width: 460px; margin: 2.6rem auto 0; }
  .step { text-align: center; padding: 1.15rem 1.8rem; border: 1px solid var(--line); border-radius: 3px; background: var(--surface); width: 100%; }
  .step .yr { font-family: 'Marcellus', serif; letter-spacing: 0.18em; font-size: 0.72rem; text-transform: uppercase; color: var(--gold); }
  .step .tt { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; }
  .step-link { width: 1px; height: 30px; background: var(--line); }

  /* Year-on-left timeline (A Tradition Preserved) */
  .year-timeline { max-width: 620px; margin: 2.8rem auto 0; }
  .yt-row { display: grid; grid-template-columns: 118px 1fr; gap: 1.6rem; }
  .yt-year { text-align: right; font-family: 'Marcellus', serif; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.9rem; color: var(--gold); padding-top: 0.15rem; font-variant-numeric: tabular-nums; }
  .yt-body { border-left: 1px solid var(--line); padding: 0 0 2.2rem 1.7rem; position: relative; }
  .yt-row:last-child .yt-body { padding-bottom: 0; }
  .yt-body::before { content: ""; position: absolute; left: -6px; top: 5px; width: 11px; height: 11px; border-radius: 50%; background: var(--bg); border: 1px solid var(--gold); }
  .yt-body::after { content: ""; position: absolute; left: -2.5px; top: 8.5px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
  .yt-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--ink); line-height: 1.25; }
  @media (max-width: 560px) {
    .yt-row { grid-template-columns: 1fr; gap: 0.2rem; }
    .yt-year { text-align: left; padding-left: 1.7rem; }
    .yt-body { padding-bottom: 1.8rem; }
  }

  /* ---------- Deities list ---------- */
  .deities { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; max-width: 780px; margin: 2.4rem auto 0; }
  .deity { border: 1px solid var(--line); border-radius: 100px; padding: 0.7rem 1.6rem; font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--ink); background: var(--surface); }

  /* ---------- Special Vazhipadu listing ---------- */
  .sv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.6rem; margin-top: 3rem; }
  .sv-card {
    position: relative; overflow: hidden; isolation: isolate;
    border: 1px solid #ddd; border-radius: 10px; background: #fff;
    box-shadow: 0 10px 30px -18px rgba(31, 26, 12, 0.18), 0 2px 8px -4px rgba(31, 26, 12, 0.08);
    padding: clamp(1.9rem, 3vw, 2.4rem); display: flex; flex-direction: column;
    transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
  }
  .sv-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.75; }
  .sv-card::after { content: ""; position: absolute; top: -35%; right: -30%; width: 68%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, var(--glow), transparent 70%); z-index: -1; pointer-events: none; }
  .sv-card:hover { transform: translateY(-5px); box-shadow: 0 22px 46px -22px rgba(31, 26, 12, 0.28), 0 4px 12px -6px rgba(31, 26, 12, 0.10); border-color: var(--gold-soft); }
  .sv-card-top { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; margin-bottom: 1.3rem; }
  .sv-ic { width: 42px; height: 42px; flex: none; display: grid; place-items: center; color: var(--gold); border: 1px solid var(--line); border-radius: 50%; }
  .sv-ic svg { width: 22px; height: 22px; }
  .sv-date-pill { font-size: 0.7rem; letter-spacing: 0.05em; color: var(--gold); background: color-mix(in srgb, var(--gold) 13%, transparent); border-radius: 100px; padding: 0.4rem 0.85rem; text-align: right; }
  .sv-card h3 { color: var(--gold); font-size: 1.55rem; font-weight: 700; margin: 0; line-height: 1.22; letter-spacing: -0.01em; }
  .sv-card .sv-ml { color: var(--ink-soft); font-size: 1rem; margin-top: 0.25rem; }
  .sv-card .sv-desc { color: var(--ink-soft); font-size: 0.94rem; line-height: 1.7; margin: 1rem 0 0; }
  .sv-card .sv-foot { margin-top: auto; padding-top: 1.7rem; }
  .sv-card .sv-price { font-size: 1.5rem; color: var(--ink); font-weight: 700; margin-bottom: 1.05rem; letter-spacing: -0.01em; }
  .sv-card .sv-price span { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }
  .sv-card .btn { width: 100%; justify-content: center; }
  .sv-card .sv-closed { display: block; font-size: 0.85rem; color: var(--maroon); margin-bottom: 0.7rem; font-style: italic; }
  .sv-empty { text-align: center; max-width: 480px; margin: 3rem auto 0; }
  .sv-empty h3 { font-size: 1.7rem; color: var(--ink); }
  .sv-empty p { color: var(--ink-soft); margin: 0.8rem 0 1.6rem; }

  /* ---------- Offerings catalogue ---------- */
  .off-cat { margin-bottom: clamp(2.6rem, 5vw, 4rem); }
  .off-cat-head { margin-bottom: 1.3rem; }
  .off-cat-head h2 { color: var(--gold); font-size: clamp(1.5rem, 3vw, 2rem); margin: 0; }
  .off-cat-ml { color: var(--ink-soft); font-size: 1.05rem; margin-top: 0.2rem; }
  .off-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(2rem, 5vw, 4rem); }
  .off-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.2rem; padding: 0.95rem 0; border-bottom: 1px solid var(--line-soft); }
  .off-name { min-width: 0; }
  .off-en { display: block; color: var(--ink); font-weight: 600; font-size: 1.05rem; }
  .off-ml { display: block; color: var(--ink-soft); font-size: 0.92rem; margin-top: 0.1rem; }
  .off-prebook { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.45rem; font-size: 0.72rem; color: var(--gold); background: color-mix(in srgb, var(--gold) 12%, transparent); border-radius: 100px; padding: 0.2rem 0.7rem; line-height: 1.4; }
  .off-prebook .off-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex: none; }
  .off-price { color: var(--gold); font-weight: 700; white-space: nowrap; font-variant-numeric: tabular-nums; padding-top: 0.1rem; }
  .off-price .off-na { color: var(--ink-soft); font-weight: 500; font-size: 0.85rem; font-style: italic; }
  .off-note { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-top: 2.6rem; max-width: 62ch; margin-inline: auto; }
  @media (max-width: 700px) {
    .off-grid { grid-template-columns: 1fr; }
  }

  /* ---------- Sacred forms (4 items) ---------- */
  .forms { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .form-card { border: 1px solid var(--line); border-radius: 3px; padding: 2.2rem; background: var(--surface); display: flex; gap: 1.5rem; align-items: flex-start; transition: transform .4s ease, box-shadow .4s ease; }
  .form-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
  .form-card .fi { width: 54px; height: 54px; color: var(--gold); flex: none; }
  .form-card h3 { font-size: 1.7rem; margin: 0 0 0.4rem; }
  .form-card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; line-height: 1.65; }

  /* ---------- Blessing chips + offerings ---------- */
  .chips { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
  .chip { border: 1px solid var(--line); border-radius: 100px; padding: 0.5rem 1.25rem; font-size: 0.9rem; color: var(--ink-soft); background: var(--surface); }
  .offerings { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 0.8rem; }
  .offerings li { display: flex; gap: 0.9rem; align-items: baseline; font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; color: var(--ink); }
  .offerings li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; transform: translateY(-3px); }

  .note { background: var(--surface-2); border-left: 2px solid var(--gold); padding: 1.4rem 1.6rem; color: var(--ink-soft); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; border-radius: 0 3px 3px 0; }

  /* ---------- Footer ---------- */
  footer.site { background: var(--surface-2); border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 5rem) 2.4rem; }
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
  .foot-brand .name { font-family: 'Marcellus', serif; font-size: 1.15rem; letter-spacing: 0.03em; }
  .foot-brand address { font-style: normal; color: var(--ink-soft); line-height: 1.9; margin-top: 1rem; font-size: 0.96rem; }
  .foot-brand .mark { width: 30px; height: 40px; color: var(--gold); margin-bottom: 1rem; }
  .foot-col h4 { font-family: 'Marcellus', serif; text-transform: uppercase; letter-spacing: 0.2em; font-size: 0.72rem; color: var(--gold); margin: 0 0 1.2rem; font-weight: 400; }
  .foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
  .foot-col a, .foot-col p { color: var(--ink-soft); font-size: 0.96rem; }
  .foot-col a:hover { color: var(--gold); }
  .foot-bottom { margin-top: 3rem; padding-top: 1.8rem; border-top: 1px solid var(--line); text-align: center; }
  .foot-bottom .sloka { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.3rem; color: var(--maroon); }
  .foot-bottom .fine { color: var(--ink-soft); font-size: 0.8rem; letter-spacing: 0.04em; margin-top: 0.8rem; }

  .skip { position: absolute; left: -999px; top: 0; background: var(--maroon); color: #fff; padding: 10px 16px; z-index: 200; border-radius: 2px; }
  .skip:focus { left: 12px; top: 12px; }
  :focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

  /* ---------- Mobile ---------- */
  @media (max-width: 900px) {
    .hero-grid, .split, .contact-grid, .forms { grid-template-columns: 1fr; }
    .split.reverse .col-art { order: 0; }
    .hero-art { order: -1; }
    .hero-lamp { width: calc(min(280px, 74%) / 6); }
    .bless-grid { grid-template-columns: repeat(2, 1fr); }
    .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
    .timings-grid { grid-template-columns: 1fr; }
    /* Clear the fixed header on mobile, uniform across every page */
    main { padding-top: 75px; }
    .hamburger { display: block; }
    .nav-links {
      position: fixed; top: calc(var(--nav-h) + 24px); left: 0; right: 0; width: 100%;
      z-index: 99; flex-direction: column; gap: 0; align-items: stretch;
      background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
      box-shadow: 0 18px 30px -18px rgba(31, 26, 12, 0.35);
      max-height: 0; overflow: hidden; transition: max-height .4s ease; padding: 0;
    }
    .nav-links.open { max-height: 70vh; }
    .nav-links li { border-top: 1px solid var(--line-soft); }
    .nav-links li:first-child { border-top: 0; }
    .nav-links a { display: block; padding: 1.05rem 1.6rem; font-size: 0.92rem; }
    .nav-links a::after { display: none; }
  }
  @media (max-width: 560px) {
    .bless-grid { grid-template-columns: 1fr; }
    .brand .name { font-size: 0.92rem; }
    .contact-grid { gap: 1.5rem; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1 !important; transform: none !important; transition: none; }
    .page.active { animation: none; }
    * { animation-duration: .001ms !important; transition-duration: .1ms !important; }
  }
