/* =====================================================
   DESCANSO ON THE GREENBELT
   Open-air plaza bar — Boise, Idaho.
   Cream paper, deep forest green, spritz coral.
   ===================================================== */

:root {
  --cream: #f5efe3;
  --cream-warm: #ede5d3;
  --paper: #faf6ec;
  --forest: #1f3329;
  --forest-deep: #16241c;
  --moss: #5a7563;
  --coral: #c97351;
  --coral-deep: #a85a3d;
  --gold: #d4a05a;
  --ink: #1a2620;
  --ink-soft: #4b574e;
  --rule: rgba(31, 51, 41, 0.18);

  --display: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Italianno", "Cormorant Garamond", cursive;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--forest);
}

p { margin: 0; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral);
}

.eyebrow--moss { color: var(--moss); }

.divider {
  width: 48px;
  height: 6px;
  background: transparent;
  position: relative;
  margin: 16px 0 20px;
}
.divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ============== LOGO ============== */

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--display);
  position: relative;
  line-height: 1;
}
.logo__name {
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.005em;
  color: var(--forest);
  position: relative;
  z-index: 2;
  padding: 0 8px;
}
.logo__sun {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 30px;
  border-top-left-radius: 100% 100%;
  border-top-right-radius: 100% 100%;
  border: 2px solid var(--coral);
  border-bottom: 0;
  z-index: 1;
}
.logo__tag {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 4px;
  border-top: 1px solid var(--coral);
  padding-top: 4px;
  font-weight: 600;
}

.logo--lg .logo__name { font-size: 56px; }
.logo--lg .logo__sun { height: 50px; top: -20px; }
.logo--lg .logo__tag { font-size: 11px; }

.logo--inverse .logo__name { color: var(--cream); }
.logo--inverse .logo__sun { border-color: var(--gold); }
.logo--inverse .logo__tag { color: var(--gold); border-color: var(--gold); }

/* ============== NAV ============== */

.nav {
  background: var(--cream);
  border-bottom: 1px solid rgba(31, 51, 41, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav__menu {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.nav__menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  position: relative;
  padding: 6px 0;
  transition: color 200ms;
}
.nav__menu a:hover,
.nav__menu a.is-active {
  color: var(--coral);
}
.nav__menu a.is-active::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 2px;
  background: var(--coral);
}
.nav__cta {
  display: flex;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--forest);
  color: var(--cream);
  border: 1px solid var(--forest);
  cursor: pointer;
  transition: transform 120ms ease, background 200ms ease;
}
.btn:hover { transform: translateY(-1px); background: var(--forest-deep); }

.btn--coral { background: var(--coral); border-color: var(--coral); }
.btn--coral:hover { background: var(--coral-deep); border-color: var(--coral-deep); }

.btn--ghost { background: transparent; color: var(--forest); }
.btn--ghost:hover { background: var(--forest); color: var(--cream); }

.btn--outline {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
}
.btn--outline:hover { background: var(--coral); color: var(--cream); }

/* ============== POPUP ============== */

.popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 360px;
  background: var(--paper);
  border: 1px solid var(--forest);
  padding: 28px;
  z-index: 100;
  transform: translateY(20px);
  opacity: 0;
  transition: all 350ms ease;
  pointer-events: none;
  box-shadow: 0 30px 60px -20px rgba(31,51,41,0.25);
}
.popup.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.popup .eyebrow { margin-bottom: 8px; }
.popup h3 {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.popup h3 em { font-style: italic; color: var(--coral); }
.popup p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.popup__cta { margin-top: 18px; display: flex; gap: 10px; }
.popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: 0;
  color: var(--forest);
  font-size: 20px;
  cursor: pointer;
}
.popup__leaf {
  position: absolute;
  top: 12px;
  left: -20px;
  width: 60px;
  height: 80px;
  color: var(--moss);
  opacity: 0.4;
  pointer-events: none;
}

/* ============== HERO ============== */

.hero {
  position: relative;
  padding: clamp(40px, 5vw, 64px) var(--gutter) clamp(40px, 5vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: 70vh;
}
.hero__title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.hero__title em {
  font-style: italic;
  color: var(--coral);
}
.hero__lead {
  font-size: 17px;
  line-height: 1.6;
  margin-top: 24px;
  max-width: 42ch;
  color: var(--ink-soft);
}
.hero__cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  background: var(--forest);
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--paper);
  padding: 12px 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
}
.hero__caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(31,51,41,0.85);
  color: var(--cream);
  padding: 10px 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.005em;
}

/* ============== FEATURE TRIPTYCH ============== */

.triptych {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--paper);
  margin-top: -40px;
  position: relative;
  z-index: 2;
}
.triptych__cell {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.triptych__cell:last-child { border-right: 0; }
.triptych__icon {
  width: 36px;
  height: 36px;
  color: var(--coral);
  margin-bottom: 4px;
}
.triptych__cell h3 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral);
}
.triptych__cell p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============== SECTION ============== */

