/* ============================================================
   Scissortail Beverage Co. — Estimate-to-Portal flow styles
   A Bar-Key company. Warm, inclusive, budget-friendly celebrations.
   ============================================================ */
html { scroll-behavior: smooth; }
:root {
  --cream:  #F7F2E9;
  --paper:  #FCFAF4;
  --paper-2:#FFFFFF;
  --salmon: #E0917A;
  --salmon-deep: #B0634D;
  --salmon-soft: #F6E4DC;
  --dove:   #C3C6C0;
  --dove-soft:#E9EAE6;
  --sky:    #B9CFD2;
  --sky-deep:#5E8B90;
  --slate:  #34322E;
  --slate-2:#403D38;
  --muted:  #646860;
  --line:   rgba(52,50,46,0.12);
  --line-2: rgba(52,50,46,0.07);
  --gold:   #D8B47A;
  --ok:     #5E8B90;
  --sky-pale: #E4EFF7;
  --sky-accent: #8FC0E0;
  --sky-deep-accent: #0A6FB0;
  --sky-src: #007AC1;
  --shadow-soft: 0 18px 40px -22px rgba(52,50,46,.30);
  --shadow-rest: 0 10px 26px -18px rgba(52,50,46,.28);
  --ease: cubic-bezier(.16,1,.3,1);
  --accent-hover: #b9694f;
  --serif:  'Marcellus', 'Cormorant Garamond', Georgia, serif;
  --sans:   'Hanken Grotesk', 'Poppins', system-ui, sans-serif;

  /* Brand kit --st-* aliases (see BrandKit_Scissortail/tokens.css) */
  --st-cream: var(--cream); --st-paper: var(--paper); --st-salmon: var(--salmon);
  --st-salmon-deep: var(--salmon-deep); --st-salmon-soft: var(--salmon-soft);
  --st-dove: var(--dove); --st-dove-soft: var(--dove-soft);
  --st-sky: var(--sky); --st-sky-deep: var(--sky-deep);
  --st-slate: var(--slate); --st-slate-2: var(--slate-2); --st-muted: var(--muted);
  --st-serif: var(--serif); --st-sans: var(--sans);
  --shadow-sm: 0 1px 2px rgba(52,50,46,.05);
  --shadow:    0 10px 30px -12px rgba(52,50,46,.18);
  --shadow-lg: 0 30px 60px -24px rgba(52,50,46,.28);
  --r-sm: 16px; --r: 16px; --r-lg: 22px; --r-xl: 28px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: #E7E1D6; font-family: var(--sans); color: var(--slate); -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
.bird { --c-body: var(--slate); --c-fork: var(--salmon); }
.bird.rev { --c-body:#fff; --c-fork:#fff; }
.bird.onslate { --c-body: var(--cream); --c-fork: var(--salmon); }
.bird.onsalmon { --c-body:#fff; --c-fork:#fff; }

/* ---------- Browser chrome shell ---------- */
.viewport { min-height: 100vh; display: flex; flex-direction: column; }
.chrome {
  position: sticky; top: 0; z-index: 200;
  background: #DED7CA; border-bottom: 1px solid rgba(52,50,46,.14);
  padding: 9px 16px; display: flex; align-items: center; gap: 12px;
}
.chrome .dots { display: flex; gap: 7px; }
.chrome .dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(52,50,46,.18); display: block; }
.chrome .navbtns { display: flex; gap: 2px; margin-left: 4px; }
.chrome .navbtns button {
  width: 28px; height: 28px; border-radius: 8px; border: none; background: transparent;
  color: var(--muted); display: inline-flex; align-items: center; justify-content: center;
}
.chrome .navbtns button:hover:not(:disabled) { background: rgba(52,50,46,.08); color: var(--slate); }
.chrome .navbtns button:disabled { opacity: .35; cursor: default; }
.chrome .url {
  flex: 1; max-width: 540px; margin: 0 auto;
  background: var(--paper-2); border: 1px solid rgba(52,50,46,.12); border-radius: 999px;
  height: 34px; display: flex; align-items: center; gap: 9px; padding: 0 15px;
  font-size: 13px; color: var(--slate); box-shadow: var(--shadow-sm);
}
.chrome .url svg { width: 13px; height: 13px; color: var(--ok); flex: 0 0 auto; }
.chrome .url .path { color: var(--muted); }
.chrome .url .host { font-weight: 600; }
.chrome .spacer { flex: 0 0 64px; }

/* ---------- Screen system ---------- */
.stage { flex: 1; position: relative; background: var(--cream); overflow: hidden; }
.screen { display: none; }
.screen.active { display: block; animation: fade .4s ease both; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .screen.active { animation: none; } *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .flip-inner, .face, .face .sheen, .flip { transition: none; } }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--salmon-deep); }
.serif { font-family: var(--serif); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: none; border-radius: var(--r-sm);
  font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: .01em; padding: 14px 24px;
  text-decoration: none; transition: transform .18s, background .18s, box-shadow .18s, border-color .18s; }
