:root {
  --cream: #fff8f3;
  --paper: #fffdfb;
  --pink: #d97862;
  --pink-dark: #ad5849;
  --blush: #f6d7c8;
  --peach: #e9a17f;
  --sage: #7e8767;
  --olive: #555c3c;
  --plum: #342b3d;
  --muted: #746873;
  --line: #e9ded8;
  --gold: #e7aa48;
  --shadow: 0 22px 60px rgba(83, 53, 65, .10);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--plum);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--plum);
  color: white;
  padding: 12px 16px;
  border-radius: 10px;
}
.skip-link:focus { top: 12px; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-logo { display: block; width: auto; height: 92px; object-fit: contain; }
.brand-header .brand-logo { height: 96px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  color: white;
  background: var(--pink);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
}
.brand strong { display: block; font-family: Georgia, serif; font-size: 25px; letter-spacing: -.5px; }
.brand small { display: block; color: var(--pink-dark); font-size: 10px; font-weight: 800; letter-spacing: 2.1px; text-transform: uppercase; }
.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(52, 43, 61, .18);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.header-cta:hover { background: white; transform: translateY(-1px); }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 630px;
  margin: 16px auto 96px;
  padding: clamp(36px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
  overflow: hidden;
  position: relative;
  border-radius: 42px;
  background:
    radial-gradient(circle at 87% 16%, rgba(255,255,255,.72) 0 10%, transparent 10.4%),
    linear-gradient(135deg, #f8e3d7 0%, #f2c9b8 47%, #eaa786 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -165px;
  bottom: -180px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(255,255,255,.12), 0 0 0 60px rgba(255,255,255,.08);
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.03; }
h1 { margin-bottom: 22px; font-size: clamp(48px, 6vw, 78px); letter-spacing: -3px; }
h1 em { color: var(--pink-dark); font-weight: 400; }
.hero-intro { max-width: 565px; margin-bottom: 30px; color: #5f505a; font-size: clamp(17px, 2vw, 20px); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .filter:focus-visible, .qty-button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible { outline: 3px solid rgba(173, 88, 73, .35); outline-offset: 3px; }
.button-primary { color: white; background: var(--plum); box-shadow: 0 12px 28px rgba(52,43,61,.18); }
.button-primary:hover { box-shadow: 0 14px 34px rgba(52,43,61,.24); }
.button-secondary { color: var(--plum); background: #f2ece8; }
.text-link { color: var(--plum); font-weight: 800; text-decoration-color: rgba(52,43,61,.3); text-underline-offset: 5px; }
.hero-notes { display: flex; flex-wrap: wrap; gap: 17px 24px; margin: 34px 0 0; padding: 0; list-style: none; color: #6b5964; font-size: 13px; font-weight: 700; }
.hero-notes li::before { content: "✦"; margin-right: 8px; color: white; }
.hero-art { min-height: 450px; position: relative; z-index: 1; }
.hero-photo { margin: 0; position: absolute; overflow: hidden; border: 10px solid rgba(255,255,255,.88); box-shadow: 0 30px 70px rgba(91, 42, 55, .20); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { width: min(78%, 375px); aspect-ratio: 4/5; right: 4%; top: 0; border-radius: 46% 46% 24px 24px; transform: rotate(2deg); }
.hero-photo-small { width: min(47%, 220px); aspect-ratio: 1; left: 0; bottom: 8px; border-radius: 50%; transform: rotate(-5deg); }
.joy-note { position: absolute; right: -6px; bottom: 32px; width: 130px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; background: var(--paper); border-radius: 50%; box-shadow: var(--shadow); transform: rotate(7deg); }
.joy-note span { color: var(--pink-dark); font-size: 11px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; }
.joy-note strong { font-family: Georgia, serif; font-size: 38px; font-style: italic; font-weight: 400; line-height: .9; }

.menu-section, .inquiry-section { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.menu-section { padding-bottom: 112px; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 420px); align-items: end; gap: 32px; margin-bottom: 28px; }
.section-heading h2, .inquiry-intro h2 { margin-bottom: 0; font-size: clamp(40px, 4.6vw, 64px); letter-spacing: -2px; }
.section-heading > p { margin-bottom: 6px; color: var(--muted); font-size: 15px; }
.filters { display: flex; gap: 8px; overflow-x: auto; padding: 3px 3px 18px; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filter { flex: 0 0 auto; padding: 10px 16px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-size: 14px; font-weight: 750; }
.filter.is-active { color: white; border-color: var(--plum); background: var(--plum); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.menu-empty { grid-column: 1 / -1; min-height: 220px; display: grid; place-content: center; justify-items: center; padding: 34px; color: var(--muted); text-align: center; background: var(--paper); border: 1px solid rgba(80,54,68,.08); border-radius: var(--radius); }
.menu-empty span { color: var(--pink); font-family: Georgia, serif; font-size: 42px; }
.menu-empty strong { margin: 2px 0 5px; color: var(--plum); font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.menu-empty p { margin: 0; font-size: 13px; }
.drink-card { min-width: 0; overflow: hidden; display: flex; flex-direction: column; background: var(--paper); border: 1px solid rgba(80,54,68,.08); border-radius: var(--radius); box-shadow: 0 12px 34px rgba(83,53,65,.06); transition: transform .25s, box-shadow .25s; }
.drink-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.drink-photo { position: relative; margin: 0; aspect-ratio: 1.18; overflow: hidden; background: #f3ebe7; }
.drink-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.drink-card:hover .drink-photo img { transform: scale(1.025); }
.photo-trigger { position: absolute; inset: 0; width: 100%; border: 0; cursor: zoom-in; background: transparent; }
.photo-trigger span { position: absolute; right: 13px; bottom: 13px; padding: 7px 10px; color: var(--plum); background: rgba(255,255,255,.9); border-radius: 999px; font-size: 11px; font-weight: 800; box-shadow: 0 5px 20px rgba(52,43,61,.12); }
.photo-placeholder { width: 100%; height: 100%; display: grid; place-content: center; gap: 8px; text-align: center; color: rgba(52,43,61,.7); background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.75) 0 7%, transparent 7.5%), linear-gradient(145deg, #f5d3c6, #f8e3bc); }
.photo-placeholder.refresh { background: radial-gradient(circle at 68% 28%, rgba(255,255,255,.85) 0 8%, transparent 8.5%), linear-gradient(145deg, #ef9a86, #f9d78d); }
.photo-placeholder span:first-child { font-size: 44px; }
.photo-placeholder b { font-size: 12px; letter-spacing: 1.1px; text-transform: uppercase; }
.drink-body { flex: 1; display: flex; flex-direction: column; padding: 20px; }
.drink-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.category-label { color: var(--pink-dark); font-size: 10px; font-weight: 850; letter-spacing: 1.6px; text-transform: uppercase; }
.price-label { padding: 4px 8px; color: var(--muted); background: #f4eeea; border-radius: 999px; font-size: 11px; font-weight: 800; }
.drink-body h3 { margin-bottom: 9px; font-size: 27px; letter-spacing: -.5px; }
.drink-description { min-height: 67px; margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.drink-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(125px, 1fr)); gap: 9px; margin: 0 0 18px; }
.drink-option-field { min-width: 0; display: grid; gap: 5px; }
.drink-option-field > span { color: #655962; font-size: 10px; font-weight: 850; letter-spacing: .8px; text-transform: uppercase; }
.drink-option-field select { width: 100%; min-height: 42px; padding: 9px 32px 9px 11px; color: var(--plum); border: 1px solid var(--line); border-radius: 12px; background: white; font-size: 12px; font-weight: 700; outline: none; }
.drink-option-field select:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(217,120,98,.12); }
.drink-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.diet-note { color: #8a7e85; font-size: 11px; font-weight: 700; }
.quantity-control { display: inline-flex; align-items: center; gap: 5px; padding: 4px; background: #f3ece8; border-radius: 999px; }
.qty-button { width: 34px; height: 34px; display: grid; place-items: center; color: var(--plum); border: 0; border-radius: 50%; background: white; cursor: pointer; font-size: 20px; line-height: 1; box-shadow: 0 2px 8px rgba(52,43,61,.08); }
.qty-button:disabled { opacity: .4; cursor: not-allowed; }
.qty-value { width: 26px; text-align: center; font-size: 14px; font-weight: 850; }

.inquiry-section { margin-bottom: 70px; padding: clamp(28px, 4vw, 56px); background: #f2e9df; border-radius: 38px; }
.inquiry-intro { max-width: 780px; margin-bottom: 38px; }
.inquiry-intro > p:not(.eyebrow) { max-width: 640px; margin-top: 18px; color: var(--muted); }
.steps { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.steps span { display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; color: #655962; background: rgba(255,255,255,.7); border-radius: 999px; font-size: 12px; font-weight: 750; }
.steps b { width: 22px; height: 22px; display: grid; place-items: center; color: white; background: var(--pink); border-radius: 50%; font-size: 11px; }
.inquiry-builder { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(420px, 1.22fr); align-items: start; gap: 18px; }
.order-card, .details-card { background: var(--paper); border-radius: var(--radius); padding: 26px; box-shadow: 0 10px 35px rgba(83,53,65,.06); }
.order-card { position: sticky; top: 16px; }
.card-heading { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.card-kicker { margin-bottom: 4px; color: var(--pink-dark); font-size: 10px; font-weight: 850; letter-spacing: 1.7px; text-transform: uppercase; }
.card-heading h3 { margin-bottom: 0; font-size: 28px; }
.item-count, .private-badge { flex: 0 0 auto; padding: 6px 10px; color: var(--muted); background: #f3ece8; border-radius: 999px; font-size: 11px; font-weight: 800; }
.private-badge::before { content: "●"; margin-right: 6px; color: #62a56e; font-size: 8px; }
.cart-empty { min-height: 210px; display: grid; place-content: center; justify-items: center; text-align: center; color: var(--muted); }
.cart-empty > span { color: var(--pink); font-family: Georgia, serif; font-size: 44px; }
.cart-empty p { margin: 2px 0 6px; }
.cart-empty a { color: var(--pink-dark); font-size: 13px; font-weight: 800; }
.cart-items { display: grid; gap: 2px; }
.cart-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.cart-row:last-child { border-bottom: 0; }
.cart-row strong { display: block; font-family: Georgia, serif; font-size: 18px; font-weight: 500; }
.cart-row small { color: var(--muted); }
.cart-row .quantity-control { transform: scale(.9); transform-origin: right center; }
.pricing-note { display: flex; justify-content: space-between; gap: 16px; margin-top: 16px; padding: 13px; background: #fbf3ed; border-radius: 13px; color: var(--muted); font-size: 11px; }
.pricing-note strong { color: var(--plum); text-align: right; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; padding-top: 22px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field > span { color: #655962; font-size: 12px; font-weight: 800; }
.field b { color: var(--pink-dark); }
.field input, .field select, .field textarea { width: 100%; color: var(--plum); border: 1px solid var(--line); border-radius: 13px; background: white; padding: 13px 14px; outline: none; transition: border .2s, box-shadow .2s; }
.field input, .field select { min-height: 49px; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(217,120,98,.12); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #c44355; background: #fff9f9; }
.privacy-note { margin: 18px 0; color: var(--muted); font-size: 11px; }
.privacy-note span { color: #62a56e; margin-right: 5px; }
.prepare-button { width: 100%; }
.form-error { margin: 13px 0 0; color: #b23149; font-size: 13px; font-weight: 700; text-align: center; }

footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 30px 0 50px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; color: var(--muted); border-top: 1px solid var(--line); font-size: 13px; }
.brand-footer .brand-mark { width: 32px; font-size: 21px; }
.brand-footer strong { font-size: 21px; }
.brand-footer small { font-size: 8px; }
.brand-footer .brand-logo { height: 76px; }
footer p { margin: 0; }

.mobile-cart { position: fixed; z-index: 30; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); display: none; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 14px 12px 18px; color: white; background: rgba(52,43,61,.96); backdrop-filter: blur(16px); border-radius: 18px; box-shadow: 0 18px 50px rgba(52,43,61,.3); }
.mobile-cart > span { display: flex; align-items: baseline; gap: 6px; }
.mobile-cart strong { font-size: 20px; }
.mobile-cart small { opacity: .72; font-size: 10px; }
.mobile-cart a { padding: 10px 13px; color: var(--plum); background: white; border-radius: 999px; font-size: 12px; font-weight: 850; text-decoration: none; }

.modal, .photo-modal { padding: 0; border: 0; background: transparent; }
.modal::backdrop, .photo-modal::backdrop { background: rgba(35,26,36,.66); backdrop-filter: blur(6px); }
.modal-shell { width: min(680px, calc(100vw - 30px)); max-height: min(780px, calc(100vh - 30px)); overflow: auto; position: relative; padding: clamp(25px, 5vw, 42px); background: var(--paper); border-radius: 28px; box-shadow: 0 30px 90px rgba(0,0,0,.25); }
.modal-shell h2 { margin-bottom: 13px; font-size: clamp(36px, 5vw, 50px); letter-spacing: -1.5px; }
.modal-shell > p:not(.eyebrow):not(.copy-status) { color: var(--muted); }
.modal-close, .photo-close { position: absolute; z-index: 2; right: 15px; top: 15px; width: 38px; height: 38px; display: grid; place-items: center; color: var(--plum); border: 0; border-radius: 50%; background: rgba(255,255,255,.92); cursor: pointer; font-size: 25px; line-height: 1; box-shadow: 0 5px 20px rgba(0,0,0,.12); }
#inquiry-preview { max-height: 350px; overflow: auto; margin: 22px 0; padding: 20px; white-space: pre-wrap; color: #4a3e47; background: #f6f0eb; border: 1px solid var(--line); border-radius: 15px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; line-height: 1.65; }
.modal-actions { display: flex; gap: 10px; }
.modal-actions .button { flex: 1; }
.copy-status { min-height: 20px; margin: 13px 0 0; color: #3b7c47; font-size: 12px; font-weight: 800; text-align: center; }
.photo-modal { max-width: min(850px, calc(100vw - 24px)); max-height: calc(100vh - 24px); overflow: hidden; border-radius: 26px; background: var(--paper); }
.photo-modal img { max-height: calc(100vh - 100px); width: 100%; object-fit: contain; background: #eadfd9; }
.photo-modal p { margin: 0; padding: 16px 22px; font-family: Georgia, serif; font-size: 20px; text-align: center; }

[hidden] { display: none !important; }

@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr 1fr; gap: 22px; padding: 44px 34px; }
  .hero-art { min-height: 400px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .inquiry-builder { grid-template-columns: 1fr; }
  .order-card { position: static; }
}

@media (max-width: 680px) {
  body { padding-bottom: 80px; }
  .site-header { width: calc(100% - 28px); min-height: 74px; }
  .brand-header .brand-logo { height: 72px; }
  .brand strong { font-size: 22px; }
  .brand small { letter-spacing: 1.6px; }
  .header-cta { padding: 9px 13px; font-size: 12px; }
  .hero { width: calc(100% - 20px); min-height: 0; margin: 6px auto 74px; padding: 38px 24px 24px; grid-template-columns: 1fr; border-radius: 30px; }
  h1 { letter-spacing: -2.5px; }
  .hero-art { min-height: 355px; margin-top: 3px; }
  .hero-photo-main { width: 72%; right: 3%; }
  .hero-photo-small { width: 43%; left: 0; bottom: 0; }
  .joy-note { width: 105px; right: 0; bottom: 14px; }
  .joy-note strong { font-size: 31px; }
  .hero-notes { margin-top: 26px; gap: 10px 16px; font-size: 11px; }
  .menu-section, .inquiry-section { width: calc(100% - 28px); }
  .menu-section { padding-bottom: 76px; }
  .section-heading { grid-template-columns: 1fr; gap: 14px; }
  .section-heading h2, .inquiry-intro h2 { letter-spacing: -1.4px; }
  .menu-grid { grid-template-columns: 1fr; gap: 15px; }
  .drink-card { display: grid; grid-template-columns: 118px 1fr; border-radius: 20px; }
  .drink-photo { height: 100%; min-height: 224px; aspect-ratio: auto; }
  .drink-body { padding: 17px 15px; }
  .drink-meta { display: block; }
  .price-label { display: inline-block; margin-top: 6px; }
  .drink-body h3 { margin-top: 2px; font-size: 23px; }
  .drink-description { min-height: 0; margin-bottom: 12px; font-size: 12px; }
  .drink-options { grid-template-columns: 1fr; gap: 7px; margin-bottom: 12px; }
  .drink-option-field select { min-height: 40px; }
  .drink-footer { align-items: flex-end; }
  .diet-note { max-width: 66px; }
  .photo-trigger span { display: none; }
  .inquiry-section { margin-bottom: 45px; padding: 32px 16px 16px; border-radius: 26px; }
  .steps { display: grid; grid-template-columns: 1fr; }
  .order-card, .details-card { padding: 20px 16px; border-radius: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  footer { width: calc(100% - 28px); grid-template-columns: 1fr; gap: 12px; padding-bottom: 28px; }
  .mobile-cart:not([hidden]) { display: flex; }
  .modal-actions { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
