:root {
  --pine: #173d2d;
  --pine-deep: #0d2c21;
  --cream: #f7f1e4;
  --paper: #fffcf6;
  --gold: #d99a32;
  --rust: #a84d2f;
  --ink: #1d2923;
  --muted: #647168;
  --line: #d9ddcf;
  --shadow: 0 20px 60px rgba(18, 45, 33, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: "DM Sans", system-ui, sans-serif; font-size: 16px; line-height: 1.55; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }

.site-header { height: 82px; padding: 0 clamp(20px, 5vw, 72px); display: flex; align-items: center; justify-content: space-between; background: var(--paper); border-bottom: 1px solid rgba(23,61,45,.12); }
.brand { display: flex; gap: 12px; align-items: center; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--pine); color: var(--cream); font-family: "Fraunces", serif; font-weight: 700; letter-spacing: -.05em; }
.brand strong, .brand small { display: block; }
.brand strong { font-family: "Fraunces", serif; font-size: 1.05rem; line-height: 1.2; }
.brand small { color: var(--muted); font-size: .75rem; letter-spacing: .03em; }
.header-link { font-weight: 700; color: var(--pine); text-underline-offset: 4px; }

main { overflow: hidden; }
.intro { max-width: 1280px; margin: 36px auto 70px; padding: 0 28px; display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(330px, .7fr); gap: 0; align-items: center; }
.photo-panel { min-height: 560px; position: relative; overflow: hidden; border-radius: 26px; box-shadow: var(--shadow); }
.photo-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,28,20,.86) 0%, rgba(7,28,20,.54) 42%, rgba(7,28,20,.04) 75%); }
.intro-copy { position: absolute; z-index: 1; left: clamp(26px, 5vw, 64px); bottom: 54px; max-width: 490px; color: white; }
.eyebrow { margin: 0 0 12px; text-transform: uppercase; font-size: .78rem; font-weight: 700; letter-spacing: .17em; color: #ffd994; }
.eyebrow.dark { color: var(--rust); }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.05; margin-top: 0; }
h1 { margin-bottom: 18px; font-size: clamp(2.7rem, 6vw, 5rem); letter-spacing: -.045em; }
.intro-copy > p:last-child { margin: 0; font-size: 1.1rem; max-width: 440px; color: rgba(255,255,255,.86); }

.order-card { position: relative; z-index: 2; margin-left: -50px; padding: 38px; background: var(--paper); border: 1px solid rgba(23,61,45,.11); border-radius: 22px; box-shadow: var(--shadow); }
.availability-row { margin-bottom: 14px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 12px; }
.availability-row .eyebrow { margin-bottom: 0; }
.availability-badge { padding: 5px 9px; border-radius: 999px; background: #f6e7cd; color: #7f391f; font-size: .76rem; font-weight: 700; white-space: nowrap; }
.order-card h2 { margin-bottom: 24px; color: var(--pine); font-size: 3rem; letter-spacing: -.04em; }
.order-card h2 span { font-family: "DM Sans", sans-serif; color: var(--muted); font-size: .9rem; letter-spacing: 0; }
.order-card dl { margin: 0 0 22px; }
.order-card dl div { display: flex; justify-content: space-between; gap: 24px; padding: 13px 0; border-top: 1px solid var(--line); }
.order-card dt { color: var(--muted); }
.order-card dd { margin: 0; font-weight: 700; text-align: right; }
.fine-print { margin: 0 0 24px; color: var(--muted); font-size: .88rem; }
.primary-button, .venmo-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 8px; text-decoration: none; font-weight: 700; }
.primary-button { width: 100%; background: var(--pine); color: white; }

