:root {
  --paper: #FBF9F5;
  --ink: #26211B;
  --muted: #7D776D;
  --line: #E5DFD3;
  --accent: #6B4A34;
  --font-display: "Cormorant", Georgia, serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
}

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
}

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

::selection {
  background: var(--accent);
  color: var(--paper);
}

.wrap {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.9rem;
  z-index: 10;
}

/* header */

.site-header {
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.15rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.logo-dash {
  color: var(--accent);
}

.nav {
  display: flex;
  gap: clamp(1.1rem, 3vw, 2.4rem);
}

.nav a {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  padding-block: 0.2rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-hours {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}

@media (max-width: 560px) {
  .header-hours {
    display: none;
  }
}

/* typography helpers */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 600;
  line-height: 1.1;
}

/* hero */

.hero {
  padding-block: clamp(4rem, 12vh, 8rem) clamp(4.5rem, 12vh, 8.5rem);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero .eyebrow {
  margin-bottom: clamp(1.8rem, 5vh, 3rem);
}

.hero-fig {
  margin: 0;
}

.hero-fig img {
  width: clamp(260px, 38vw, 460px);
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-fig {
    margin-top: 2.5rem;
  }
}

.pause-mark {
  display: flex;
  align-items: flex-end;
  gap: clamp(1rem, 3vw, 2.4rem);
}

.pause-word {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(4.6rem, 16vw, 12.5rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
}

.pause-dash {
  flex: 1;
  max-width: 22rem;
  height: 2px;
  background: var(--accent);
  margin-bottom: 0.14em;
}

.lede {
  margin-top: clamp(1.6rem, 4vh, 2.5rem);
  max-width: 44ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.15rem);
}

@media (max-width: 560px) {
  .pause-dash {
    display: none;
  }
}

/* statement */

.statement {
  border-top: 1px solid var(--line);
}

.statement-text {
  padding-block: clamp(3rem, 10vh, 6rem);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  line-height: 1.08;
  max-width: 22ch;
}

.statement-text em {
  font-style: italic;
  color: var(--muted);
}

/* menu teaser */

.menu-teaser {
  border-top: 1px solid var(--line);
  padding-bottom: clamp(3.5rem, 9vh, 6rem);
}

.menu-teaser-head {
  padding-top: clamp(2.5rem, 6vh, 4rem);
}

.menu-teaser-head .display-sm {
  margin-top: 1.2rem;
}

.menu-rows {
  margin-top: 1.5rem;
}

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-block: 1.05rem;
  border-top: 1px solid var(--line);
}

.menu-row .name {
  font-weight: 500;
}

.menu-row .leader {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-3px);
}

.menu-row .price {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}

.menu-link {
  display: inline-block;
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.25rem;
  transition: color 0.2s, border-color 0.2s;
}

.menu-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* info grid */

.info {
  border-top: 1px solid var(--line);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.5rem, 7vh, 4.5rem);
}

.info-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.info-value {
  font-size: 1.02rem;
  line-height: 1.6;
}

/* footer */

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-mark {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 500;
  line-height: 1;
  padding-block: clamp(2.5rem, 7vh, 4.5rem) clamp(2rem, 5vh, 3rem);
}

.footer-mark .dash {
  color: var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-list li {
  margin-top: 0.55rem;
}

.footer-list a {
  text-decoration: none;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.footer-list a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.footer-text {
  color: var(--muted);
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-block: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* page head */

.page-head {
  padding-block: clamp(3.5rem, 10vh, 6.5rem) clamp(2.5rem, 6vh, 4rem);
}

.page-head .eyebrow {
  margin-bottom: 1.6rem;
}

.page-head .display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
}

.page-head .note {
  margin-top: 1.4rem;
  color: var(--muted);
  max-width: 52ch;
}

/* menu page */

.menu-section {
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 5vh, 3rem);
}

.menu-section + .menu-section {
  margin-top: clamp(2rem, 5vh, 3rem);
}

.menu-cat {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin-bottom: 0.4rem;
}

.menu-row .menu-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.menu-row .desc {
  font-size: 0.85rem;
  color: var(--muted);
}

.menu-note {
  margin-top: clamp(2.5rem, 6vh, 4rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: clamp(2.5rem, 7vh, 4rem);
}

/* about */

.story {
  border-top: 1px solid var(--line);
  padding-top: clamp(2.5rem, 7vh, 4rem);
}

.story p {
  max-width: 62ch;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

blockquote {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  max-width: 18ch;
}

blockquote em {
  font-style: italic;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  margin-top: clamp(2.5rem, 6vh, 4rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 5vh, 3rem);
}

.stat .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1;
}

.stat .lbl {
  margin-top: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.principles {
  margin-top: clamp(3rem, 8vh, 5rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 5vh, 3rem);
}

.principles .eyebrow {
  margin-bottom: 1.6rem;
}

.principles li {
  padding-block: 1.3rem;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

.principles li span {
  color: var(--muted);
}

.contact {
  margin-top: clamp(3rem, 8vh, 5rem);
  border-top: 1px solid var(--line);
  padding-top: clamp(2rem, 5vh, 3rem);
  padding-bottom: clamp(3rem, 8vh, 5rem);
}

.contact .eyebrow {
  margin-bottom: 1.6rem;
}

.contact .display-sm {
  margin-bottom: 1.5rem;
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(110px, 220px) 1fr;
  gap: 1rem;
  padding-block: 1.1rem;
  border-top: 1px solid var(--line);
  align-items: baseline;
}

.contact-row .k {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-row .v {
  font-size: 1.05rem;
}

@media (max-width: 520px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

/* motion */

@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow,
  .pause-word,
  .lede,
  .hero-fig {
    animation: rise 0.8s cubic-bezier(0.2, 0.6, 0.2, 1) both;
  }

  .pause-word {
    animation-delay: 0.05s;
  }

  .lede {
    animation-delay: 0.15s;
  }

  .hero-fig {
    animation-delay: 0.25s;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
