/* ==========================================================================
   Shot List Planner — site.css
   Sibling brand to Seat the Day. Shared vellum/gold/berry palette, but
   gold-forward (golden hour / tungsten) instead of berry-forward.
   ========================================================================== */

:root {
  /* Surfaces */
  --vellum:      #FBF7EF;
  --paper:       #FFFFFF;
  --vellum-deep: #F4EEE1;
  --ink:         #2A2622;
  --ink-soft:    #4A433C;
  --muted:       #7A7167;
  --border:      #E8E3D8;
  --border-firm: #D8D0C0;

  /* Brand */
  --gold:        #C4A572;
  --gold-deep:   #A8823F;
  --amber:       #D6A23C;
  --berry:       #1FA99A;
  --berry-deep:  #17867A;
  --sage:        #6F9B6A;
  --flag:        #C2553F;

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --ui:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Scale */
  --wrap: 1120px;
  --wrap-narrow: 720px;
  --r: 10px;
  --r-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(42,38,34,.06), 0 2px 6px rgba(42,38,34,.04);
  --shadow-md: 0 2px 4px rgba(42,38,34,.05), 0 8px 24px rgba(42,38,34,.07);
  --shadow-lg: 0 4px 8px rgba(42,38,34,.05), 0 18px 48px rgba(42,38,34,.10);
}

