:root {
  --espresso: #2b130c;
  --espresso-deep: #1a0b07;
  --caramel: #c56f3d;
  --cream: #f6e9d6;
  --paper: #fffaf3;
  --ink: #20130e;
  --matcha: #8c9a5b;
  --hibiscus: #a73b4a;
  --line: rgba(43, 19, 12, 0.17);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

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

.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;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 5vw;
  color: #fff9ef;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  font-family: sans-serif;
  font-size: 1rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: .9rem;
}

.site-nav a {
  text-decoration: none;
  transition: opacity .2s ease;
}

.site-nav a:hover { opacity: .72; }

.site-nav .nav-cta {
  padding: .65rem 1.1rem;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 760px;
  height: 100svh;
  color: #fff9ef;
  background: var(--espresso-deep);
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image { object-fit: cover; object-position: center; }

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18,6,3,.9) 0%, rgba(28,10,5,.72) 42%, rgba(28,10,5,.13) 75%),
    linear-gradient(0deg, rgba(18,6,3,.58) 0%, transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 82vw);
  margin-left: 8vw;
  padding-top: 5rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: #edb990;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow-dark { color: #9d4e2c; }

h1, h2, h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  font-size: clamp(3.35rem, 7vw, 6.8rem);
  letter-spacing: -.055em;
}

h1 em,
h2 em {
  color: #edb990;
  font-weight: 600;
}

.hero-copy {
  max-width: 570px;
  margin: 1.8rem 0 2.2rem;
  color: rgba(255,249,239,.82);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .8rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-light { color: var(--espresso); background: var(--cream); }
.button-dark { color: #fffaf3; background: var(--espresso); }

.text-link {
  padding: .6rem .1rem;
  border-bottom: 1px solid rgba(255,255,255,.45);
  text-decoration: none;
  font-weight: 600;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 5vw;
  bottom: 2.5rem;
  display: flex;
  gap: 1rem;
  color: rgba(255,249,239,.74);
  text-decoration: none;
  font-size: .85rem;
}

.section {
  padding: 8rem 8vw;
}

.story {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 9vw;
}

.section-number {
  position: absolute;
  top: 2.2rem;
  right: 4vw;
  color: rgba(43,19,12,.05);
  font-family: "Playfair Display", serif;
  font-size: 8rem;
  font-weight: 700;
}

.story h2,
.menu-heading h2,
.events h2,
.instagram h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -.045em;
}

.story-copy .lead {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.3vw, 2.05rem);
  line-height: 1.35;
}

