:root {
  --cream: #f0e6d2;
  --paper: #faf5ea;
  --ink: #20271f;
  --coral: #ef6047;
  --lime: #d9ed74;
  --lavender: #b9add9;
  --line: rgba(32, 39, 31, 0.22);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
::selection { color: var(--ink); background: var(--lime); }

.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;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--lime);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: 88px;
  padding: 14px clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, min-height 250ms ease;
}
.site-header.scrolled {
  min-height: 72px;
  background: rgba(240, 230, 210, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  width: max-content;
  display: grid;
  grid-template-columns: 28px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
}
.brand-mark {
  grid-row: 1 / 3;
  width: 28px;
  display: grid;
  gap: 3px;
  transform: rotate(-5deg);
}
.brand-mark i { display: block; height: 7px; background: var(--ink); }
.brand-mark i:nth-child(1) { background: var(--coral); transform: translateX(2px); }
.brand-mark i:nth-child(2) { background: var(--lime); transform: translateX(-2px); }
.brand-name { font-family: var(--serif); font-size: 25px; font-weight: 700; line-height: 0.9; }
.brand-tag { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.main-nav a { position: relative; font-size: 13px; font-weight: 600; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta {
  justify-self: end;
  padding: 11px 15px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 180ms ease, background 180ms ease;
}
.header-cta:hover { color: var(--cream); background: var(--ink); }
.header-cta span { margin-left: 12px; }
.menu-toggle { display: none; border: 0; background: none; }

.hero {
  min-height: 780px;
  height: min(900px, 100svh);
  padding: 116px clamp(20px, 4vw, 64px) 42px;
  display: grid;
  grid-template-columns: minmax(380px, 0.85fr) minmax(480px, 1.15fr);
  gap: clamp(34px, 5vw, 90px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.eyebrow > span { width: 28px; height: 2px; background: var(--coral); }
.eyebrow-light > span { background: var(--lime); }
.hero h1, .section h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.91;
}
.hero h1 { max-width: 690px; font-size: clamp(64px, 7.5vw, 124px); }
.hero h1 em, .section h2 em { color: var(--coral); font-weight: 500; }
.hero-intro { max-width: 490px; margin: 34px 0 0; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.55; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.button {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.button:hover { transform: translate(-3px, -3px); box-shadow: 5px 5px 0 var(--coral); }
.button-dark { color: var(--cream); background: var(--ink); }
.button-cream { color: var(--ink); background: var(--cream); }
.text-link { padding-block: 5px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 700; }
.text-link span { margin-left: 12px; }
.hero-note { margin-top: clamp(38px, 7vh, 78px); display: flex; align-items: center; gap: 14px; font-size: 11px; font-weight: 600; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-note-number { font-family: var(--serif); font-size: 44px; line-height: 1; }

.hero-visual { position: relative; height: 100%; max-height: 720px; min-height: 570px; }
.hero-photo-wrap {
  position: absolute;
  z-index: 2;
  inset: 3% 0 4% 9%;
  overflow: hidden;
  border-radius: 48% 48% 10px 10px;
  background: #cbbda7;
}
.hero-photo { height: 100%; object-fit: cover; filter: saturate(0.86) contrast(0.98); transition: transform 800ms cubic-bezier(.2,.65,.2,1); }
.hero-photo-wrap:hover .hero-photo { transform: scale(1.035); }
.shape { position: absolute; pointer-events: none; }
.shape-coral { z-index: 1; right: -9%; bottom: 0; width: 54%; aspect-ratio: 1; border-radius: 50% 50% 0 50%; background: var(--coral); }
.shape-lime { z-index: 3; top: 18%; left: 0; width: 21%; aspect-ratio: 1; border-radius: 50% 0 50% 50%; background: var(--lime); mix-blend-mode: hard-light; }
.hero-sticker {
  position: absolute;
  z-index: 5;
  top: 4%;
  right: -2%;
  width: 140px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lavender);
  animation: float 5s ease-in-out infinite;
}
.hero-sticker svg { width: 100%; height: 100%; animation: spin 24s linear infinite; }
.hero-sticker text { font: 700 11px var(--sans); letter-spacing: 0.12em; fill: var(--ink); }
.hero-sticker > span { position: absolute; inset: 0; display: grid; place-items: center; font-size: 34px; }
.open-card {
  position: absolute;
  z-index: 6;
  right: 3%;
  bottom: 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--cream);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--lime);
}
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(217, 237, 116, .14); }
.open-card.closed .status-dot { background: var(--coral); box-shadow: 0 0 0 4px rgba(239, 96, 71, .15); }
.open-card strong, .open-card small { display: block; }
.open-card strong { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.open-card small { margin-top: 2px; color: rgba(240,230,210,.7); font-size: 11px; }

.ticker { overflow: hidden; border-block: 1px solid var(--ink); background: var(--lime); transform: rotate(-1deg) scale(1.02); }
.ticker-track { width: max-content; padding: 13px 0; display: flex; align-items: center; gap: 28px; animation: ticker 28s linear infinite; }
.ticker span { font-family: var(--serif); font-size: 23px; font-weight: 600; text-transform: uppercase; }
.ticker i { font-style: normal; }

.section { padding: clamp(90px, 12vw, 170px) clamp(20px, 6vw, 96px); }
.section-heading { position: relative; margin-bottom: 70px; }
.section-index { display: block; margin-bottom: 18px; font-size: 11px; font-weight: 700; letter-spacing: .18em; opacity: .55; }
.section h2 { font-size: clamp(52px, 7vw, 104px); }
.story { background: var(--paper); }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.story-card { position: relative; min-height: 440px; padding: 30px; display: flex; flex-direction: column; overflow: hidden; }
.story-card + .story-card { border-left: 1px solid var(--ink); }
.story-card-coffee { background: var(--cream); }
.story-card-bake { background: var(--coral); }
.story-card-brunch { background: var(--lavender); }
.card-number { font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.card-icon { margin: 54px auto 50px; transition: transform 300ms ease; }
.story-card:hover .card-icon { transform: rotate(8deg) scale(1.08); }
.cup-icon { position: relative; width: 104px; height: 80px; border: 5px solid var(--ink); border-radius: 7px 7px 42px 42px; }
.cup-icon::after { content: ""; position: absolute; top: 10px; right: -35px; width: 35px; height: 40px; border: 5px solid var(--ink); border-left: 0; border-radius: 0 25px 25px 0; }
.cup-icon span::before, .cup-icon span::after { content: ""; position: absolute; top: -39px; width: 3px; height: 25px; background: var(--ink); border-radius: 50%; }
.cup-icon span::before { left: 34px; transform: rotate(-7deg); }.cup-icon span::after { right: 31px; transform: rotate(8deg); }
.croissant-icon { font: 150px/.55 var(--serif); transform: rotate(-25deg); }
.plate-icon { width: 110px; aspect-ratio: 1; display: grid; place-items: center; border: 4px solid var(--ink); border-radius: 50%; box-shadow: inset 0 0 0 10px var(--lavender), inset 0 0 0 13px var(--ink); }
.plate-icon span { font-size: 55px; color: var(--coral); }
.story-card h3 { margin: auto 0 10px; font: 600 30px/1.05 var(--serif); letter-spacing: -.03em; }
.story-card p { max-width: 330px; margin: 0 0 28px; font-size: 14px; }
.card-tag { padding-top: 14px; border-top: 1px solid var(--ink); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }

.menu-section { color: var(--cream); background: var(--ink); display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(45px, 8vw, 130px); }
.menu-intro { position: sticky; top: 130px; align-self: start; }
.menu-intro h2 { font-size: clamp(54px, 6.4vw, 96px); }
.menu-intro > p:last-child { max-width: 410px; margin-top: 32px; color: rgba(240,230,210,.7); }
.menu-panel { padding-top: 43px; }
.menu-tabs { display: flex; border-bottom: 1px solid rgba(240,230,210,.25); }
.menu-tab { position: relative; flex: 1; padding: 17px 8px; border: 0; color: rgba(240,230,210,.55); background: transparent; cursor: pointer; font: 600 clamp(18px,2vw,26px) var(--serif); }
.menu-tab::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 3px; background: var(--lime); transform: scaleX(0); transition: transform 200ms ease; }
.menu-tab.active { color: var(--cream); }.menu-tab.active::after { transform: scaleX(1); }
.menu-content.switching { opacity: 0; transform: translateY(8px); }
.menu-content { transition: opacity 160ms ease, transform 160ms ease; }
.menu-item { min-height: 125px; display: grid; grid-template-columns: 45px 1fr auto; gap: 20px; align-items: center; border-bottom: 1px solid rgba(240,230,210,.25); }
.menu-order { align-self: start; margin-top: 28px; color: rgba(240,230,210,.45); font-size: 10px; }
.menu-item h3 { margin: 0 0 8px; font: 600 clamp(23px,2.6vw,36px)/1.1 var(--serif); letter-spacing: -.025em; }
.menu-item p { margin: 0; color: rgba(240,230,210,.62); font-size: 13px; }
.menu-mark { padding: 8px 10px; color: var(--ink); background: var(--lime); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; transform: rotate(4deg); }
.menu-symbol { font: 26px var(--serif); color: var(--coral); }
.menu-disclaimer { margin-top: 22px; color: rgba(240,230,210,.5); font-size: 11px; }

.gallery { background: var(--cream); }
.gallery-heading { margin: 0 0 70px 37%; }
.gallery-grid { display: grid; grid-template-columns: 1.3fr .72fr .85fr; grid-template-rows: 330px 310px; gap: 22px; }
.gallery figure { margin: 0; overflow: hidden; }
.gallery figure img { height: 100%; object-fit: cover; transition: transform 700ms ease; }.gallery figure:hover img { transform: scale(1.035); }
.gallery figure { position: relative; }.gallery figcaption { position: absolute; right: 12px; bottom: 12px; padding: 8px 10px; color: var(--cream); background: var(--ink); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.gallery-main { grid-row: 1 / 3; border-radius: 48% 48% 0 0; }
.gallery-quote { padding: 27px; display: flex; flex-direction: column; background: var(--lime); }
.quote-mark { font: 76px/.7 var(--serif); }
.gallery-quote blockquote { margin: auto 0; font: 600 clamp(23px,2.2vw,35px)/1.08 var(--serif); letter-spacing: -.03em; }
.rating { display: grid; grid-template-columns: 1fr auto; align-items: end; border-top: 1px solid var(--ink); padding-top: 10px; }
.rating span { grid-column: 1 / 3; color: var(--coral); letter-spacing: .12em; }.rating strong { font: 600 30px var(--serif); }.rating small { font-size: 9px; text-transform: uppercase; }
.gallery-small { grid-row: 1 / 3; }
.gallery-type { padding: 22px; display: flex; align-items: center; justify-content: space-between; background: var(--coral); overflow: hidden; }
.gallery-type span { font: 600 clamp(24px,3.6vw,60px)/1 var(--serif); letter-spacing: -.05em; }.gallery-type span:nth-child(2) { font-style: italic; }

.visit { position: relative; padding-bottom: 70px; color: var(--cream); background: var(--coral); overflow: hidden; }
.visit::before { content: ""; position: absolute; top: -18vw; right: -5vw; width: 44vw; aspect-ratio: 1; border: min(8vw,120px) solid rgba(32,39,31,.08); border-radius: 50%; }
.visit-top { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; }
.visit-heading h2 em { color: var(--lime); }.visit-address { padding-bottom: 10px; }.visit-address > p { margin: 0 0 5px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }.visit-address h3 { margin: 0 0 28px; font: 600 clamp(31px,4vw,58px) var(--serif); }
.visit-details { position: relative; margin-top: 90px; padding: 30px; display: grid; grid-template-columns: 1.5fr 1fr auto; align-items: center; gap: 55px; color: var(--ink); background: var(--lime); }
.hours { display: grid; gap: 9px; }.hours div { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 8px; border-bottom: 1px solid rgba(32,39,31,.24); font-size: 13px; }.contact-block span { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .13em; }.contact-block a { font: 600 clamp(23px,2.4vw,38px) var(--serif); border-bottom: 2px solid var(--ink); }
.visit-badge { width: 115px; aspect-ratio: 1; padding: 15px; display: flex; justify-content: space-between; color: var(--cream); background: var(--ink); border-radius: 50%; transform: rotate(8deg); }.visit-badge span { align-self: center; font-size: 10px; font-weight: 700; line-height: 1.15; text-transform: uppercase; letter-spacing: .09em; }.visit-badge i { align-self: end; font: 28px var(--serif); }

.site-footer { min-height: 155px; padding: 35px clamp(20px,6vw,96px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; color: var(--cream); background: var(--ink); }
.footer-brand { font: 600 52px/1 var(--serif); }.footer-brand span { color: var(--coral); }.site-footer > p { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }.site-footer > a:nth-of-type(2) { justify-self: end; font-size: 11px; font-weight: 700; text-transform: uppercase; }.site-footer small { grid-column: 1 / -1; color: rgba(240,230,210,.42); font-size: 9px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.65,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(6deg); } 50% { transform: translateY(-10px) rotate(2deg); } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    padding: 110px 30px 40px;
    flex-direction: column;
    justify-content: center;
    background: var(--lime);
    opacity: 0;
    visibility: hidden;
    transition: opacity 200ms ease, visibility 200ms ease;
  }
  .main-nav.open { z-index: 98; opacity: 1; visibility: visible; }
  .main-nav a { font: 600 clamp(37px,8vw,64px)/1 var(--serif); }
  .header-cta { display: none; }
  .menu-toggle { position: relative; z-index: 101; width: 42px; height: 42px; padding: 0; display: grid; place-items: center; border: 1px solid var(--ink); cursor: pointer; }
  .menu-toggle span:not(.sr-only) { position: absolute; width: 20px; height: 2px; background: var(--ink); transition: transform 180ms ease; }
  .menu-toggle span:first-child { transform: translateY(-4px); }.menu-toggle span:nth-child(2) { transform: translateY(4px); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: rotate(-45deg); }
  .hero { min-height: 900px; height: auto; grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero h1 { font-size: clamp(60px,9vw,90px); }
  .hero-visual { min-height: 600px; }
  .story-grid { grid-template-columns: 1fr; }.story-card { min-height: 360px; }.story-card + .story-card { border-top: 1px solid var(--ink); border-left: 0; }.card-icon { margin-block: 20px 25px; transform: scale(.8); }
  .menu-section { grid-template-columns: 1fr; }.menu-intro { position: static; }.menu-intro h2 { max-width: 680px; }
  .gallery-heading { margin-left: 15%; }.gallery-grid { grid-template-columns: 1.2fr 1fr; grid-template-rows: 400px 280px 300px; }.gallery-main { grid-row: 1 / 3; }.gallery-small { grid-row: 2 / 4; }.gallery-type { grid-column: 1; }
}

@media (max-width: 720px) {
  .site-header { min-height: 72px; padding-inline: 18px; }
  .brand-name { font-size: 22px; }
  .hero { padding: 105px 18px 45px; grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(57px,18vw,86px); }
  .hero-intro { margin-top: 24px; font-size: 17px; }
  .hero-note { margin-top: 35px; }
  .hero-visual { min-height: 520px; }.hero-photo-wrap { inset: 4% 0 4% 4%; }.hero-sticker { width: 105px; right: -5px; }.open-card { right: 10px; }.shape-coral { right: -20%; }
  .ticker-track { gap: 20px; }.ticker span { font-size: 18px; }
  .section { padding: 90px 18px; }.section h2 { font-size: clamp(48px,16vw,72px); }.section-heading { margin-bottom: 45px; }
  .story-card { min-height: 390px; padding: 24px; }
  .menu-section { gap: 20px; }.menu-panel { padding-top: 15px; }.menu-item { grid-template-columns: 27px 1fr auto; gap: 8px; }.menu-item h3 { font-size: 23px; }.menu-item p { font-size: 11px; }.menu-mark { writing-mode: vertical-rl; }.menu-tab { font-size: 20px; }
  .gallery-heading { margin-left: 0; }.gallery-grid { grid-template-columns: 1fr; grid-template-rows: 520px auto 380px auto; }.gallery-main, .gallery-small { grid-column: 1; grid-row: auto; }.gallery-quote { min-height: 300px; }.gallery-type { grid-column: 1; min-height: 140px; }
  .visit-top { grid-template-columns: 1fr; }.visit-address { margin-top: 20px; }.visit-details { margin-top: 55px; padding: 24px; grid-template-columns: 1fr; gap: 35px; }.visit-badge { position: absolute; right: 18px; bottom: -62px; width: 105px; }.contact-block a { font-size: 31px; }
  .site-footer { padding-top: 80px; grid-template-columns: 1fr auto; }.site-footer > p { display: none; }.site-footer small { line-height: 1.5; }
}

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