.btn:active { transform: scale(.985); }
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--salmon-deep); color: #fff; box-shadow: 0 12px 24px -12px rgba(201,116,92,.7); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--salmon); outline-offset: 2px; }
a:focus-visible { outline: 2px solid var(--salmon); outline-offset: 2px; border-radius: 4px; }
.btn-ghost { background: transparent; color: var(--slate); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: rgba(52,50,46,.3); background: rgba(255,255,255,.5); }
.btn-light { background: #fff; color: var(--slate); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-lg { padding: 16px 30px; font-size: 15px; }
.btn-block { width: 100%; }

/* ============================================================
   LANDING
   ============================================================ */
.site-nav { position: sticky; top: 0; z-index: 40; background: rgba(247,242,233,.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line); }
.site-nav .inner { max-width: 1140px; margin: 0 auto; padding: 15px 40px; display: flex; align-items: center; gap: 26px; }
.site-nav .brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: inherit; }
.site-nav .brand > div { display: flex; align-items: baseline; gap: 6px; }
.site-nav .brand .nm { font-family: var(--serif); font-size: 19px; letter-spacing: .01em; line-height: 1; }
.site-nav .brand .co { font-size: 10px; font-weight: 500; letter-spacing: .32em; text-transform: uppercase; color: var(--salmon-deep); }
.site-nav .links { display: flex; gap: 26px; margin-left: 14px; }
.site-nav .links a { font-size: 12px; font-weight: 500; letter-spacing: .04em; color: var(--muted); text-decoration: none; }
.site-nav .links a:hover { color: var(--slate); }
.site-nav .sp { flex: 1; }

.hero { position: relative; padding: 76px 0 70px; }
.hero-grid { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 720px; margin: 0 auto; }
.hero h1 { font-family: var(--serif); font-size: clamp(44px, 5.4vw, 74px); line-height: 1.02; letter-spacing: .005em; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--salmon-deep); }
.hero .lede { font-size: 18px; color: var(--muted); margin-top: 22px; max-width: 52ch; line-height: 1.6; text-wrap: balance; }
.hero .tag { font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--salmon-deep); margin-bottom: 18px; text-wrap: balance; }
.hero-actions { display: flex; gap: 13px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.hero .reassure { display: flex; gap: 22px; margin-top: 30px; flex-wrap: wrap; justify-content: center; }
.hero .reassure div { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero .reassure svg { width: 16px; height: 16px; color: var(--ok); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.chip { font-size: 12px; font-weight: 500; letter-spacing: .03em; color: var(--slate); background: var(--paper);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; }

/* sections */
.band { padding: 96px 0; border-top: 1px solid var(--line); }
.band.tinted { background: var(--paper); }
.band.slate { background: var(--slate); color: var(--cream); border-top: none; }
.sec-head { text-align: center; max-width: 58ch; margin: 0 auto 56px; }
.sec-head h2 { font-family: var(--serif); font-size: clamp(32px, 3.6vw, 48px); line-height: 1.06; margin-top: 14px; letter-spacing: .005em; text-wrap: balance; }
.sec-head p { color: var(--muted); margin-top: 16px; font-size: 16.5px; line-height: 1.6; text-wrap: balance; }
.band.slate .sec-head p { color: rgba(247,242,233,.7); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: linear-gradient(180deg, var(--paper-2) 0%, var(--cream) 100%); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm), 0 0 0 1px rgba(255,255,255,.5) inset; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.feature:hover { box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.5) inset; transform: translateY(-3px); }
.feature .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--salmon-soft); color: var(--salmon-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature .ic svg { width: 21px; height: 21px; }
.feature h3 { font-family: var(--serif); font-size: 21px; }
.feature p { color: var(--muted); font-size: 14px; margin-top: 8px; line-height: 1.55; text-wrap: balance; }

/* tiers preview */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; display: flex; flex-direction: column; }
.tier.feat { border-color: var(--salmon); box-shadow: 0 20px 40px -22px rgba(201,116,92,.5); position: relative; }
.tier .pill { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--salmon-deep); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.tier .nm { font-family: var(--serif); font-size: 24px; }
.tier .pr { font-family: var(--serif); font-size: 40px; margin: 10px 0 2px; }
.tier .pr span:last-child { font-size: 14px; color: var(--muted); font-family: var(--sans); }
.tier .desc { font-size: 13px; color: var(--muted); min-height: 38px; }
.tier ul { list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.tier li { font-size: 13.5px; display: flex; gap: 9px; align-items: flex-start; }
.tier li svg { width: 15px; height: 15px; color: var(--ok); flex: 0 0 auto; margin-top: 2px; }
.tier li.off { color: var(--muted); opacity: .65; }
.tier li.off svg { color: var(--dove); }

/* sky wash band */
.band.sky-wash { background:
  linear-gradient(180deg, rgba(143,192,224,.30) 0%, rgba(143,192,224,.07) 22%, rgba(143,192,224,0) 38%),
  radial-gradient(ellipse 60% 48% at 14% 4%, rgba(224,145,122,.10), transparent 60%),
  var(--cream); border-top: none; }

/* ---- Collection flip cards ---- */
.deck {
  display: flex; gap: 26px; perspective: 2200px;
  align-items: stretch; flex-wrap: wrap; justify-content: center;
}
.flip {
  width: 326px; height: 462px; position: relative;
  transition: transform .4s var(--ease); border-radius: var(--r-xl);
}
.flip.feat { transform: translateY(-16px); }
.flip:hover { transform: translateY(-6px); }
.flip.feat:hover { transform: translateY(-22px); }
.flip:focus-visible { outline: none; }
.flip:focus-visible .face { box-shadow: 0 0 0 3px var(--salmon), var(--shadow-soft); }

.flip-inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform .72s var(--ease);
}
.flip.flipped .flip-inner { transform: rotateY(180deg); }

.face {
  position: absolute; inset: 0;
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
  border-radius: var(--r-xl); overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--shadow-rest);
  transition: box-shadow .3s var(--ease), opacity 0s linear .36s;
  cursor: pointer; opacity: 1;
}
.flip:hover .face { box-shadow: var(--shadow-soft); }
.face.back { transform: rotateY(180deg); opacity: 0; }
.flip.flipped .face.front { opacity: 0; }
.flip.flipped .face.back { opacity: 1; }