.reservation-section { max-width: 940px; margin: 0 auto 90px; padding: 0 28px; }
.section-heading { max-width: 680px; margin-bottom: 28px; }
.section-heading h2 { margin-bottom: 14px; font-size: clamp(2.3rem, 5vw, 3.6rem); letter-spacing: -.035em; color: var(--pine); }
.section-heading > p:last-child { margin: 0; color: var(--muted); font-size: 1.08rem; }
form { padding: clamp(24px, 5vw, 54px); border-radius: 24px; background: var(--paper); border: 1px solid rgba(23,61,45,.12); box-shadow: var(--shadow); }
fieldset { margin: 0 0 34px; padding: 0 0 34px; border: 0; border-bottom: 1px solid var(--line); }
legend { width: 100%; margin-bottom: 18px; font-family: "Fraunces", serif; font-size: 1.55rem; font-weight: 700; color: var(--pine); }
.field-grid { display: grid; gap: 18px; }
.two-columns { grid-template-columns: 1fr 1fr; }
label { display: grid; gap: 7px; font-size: .9rem; font-weight: 700; color: #34463c; }
input[type="text"], input[type="email"], input[type="tel"], select, textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #bfc8bd; border-radius: 8px; background: white; color: var(--ink); outline: none; transition: border-color .2s, box-shadow .2s; }
textarea { min-height: 90px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--pine); box-shadow: 0 0 0 3px rgba(23,61,45,.13); }
.field-help { margin: -8px 0 16px; color: var(--muted); font-size: .9rem; }
.choice-grid { display: grid; gap: 12px; }
.weight-grid { grid-template-columns: repeat(3, 1fr); }
.pickup-grid { grid-template-columns: 1fr 1fr; }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { min-height: 88px; padding: 17px; display: flex; flex-direction: column; justify-content: center; border: 1px solid #c7cec3; border-radius: 10px; background: white; transition: .18s ease; }
.choice strong, .choice small { display: block; }
.choice strong { font-size: .98rem; color: var(--ink); }
.choice small { margin-top: 3px; font-size: .78rem; font-weight: 500; color: var(--muted); }
.choice input:checked + span { border-color: var(--pine); background: #edf3ed; box-shadow: inset 0 0 0 1px var(--pine); }
.choice input:focus-visible + span { box-shadow: 0 0 0 3px rgba(23,61,45,.2); }
.acknowledgment { margin-top: 16px; display: flex; grid-template-columns: none; gap: 10px; align-items: flex-start; font-weight: 500; line-height: 1.45; }
.acknowledgment input { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--pine); }
.notes-label span { font-size: .78rem; color: var(--muted); font-weight: 500; }
.deposit-box { margin: 34px 0 20px; padding: 24px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; border-radius: 16px; background: var(--pine); color: white; }
.step-label { margin: 0 0 5px; text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 700; color: #ffd994; }
.deposit-box h3 { margin-bottom: 10px; font-size: 1.75rem; }
.deposit-box p:not(.step-label) { margin: 0 0 18px; color: rgba(255,255,255,.78); font-size: .92rem; }
.venmo-button { min-height: 44px; padding: 0 18px; background: white; color: var(--pine); }
.qr-link { padding: 10px; display: grid; justify-items: center; align-self: stretch; text-decoration: none; border-radius: 10px; background: white; color: var(--pine); font-size: .72rem; font-weight: 700; }
.qr-link img { width: 122px; height: 122px; image-rendering: pixelated; }
.final-ack { margin: 0 0 22px; }
.submit-button { width: 100%; min-height: 58px; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; border: 0; border-radius: 9px; background: var(--rust); color: white; font-weight: 700; cursor: pointer; transition: background .2s, transform .1s; }
.submit-button:hover { background: #8f3e26; }
.submit-button:active { transform: translateY(1px); }
.submit-button:disabled { opacity: .65; cursor: wait; }
.submit-note { margin: 10px 0 0; text-align: center; color: var(--muted); font-size: .82rem; }
.form-status { margin-top: 14px; padding: 0; border-radius: 8px; font-weight: 600; }
.form-status.success, .form-status.error { padding: 14px; }
.form-status.success { background: #e7f3e9; color: #1d6334; }
.form-status.error { background: #f9e7e1; color: #84351f; }
.honey { position: absolute !important; left: -9999px !important; }

.faq-section { max-width: 940px; margin: 0 auto 90px; padding: 0 28px; }
.faq-list { overflow: hidden; border: 1px solid rgba(23,61,45,.14); border-radius: 20px; background: var(--paper); box-shadow: var(--shadow); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { position: relative; padding: 22px 58px 22px 24px; color: var(--pine); font-family: "Fraunces", Georgia, serif; font-size: 1.18rem; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 50%; right: 24px; transform: translateY(-50%); color: var(--rust); font-family: "DM Sans", sans-serif; font-size: 1.5rem; line-height: 1; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list summary:focus-visible { outline: 3px solid rgba(23,61,45,.22); outline-offset: -3px; }
.faq-list p { max-width: 760px; margin: -4px 58px 22px 24px; color: var(--muted); }

footer { padding: 34px clamp(24px, 6vw, 80px); display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--pine-deep); color: white; }
footer strong, footer span { display: block; }
footer span { color: rgba(255,255,255,.62); font-size: .83rem; }
footer a { font-weight: 700; color: #ffd994; }

@media (max-width: 850px) {
  .intro { grid-template-columns: 1fr; margin-top: 22px; }
  .photo-panel { min-height: 500px; }
  .order-card { width: calc(100% - 34px); margin: -42px auto 0; }
  .weight-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .site-header { height: 72px; padding: 0 16px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand small { display: none; }
  .header-link { font-size: .85rem; }
  .intro { margin-bottom: 58px; padding: 0 14px; }
  .photo-panel { min-height: 430px; border-radius: 18px; }
  .photo-shade { background: linear-gradient(0deg, rgba(7,28,20,.88) 0%, rgba(7,28,20,.38) 60%, rgba(7,28,20,.03) 100%); }
  .intro-copy { left: 24px; right: 24px; bottom: 68px; }
  h1 { font-size: 2.75rem; }
  .intro-copy > p:last-child { font-size: 1rem; }
  .order-card { width: calc(100% - 24px); margin-top: -46px; padding: 25px; }
  .order-card h2 { font-size: 2.5rem; }
  .reservation-section, .faq-section { padding: 0 14px; margin-bottom: 58px; }
  form { padding: 24px 18px; border-radius: 16px; }
  .two-columns, .weight-grid, .pickup-grid { grid-template-columns: 1fr; }
  .choice span { min-height: 72px; }
  .deposit-box { grid-template-columns: 1fr; }
  .qr-link { max-width: 165px; }
  .faq-list summary { padding: 19px 52px 19px 19px; }
  .faq-list summary::after { right: 19px; }
  .faq-list p { margin: -2px 19px 20px; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