.story-copy > p:not(.lead) { color: #6d564d; }

.values {
  display: grid;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.values div {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.values span { font-weight: 700; }
.values small { color: #786158; font-size: .85rem; }

.menu-section {
  color: #fff8ee;
  background: var(--espresso);
}

.menu-heading {
  display: grid;
  grid-template-columns: 1fr .5fr;
  align-items: end;
  gap: 5vw;
  margin-bottom: 4rem;
}

.menu-heading > p {
  max-width: 400px;
  margin: 0 0 .5rem;
  color: rgba(255,248,238,.65);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,.15);
  border-left: 1px solid rgba(255,255,255,.15);
}

.drink-card {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 1.6rem;
  min-height: 270px;
  padding: 2rem;
  border-right: 1px solid rgba(255,255,255,.15);
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.card-number {
  position: absolute;
  top: 1.25rem;
  right: 1.4rem;
  color: rgba(255,255,255,.4);
  font-size: .75rem;
}

.drink-orbit {
  display: grid;
  place-items: center;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, rgba(255,255,255,.2), transparent 45%);
}

.drink-orbit span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
}

.coffee span { color: #f4d9b5; background: #5e2d1d; }
.matcha span { color: #f6f0d8; background: var(--matcha); }
.hibiscus span { color: #fff0f0; background: var(--hibiscus); }
.chai span { color: #3e1c11; background: #d79c64; }

.drink-card h3 {
  margin-bottom: .8rem;
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
}

.drink-card p {
  margin: 0;
  color: rgba(255,248,238,.62);
  font-size: .95rem;
}

.menu-note {
  margin: 1.2rem 0 0;
  color: rgba(255,248,238,.5);
  font-size: .8rem;
}

.events {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 8vw;
  align-items: center;
  background: #efc89c;
}

.events-panel > p:not(.eyebrow) {
  max-width: 640px;
  margin: 1.7rem 0 2rem;
  color: #5b3829;
}

.event-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.event-email {
  color: #4d2b1e;
  font-size: .9rem;
  font-weight: 700;
  text-underline-offset: .25rem;
}

.event-list { border-top: 1px solid rgba(43,19,12,.3); }

.event-list div {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(43,19,12,.3);
}

.event-list span { color: #966039; font-size: .8rem; }
.event-list strong { font-family: "Playfair Display", serif; font-size: 1.25rem; }

.instagram {
  text-align: center;
  background: var(--paper);
}

.instagram > p:not(.eyebrow) {
  margin: 1.4rem auto 2.3rem;
  color: #745e55;
}

.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: .85rem 0;
  border-bottom: 2px solid var(--espresso);
  text-decoration: none;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
}

.contact-email {
  display: block;
  width: fit-content;
  margin: 1.5rem auto 0;
  color: #745e55;
  font-size: .95rem;
  text-underline-offset: .25rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 3rem;
  padding: 2rem 5vw;
  color: rgba(255,249,239,.68);
  background: var(--espresso-deep);
  font-size: .8rem;
}

.footer-brand {
  color: #fff9ef;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

footer a {
  color: inherit;
  text-underline-offset: .2rem;
}

@media (max-width: 900px) {
  .section { padding: 6rem 6vw; }
  .story, .events { grid-template-columns: 1fr; gap: 3rem; }
  .menu-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .hero-content { margin-left: 6vw; }
  footer { grid-template-columns: 1fr; gap: .4rem; }
  footer p { margin: 0; }
}

@media (max-width: 720px) {
  .site-header { min-height: 72px; padding: 0 5vw; }
  .brand { font-size: 1rem; }
  .brand-mark { width: 2rem; height: 2rem; }
  .menu-toggle {
    position: relative;
    z-index: 25;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    color: inherit;
    background: transparent;
    border: 0;
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 23px;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: none;
    align-content: center;
    justify-items: center;
    gap: 1.7rem;
    padding: 6rem 2rem;
    color: #fff8ee;
    background: rgba(26,11,7,.98);
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
  }
  .site-nav.open { display: grid; }
  .site-nav .nav-cta { font-family: "DM Sans", sans-serif; font-size: .95rem; }
  .hero {
    min-height: 740px;
    height: 100svh;
    align-items: end;
  }
  .hero-image { object-position: 62% center; }
  .hero-shade {
    background:
      linear-gradient(0deg, rgba(18,6,3,.96) 0%, rgba(22,7,3,.72) 60%, rgba(22,7,3,.23) 100%);
  }
  .hero-content {
    width: 90vw;
    margin: 0 auto;
    padding: 8rem 0 7rem;
  }
  h1 { font-size: clamp(3rem, 13vw, 4.5rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: .9rem; }
  .scroll-cue { display: none; }
  .section { padding: 5rem 5vw; }
  .story h2, .menu-heading h2, .events h2, .instagram h2 { font-size: clamp(2.55rem, 11vw, 3.7rem); }
  .values div { grid-template-columns: 1fr; gap: .1rem; }
  .drink-card {
    grid-template-columns: 105px 1fr;
    min-height: 220px;
    padding: 1.4rem;
    gap: 1rem;
  }
  .drink-orbit { width: 96px; height: 96px; }
  .drink-orbit span { width: 65px; height: 65px; font-size: 1.5rem; }
  .drink-card h3 { font-size: 1.55rem; }
}

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