/* --------------------------------------------------------------- Reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
body {
  margin: 0;
  background: var(--vellum);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--berry-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--gold-deep); }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 3px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
  margin: 0 0 .5em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.25rem); }
h3 { font-size: clamp(1.18rem, 2.1vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.3em; }
li { margin-bottom: .45em; }
strong { font-weight: 600; color: var(--ink); }
hr { border: 0; border-top: 1px solid var(--border); margin: 3rem 0; }

/* ------------------------------------------------------------- Layout -- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }
.section { padding: clamp(3.2rem, 7vw, 5.5rem) 0; }
.section--tight { padding: clamp(2.2rem, 4vw, 3.2rem) 0; }
.section--paper { background: var(--paper); border-block: 1px solid var(--border); }
.section--deep { background: var(--vellum-deep); border-block: 1px solid var(--border); }

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 .8rem;
  display: block;
}
.lede {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
}
.section-head { max-width: 66ch; margin-bottom: 2.4rem; }
.center { text-align: center; }
.center .lede, .center .section-head { margin-inline: auto; }

/* ------------------------------------------------------------ Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--ui);
  font-size: .95rem;
  font-weight: 550;
  line-height: 1;
  padding: .85rem 1.5rem;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--ink); color: var(--vellum); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #1C1917; color: var(--vellum); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--amber); color: #33290F; box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: #C99530; color: #33290F; box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border-firm); }
.btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--gold); }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.center .btn-row { justify-content: center; }
.btn-note { font-size: .85rem; color: var(--muted); margin: .85rem 0 0; }

/* ------------------------------------------------------------- Header -- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,247,239,.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  height: 66px;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-weight: 600; font-size: 1.1rem;
  color: var(--ink); text-decoration: none; letter-spacing: -.02em;
  white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand__mark { width: 26px; height: 26px; flex: none; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.4rem; }
.site-nav a {
  font-size: .92rem; color: var(--ink-soft); text-decoration: none; font-weight: 480;
}
.site-nav a:hover { color: var(--gold-deep); }
.site-nav .btn { font-size: .88rem; padding: .6rem 1.05rem; }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--border-firm);
  border-radius: 8px; padding: .5rem .65rem; cursor: pointer; color: var(--ink);
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 66px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--border);
    padding: .5rem 1.25rem 1.1rem; display: none; box-shadow: var(--shadow-md);
  }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: .7rem 0; border-bottom: 1px solid var(--border); }
  .site-nav .btn { margin-top: .85rem; justify-content: center; border-bottom: 0; }
}

/* ------------------------------------------------------------- Footer -- */
.site-footer {
  background: var(--ink); color: #CFC7BC;
  padding: 3.2rem 0 2rem; margin-top: 0;
}
.site-footer a { color: #CFC7BC; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer__grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.4fr repeat(3, 1fr);
}
@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 .9rem; font-weight: 500;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; font-size: .9rem; }
.site-footer__brand { font-family: var(--display); font-size: 1.15rem; color: var(--vellum); margin-bottom: .6rem; }
.site-footer__byline { font-size: .88rem; line-height: 1.6; color: #A79E92; max-width: 34ch; }
.site-footer__bottom {
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid #423B34;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .82rem; color: #8F8679;
}
.site-footer__bottom .mono { font-family: var(--mono); }

/* ---------------------------------------------------------------- Hero -- */
.hero { padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.hero__grid {
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: 1.05fr .95fr; align-items: center;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: .55em; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(to bottom, transparent 58%, rgba(214,162,60,.30) 58%, rgba(214,162,60,.30) 97%, transparent 97%);
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  padding: 0 .06em;
}

/* ----------------------------------------------- SIGNATURE: shot card -- */
/* The checklist row as a physical artifact. Reused site-wide as the motif. */
.shotcard {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.shotcard__bar {
  display: flex; align-items: center; gap: .5rem;
  padding: .7rem 1rem;
  background: var(--vellum-deep);
  border-bottom: 1px solid var(--border);
  font-family: var(--mono); font-size: .72rem; letter-spacing: .06em;
  color: var(--muted);
}
.shotcard__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-firm); flex: none; }
.shotcard__bar > span:nth-of-type(4) {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0;
}
.shotcard__count { margin-left: auto; color: var(--gold-deep); white-space: nowrap; flex: none; }
@media (max-width: 460px) { .shotcard__bar > span:nth-of-type(4) { display: none; } }
.shotcard__body { padding: .35rem 0; }

.shot {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .8rem 1.1rem;
  border-bottom: 1px solid var(--border);
}
.shot:last-child { border-bottom: 0; }
.shot__check {
  width: 20px; height: 20px; flex: none; margin-top: .15rem;
  border: 1.5px solid var(--border-firm); border-radius: 5px;
  background: var(--paper);
  display: grid; place-items: center;
}
.shot--done .shot__check { background: var(--sage); border-color: var(--sage); }
.shot--done .shot__check svg { display: block; }
.shot__check svg { display: none; width: 12px; height: 12px; color: #fff; }
.shot--done .shot__title { color: var(--muted); text-decoration: line-through; text-decoration-color: var(--border-firm); }
.shot__main { min-width: 0; flex: 1; }
.shot__title { font-size: .95rem; font-weight: 520; line-height: 1.35; margin: 0 0 .3rem; }
.shot__meta { display: flex; flex-wrap: wrap; gap: .35rem; align-items: center; }
.shot__star { color: var(--amber); flex: none; width: 15px; height: 15px; margin-top: .28rem; }

.chip {
  font-size: .74rem; font-weight: 500;
  padding: .18rem .5rem; border-radius: 999px;
  background: var(--vellum-deep); color: var(--ink-soft);
  border: 1px solid var(--border); white-space: nowrap;
}
.chip--table { background: rgba(31,169,154,.10); border-color: rgba(31,169,154,.28); color: var(--berry-deep); }
.chip--note  { background: rgba(214,162,60,.14); border-color: rgba(214,162,60,.34); color: #8A6A21; }
.chip--flag  { background: rgba(194,85,63,.10); border-color: rgba(194,85,63,.28); color: var(--flag); }

/* --------------------------------------------------------------- Cards -- */
.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .4rem; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 34px; height: 34px; margin-bottom: .9rem; color: var(--gold-deep);
}
.card--link { text-decoration: none; color: inherit; display: block; transition: box-shadow .18s ease, transform .12s ease, border-color .18s ease; }
.card--link:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gold); color: inherit; }
.card__kicker { font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .55rem; }

