:root {
  --bg: #E7EBEE;
  --ink: #1A1714;
  --sky: #C9D7E2;
  --paper: #F7F5F2;
  --accent: #B56A2B;
  --moss: #3F5A4A;
  --muted: #5C646C;
  --line: #C5CCD3;
  --display: "Fraunces", Georgia, serif;
  --sans: "Sora", "Segoe UI", sans-serif;
  --container: min(1120px, calc(100% - 2.5rem));
  --header: 4.5rem;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --menu-price-col: 5rem;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + .85rem);
}

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(120% 80% at 100% -10%, rgba(201, 215, 226, .55), transparent 55%),
    radial-gradient(90% 60% at -10% 20%, rgba(181, 106, 43, .08), transparent 50%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.6;
}

body.nav-open { overflow: hidden; }

img, iframe { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, p, ul, dl, address { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
}
h2 { margin-bottom: .75rem; font-size: clamp(1.85rem, 4.2vw, 2.6rem); }
h3 {
  margin-bottom: .85rem;
  font-size: 1.15rem;
  font-weight: 600;
}
address { font-style: normal; }
.container { width: var(--container); margin-inline: auto; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 1000;
  padding: .6rem .9rem;
  color: var(--paper);
  background: var(--ink);
  text-decoration: none;
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.kicker {
  margin: 0 0 .85rem;
  color: var(--moss);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: .65rem 1.25rem;
  color: var(--paper);
  background: var(--ink);
  border: 0;
  font-size: .98rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.button:hover { background: var(--accent); }
.text-link {
  font-weight: 500;
  text-underline-offset: .2em;
  text-decoration-thickness: 1px;
}
.text-link:hover { color: var(--accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top);
  background: rgba(231, 235, 238, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(231, 235, 238, .96);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header);
}
.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-right: auto;
  text-decoration: none;
}
.brand-mark {
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(181, 106, 43, .15);
}
.brand-name {
  font-family: var(--display);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -.02em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-nav a {
  font-size: .94rem;
  font-weight: 500;
  text-decoration: none;
}
.site-nav a:hover { color: var(--accent); }
.lang-switch {
  display: flex;
  position: relative;
  z-index: 102;
  align-items: center;
  gap: .35rem;
  font-size: .86rem;
  font-weight: 600;
}
.lang-switch button {
  padding: .2rem .15rem;
  color: var(--muted);
}
.lang-switch button[aria-pressed="true"] { color: var(--ink); }
.lang-switch button:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 102;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: .28rem auto;
  background: var(--ink);
  transition: transform .28s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

/* Hero — one full-bleed composition */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(92vh, 860px);
  overflow: hidden;
  color: var(--paper);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, #9BB0C2 0%, #C9D7E2 28%, #E8D5C0 62%, #B56A2B 120%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26, 23, 20, .78) 0%, rgba(26, 23, 20, .28) 42%, transparent 70%),
    url("../assets/hero-facade.jpg") center 40% / cover no-repeat;
  transform: scale(1.04);
  transition: transform 1.4s var(--ease);
}
.hero.is-ready .hero-photo { transform: scale(1); }
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(201, 215, 226, .35), transparent 55%),
    linear-gradient(105deg, rgba(26, 23, 20, .55) 0%, rgba(26, 23, 20, .15) 55%, transparent 80%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 3.5rem;
  max-width: 38rem;
}
.hero-brand {
  margin: 0 0 .85rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 8vw, 4.4rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.03em;
}
.hero-headline {
  margin: 0 0 1rem;
  font-family: var(--sans);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  color: rgba(247, 245, 242, .92);
}
.hero-lead {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  color: rgba(247, 245, 242, .78);
  font-size: 1.02rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.5rem;
  margin: 0;
}
.hero .button {
  background: var(--paper);
  color: var(--ink);
}
.hero .button:hover {
  background: var(--accent);
  color: var(--paper);
}
.hero .text-link {
  color: var(--paper);
  text-decoration-color: rgba(247, 245, 242, .45);
}
.hero .text-link:hover { color: #fff; }

.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-heading { margin-bottom: 2rem; max-width: 36rem; }

.place-grid,
.coffee-grid,
.find-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.place-grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, .7fr); }
.place-copy p:last-child { margin-bottom: 0; color: var(--muted); }
.place-aside {
  display: block;
  padding: 2rem 1.75rem;
  color: inherit;
  background: linear-gradient(160deg, var(--sky), rgba(201, 215, 226, .35));
  border-left: 3px solid var(--accent);
  text-decoration: none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.place-aside:hover {
  border-left-color: var(--ink);
  background: linear-gradient(160deg, var(--sky), rgba(181, 106, 43, .12));
}
.place-aside:hover .rating-meta { color: var(--ink); }
.rating-value {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
}
.rating-meta {
  margin: .75rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.coffee {
  background:
    linear-gradient(180deg, rgba(63, 90, 74, .06), transparent 40%),
    var(--bg);
}
.coffee-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr); }
.coffee-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 22rem;
  background: var(--ink);
  color: var(--paper);
}
.coffee-visual img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: center;
}
.coffee-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .45);
}
.coffee-copy p:last-child { margin-bottom: 0; color: var(--muted); }

