/* The Order of the Sacred Dahlia — styles */

:root {
  --night: #170d20;
  --night-2: #241536;
  --plum: #3a1f4d;
  --gold: #d9b25f;
  --gold-soft: #f1dca6;
  --parchment: #f4ecdc;
  --paper: #fbf7ee;
  --ink: #22172b;
  --muted: #6c5f72;
  --line: #e4d8c3;
  --dahlia: #d9466f;
  --dahlia-deep: #a92f55;
  --peach: #f09a78;
  --moon: #f6efd6;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(34, 23, 43, .05), 0 10px 30px rgba(34, 23, 43, .1);
  --display: "Cinzel", "Trajan Pro", Georgia, serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --hand: "Caveat", "Marker Felt", cursive;
  --max: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
}
body.is-chosen { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -.005em; margin: 0 0 .5em; }
h1 { font-family: var(--display); font-weight: 700; font-size: clamp(2.6rem, 6.4vw, 4.8rem); letter-spacing: .01em; line-height: 1.05; }
h1 em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--gold); letter-spacing: 0; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
h3 { font-size: 1.55rem; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { width: min(var(--max), 100% - 40px); margin-inline: auto; }
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section__head { max-width: 640px; margin-bottom: 44px; }
.section__head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  font-family: var(--display); font-size: .8rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dahlia-deep); margin-bottom: 14px;
}
.eyebrow--gold { color: var(--gold); }

.skip { position: absolute; left: -999px; top: 8px; background: var(--night); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid var(--night);
  background: var(--night); color: #fff; font: 600 .95rem var(--sans);
  text-decoration: none; cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--plum); box-shadow: 0 6px 18px rgba(23, 13, 32, .25); }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--night); }
.btn--gold:hover { background: var(--gold-soft); border-color: var(--gold-soft); box-shadow: 0 0 0 6px rgba(217, 178, 95, .18), 0 8px 26px rgba(217, 178, 95, .35); }
.btn--ghost { background: transparent; color: var(--night); }
.btn--ghost:hover { background: var(--night); color: #fff; }
.btn--ghost-light { background: transparent; color: var(--moon); border-color: rgba(246, 239, 214, .45); }
.btn--ghost-light:hover { background: rgba(246, 239, 214, .1); border-color: var(--moon); }
.btn--small { padding: 9px 18px; font-size: .88rem; }
.link-btn { background: none; border: 0; padding: 0; font: 600 .9rem var(--sans); color: var(--dahlia-deep); cursor: pointer; }
.link-btn:hover { text-decoration: underline; }
:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(23, 13, 32, .82);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease;
  color: var(--moon);
}
.nav.is-scrolled { border-bottom-color: rgba(217, 178, 95, .25); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__name { font-family: var(--display); font-size: 1.05rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--moon); }
.brand__mark svg { transition: transform .8s ease; }
.brand:hover .brand__mark svg { transform: rotate(60deg); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a:not(.btn) { text-decoration: none; font-weight: 500; font-size: .95rem; color: var(--moon); opacity: .75; transition: opacity .2s; }
.nav__links a:not(.btn):hover { opacity: 1; }
.nav__links .btn { background: var(--gold); border-color: var(--gold); color: var(--night); }
.nav__links .btn:hover { background: var(--gold-soft); }
.nav__toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--moon); margin: 5px 0; transition: transform .25s ease; }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Stars */
.stars { position: absolute; inset: 0; pointer-events: none; }
.stars i { position: absolute; border-radius: 50%; background: var(--moon); opacity: .2; animation: twinkle 5s ease-in-out infinite; }
.stars--dim i { opacity: .12; }
@keyframes twinkle { 50% { opacity: .85; } }