/* --------------------------------------------------------------- Table -- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1.5rem; }
table.cmp {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--paper); font-size: .92rem;
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
  min-width: 620px;
}
table.cmp th, table.cmp td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
table.cmp thead th {
  background: var(--vellum-deep); font-family: var(--mono); font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500;
}
table.cmp tbody tr:last-child td { border-bottom: 0; }
table.cmp td:first-child, table.cmp th:first-child { font-weight: 550; }
table.cmp .yes { color: var(--sage); font-weight: 600; }
table.cmp .no  { color: var(--muted); }
table.cmp .part { color: var(--gold-deep); }
table.cmp .hilite { background: rgba(214,162,60,.13); box-shadow: inset 1px 0 0 rgba(214,162,60,.35), inset -1px 0 0 rgba(214,162,60,.35); }
table.cmp thead th.hilite { background: rgba(214,162,60,.26); color: #6E5416; }
table.cmp tbody tr:last-child td.hilite { box-shadow: inset 1px 0 0 rgba(214,162,60,.35), inset -1px 0 0 rgba(214,162,60,.35), inset 0 -1px 0 rgba(214,162,60,.35); }

/* -------------------------------------------------------------- Prose -- */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul li::marker { color: var(--gold-deep); }
.prose blockquote {
  margin: 1.8rem 0; padding: .3rem 0 .3rem 1.3rem;
  border-left: 3px solid var(--gold);
  color: var(--ink-soft); font-style: italic;
}
.prose code {
  font-family: var(--mono); font-size: .88em;
  background: var(--vellum-deep); padding: .12em .38em; border-radius: 4px;
  border: 1px solid var(--border);
}
.toc {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.25rem 1.5rem; margin-bottom: 2.5rem;
}
.toc h2 {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 .8rem;
}
.toc ol { margin: 0; padding-left: 1.2rem; font-size: .93rem; }
.toc li { margin-bottom: .35rem; }

/* ------------------------------------------------------------- Pricing -- */
.plans { display: grid; gap: 1.5rem; grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 800px) { .plans { grid-template-columns: 1fr; } }
.plan {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.9rem; box-shadow: var(--shadow-sm);
  position: relative;
}
.plan--featured { border-color: var(--gold); box-shadow: var(--shadow-md); }
.plan__tag {
  position: absolute; top: -.7rem; left: 1.9rem;
  background: var(--amber); color: #33290F;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .6rem; border-radius: 999px; font-weight: 600;
}
.plan__price { font-family: var(--display); font-size: 2.6rem; line-height: 1; margin: .4rem 0 .2rem; }
.plan__price small { font-family: var(--ui); font-size: .9rem; color: var(--muted); font-weight: 400; }
.plan__list { list-style: none; padding: 0; margin: 1.4rem 0; }
.plan__list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; margin-bottom: .7rem; }
.plan__list svg { width: 17px; height: 17px; flex: none; margin-top: .25rem; color: var(--sage); }
.plan__list li.off { color: var(--muted); }
.plan__list li.off svg { color: var(--border-firm); }

/* ----------------------------------------------------------------- FAQ -- */
.faq { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer; padding: 1.1rem 2rem 1.1rem 0; position: relative;
  font-weight: 550; font-size: 1rem; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); color: var(--gold-deep); font-size: 1.2rem;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details > div { padding: 0 0 1.2rem; color: var(--ink-soft); max-width: 70ch; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ----------------------------------------------------------- Utilities -- */
.callout {
  background: var(--paper); border: 1px solid var(--border);
  border-left: 3px solid var(--berry);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.1rem 1.4rem; margin: 1.8rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout--gold { border-left-color: var(--amber); }
.crumbs { font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem; font-family: var(--mono); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--gold-deep); }
.cta-band { background: var(--ink); color: var(--vellum); padding: clamp(3rem,6vw,4.5rem) 0; }
.cta-band h2 { color: var(--vellum); }
.cta-band p { color: #BFB6AA; }
.cta-band .btn--ghost { color: var(--vellum); border-color: #564E45; }
.cta-band .btn--ghost:hover { background: #383029; color: var(--vellum); border-color: var(--gold); }
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--vellum); padding: .7rem 1.1rem; z-index: 200;
  border-radius: 0 0 var(--r) 0;
}
.skip:focus { left: 0; color: var(--vellum); }
.mono { font-family: var(--mono); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Hero sections with no media below the lede don't need full section padding */
.hero--text { padding-bottom: clamp(1.5rem, 3vw, 2.25rem); }

/* Narrow screens: shrink the comparison table so the columns being compared
   are visible without scrolling past a wide label column. */
@media (max-width: 620px) {
  table.cmp { min-width: 500px; font-size: .84rem; }
  table.cmp th, table.cmp td { padding: .6rem .65rem; }
  table.cmp td:first-child, table.cmp th:first-child {
    position: sticky; left: 0; z-index: 1;
    background: var(--paper); box-shadow: 1px 0 0 var(--border);
  }
  table.cmp thead th:first-child { background: var(--vellum-deep); }
  .table-scroll { position: relative; }
}