section { position: relative; }

.section {
  padding: clamp(60px, 8vw, 120px) var(--gutter);
}
.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section__head h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-style: italic;
  font-weight: 400;
}
.section__head h2 strong { font-style: normal; font-weight: 500; }
.section__head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.section--cream { background: var(--cream-warm); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--cream); }
.section--forest .section__head p { color: rgba(245,239,227,0.8); }
.section--forest .eyebrow { color: var(--gold); }

/* ============== HOURS / LOCATION ============== */

.hours-row {
  background: var(--cream-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px var(--gutter);
}
.hours-row__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 48px;
  align-items: center;
}
.hours-row h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
}
.hours-row .hours {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hours-row .hours div span:first-child {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-bottom: 4px;
}
.hours-row .hours div span:last-child {
  font-family: var(--display);
  font-size: 20px;
  color: var(--forest);
  font-weight: 500;
}
.hours-row__address {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.hours-row__address strong {
  color: var(--forest);
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

/* ============== MENU PROMO ============== */

.menu-promo {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
  border-radius: 6px;
}
.menu-promo__media {
  background: var(--forest);
  position: relative;
  min-height: 480px;
}
.menu-promo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.menu-promo__body {
  padding: clamp(36px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}
.menu-promo__body h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-style: italic;
  line-height: 1.05;
}
.menu-promo__body h2 strong { font-style: normal; }
.menu-promo__body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.menu-promo__partners {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.menu-promo__partners small {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.partner {
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--forest);
  padding: 4px 12px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: var(--cream);
}

/* ============== HAPPENINGS ============== */

.happenings {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.happenings__row { display: flex; flex-direction: column; gap: 20px; }
.happenings__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 12px;
}
.happenings__head h3 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral);
}
.happenings__head a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral);
}

.happenings__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.happening {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms;
}
.happening:hover { transform: translateY(-2px); }
.happening__media {
  aspect-ratio: 16/11;
  overflow: hidden;
  position: relative;
  background: var(--forest);
}
.happening__media img { width:100%; height:100%; object-fit:cover; }
.happening__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--forest);
  color: var(--cream);
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.happening__tag--nearby { background: var(--coral); }
.happening__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.happening__date {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.happening h4 {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.005em;
  font-style: italic;
  font-weight: 500;
  color: var(--forest);
}
.happening p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ============== PRESS / CONTACT SPLIT ============== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.split-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  border-radius: 4px;
  min-height: 300px;
}
.split-card__leaf {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 100px;
  height: 130px;
  color: var(--moss);
  opacity: 0.18;
  pointer-events: none;
}
.split-card h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 36px;
  letter-spacing: -0.005em;
  font-weight: 500;
}
.split-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38ch;
}
.split-card .btn { margin-top: auto; align-self: flex-start; }

/* ============== PRESS PAGE ============== */

.press-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.press-item {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 28px 24px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.press-item .source {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--forest);
}
.press-item p {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.3;
  font-style: italic;
  color: var(--forest);
}
.press-item a {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}

.quote-feature {
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 64px;
}
.quote-feature blockquote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  max-width: 28ch;
  margin: 0 auto;
  color: var(--forest);
}
.quote-feature cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}

/* ============== CONTACT PAGE ============== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 5vw, 80px);
  margin-top: 56px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.contact-info__row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.contact-info__row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-info__row svg { color: var(--coral); width: 20px; height: 20px; margin-top: 4px; }
.contact-info__row .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}
.contact-info__row .value {
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
  color: var(--forest);
  line-height: 1.25;
  margin-top: 2px;
}
.contact-info__row a { color: var(--coral); border-bottom: 1px solid currentColor; font-family: var(--sans); font-size: 14px; font-style: normal; }

.contact-form {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 36px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  margin-bottom: 6px;
}
.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  border-radius: 3px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--coral);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button { align-self: stretch; margin-top: 8px; justify-content: center; }

.insta-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 56px;
}
.insta {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 3px;
  background: var(--forest);
}
.insta img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms; }
.insta:hover img { transform: scale(1.04); }

/* ============== MAP ============== */

.map {
  aspect-ratio: 16/8;
  overflow: hidden;
  background: var(--forest);
  border: 1px solid var(--rule);
  margin-top: 56px;
}
.map iframe { width:100%; height:100%; border: 0; filter: hue-rotate(-10deg) saturate(0.9); }

/* ============== HOW IT WORKS ============== */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
}
.step__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 64px;
  color: var(--coral);
  line-height: 1;
}
.step h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  margin-top: -10px;
}
.step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============== KITCHEN PARTNERS ============== */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.partner-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.partner-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--forest);
}
.partner-card__media img { width: 100%; height: 100%; object-fit: cover; }
.partner-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.partner-card__body h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
}
.partner-card__body h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.005em;
}
.partner-card__body p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.partner-card__body a {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
  margin-top: 8px;
}