.flip.feat .face { background: linear-gradient(158deg,#3a3530 0%,#34322E 56%,#45302a 100%); border-color: rgba(247,242,233,.10); color: var(--cream); }
.flip.sky .face { background: linear-gradient(180deg,#F1F7FC 0%,var(--paper) 50%); }
.flip.sky .card-tag { color: var(--sky-deep-accent); background: var(--sky-pale); }
.flip.sky .b-eye { color: var(--sky-deep-accent); }
.flip.sky .flip-hint { color: var(--sky-deep-accent); }
.flip.sky .b-list li .ic { background: rgba(0,122,193,.12); color: var(--sky-deep-accent); }

.face .sheen {
  position: absolute; inset: 0; pointer-events: none; z-index: 4;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.55) 48%, transparent 64%);
  transform: translateX(-120%); transition: transform .9s var(--ease); mix-blend-mode: soft-light;
}
.flip:hover .face .sheen { transform: translateX(120%); }
.flip.feat .face .sheen { background: linear-gradient(115deg, transparent 32%, rgba(224,145,122,.40) 49%, transparent 64%); mix-blend-mode: screen; }
.flip.sky .face .sheen { background: linear-gradient(115deg, transparent 32%, rgba(143,192,224,.55) 48%, transparent 64%); }

.face .mark-wm {
  position: absolute; right: -14px; bottom: -16px; width: 150px; height: 150px;
  opacity: .05; z-index: 0; transform: rotate(-6deg);
}
.flip.feat .face .mark-wm { opacity: .10; }

/* flip card front */
.front { padding: 26px 26px 24px; }
.front .f-top { display: flex; align-items: flex-start; justify-content: space-between; position: relative; z-index: 2; }
.f-top .bird { width: 30px; height: 30px; flex: 0 0 auto; }
.card-tag {
  font-size: 9.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--salmon-deep); background: var(--salmon-soft); border-radius: 999px; padding: 5px 11px;
}
.flip.feat .card-tag { color: #fff; background: var(--salmon-deep); }

.front .f-mid { position: relative; z-index: 2; margin-top: 30px; flex: 1; }
.c-name { font-family: var(--serif); font-weight: 400; font-size: 33px; line-height: 1.02; letter-spacing: .005em; }
.c-desc { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-top: 12px; max-width: 25ch; }
.flip.feat .c-desc { color: rgba(247,242,233,.74); }

.front .f-foot { position: relative; z-index: 2; }
.c-price { font-family: var(--serif); font-size: 50px; line-height: 1; display: flex; align-items: baseline; gap: 2px; }
.c-price .cur { font-size: 24px; color: var(--muted); transform: translateY(-14px); }
.flip.feat .c-price .cur { color: rgba(247,242,233,.6); }
.c-price .per { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.flip.feat .c-price .per { color: rgba(247,242,233,.66); }
.c-meta { font-size: 12px; color: var(--muted); margin-top: 10px; letter-spacing: .01em; }
.flip.feat .c-meta { color: rgba(247,242,233,.6); }

.flip-hint {
  display: flex; align-items: center; gap: 8px;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 12px; font-weight: 600; letter-spacing: .02em; color: var(--salmon-deep);
}
.flip.feat .flip-hint { border-top-color: rgba(247,242,233,.16); color: var(--salmon); }
.flip-hint svg { width: 15px; height: 15px; transition: transform .4s var(--ease); }
.flip:hover .flip-hint svg { transform: rotate(-180deg); }

/* flip card back */
.back { padding: 24px 26px 22px; }
.back .b-top { display: flex; align-items: flex-start; justify-content: space-between; position: relative; z-index: 2; }
.b-name { font-family: var(--serif); font-size: 22px; line-height: 1; }
.b-price { font-size: 12.5px; color: var(--muted); margin-top: 5px; font-weight: 500; }
.flip.feat .b-price { color: rgba(247,242,233,.66); }

.b-eye {
  position: relative; z-index: 2; margin-top: 22px;
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--salmon-deep);
}
.flip.feat .b-eye { color: var(--salmon); }

.b-list { position: relative; z-index: 2; list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.b-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 13.5px; line-height: 1.4; }
.b-list li .ic { width: 19px; height: 19px; border-radius: 999px; background: rgba(94,139,144,.14); color: var(--ok);
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto; margin-top: 1px; }
.b-list li .ic svg { width: 12px; height: 12px; }
.flip.feat .b-list li .ic { background: rgba(247,242,233,.14); color: var(--cream); }
.b-list li.off { color: var(--muted); }
.b-list li.off .ic { background: rgba(52,50,46,.06); color: var(--dove); }
.flip.feat .b-list li.off { color: rgba(247,242,233,.5); }

.b-cta { position: relative; z-index: 2; margin-top: 18px; }
.est-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; text-decoration: none;
  background: var(--salmon-deep); color: #fff;
  border: none; border-radius: var(--r-sm);
  font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: .01em;
  padding: 14px 18px; cursor: pointer;
  box-shadow: 0 12px 24px -12px rgba(201,116,92,.7);
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.est-btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
.est-btn:active { transform: scale(.985); }
.est-btn svg { width: 16px; height: 16px; }
.flip.feat .est-btn { background: var(--salmon); color: var(--slate); box-shadow: 0 12px 26px -12px rgba(224,145,122,.8); }
.flip.feat .est-btn:hover { background: #e8a48f; }

.flip-back {
  display: block; width: 100%; margin-top: 11px; text-align: center;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .02em; color: var(--muted);
}
.flip-back:hover { color: var(--slate); }
.flip.feat .flip-back { color: rgba(247,242,233,.5); }
.flip.feat .flip-back:hover { color: var(--cream); }

/* photo gallery strip */
.gallery { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 14px; }
.gallery image-slot { display: block; width: 100%; height: 100%; }
.gallery .g1 { grid-row: 1 / span 2; }

/* cta band */
.ctaband { text-align: center; }
.ctaband h2 { font-family: var(--serif); font-size: clamp(32px, 4vw, 52px); line-height: 1.05; }
.ctaband p { color: rgba(247,242,233,.72); margin: 16px auto 30px; max-width: 46ch; font-size: 17px; }

/* footer */
.foot { background: var(--slate-2); color: rgba(247,242,233,.7); padding: 46px 0; }
.foot .inner { max-width: 1140px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot .w { font-family: var(--serif); font-size: 18px; color: var(--cream); }
.foot .powered { margin-left: auto; font-size: 12px; letter-spacing: .04em; display: flex; align-items: center; gap: 8px; }
.foot .powered b { color: var(--cream); font-weight: 600; }
.foot nav a { color: rgba(247,242,233,.5); transition: color .15s; }
.foot nav a:hover { color: var(--cream); }

/* ============================================================
   ESTIMATE FORM (cloned from Bar-Key shape, reskinned)
   ============================================================ */
.est { background: var(--cream); min-height: 100%; }
.est-top { padding: 22px 0; border-bottom: 1px solid var(--line); }
.est-top .inner { max-width: 880px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; gap: 14px; }
.est-top .brand { display: flex; align-items: center; gap: 10px; }
.est-top .brand .nm { font-family: var(--serif); font-size: 17px; }
.est-top .save { margin-left: auto; font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.est-top .save svg { width: 14px; height: 14px; }

.est-body { max-width: 880px; margin: 0 auto; padding: 40px 32px 64px; display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.est-form { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 8px 30px 30px; box-shadow: var(--shadow-sm); }
.est-head { padding: 22px 0 4px; }
.est-head .eyebrow { color: var(--salmon-deep); }
.est-head h1 { font-family: var(--serif); font-size: 30px; margin-top: 8px; }
.est-head p { color: var(--muted); font-size: 14px; margin-top: 6px; }

.fgroup { padding: 22px 0; border-top: 1px solid var(--line); }
.fgroup:first-of-type { border-top: none; }
.fgroup > label, .flabel { display: block; font-size: 13px; font-weight: 600; color: var(--slate); margin-bottom: 12px; }
.fhint { font-size: 12px; color: var(--muted); font-weight: 400; margin-left: 4px; }
.field { width: 100%; font-family: var(--sans); font-size: 14px; color: var(--slate); background: var(--cream);
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: 12px 14px; }
.field:focus { outline: none; border-color: var(--salmon); box-shadow: 0 0 0 3px rgba(224,145,122,.18); }
.field::placeholder { color: #A7A89F; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* segmented options */
.opts { display: grid; gap: 10px; }
.opts.c2 { grid-template-columns: 1fr 1fr; }
.opts.c3 { grid-template-columns: repeat(3,1fr); }
.opt { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 13px 15px; background: var(--cream);
  cursor: pointer; transition: border-color .15s, background .15s; display: flex; align-items: center; gap: 11px; }
.opt:hover { border-color: rgba(224,145,122,.6); }
.opt input { display: none; }
.opt .tick { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--dove); flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.opt .tick svg { width: 11px; height: 11px; color: #fff; opacity: 0; }
.opt .ot { font-size: 13.5px; font-weight: 500; }
.opt .os { font-size: 12px; color: var(--muted); }
.opt.sel { border-color: var(--salmon); background: var(--salmon-soft); }
.opt.sel .tick { background: var(--salmon-deep); border-color: var(--salmon-deep); }
.opt.sel .tick svg { opacity: 1; }
.opt.box { flex-direction: column; align-items: flex-start; gap: 5px; }

/* tier select cards */
.tier-opts { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.tier-opt { border: 1px solid var(--line); border-radius: var(--r); padding: 16px; cursor: pointer; background: var(--cream); transition: .15s; }
.tier-opt:hover { border-color: rgba(224,145,122,.6); }
.tier-opt .tn { font-family: var(--serif); font-size: 18px; }
.tier-opt .tp { font-size: 13px; color: var(--salmon-deep); font-weight: 600; margin-top: 2px; }
.tier-opt .td { font-size: 11.5px; color: var(--muted); margin-top: 7px; line-height: 1.45; }
.tier-opt.sel { border-color: var(--salmon); background: var(--salmon-soft); box-shadow: 0 8px 18px -10px rgba(201,116,92,.5); }

/* slider */
.slider-wrap { display: flex; align-items: center; gap: 18px; }
.slider-wrap input[type=range] { flex: 1; accent-color: var(--salmon-deep); height: 4px; }
.slider-val { font-family: var(--serif); font-size: 28px; min-width: 76px; text-align: right; }
.slider-val span { font-size: 12px; color: var(--muted); font-family: var(--sans); }

/* addons */
.addons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.addon { border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px; cursor: pointer; background: var(--cream); transition: .15s; }
.addon:hover { border-color: rgba(224,145,122,.6); }
.addon .hd { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.addon .an { font-size: 13.5px; font-weight: 600; }
.addon .ap { font-size: 12.5px; color: var(--salmon-deep); font-weight: 600; }
.addon .ad { font-size: 12px; color: var(--muted); margin-top: 5px; line-height: 1.45; }
.addon .chk { width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--dove); flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.addon .chk svg { width: 12px; height: 12px; color: #fff; opacity: 0; }
.addon.sel { border-color: var(--salmon); background: var(--salmon-soft); }
.addon.sel .chk { background: var(--salmon-deep); border-color: var(--salmon-deep); }
.addon.sel .chk svg { opacity: 1; }

/* Rush/urgent booking banner */
.rush-banner { display: flex; gap: 10px; align-items: flex-start; border-radius: 10px; padding: 13px 16px; margin-bottom: 20px; font-size: 13px; line-height: 1.45; }
.rush-banner.rush { background: rgba(199,149,109,0.12); border: 1px solid rgba(199,149,109,0.45); color: var(--slate); }
.rush-banner.rush svg, .rush-banner.rush strong { color: var(--salmon); }
.rush-banner.urgent { background: rgba(188,74,34,0.12); border: 1px solid rgba(188,74,34,0.50); color: var(--slate); }
.rush-banner.urgent svg, .rush-banner.urgent strong { color: #D44050; }

/* live summary rail */
.est-rail { position: sticky; top: 92px; }
.summary { background: var(--slate); color: var(--cream); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow); }
.summary .se { font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--salmon); font-weight: 600; }
.summary h3 { font-family: var(--serif); font-size: 18px; margin: 4px 0 18px; color: #fff; }
.summary .total { font-family: var(--serif); font-size: 46px; line-height: 1; }
.summary .total .to { font-size: 16px; color: rgba(247,242,233,.6); }
.summary .per { font-size: 12.5px; color: rgba(247,242,233,.65); margin-top: 6px; }
.summary .brk { margin: 20px 0 0; padding-top: 16px; border-top: 1px solid rgba(247,242,233,.16); display: flex; flex-direction: column; gap: 9px; }
.summary .brk .r { display: flex; justify-content: space-between; font-size: 13px; }
.summary .brk .r span:first-child { color: rgba(247,242,233,.7); }
.summary .brk .r b { font-weight: 600; }
.summary .min { font-size: 11px; color: rgba(247,242,233,.5); margin-top: 14px; }
.summary .cta { margin-top: 20px; }
.summary .reassure2 { font-size: 11px; color: rgba(247,242,233,.55); margin-top: 12px; text-align: center; }

/* ============================================================
   ESTIMATE RESULT + PORTAL WELCOME (redirect)
   ============================================================ */
.welcome { min-height: 100%; background:
  radial-gradient(ellipse 60% 50% at 15% 0%, rgba(224,145,122,.14), transparent 60%),
  radial-gradient(ellipse 60% 50% at 100% 100%, rgba(185,207,210,.18), transparent 60%), var(--cream); }
.welcome-in { max-width: 940px; margin: 0 auto; padding: 56px 32px 70px; }
.welcome .topbrand { display: flex; align-items: center; justify-content: center; gap: 11px; margin-bottom: 34px; }
.welcome .topbrand .nm { font-family: var(--serif); font-size: 19px; }
.welcome-head { text-align: center; max-width: 56ch; margin: 0 auto 38px; }
.welcome-head .eyebrow { color: var(--salmon-deep); }
.welcome-head h1 { font-family: var(--serif); font-size: clamp(34px,4.4vw,52px); line-height: 1.06; margin-top: 12px; }
.welcome-head h1 em { font-style: italic; color: var(--salmon-deep); }
.welcome-head p { color: var(--muted); font-size: 17px; margin-top: 16px; }

.welcome-card { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.quote-side { padding: 34px; border-right: 1px solid var(--line); }
.quote-side .se { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--salmon-deep); font-weight: 700; }
.quote-side .qtotal { font-family: var(--serif); font-size: 56px; line-height: 1; margin: 8px 0 4px; }
.quote-side .qtotal .to { font-size: 18px; color: var(--muted); }
.quote-side .qper { font-size: 13px; color: var(--muted); }
.quote-side .qbrk { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.quote-side .qbrk .r { display: flex; justify-content: space-between; font-size: 13.5px; padding-bottom: 10px; border-bottom: 1px solid var(--line-2); }
.quote-side .qbrk .r span:first-child { color: var(--muted); }
.quote-side .qbrk .r.tot { border-bottom: none; font-weight: 600; font-size: 14.5px; padding-top: 2px; }
.quote-side .lock { margin-top: 18px; font-size: 12px; color: var(--ok); display: flex; align-items: center; gap: 8px; }
.quote-side .lock svg { width: 15px; height: 15px; }

.acct-side { padding: 34px; background: var(--paper); }
.acct-side h3 { font-family: var(--serif); font-size: 23px; }
.acct-side .sub { font-size: 13.5px; color: var(--muted); margin-top: 6px; margin-bottom: 20px; }
.acct-side .field { margin-bottom: 12px; background: #fff; }
.acct-side .perks { margin: 18px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.acct-side .perks li { font-size: 12.5px; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; }
.acct-side .perks li svg { width: 15px; height: 15px; color: var(--ok); flex: 0 0 auto; margin-top: 1px; }
.welcome .reroute { text-align: center; margin-top: 24px; font-size: 13px; color: var(--muted); }

/* ============================================================
   CLIENT PORTAL  (matches real portal: top-nav, centered column,
   stacked glass cards, tier estimate, journey tracker)
   ============================================================ */
.papp { min-height: 100%; padding-bottom: 64px; background:
  radial-gradient(ellipse 50% 38% at 0% 0%, rgba(224,145,122,.10), transparent 60%),
  radial-gradient(ellipse 60% 50% at 100% 100%, rgba(185,207,210,.16), transparent 60%), var(--cream); }
.ptopbar { position: sticky; top: 0; z-index: 40; background: rgba(252,250,244,.85); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); }
.ptopbar .row { max-width: 920px; margin: 0 auto; padding: 13px 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.ptopbar .brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.ptopbar .brand .nm { font-family: var(--serif); font-size: 18px; line-height: 1; }
.ptopbar .brand .sep { color: var(--line); }
.ptopbar .brand .ev { font-size: 12px; color: var(--muted); white-space: nowrap; }
.ptopbar .who { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); }
.ptopbar .switch { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: var(--slate);
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 11px; }
.ptopbar .switch svg { width: 13px; height: 13px; color: var(--salmon-deep); }
.ptabs { border-top: 1px solid var(--line-2); position: relative; }
.ptabs .row { max-width: 920px; margin: 0 auto; padding: 0 18px; display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; }
.ptabs .row::-webkit-scrollbar { display: none; }
.ptab { padding: 11px 12px; font-size: 12.5px; font-weight: 600; color: var(--muted); border-radius: 9px; white-space: nowrap;
  position: relative; background: none; border: none; cursor: pointer; }
.ptab:hover { color: var(--slate); background: rgba(52,50,46,.04); }
.ptab.active { color: var(--salmon-deep); background: var(--salmon-soft); }
.ptab .ct { margin-left: 5px; background: var(--salmon-deep); color: #fff; font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 999px; vertical-align: middle; }

.pcol { max-width: 660px; margin: 0 auto; padding: 24px 20px 40px; display: flex; flex-direction: column; gap: 15px; }

/* glass card */
.gcard { background: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.55); border-radius: var(--r-lg);
  backdrop-filter: blur(16px); box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.7); padding: 22px; }
.gtitle { font-size: 13px; font-weight: 700; color: var(--slate); letter-spacing: .01em; }
.geye { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: var(--salmon-deep); font-weight: 700; }
.plink { color: var(--salmon-deep); font-size: 12px; font-weight: 600; text-decoration: none; }

/* welcome banner */
.pwelcome { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: 24px 26px; color: var(--cream);
  background: linear-gradient(135deg, #3a3531 0%, #34322E 55%, #4a2f29 100%); border: 1px solid rgba(247,242,233,.08); box-shadow: var(--shadow); }
.pwelcome::after { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 86% 14%, rgba(224,145,122,.3), transparent 60%); }
.pwelcome .e { position: relative; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; color: var(--salmon); font-weight: 700; }
.pwelcome h2 { position: relative; font-family: var(--serif); font-size: 26px; line-height: 1.12; margin: 7px 0 8px; color: #fff; }
.pwelcome h2 em { font-style: italic; color: var(--salmon); }
.pwelcome p { position: relative; font-size: 14px; color: rgba(247,242,233,.82); max-width: 46ch; line-height: 1.55; }
.pwelcome .x { position: absolute; top: 16px; right: 16px; background: rgba(247,242,233,.12); border: none; color: var(--cream);
  width: 26px; height: 26px; border-radius: 999px; display: flex; align-items: center; justify-content: center; }
.pwelcome .x svg { width: 13px; height: 13px; }

/* countdown */
.pcount { text-align: center; }
.pcount .big { font-family: var(--serif); font-size: 58px; line-height: 1; color: var(--salmon-deep); }
.pcount .lab { font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 6px; }
.pcount .date { font-size: 12px; color: var(--muted); opacity: .8; margin-top: 3px; }

/* journey tracker */
.pjourney .hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.jbar { position: relative; height: 8px; background: rgba(52,50,46,.1); border-radius: 999px; }
.jbar .fill { position: absolute; left: 0; top: 0; height: 100%; background: var(--salmon-deep); border-radius: 999px; }
.jbar .dots { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; }
.jbar .dots i { width: 9px; height: 9px; border-radius: 50%; background: #d8d3c9; border: 2px solid #fff; display: block; }
.jbar .dots i.done { background: var(--salmon-deep); }
.jnext { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--r); background: var(--salmon-soft);
  border: 1px solid rgba(224,145,122,.25); margin-top: 16px; }
.jnext .ic { width: 26px; height: 26px; border-radius: 999px; background: rgba(201,116,92,.18); color: var(--salmon-deep);
  display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.jnext .ic svg { width: 14px; height: 14px; }
.jnext .l { font-size: 11px; color: var(--muted); }
.jnext .t { font-size: 13.5px; font-weight: 600; color: var(--slate); }
.jall { margin-top: 14px; font-size: 11.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; background: none; border: none; }
.jall svg { width: 13px; height: 13px; }

/* estimate tier cards */
.pest .note { font-size: 12px; color: var(--muted); background: rgba(52,50,46,.04); border: 1px solid var(--line-2);
  border-radius: var(--r-sm); padding: 11px 13px; text-align: center; margin-bottom: 14px; line-height: 1.5; }
.pest .valid { text-align: center; font-size: 11.5px; color: var(--ok); font-weight: 600; margin-bottom: 14px; }
.ptier { border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; margin-bottom: 12px; background: #fff; }
.ptier:last-child { margin-bottom: 0; }
.ptier.feat { border-color: var(--salmon); box-shadow: 0 14px 30px -18px rgba(201,116,92,.5); }
.ptier .ph { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.ptier .pn { font-family: var(--serif); font-size: 20px; }
.ptier .pn small { display: block; font-family: var(--sans); font-size: 11px; color: var(--salmon-deep); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.ptier .pt { font-family: var(--serif); font-size: 30px; line-height: 1; }
.ptier .pt span { font-size: 12px; color: var(--muted); font-family: var(--sans); }
.ptier .pinc { list-style: none; margin: 14px 0; padding: 14px 0 0; border-top: 1px solid var(--line-2); display: flex; flex-direction: column; gap: 8px; }
.ptier .pinc li { font-size: 12.5px; display: flex; gap: 8px; align-items: flex-start; color: var(--slate); }
.ptier .pinc li svg { width: 14px; height: 14px; color: var(--ok); flex: 0 0 auto; margin-top: 2px; }
.ptier .choose { width: 100%; background: var(--salmon-deep); color: #fff; border: none; border-radius: var(--r-sm); padding: 12px; font-weight: 600; font-size: 13.5px; }
.ptier .choose:hover { background: var(--accent-hover); }
.ptier.sel .choose { background: var(--ok); }

/* quick links */
.qlinks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qlink { background: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.55); border-radius: var(--r); padding: 18px;
  backdrop-filter: blur(16px); box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255,255,255,.7); cursor: pointer; transition: .2s; text-decoration: none; display: block; }
.qlink:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.qlink .qn { font-size: 13.5px; font-weight: 600; color: var(--slate); }
.qlink .qd { font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.qlink:hover .qn { color: var(--salmon-deep); }

/* team */
.pteam .coord { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.pteam .av { width: 46px; height: 46px; border-radius: 999px; background: var(--slate); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex: 0 0 auto; }
.pteam .cn { font-size: 13.5px; font-weight: 600; color: var(--slate); }
.pteam .cr { font-size: 12px; color: var(--muted); }
.pteam .cb { font-size: 11.5px; color: var(--muted); opacity: .8; margin-top: 1px; }
.pteam .contact { margin-left: auto; font-size: 12px; color: var(--salmon-deep); font-weight: 600; background: none; border: none; }
.pteam .roles { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.pteam .role { text-align: center; padding: 13px 8px; border-radius: var(--r-sm); background: rgba(52,50,46,.03); border: 1px solid var(--line-2); }
.pteam .role .ri { width: 34px; height: 34px; border-radius: 999px; background: rgba(52,50,46,.07); margin: 0 auto 7px; display: flex; align-items: center; justify-content: center; color: rgba(52,50,46,.3); }
.pteam .role .ri svg { width: 17px; height: 17px; }
.pteam .role .rn { font-size: 10.5px; font-weight: 600; color: var(--muted); }
.pteam .role .rs { font-size: 9px; color: #A7A89F; margin-top: 2px; }
.pteam .foot { font-size: 11.5px; color: var(--muted); opacity: .85; margin-top: 13px; }

/* drink preview (on-brand for scissortail) */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dcard { padding: 0; border-radius: 14px; background: #fff; border: 1px solid var(--line-2); overflow: hidden; }
.dcard image-slot, .dcard .dimg { display: block; width: 100%; height: 108px; }
.dcard .dimg { background: linear-gradient(135deg, #E0917A, #C9745C); }
.dcard .db { padding: 13px 15px 15px; }
.dcard .de { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: var(--salmon-deep); font-weight: 600; }
.dcard .dn { font-family: var(--serif); font-size: 17px; margin: 3px 0 5px; }
.dcard .dd { font-size: 11.5px; color: var(--muted); line-height: 1.5; }
.noproof { display: inline-block; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--sky-deep);
  border: 1px solid #9DBEC2; border-radius: 999px; padding: 1px 7px; margin-left: 7px; vertical-align: middle; }

/* timeline + payments (reused) */
.timeline { display: flex; flex-direction: column; }
.ti { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-2); }
.ti:last-child { border-bottom: none; }
.ti .tt { font-size: 11px; font-weight: 700; color: var(--salmon-deep); min-width: 54px; padding-top: 1px; }
.ti .tl { font-size: 13px; font-weight: 500; color: var(--slate); }
.ti .ts { font-size: 11px; color: var(--muted); margin-top: 2px; }
.pay-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line-2); }
.pay-row:last-child { border-bottom: none; }
.pay-l { font-size: 13px; font-weight: 500; color: var(--slate); }
.pay-s { font-size: 11px; color: var(--muted); margin-top: 1px; }
.pay-a { font-size: 14px; font-weight: 600; color: var(--slate); font-family: var(--serif); }
.tag { display: inline-flex; padding: 2px 9px; border-radius: 999px; font-size: 10.5px; font-weight: 600; margin-left: 7px; }
.t-paid { background: #DDEBE4; color: #2F6B4F; }
.t-due { background: var(--salmon-soft); color: var(--salmon-deep); }
.t-up { background: var(--dove-soft); color: var(--muted); }

/* flow jump nav */
.flownav { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 300;
  background: rgba(52,50,46,.92); backdrop-filter: blur(10px); border-radius: 999px; padding: 6px; display: flex; gap: 3px;
  box-shadow: 0 16px 36px -12px rgba(0,0,0,.5); }
.flownav button { background: transparent; border: none; color: rgba(247,242,233,.65); font-size: 11.5px; font-weight: 600;
  padding: 8px 15px; border-radius: 999px; letter-spacing: .02em; display: flex; align-items: center; gap: 7px; }
.flownav button .d { width: 6px; height: 6px; border-radius: 50%; background: rgba(247,242,233,.3); }
.flownav button:hover { color: #fff; }
.flownav button.on { background: var(--salmon-deep); color: #fff; }
.flownav button.on .d { background: #fff; }

/* tweaks panel */
.tweaks { position: fixed; top: 64px; right: 16px; z-index: 400; width: 268px; background: var(--paper-2);
  border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 16px; display: none; }
.tweaks.show { display: block; }
.tweaks h4 { font-family: var(--serif); font-size: 16px; display: flex; align-items: center; justify-content: space-between; }
.tweaks h4 button { background: none; border: none; color: var(--muted); font-size: 18px; line-height: 1; }
.tweaks .tw { margin-top: 16px; }
.tweaks .tw label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 8px; }
.tweaks .swatches { display: flex; gap: 8px; }
.tweaks .swatches button { width: 30px; height: 30px; border-radius: 8px; border: 2px solid transparent; cursor: pointer; }
.tweaks .swatches button.on { border-color: var(--slate); box-shadow: 0 0 0 2px #fff inset; }
.tweaks .seg { display: flex; gap: 6px; }
.tweaks .seg button { flex: 1; font-size: 12px; font-weight: 600; padding: 8px; border-radius: 8px; border: 1px solid var(--line); background: var(--cream); color: var(--muted); }
.tweaks .seg button.on { background: var(--slate); color: #fff; border-color: var(--slate); }
.tweaks input[type=range] { width: 100%; accent-color: var(--salmon-deep); }
.tweaks .rngval { font-size: 12px; color: var(--slate); font-weight: 600; float: right; }

@media (max-width: 980px) {
  .est-body { grid-template-columns: 1fr; }
  .est-rail { position: static; }
  .feature-grid, .tiers, .tier-opts, .menu-grid { grid-template-columns: 1fr; }
  .welcome-card, .prow2 { grid-template-columns: 1fr; }
  .portal { grid-template-columns: 1fr; }
}
/* Bird section divider */
.bird-divider { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 8px 0; }
.bird-divider::before, .bird-divider::after { content: ""; flex: 1; max-width: 120px; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.bird-divider svg { width: 28px; height: 28px; opacity: .18; flex-shrink: 0; }

@media (max-width: 768px) {
  .site-nav .links { display:none; position:absolute; top:100%; left:0; right:0; flex-direction:column; background:rgba(247,242,233,.97); backdrop-filter:blur(10px); padding:16px 24px; gap:10px; border-bottom:1px solid var(--line); }
  .site-nav .links.open { display:flex; }
  .site-nav .links a { font-size:14px; padding:8px 0; }
  .st-hamburger { display:flex !important; }
  .site-nav .inner { padding:13px 20px; gap:12px; }
  .site-nav .btn { font-size:11px; padding:8px 14px; }
  .wrap { padding: 0 20px; }
  .hero { padding: 48px 0 40px; }
  .hero-grid { max-width: 480px; padding: 0 20px; }
  .hero-wm { display: none; }
  .hero h1 { font-size: clamp(32px, 7vw, 44px); }
  .hero .lede { font-size: 16px; max-width: 38ch; }
  .hero .tag { font-size: 18px; margin-bottom: 14px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero .reassure { flex-direction: column; align-items: center; gap: 8px; margin-top: 24px; }
  .band { padding: 56px 0; }
  .tiers { grid-template-columns: 1fr; }
  .deck { gap: 20px; }
  .flip { width: 100%; max-width: 360px; height: 420px; }
  .flip.feat { transform: none; }
  .flip.feat:hover { transform: translateY(-6px); }
  .front { padding: 22px 22px 20px; }
  .back { padding: 20px 22px 18px; }
  .c-name { font-size: 28px; }
  .c-price { font-size: 42px; }
  .bird-divider::before, .bird-divider::after { max-width: 60px; }
  .bird-divider svg { width: 22px; height: 22px; }
}
/* 375px intentional mobile refinements */
@media (max-width: 400px) {
  .hero h1 { font-size: 30px; line-height: 1.06; }
  .hero .lede { font-size: 15.5px; margin-top: 16px; }
  .hero .tag { font-size: 18px; margin-bottom: 12px; }
  .sec-head h2 { font-size: 26px; }
  .sec-head p { font-size: 14.5px; }
  .feature { padding: 24px 20px; }
  .feature h3 { font-size: 18px; }
  .feature p { font-size: 13px; }
  .flip { height: 400px; }
  .c-name { font-size: 24px; }
  .c-price { font-size: 36px; }
  .ctaband h2 { font-size: 26px; }
  .btn-lg { padding: 14px 22px; font-size: 14px; }
  .foot .inner { flex-direction: column; text-align: center; gap: 10px; }
  .foot .powered { margin-left: 0; flex-direction: column; gap: 4px; }
}
@media (min-width: 769px) { .st-hamburger { display:none !important; } }
.cross-card-st { display:block; padding:24px; border:1px solid var(--line); border-radius:22px; text-decoration:none; box-shadow: var(--shadow-sm); transition:border-color .15s, box-shadow .2s, transform .2s; }
.cross-card-st:hover { border-color: var(--salmon); box-shadow: var(--shadow); transform: translateY(-2px); }
.cross-card-st:focus-visible { outline: 2px solid var(--salmon); outline-offset: 2px; }