/* Hero */
.hero {
  position: relative; overflow: hidden; color: var(--moon);
  background: radial-gradient(ellipse at 75% 40%, #3b1d4d 0%, var(--night-2) 38%, var(--night) 75%);
  padding: clamp(40px, 7vw, 96px) 0 clamp(64px, 9vw, 120px);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.lead { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.4vw, 1.8rem); color: var(--gold-soft); margin-bottom: .6em; }
.hero__sub { color: #cbbfd4; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 26px; }
.omens { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; font-size: .92rem; color: #b8aac4; }
.omens li:empty { display: none; }
.hero__art { position: relative; aspect-ratio: 1; max-width: 520px; width: 100%; justify-self: center; }
.halo { position: absolute; inset: 8%; border-radius: 50%; background: radial-gradient(circle, rgba(217, 178, 95, .35), rgba(217, 70, 111, .12) 45%, transparent 70%); animation: pulse 6s ease-in-out infinite; }
.rays {
  position: absolute; inset: -10%; border-radius: 50%; opacity: .35;
  background: repeating-conic-gradient(from 0deg, rgba(241, 220, 166, .18) 0deg 3deg, transparent 3deg 15deg);
  -webkit-mask: radial-gradient(circle, #000 20%, transparent 68%);
          mask: radial-gradient(circle, #000 20%, transparent 68%);
  animation: spin 160s linear infinite;
}
.hero__flower { position: absolute; filter: drop-shadow(0 18px 40px rgba(217, 70, 111, .35)); }
.hero__flower svg { width: 100%; height: auto; animation: spin 90s linear infinite; }
.hero__flower--a { top: 14%; left: 16%; width: 62%; }
.hero__flower--b { bottom: 4%; right: 0; width: 32%; }
.hero__flower--b svg { animation-direction: reverse; animation-duration: 70s; }
.hero__flower--c { top: 2%; left: 2%; width: 24%; }
.eye {
  position: absolute; top: 0; right: 10%; width: 64px; height: 34px;
  border: 2px solid var(--gold); border-radius: 50% / 50%; display: grid; place-items: center;
  animation: blink 7s ease-in-out infinite; opacity: .85;
}
.eye span { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px var(--gold); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { transform: scale(1.06); opacity: .8; } }
@keyframes blink { 0%, 92%, 100% { transform: scaleY(1); } 95% { transform: scaleY(.08); } }

/* Signpost */
.signpost { background: var(--paper); padding: clamp(56px, 8vw, 96px) 0; border-bottom: 1px solid var(--line); }
.signpost__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.sign {
  position: relative; justify-self: center; transform: rotate(-3deg);
  width: min(420px, 100%); padding: 36px 36px 30px; text-align: center; border-radius: 6px;
  background:
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(0, 0, 0, .06) 22px 24px),
    linear-gradient(170deg, #b98a5a, #9a6c40 60%, #8a5e36);
  box-shadow: 0 2px 0 #6e4a28, 0 18px 40px rgba(60, 35, 15, .3);
  color: #fdf6e6; font-family: var(--hand); line-height: 1.05;
}
.sign.is-in { transform: rotate(-3deg); }
.sign p { margin: 0; font-size: clamp(2.2rem, 4.6vw, 3rem); font-weight: 700; text-shadow: 0 2px 0 rgba(60, 35, 15, .35); }
.sign p:nth-child(4) { color: #ffe2a3; }
.sign__small { font-size: 1.6rem !important; margin-top: 14px !important; opacity: .9; }
.sign__nail { position: absolute; top: 12px; width: 10px; height: 10px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #ddd, #666); }
.sign__nail--l { left: 14px; } .sign__nail--r { right: 14px; }
.prophecy blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(1.7rem, 3vw, 2.3rem); line-height: 1.2; margin: 0 0 18px; color: var(--plum); }
.prophecy blockquote.is-in { animation: rise .6s both; }

/* Story */
.story { background: var(--parchment); }
.story__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px 72px; }
.story__body p { font-size: 1.08rem; color: #43364b; }
.timeline {
  grid-column: 1 / -1; list-style: none; padding: 0; margin: 40px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  border-top: 1px solid var(--line);
}
.timeline li { padding-top: 22px; position: relative; display: flex; flex-direction: column; gap: 4px; }
.timeline li::before { content: "✦"; position: absolute; top: -14px; left: -2px; font-size: 1.1rem; color: var(--gold); background: var(--parchment); padding: 0 4px; line-height: 1.4; }
.timeline li:last-child::before { color: var(--dahlia); }
.timeline__year { font-family: var(--display); font-size: 1.45rem; font-weight: 700; color: var(--plum); }
.timeline li span:last-child { color: var(--muted); font-size: .95rem; }

/* Tabs + crop grid */
.grow { background: var(--paper); }
.tabs { display: inline-flex; gap: 4px; padding: 5px; background: var(--parchment); border: 1px solid var(--line); border-radius: 999px; margin-bottom: 32px; }
.tab {
  border: 0; background: transparent; padding: 10px 22px; border-radius: 999px;
  font: 600 .95rem var(--sans); color: var(--muted); cursor: pointer; transition: background .25s, color .25s;
}
.tab[aria-selected="true"] { background: var(--night); color: var(--gold-soft); }
.tab:not([aria-selected="true"]):hover { color: var(--plum); }

.crop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.crop {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .3s ease, box-shadow .3s ease;
  animation: rise .5s both;
}
.crop:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.crop__art { aspect-ratio: 16 / 10; display: grid; place-items: center; position: relative; overflow: hidden; }
.crop__art::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 55%, rgba(241, 220, 166, .35), transparent 55%); }
.crop__art svg { width: 46%; height: auto; position: relative; z-index: 1; filter: drop-shadow(0 8px 18px rgba(0,0,0,.3)); transition: transform .6s ease; }
.crop:hover .crop__art svg { transform: scale(1.06) rotate(-4deg); }
.crop__body { padding: 20px 22px 22px; }
.crop__body h3 { margin-bottom: 4px; }
.crop__body p { color: var(--muted); font-size: .93rem; margin-bottom: 8px; }
.crop__body .crop__lore { font-family: var(--serif); font-style: italic; font-size: 1.08rem; color: var(--plum); margin-bottom: 14px; line-height: 1.3; }
.crop__months { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { font-size: .75rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: #efe6d4; color: var(--plum); }
.chip--now { background: var(--dahlia); color: #fff; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Calendar */
.season { background: var(--parchment); }
.calendar { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.cal__row { display: grid; grid-template-columns: minmax(170px, 1.4fr) repeat(6, 1fr); align-items: center; border-top: 1px solid var(--line); }
.cal__row:first-child { border-top: 0; }
.cal__row--head { background: var(--night); font-family: var(--display); font-size: .78rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); }
.cal__row--moon { background: var(--night-2); color: var(--moon); font-weight: 600; }
.cal__row--moon .cal__cell { display: flex; justify-content: center; gap: 6px; }
.moon-dot {
  display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #fffbe9, var(--moon) 55%, #d9cfae);
  color: var(--night); font-size: .78rem; font-weight: 700; box-shadow: 0 0 12px rgba(246, 239, 214, .45);
}
.cal__row--group { background: var(--paper); font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--plum); }
.cal__row--group .cal__name { padding: 10px 18px; font-size: 1.1rem; }
.cal__name { padding: 12px 18px; font-size: .95rem; }
.cal__cell { height: 100%; padding: 10px 0; position: relative; }
.cal__row--head .cal__cell { text-align: center; padding: 12px 0; }
.cal__cell.is-current { background: rgba(217, 70, 111, .07); }
.cal__row--head .cal__cell.is-current, .cal__row--moon .cal__cell.is-current { background: rgba(217, 178, 95, .16); color: var(--gold); }
.cal__bar { height: 14px; margin: 0 -1px; background: var(--c); opacity: .9; }
.cal__bar.is-start { margin-left: 8px; border-radius: 999px 0 0 999px; }
.cal__bar.is-end { margin-right: 8px; border-radius: 0 999px 999px 0; }
.cal__bar.is-start.is-end { border-radius: 999px; }

/* Dahlias feature */
.dahlias {
  position: relative; overflow: hidden; color: #ddd2e4; padding: clamp(80px, 10vw, 136px) 0;
  background: radial-gradient(ellipse at 80% 50%, #3a1f4d, var(--night) 70%);
}
.dahlias h2 { color: #fff; }
.dahlias__grid { position: relative; display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.dahlias__copy p { color: #c7b9d0; font-size: 1.06rem; }
.checks { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 10px; }
.checks li { display: flex; align-items: center; gap: 12px; }
.checks li::before { content: "✦"; flex: none; width: 22px; text-align: center; color: var(--gold); }
.bouquet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.bloom { text-align: center; margin: 0; }
.bloom svg { width: 100%; height: auto; transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .9s; }
.bloom:hover svg { transform: rotate(45deg) scale(1.06); filter: drop-shadow(0 0 24px rgba(241, 220, 166, .45)); }
.bloom figcaption { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; color: #fff; margin-top: 8px; }
.bloom small { display: block; font-family: var(--display); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

/* Tiers */
.paths { background: var(--paper); }
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: 24px; padding: 34px 30px 30px;
}
.tier h3 { font-family: var(--display); font-size: 1.7rem; letter-spacing: .06em; margin-bottom: 6px; }
.tier__level { font-family: var(--display); font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--dahlia-deep); margin-bottom: 6px; }
.tier__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 12px; }
.tier__price span { font-family: var(--serif); font-size: 2.6rem; font-weight: 600; line-height: 1; }
.tier__price small { color: var(--muted); }
.tier__blurb { font-family: var(--serif); font-style: italic; font-size: 1.15rem; line-height: 1.35; color: var(--plum); }
.tier ul { list-style: none; padding: 18px 0 0; margin: 0 0 26px; border-top: 1px solid var(--line); display: grid; gap: 10px; flex: 1; font-size: .94rem; }
.tier li { display: flex; gap: 10px; }
.tier li::before { content: "✦"; color: var(--gold); flex: none; }
.tier .btn { width: 100%; }
.tier--featured { background: var(--night); color: #e9e0ee; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(217, 178, 95, .18), 0 24px 50px rgba(23, 13, 32, .3); transform: translateY(-10px); }
.tier--featured.is-in { transform: translateY(-10px); }
.tier--featured h3, .tier--featured .tier__price span { color: #fff; }
.tier--featured .tier__level { color: var(--gold); }
.tier--featured .tier__blurb { color: var(--gold-soft); }
.tier--featured .tier__price small { color: #b8aac4; }
.tier--featured ul { border-top-color: rgba(217, 178, 95, .3); }
.tier__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--night); font: 600 .72rem var(--sans); letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; white-space: nowrap;
}

/* Testimonials, Instagram, newsletter */
.faithful { background: var(--parchment); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 56px; }
.quote { margin: 0; padding: 30px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.quote blockquote { margin: 0 0 16px; font-family: var(--serif); font-size: 1.4rem; line-height: 1.25; color: var(--ink); }
.quote figcaption { font-size: .88rem; color: var(--muted); }

.faithful__row { display: grid; grid-template-columns: 1fr 1.15fr; gap: 22px; align-items: stretch; }
.insta { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.insta__head { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.insta__avatar { width: 64px; height: 64px; flex: none; border-radius: 50%; padding: 5px; background: var(--night); box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--dahlia); }
.insta__head strong { font-size: 1rem; }
.insta__stats { display: flex; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: var(--muted); }
.insta__stats b { color: var(--ink); }
.insta__bio { font-size: .92rem; line-height: 1.5; }
.insta__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.insta__tile { aspect-ratio: 1; display: grid; place-items: center; background: var(--night-2); border-radius: 4px; overflow: hidden; }
.insta__tile:nth-child(even) { background: var(--plum); }
.insta__tile svg { width: 70%; height: auto; }
.insta__moon { font-size: 2.4rem; }

.newsletter {
  position: relative; overflow: hidden; border-radius: var(--radius); padding: clamp(28px, 4vw, 44px);
  background: radial-gradient(ellipse at 100% 0%, #4a2560, var(--night) 70%); color: #d9cde2;
  display: flex; flex-direction: column; justify-content: center;
}
.newsletter h3 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.3rem); }
.newsletter__form { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.newsletter__form input {
  flex: 1 1 220px; font: 400 1rem var(--sans); padding: 13px 18px; border-radius: 999px;
  border: 1px solid rgba(217, 178, 95, .4); background: rgba(255, 255, 255, .06); color: #fff;
}
.newsletter__form input::placeholder { color: #9f90ab; }
.newsletter__form input:focus { outline: none; border-color: var(--gold); background: rgba(255, 255, 255, .1); }

/* Offers */
.visit { background: var(--paper); }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 64px; }
.offer { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; display: flex; flex-direction: column; }
.offer__num { font-family: var(--display); color: var(--gold); font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; }
.offer p { color: var(--muted); font-size: .94rem; flex: 1; }
.offer__detail { font-size: .8rem; font-weight: 600; color: var(--plum); padding-top: 14px; border-top: 1px solid var(--line); }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: clamp(28px, 5vw, 56px); }
.contact h3 { font-size: 2.2rem; }
.contact__meta { display: grid; gap: 6px; font-weight: 500; }
.contact__meta a { color: var(--dahlia-deep); }
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--plum); }
.form input, .form select, .form textarea {
  font: 400 1rem var(--sans); color: var(--ink); padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--paper); transition: border-color .2s, background .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--plum); background: #fff; }
.form textarea { resize: vertical; }
.form .btn { justify-self: start; }
.form__note { font-size: .88rem; color: var(--muted); margin: 0; min-height: 1.4em; }
.form__note--light { color: var(--gold-soft); margin-top: 12px; }
.form__note.is-error { color: #b3261e; }

/* Footer */
.footer { background: var(--night); color: #b8aac4; padding: 48px 0 40px; font-size: .92rem; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(217, 178, 95, .2); }
.footer p { margin: 0; }
.footer .muted { color: #8d7f99; }
.footer__motto { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold-soft); }
.fineprint { margin: 24px 0 0; padding: 0; list-style: none; counter-reset: fp; columns: 2; column-gap: 40px; font-size: .74rem; line-height: 1.5; color: #8d7f99; }
.fineprint li { counter-increment: fp; break-inside: avoid; margin-bottom: 6px; }
.fineprint li::before { content: "§" counter(fp) " "; color: var(--gold); opacity: .7; }
.fineprint li:first-child { color: #c7b9d0; }

/* "You have been chosen" overlay */
.chosen {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px;
  background: radial-gradient(circle, rgba(58, 31, 77, .92), rgba(23, 13, 32, .97));
  animation: fade .6s both;
}
.chosen[hidden] { display: none; }
.chosen__inner { max-width: 480px; text-align: center; color: #ddd2e4; }
.chosen__inner h2 { font-family: var(--display); color: #fff; font-size: clamp(1.8rem, 5vw, 2.6rem); }
.chosen__inner em { color: var(--gold-soft); }
.chosen__flower { display: block; width: 180px; margin: 0 auto 20px; filter: drop-shadow(0 0 40px rgba(217, 178, 95, .6)); }
.chosen__flower svg { width: 100%; height: auto; animation: spin 20s linear infinite; }
@keyframes fade { from { opacity: 0; } }

/* Scroll reveal */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .sign.reveal { transform: rotate(-3deg) translateY(18px); }
.js .sign.reveal.is-in { transform: rotate(-3deg); }
.js .tier--featured.reveal.is-in { transform: translateY(-10px); }

/* Responsive */
@media (max-width: 960px) {
  .hero__inner, .story__grid, .dahlias__grid, .contact, .signpost__inner, .faithful__row { grid-template-columns: 1fr; }
  .hero__art { max-width: 380px; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .tier-grid, .quote-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .quote-grid { max-width: none; }
  .tier--featured, .js .tier--featured.reveal.is-in { transform: none; }
}
@media (max-width: 760px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--night); border-bottom: 1px solid rgba(217, 178, 95, .25); padding: 8px 20px 20px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a:not(.btn) { padding: 14px 0; border-bottom: 1px solid rgba(246, 239, 214, .12); }
  .nav__links .btn { margin-top: 16px; }
  .offer-grid, .form__row { grid-template-columns: 1fr; }
  .tabs { display: flex; }
  .tab { flex: 1; padding: 10px 8px; }
  .calendar { overflow-x: auto; }
  .cal__row { min-width: 600px; }
  .bouquet { grid-template-columns: repeat(2, 1fr); }
  .fineprint { columns: 1; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
}