/* ============== PAGE HEADER ============== */

.page-header {
  padding: clamp(48px, 7vw, 110px) var(--gutter) clamp(40px, 6vw, 80px);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.page-header h1 {
  font-size: clamp(48px, 7vw, 100px);
  line-height: 1;
  font-style: italic;
  font-weight: 500;
}
.page-header h1 strong { font-style: normal; font-weight: 500; }
.page-header p {
  margin: 24px auto 0;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============== DRINKS MENU ============== */

.drinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(32px, 5vw, 80px);
  row-gap: 24px;
  margin-top: 48px;
}
.drink {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--rule);
}
.drink h3 {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.drink .price {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.05em;
}
.drink p {
  grid-column: 1 / -1;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.drink .tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral);
  background: rgba(201,115,81,0.1);
  padding: 2px 8px;
  border-radius: 2px;
  margin-top: 4px;
}

.menu-section { padding: clamp(48px, 7vw, 96px) var(--gutter); max-width: var(--max); margin: 0 auto; }
.menu-section + .menu-section { border-top: 1px solid var(--rule); }
.menu-section__head {
  text-align: center;
  margin-bottom: 24px;
}
.menu-section__head h2 {
  font-size: clamp(36px, 4.5vw, 64px);
  font-style: italic;
}
.menu-section__head .eyebrow { margin-bottom: 12px; display: inline-block; }

/* ============== FOOTER ============== */

.footer {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(48px, 6vw, 88px) var(--gutter) 32px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,239,227,0.18);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__brand p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,239,227,0.78);
  max-width: 32ch;
}
.footer h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer ul a { font-size: 14px; color: rgba(245,239,227,0.85); }
.footer ul a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,239,227,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============== UTIL ============== */

.reveal { opacity: 0; transform: translateY(24px); transition: all 750ms cubic-bezier(0.2,0.7,0.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============== RESPONSIVE ============== */

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .triptych { grid-template-columns: 1fr; }
  .triptych__cell { border-right: 0; border-bottom: 1px solid var(--rule); }
  .triptych__cell:last-child { border-bottom: 0; }
  .hours-row__inner { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .hours-row .hours { grid-template-columns: 1fr 1fr; }
  .menu-promo { grid-template-columns: 1fr; }
  .menu-promo__media { min-height: 320px; }
  .happenings__cards { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .nav__menu { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .press-list { grid-template-columns: 1fr 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .insta-strip { grid-template-columns: 1fr 1fr; }
  .drinks-grid { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .happenings__cards { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .press-list { grid-template-columns: 1fr; }
  .popup { left: 16px; right: 16px; width: auto; bottom: 16px; }
  .insta-strip { grid-template-columns: 1fr 1fr; }
  .nav__inner { padding: 12px var(--gutter); gap: 12px; }
  .nav__cta .btn { padding: 8px 14px; font-size: 11px; letter-spacing: 0.12em; }
  .logo__name { font-size: 22px; }
  .logo__sun { height: 22px; top: -7px; }
  .logo__tag { font-size: 7px; }
  .eyebrow { letter-spacing: 0.18em; font-size: 10px; }
  .hero { padding-bottom: 0; }
  .hero__inner { min-height: auto; padding-top: 24px; padding-bottom: 32px; gap: 28px; }
  .hero__title { font-size: clamp(40px, 12vw, 72px); }
  .hero__lead { font-size: 15px; }
  .hero__cta { gap: 10px; }
  .hero__badge { padding: 8px 12px; font-size: 10px; letter-spacing: 0.16em; }
  .hero__caption { font-size: 14px; padding: 8px 10px; bottom: 16px; left: 16px; }
  .triptych { margin-top: -24px; }
  .triptych__cell { padding: 28px 24px; }
  .section__head h2 { font-size: clamp(32px, 11vw, 52px); line-height: 1.05; }
  .section__head p { font-size: 15px; }
  .page-header h1 { font-size: clamp(40px, 13vw, 72px); }
  .page-header p { font-size: 15px; }
  .menu-section__head h2 { font-size: clamp(32px, 10vw, 52px); }
  .happenings__cards { gap: 14px; }
  .happenings__head h3 { font-size: 11px; letter-spacing: 0.18em; }
  .hours-row .hours { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer__brand img { max-width: 220px; }
  .btn { padding: 10px 16px; font-size: 11px; letter-spacing: 0.12em; }
  /* Defensive */
  body, h1, h2, h3, h4, p { overflow-wrap: break-word; word-wrap: break-word; }
  .menu-promo { box-shadow: none; }
  .split-card, .quote-feature { box-shadow: none; }
  .step { box-shadow: none; }
}
