/* Preston's Family Beef — one stylesheet for every page.
   Mobile first (designed at 390px), desktop layout from 960px up.
   Colours and corner radius live in :root so a client tweak is one line. */

:root {
  --paper: #F2ECE1;
  --card: #FBF8F2;
  --sand: #E8DFCF;
  --ink: #1E1914;
  --soft: #4A4037;
  --line: #D8CCB8;
  --line-2: #CDBFA8;
  --field: #B9AA92;
  --accent: #8B3A1F;
  --accent-soft: #F6E9E1;
  --tan: #D9A07E;
  --dim: #C9BBA5;
  --dark-line: #3A322A;
  --star: #B5621F;
  --radius: 14px;
  --gutter: 16px;
  --nav-h: 64px;
  --serif: 'Alegreya', Georgia, serif;
  --sans: 'Alegreya Sans', system-ui, sans-serif;
  --caps: 'Alegreya Sans SC', 'Alegreya Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-padding-top: calc(var(--nav-h) + 8px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body { margin: 0; min-width: 320px; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 17px; line-height: 1.55; }
img { display: block; max-width: 100%; }
picture { display: contents; }
a { color: var(--ink); }
a:hover { color: var(--accent); }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 800; }
p { margin: 0; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.dark :focus-visible { outline-color: var(--tan); }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 100; padding: 10px 16px; background: var(--ink); color: #fff; border-radius: 8px; }
.skip:focus { left: 8px; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow { font-family: var(--caps); font-weight: 700; font-size: 14px; letter-spacing: 0.16em; text-transform: lowercase; color: var(--accent); }
.dark .eyebrow { color: var(--tan); }
.muted { color: var(--soft); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 52px; padding: 0 22px; border: 2px solid transparent; border-radius: var(--radius); font-family: inherit; font-size: 17px; font-weight: 700; line-height: 1.2; text-align: center; text-decoration: none; cursor: pointer; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #742F18; color: #fff; }
.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-light { background: transparent; border-color: #fff; color: #fff; }
.btn-light:hover { background: #fff; color: var(--ink); }
.btn-block { display: flex; width: 100%; }
.btn-row { display: flex; gap: 10px; width: 100%; }
.btn-row .btn { flex: 1 1 0; padding: 0 10px; }

/* ---------- Announcement + header ---------- */
.announce { padding: 10px var(--gutter); background: var(--ink); color: var(--paper); font-size: 14px; line-height: 1.4; text-align: center; }
.announce a { color: var(--paper); font-weight: 700; text-underline-offset: 3px; }
.announce .long { display: none; }

.site-header { position: sticky; top: 0; z-index: 40; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 2px 12px rgba(30,25,20,0.08); }
.nav { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; flex-direction: column; gap: 2px; text-decoration: none; color: var(--ink); }
.brand-name { font-family: var(--serif); font-weight: 800; font-size: 23px; line-height: 1; }
.brand-tag { font-family: var(--caps); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: lowercase; color: var(--soft); }
.nav-links { display: none; }
.nav-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.nav-phone, .nav-reserve { display: none; }
.menu-panel { display: flex; flex-direction: column; padding: 8px var(--gutter) 20px; border-top: 1px solid var(--line); font-size: 19px; font-weight: 500; }
.menu-panel a { display: flex; align-items: center; min-height: 52px; border-bottom: 1px solid #E2D8C6; text-decoration: none; }
.menu-panel a.btn { justify-content: center; margin-top: 12px; border-bottom: 0; }
.menu-btn .i-close { display: none; }
.menu-btn[aria-expanded="true"] .i-open { display: none; }
.menu-btn[aria-expanded="true"] .i-close { display: block; }

/* ---------- Sections ---------- */
.section { padding: 56px 0 64px; }
.section.sand { background: var(--sand); }
.section.dark, .dark { background: var(--ink); color: var(--paper); }
.section-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.section-head h2 { font-size: 34px; line-height: 1.08; }
.dark h2, .dark h3 { color: #fff; }
.section-head p { color: var(--soft); }
.dark .section-head p { color: var(--dim); }
.section-foot { margin-top: 24px; font-size: 15px; color: var(--soft); text-align: center; }

/* ---------- Home hero ---------- */
.hero { position: relative; min-height: 640px; min-height: min(760px, calc(100svh - var(--nav-h) - 44px)); overflow: hidden; background: var(--ink); display: flex; align-items: flex-end; }
.hero .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 12% 20%; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,25,20,0) 40%, rgba(30,25,20,0.72) 54%, rgba(30,25,20,0.94) 70%, rgba(30,25,20,1) 100%); }
.hero-copy { position: relative; z-index: 1; width: 100%; padding: 0 var(--gutter) 28px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.rule-label { display: flex; align-items: center; gap: 12px; width: 100%; color: #EADBC3; font-family: var(--caps); font-weight: 700; font-size: 14px; letter-spacing: 0.2em; text-transform: lowercase; }
.rule-label::before, .rule-label::after { content: ""; flex: 1; height: 1px; background: #EADBC3; }
.hero h1 { font-size: 46px; line-height: 1.02; color: #fff; }
.hero h1 em { font-style: italic; font-weight: 700; color: #F3D9B8; }
.hero-copy > p { font-size: 17px; line-height: 1.45; color: var(--paper); }
.hero .btn-row { margin-top: 4px; }

/* ---------- Trust strip ---------- */
.trust { background: var(--sand); padding: 28px 0; }
.trust ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 16px; }
.trust li { display: flex; flex-direction: column; gap: 8px; }
.trust svg { width: 28px; height: 28px; flex-shrink: 0; color: var(--accent); }
.trust strong { font-size: 17px; line-height: 1.25; }
.trust li span { display: none; font-size: 16px; line-height: 1.4; color: var(--soft); }

/* ---------- Share cards ---------- */
.shares { display: grid; gap: 16px; align-items: start; }
.share { display: flex; flex-direction: column; gap: 12px; padding: 14px; background: var(--card); border: 1px solid var(--line); border-radius: 16px; }
.share-art { height: 170px; display: flex; align-items: center; justify-content: center; background: var(--paper); border-radius: 12px; }
.share-art img { width: 300px; max-width: 90%; max-height: 150px; object-fit: contain; }
.share-title { display: flex; flex-direction: column; gap: 4px; }
.share-title .eyebrow { font-size: 13px; letter-spacing: 0.14em; }
.share h3 { font-size: 28px; line-height: 1; }
.share h3 a { text-decoration: none; }
.price { display: flex; flex-direction: column; gap: 2px; }
.price b { font-size: 24px; font-weight: 800; }
.price b small { font-size: 15px; font-weight: 400; color: var(--soft); }
.price > span { font-size: 14px; color: var(--soft); }
.share-actions { display: flex; flex-direction: column; gap: 8px; }
.share-actions .btn { min-height: 48px; font-size: 16px; }
.toggle svg { transition: transform 0.2s; }
.toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

/* What's inside panel (cards and landing pages) */
.inside { display: flex; flex-direction: column; gap: 12px; }
.share .inside { padding-top: 14px; border-top: 1px dashed var(--line-2); }
.inside-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.inside-head .eyebrow { font-size: 13px; color: var(--soft); }
.inside-head b { font-size: 14px; }
.legend { display: flex; flex-wrap: wrap; gap: 6px 14px; margin: 0; padding: 0; list-style: none; }
.legend li { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--soft); }
.dot { width: 9px; height: 9px; flex-shrink: 0; border-radius: 50%; }
.dot.s { background: #8B3A1F; } .dot.r { background: #B8683A; } .dot.l { background: #D9A07E; } .dot.g { background: #5B4A3C; }
.cuts-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; margin: 0; padding: 0; list-style: none; }
.cuts-grid li { display: flex; align-items: flex-start; gap: 8px; padding: 10px; background: var(--paper); border-radius: 10px; }
.cuts-grid li.wide { grid-column: span 2; }
.cuts-grid .dot { margin-top: 6px; }
.cuts-grid div { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.cuts-grid b { font-size: 15px; line-height: 1.25; }
.cuts-grid span { font-size: 13px; line-height: 1.35; color: var(--soft); }
.inside .plus { font-size: 14px; line-height: 1.45; }
.inside .plus span { color: var(--soft); }
.inside .note { font-size: 13px; line-height: 1.45; color: var(--soft); }

/* ---------- Cuts (dark) ---------- */
.cut-photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.cut-photos figure { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.cut-photos figure:first-child { grid-column: span 2; }
.cut-photos img { width: 100%; height: 150px; object-fit: cover; border-radius: 4px; }
.cut-photos figure:first-child img { height: 240px; }
.cut-photos figcaption { display: flex; flex-direction: column; gap: 4px; }
.cut-photos figcaption b { font-family: var(--serif); font-weight: 700; font-size: 20px; color: #fff; }
.cut-photos figcaption span { display: none; font-size: 17px; color: var(--dim); }
.cut-types { list-style: none; margin: 28px 0 0; padding: 28px 0 0; border-top: 1px solid var(--dark-line); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 16px; }
.cut-types li { display: flex; flex-direction: column; gap: 6px; }
.cut-types .eyebrow { font-size: 14px; letter-spacing: 0.14em; }
.cut-types span:last-child { font-size: 16px; line-height: 1.45; color: var(--dim); }

/* ---------- Ranch teaser ---------- */
.ranch { display: grid; gap: 22px; }
.ranch-photos { position: relative; }
.ranch-photos .main { width: 100%; height: 300px; object-fit: cover; object-position: 30% center; border-radius: 4px; }
.ranch-photos .inset { display: none; }
.ranch-copy { display: flex; flex-direction: column; gap: 18px; }
.ranch-copy h2 { font-size: 34px; line-height: 1.08; }
.ranch-copy p { font-size: 17px; line-height: 1.6; color: var(--soft); }
.signature { font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 22px; }
.arrow-link { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; font-size: 17px; font-weight: 700; color: var(--accent); text-decoration: none; }
.arrow-link:hover { text-decoration: underline; }

/* ---------- How it works ---------- */
.steps { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; }
.steps li { position: relative; display: grid; grid-template-columns: 44px 1fr; column-gap: 16px; padding-bottom: 26px; }
.steps li:not(:last-child)::before { content: ""; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px; background: var(--line-2); }
.step-num { grid-row: span 3; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--serif); font-weight: 800; font-size: 20px; }
.steps b { font-size: 19px; line-height: 1.25; padding-top: 9px; }
.steps .desc { font-size: 16px; line-height: 1.55; color: var(--soft); margin-top: 6px; }
.steps .pill { font-style: normal; justify-self: start; margin-top: 10px; padding: 3px 10px; background: var(--accent-soft); color: var(--accent); border-radius: 999px; font-size: 13px; font-weight: 700; }

/* ---------- Reviews ---------- */
.reviews { display: grid; gap: 16px; align-items: start; }
.review { margin: 0; display: flex; flex-direction: column; gap: 12px; padding: 24px; background: var(--card); border: 1px solid var(--line); border-radius: 6px; }
.stars { font-size: 18px; letter-spacing: 3px; color: var(--star); }
.stars .off { color: var(--line-2); }
.review h3 { font-size: 21px; line-height: 1.25; }
.review blockquote { margin: 0; font-size: 17px; line-height: 1.55; color: var(--soft); }
.review figcaption { font-size: 15px; color: var(--soft); }
.review figcaption strong { color: var(--ink); }
.more-reviews { margin-top: 16px; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 60px; padding: 14px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex-shrink: 0; transition: transform 0.2s; }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details p { margin: 0 0 20px; max-width: 640px; font-size: 16px; line-height: 1.6; color: var(--soft); }

/* ---------- Reserve form ---------- */
.reserve { display: grid; gap: 24px; }
.reserve-intro { display: flex; flex-direction: column; gap: 12px; }
.reserve-intro h2 { font-size: 34px; line-height: 1.08; }
.reserve-intro > p { color: var(--dim); }
.checks { list-style: none; margin: 8px 0 0; padding: 0; display: none; flex-direction: column; gap: 12px; }
.checks li { display: flex; gap: 12px; font-size: 18px; line-height: 1.5; color: var(--paper); }
.checks svg { flex-shrink: 0; margin-top: 3px; color: var(--tan); }
.reserve-intro .ask { display: none; font-size: 17px; color: var(--dim); }
.reserve-intro .ask a { color: #fff; font-weight: 700; }
.form-card { display: flex; flex-direction: column; gap: 18px; padding: 20px; background: var(--card); color: var(--ink); border-radius: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field label, .field legend { font-size: 15px; font-weight: 700; }
.field .opt { font-weight: 400; color: var(--soft); }
.field input, .field select, .field textarea { width: 100%; height: 52px; padding: 0 14px; border: 1.5px solid var(--field); border-radius: 12px; background: #fff; color: var(--ink); font-family: inherit; font-size: 17px; }
.field textarea { height: auto; padding: 12px 14px; font-size: 16px; resize: vertical; }
.field select { border: 2px solid var(--ink); font-weight: 700; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.field .hint { font-size: 13px; line-height: 1.45; color: var(--soft); }
.pair { display: grid; gap: 18px; }
.share-summary { display: flex; align-items: center; gap: 12px; padding: 8px 12px 8px 8px; background: var(--paper); border-radius: 12px; }
.share-summary img { width: 92px; height: 56px; object-fit: contain; flex-shrink: 0; }
.share-summary div { display: flex; flex-direction: column; gap: 2px; }
.share-summary b { font-size: 16px; }
.share-summary span { font-size: 13px; color: var(--soft); }
fieldset.field { margin: 0; padding: 0; border: 0; gap: 8px; }
fieldset.field legend { padding: 0; margin-bottom: 8px; }
.pay { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.pay label { display: flex; align-items: center; gap: 10px; height: 48px; padding: 0 14px; border: 2px solid var(--line); background: #fff; border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer; }
.pay label:has(input:checked) { border-color: var(--accent); background: var(--accent-soft); }
.pay input { width: 18px; height: 18px; margin: 0; accent-color: var(--accent); }
.form-card button[type="submit"] { min-height: 56px; font-size: 18px; }
.form-card button[disabled] { opacity: 0.7; cursor: progress; }
.form-error { padding: 12px 14px; background: #FBE9E4; border: 1.5px solid #B4432A; border-radius: 12px; font-size: 15px; line-height: 1.5; color: #6E2413; }
.form-alt { font-size: 14px; color: var(--soft); text-align: center; }
.gotcha { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer ---------- */
.footer { padding: 48px 0 108px; background: var(--ink); color: var(--dim); }
.footer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 16px; }
.footer-brand { grid-column: 1 / -1; display: flex; flex-direction: column; gap: 8px; }
.footer-brand b { font-family: var(--serif); font-weight: 800; font-size: 26px; color: #fff; }
.footer-col { display: flex; flex-direction: column; gap: 4px; font-size: 16px; }
.footer-col .eyebrow { font-size: 14px; letter-spacing: 0.14em; margin-bottom: 4px; }
.footer a { color: var(--dim); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer-col a { display: flex; align-items: center; min-height: 44px; overflow-wrap: anywhere; }
.footer-col a.strong { color: #fff; font-weight: 700; }
.footer-bottom { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--dark-line); display: flex; flex-direction: column; gap: 8px; font-size: 14px; line-height: 1.8; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Floating reserve bar ---------- */
.float-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 30; display: flex; align-items: center; gap: 12px; padding: 10px var(--gutter) calc(14px + env(safe-area-inset-bottom)); background: rgba(242,236,225,0.96); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -4px 16px rgba(30,25,20,0.10); transition: transform 0.25s, opacity 0.25s, visibility 0.25s; }
.float-bar.is-hidden { transform: translateY(110%); opacity: 0; visibility: hidden; pointer-events: none; }
.float-bar .txt { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.float-bar .txt b { font-size: 14px; }
.float-bar .txt span { font-size: 13px; color: var(--soft); }
.float-bar .txt .wide { display: none; }
.float-bar .btn { min-height: 48px; flex-shrink: 0; }

/* ---------- Landing pages ---------- */
.crumbs { font-size: 14px; color: var(--soft); }
.crumbs a { color: var(--soft); }
.crumbs span { color: var(--ink); font-weight: 700; }
.product { padding: 16px 0 32px; background: var(--card); border-bottom: 1px solid var(--line); }
.product-grid { display: grid; gap: 16px; }
.product-photo { position: relative; height: 320px; overflow: hidden; background: var(--paper); border-radius: 16px; }
.product-photo img.photo { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.cow-badge { position: absolute; left: 12px; bottom: 12px; display: flex; align-items: center; gap: 8px; padding: 6px 12px 6px 6px; background: rgba(251,248,242,0.96); border-radius: 12px; box-shadow: 0 4px 14px rgba(20,16,12,0.25); font-size: 14px; font-weight: 700; }
.cow-badge img { width: 72px; height: 44px; object-fit: contain; }
.product-copy { display: flex; flex-direction: column; gap: 16px; }
.product-copy .eyebrow { font-size: 13px; letter-spacing: 0.14em; }
.product-copy h1 { font-size: 36px; line-height: 1.06; }
.product-copy > p { color: var(--soft); }
.product .price b { font-size: 30px; line-height: 1.1; }
.product .price b small { font-size: 16px; }
.product .price > span { font-size: 15px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.chips li { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 12px; background: var(--paper); border-radius: 999px; font-size: 14px; font-weight: 700; }
.chips svg { color: var(--accent); }
.product-copy .btn-primary { min-height: 54px; font-size: 18px; margin-top: 4px; }
.inside-layout { display: grid; gap: 20px; }
.inside-photo { margin: 0; display: flex; flex-direction: column; gap: 8px; }
.inside-photo img { width: 100%; height: auto; border-radius: 16px; }
.inside-photo figcaption { font-size: 14px; line-height: 1.45; color: var(--soft); }
.inside-card { padding: 16px; background: var(--card); border: 1px solid var(--line); border-radius: 16px; }
.sizes { display: flex; flex-direction: column; gap: 10px; }
.sizes > b { font-size: 16px; }
.sizes ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.sizes a { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 6px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; text-decoration: none; }
.sizes a:hover { border-color: var(--accent); color: var(--ink); }
.sizes img { width: 84px; height: 52px; object-fit: contain; }
.sizes b { font-size: 15px; }
.sizes span { font-size: 12px; color: var(--soft); }

/* ---------- Text pages (story, policies, thank-you, 404) ---------- */
.page { width: 100%; max-width: 760px; margin: 0 auto; padding: 20px var(--gutter) 64px; display: flex; flex-direction: column; gap: 32px; }
.page header { display: flex; flex-direction: column; gap: 10px; }
.page h1 { font-size: 40px; line-height: 1.05; }
.page h2 { font-size: 26px; line-height: 1.15; }
.page section { display: flex; flex-direction: column; gap: 12px; }
.page p, .page li { font-size: 17px; line-height: 1.65; }
.page ul, .page ol { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.page a { font-weight: 700; overflow-wrap: anywhere; }
.updated { font-size: 14px !important; color: var(--soft); }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.fact { display: flex; flex-direction: column; gap: 2px; padding: 14px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; }
.fact strong { font-family: var(--serif); font-weight: 800; font-size: 22px; line-height: 1.1; }
.fact span { font-size: 14px; color: var(--soft); }
.callout { display: flex; flex-direction: column; gap: 10px; padding: 20px; background: var(--sand); border-radius: 16px; }
.callout h2 { font-size: 24px; }

/* Story page */
.story-hero { position: relative; height: 420px; overflow: hidden; background: var(--ink); display: flex; align-items: flex-end; }
.story-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,25,20,0) 35%, rgba(30,25,20,0.85) 100%); }
.story-hero .wrap { position: relative; z-index: 1; padding-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }
.story-hero h1 { font-size: 42px; line-height: 1.04; color: #fff; }
.story { max-width: 680px; margin: 0 auto; padding: 44px var(--gutter) 64px; display: flex; flex-direction: column; gap: 22px; }
.story p { font-size: 19px; line-height: 1.7; }
.story .lede { font-family: var(--serif); font-size: 25px; line-height: 1.4; font-weight: 500; }
.story blockquote { margin: 8px 0; padding: 20px 0 20px 20px; border-left: 4px solid var(--accent); font-family: var(--serif); font-style: italic; font-size: 25px; line-height: 1.4; }
.story figure { margin: 10px 0; }
.story figure img { width: 100%; border-radius: 4px; }
.story .turn { font-family: var(--serif); font-weight: 800; font-size: 26px; line-height: 1.25; }
.story .signature { margin-top: 8px; font-size: 26px; }
.story-cta { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; padding: 24px; background: var(--sand); border-radius: 16px; }
.story-cta h2 { font-size: 28px; line-height: 1.1; }

.thanks-icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; }

/* ---------- Desktop ---------- */
@media (min-width: 600px) {
  .pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pay { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  :root { --gutter: 40px; --nav-h: 84px; }
  body { font-size: 18px; }
  .announce { padding: 12px var(--gutter); font-size: 15px; }
  .announce .short { display: none; }
  .announce .long { display: inline; }
  .brand-name { font-size: 28px; }
  .brand-tag { font-size: 13px; }
  .nav-links { display: flex; gap: 28px; font-size: 17px; font-weight: 500; }
  .nav-links a { display: flex; align-items: center; height: 44px; text-decoration: none; }
  .nav-actions { gap: 20px; }
  .nav-phone { display: flex; align-items: center; gap: 8px; height: 44px; font-size: 17px; font-weight: 700; text-decoration: none; white-space: nowrap; }
  .nav-reserve { display: inline-flex; min-height: 48px; }
  .nav-call, .menu-btn, .menu-panel { display: none !important; }

  .section { padding: 112px 0; }
  .section-head { gap: 14px; margin-bottom: 56px; }
  .section-head h2 { font-size: 54px; line-height: 1.05; max-width: 820px; }
  .section-head.split { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 48px; }
  .section-head.split > div { display: flex; flex-direction: column; gap: 14px; }
  .eyebrow { font-size: 16px; }

  .hero .hero-img { object-position: center 58%; }
  .hero::after { background: linear-gradient(270deg, rgba(30,25,20,0.78) 0%, rgba(30,25,20,0.5) 32%, rgba(30,25,20,0) 55%), linear-gradient(0deg, rgba(30,25,20,0.92) 0%, rgba(30,25,20,0.55) 32%, rgba(30,25,20,0) 58%); }
  .hero-copy { width: 540px; margin: 0 max(40px, calc((100% - 1200px) / 2)) 80px auto; padding: 0; gap: 18px; }
  .rule-label { font-size: 16px; gap: 14px; }
  .hero h1 { font-size: 68px; }
  .hero-copy > p { font-size: 20px; line-height: 1.5; }
  .hero .btn-row { gap: 14px; margin-top: 8px; }
  .hero .btn { min-height: 56px; font-size: 18px; }

  .trust { padding: 40px 0; }
  .trust ul { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 40px; }
  .trust li { display: grid; grid-template-columns: 34px 1fr; column-gap: 16px; row-gap: 4px; align-items: start; }
  .trust svg { width: 34px; height: 34px; grid-row: span 2; }
  .trust strong { font-size: 19px; }
  .trust li span { display: block; }

  .shares { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
  .share { padding: 18px; }
  .share-art { height: 220px; }
  .share-art img { width: 360px; max-height: 200px; }
  .share h3 { font-size: 32px; }
  .share-actions { flex-direction: row; }
  .share-actions .btn { flex: 1 1 0; }
  .section-foot { font-size: 16px; margin-top: 40px; }

  .cut-photos { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
  .cut-photos figure:first-child { grid-column: auto; }
  .cut-photos img, .cut-photos figure:first-child img { height: 300px; }
  .cut-photos figcaption b { font-size: 26px; }
  .cut-photos figcaption span { display: block; }
  .cut-types { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; margin-top: 48px; padding-top: 48px; }
  .cut-types span:last-child { font-size: 17px; }

  .ranch { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; align-items: center; }
  .ranch-photos { height: 640px; }
  .ranch-photos .main { position: absolute; left: 0; top: 0; width: 84%; height: 580px; object-position: 62% center; }
  .ranch-photos .inset { display: block; position: absolute; right: 0; bottom: 0; width: 52%; height: 220px; object-fit: cover; border-radius: 4px; border: 8px solid var(--paper); }
  .ranch-copy { gap: 22px; }
  .ranch-copy h2 { font-size: 50px; line-height: 1.06; }
  .ranch-copy p { font-size: 19px; line-height: 1.65; }
  .signature { font-size: 26px; }

  .steps { flex-direction: row; margin: 0; }
  .steps li { flex: 1 1 0; display: flex; flex-direction: column; gap: 14px; padding: 0 24px 0 0; }
  .steps li:not(:last-child)::before { left: 64px; right: 12px; top: 26px; bottom: auto; width: auto; height: 2px; }
  .step-num { width: 52px; height: 52px; font-size: 22px; }
  .steps b { font-size: 21px; padding-top: 0; }
  .steps .desc { margin-top: 0; }
  .steps .pill { margin-top: 0; }
  
  .reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
  .review { padding: 32px; gap: 16px; }
  .review h3 { font-size: 23px; }
  .more-reviews { margin: 32px auto 0; display: flex; width: auto; max-width: 320px; }

  .faq-layout { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 64px; align-items: start; }
  .faq-layout .section-head { margin-bottom: 0; }
  .faq-layout .section-head h2 { font-size: 54px; }
  .faq { grid-column: span 2; }
  .faq summary { font-size: 20px; }

  .reserve { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 80px; align-items: start; }
  .reserve-intro { position: sticky; top: 120px; gap: 24px; }
  .reserve-intro h2 { font-size: 54px; line-height: 1.05; }
  .reserve-intro > p { font-size: 20px; }
  .checks { display: flex; }
  .reserve-intro .ask { display: block; }
  .form-card { padding: 32px; gap: 20px; }

  .footer { padding: 72px 0 120px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: row; justify-content: space-between; flex-wrap: wrap; gap: 24px; }

  .float-bar { left: 50%; right: auto; bottom: 24px; transform: translateX(-50%); gap: 20px; padding: 8px 8px 8px 24px; background: var(--ink); color: var(--paper); border: 0; border-radius: 999px; box-shadow: 0 10px 30px rgba(20,16,12,0.35); white-space: nowrap; }
  .float-bar.is-hidden { transform: translate(-50%, 140%); }
  .float-bar .txt { flex-direction: row; gap: 6px; font-size: 16px; }
  .float-bar .txt b { font-size: 16px; color: #fff; }
  .float-bar .txt span { display: none; }
  .float-bar .txt .wide { display: inline; font-size: 16px; color: var(--paper); }
  .float-bar .btn { border-radius: 999px; }

  .product { padding: 32px 0 72px; }
  .product-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; margin-top: 20px; }
  .product-photo { height: 560px; }
  .product-copy { gap: 18px; padding-top: 8px; }
  .product-copy h1 { font-size: 50px; line-height: 1.04; }
  .product-copy .btn-row { gap: 12px; }
  .inside-layout { grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .inside-layout .sizes { grid-column: 1 / -1; max-width: 560px; }

  .page { padding: 32px var(--gutter) 96px; }
  .page h1 { font-size: 52px; }
  .story-hero { height: 560px; }
  .story-hero h1 { font-size: 64px; max-width: 900px; }
  .story { padding: 72px var(--gutter) 96px; gap: 26px; }
  .story p { font-size: 20px; }
  .story .lede { font-size: 30px; }
  .story blockquote { font-size: 30px; padding-left: 28px; }
}