.menu-photo {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  overflow: hidden;
  max-height: min(28rem, 52vw);
  background: var(--sky);
}
.menu-photo img {
  width: 100%;
  height: 100%;
  max-height: min(28rem, 52vw);
  object-fit: cover;
  object-position: center;
}

.section-note {
  margin: .35rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}
.menu-board {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.menu-side {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
}
.menu-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .35rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--ink);
}
.menu-panel-head h3 { margin: 0; }
.menu-size-labels {
  display: grid;
  grid-template-columns: var(--menu-price-col) var(--menu-price-col);
  gap: .35rem;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}
.menu-rows {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu-rows > li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: baseline;
  padding: .72rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-name-block {
  min-width: 0;
}
.menu-name {
  display: block;
  color: color-mix(in srgb, var(--ink) 70%, var(--paper));
  font-weight: 500;
  letter-spacing: .01em;
}
.menu-desc {
  margin: .3rem 0 0;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 400;
}
.menu-prices {
  display: grid;
  grid-template-columns: var(--menu-price-col) var(--menu-price-col);
  gap: .35rem;
  color: color-mix(in srgb, var(--ink) 70%, var(--paper));
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  text-align: right;
}
.menu-prices > span:empty {
  visibility: hidden;
}

.hours {
  background: var(--ink);
  color: var(--paper);
}
.hours-inner { max-width: 36rem; }
.hours h2 { margin-bottom: 1.75rem; }
.hours-list { margin: 0; }
.hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(247, 245, 242, .14);
  transition: background .3s var(--ease), padding .3s var(--ease);
}
.hours-list > div:first-child { border-top: 1px solid rgba(247, 245, 242, .14); }
.hours-list dt { font-weight: 500; }
.hours-list dd { margin: 0; color: rgba(247, 245, 242, .72); font-variant-numeric: tabular-nums; }
.hours-list > div.is-today {
  padding-inline: .85rem;
  background: rgba(181, 106, 43, .22);
  border-color: transparent;
}
.hours-list > div.is-today dd { color: var(--paper); }

.find-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.2fr); }
.find-copy address {
  margin-bottom: 1.5rem;
  font-size: 1.08rem;
  line-height: 1.5;
}
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-list li + li { margin-top: .85rem; }
.icon-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 500;
  text-decoration: none;
  text-underline-offset: .18em;
}
.icon-link svg {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--moss);
}
.icon-link:hover {
  color: var(--accent);
  text-decoration: underline;
}
.icon-link:hover svg { color: var(--accent); }
.map-wrap {
  overflow: hidden;
  height: 18rem;
  background: var(--sky);
  border: 1px solid var(--line);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  padding: 2.25rem 0 calc(2.25rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgba(247, 245, 242, .55);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.footer-meta {
  margin: 0;
  flex: 1 1 14rem;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
}
.footer-sep {
  display: inline;
  margin-inline: .35rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.35rem;
    padding: 5rem 2rem 2rem;
    background: rgba(231, 235, 238, .98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s var(--ease), visibility .28s;
  }
  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-nav a { font-size: 1.35rem; font-family: var(--display); }
  .place-grid,
  .coffee-grid,
  .find-grid,
  .menu-board { grid-template-columns: 1fr; }
  .hero { min-height: min(88vh, 720px); }
  .hero-inner { padding-bottom: 2.75rem; }
  .hours-inner { max-width: none; }
  .find-us { padding-block: clamp(2.5rem, 6vw, 4rem); }
  .map-wrap { height: 14rem; }
  .site-footer { padding: 1.5rem 0 calc(1.5rem + env(safe-area-inset-bottom)); }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }
  .footer-meta {
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .25rem;
  }
  .footer-sep { display: none; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .map-wrap { height: 12.5rem; }
  .section { padding: clamp(2.75rem, 7vw, 4.5rem) 0; }
  .find-us { padding-block: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-photo,
  .button,
  .hours-list > div {
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero.is-ready .hero-photo { transform: none; }
}
