@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Karla';
  src: url('../fonts/karla-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f7f3ec;
  --paper-deep: #efe8dc;
  --ink: #1c1a16;
  --ink-soft: #57514693;
  --ink-mid: #5b5449;
  --rule: #dbd2c1;
  --terracotta: #b4522f;
  --ash: #22201c;
  --ash-soft: #a49b8c;
  --measure: 1180px;
}

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

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Karla', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
}

a { color: inherit; }

.shell {
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 32px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  z-index: 60;
}
.skip:focus { left: 12px; top: 12px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 236, 0.82);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 260ms ease, background-color 260ms ease;
}

.masthead.is-settled {
  border-bottom-color: var(--rule);
  background: rgba(247, 243, 236, 0.95);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.wordmark {
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.wordmark-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.wordmark-sub {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mid);
}

.primary-nav {
  display: flex;
  gap: 30px;
  font-size: 14.5px;
}

.primary-nav a {
  text-decoration: none;
  color: var(--ink-mid);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-here {
  color: var(--ink);
  border-bottom-color: var(--terracotta);
}

.nav-toggle {
  display: none;
  font: inherit;
  font-size: 14px;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 8px 14px;
  cursor: pointer;
  color: var(--ink);
}

.drawer {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--rule);
  padding: 8px 32px 20px;
  background: var(--paper);
}

.drawer a {
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 16px;
}

.drawer a:last-child { border-bottom: none; }

.section { padding: 108px 0; }

section[id] { scroll-margin-top: 88px; }

.section-mark {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 28px;
}

.section-mark-light { color: #cf8a6e; }

.section-head {
  font-size: clamp(30px, 4.2vw, 46px);
  margin: 0 0 40px;
  max-width: 18ch;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin: 0 0 22px;
}

.lede {
  font-size: 19px;
  color: var(--ink-mid);
  max-width: 46ch;
  margin: 0 0 32px;
}

.hero { padding: 72px 0 96px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

.button {
  display: inline-block;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  padding: 13px 26px;
  font-size: 15px;
  border-radius: 2px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.button:hover { background: var(--terracotta); }

.button-quiet {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.button-quiet:hover {
  background: var(--ink);
  color: var(--paper);
}

figure { margin: 0; }

figcaption {
  font-size: 13px;
  color: var(--ink-mid);
  margin-top: 12px;
  font-style: italic;
}

.hero-figure img,
.story-figure img,
.visit-figure img,
.arm img {
  border-radius: 3px;
}

.section-story { border-top: 1px solid var(--rule); }

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 72px;
  align-items: start;
}

.story-words p { margin: 0 0 22px; max-width: 56ch; }

.story-first {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 25px;
  line-height: 1.35;
  color: var(--ink);
}

.signature {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  margin-top: 34px !important;
  color: var(--terracotta);
}

.arms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.arm h3 { font-size: 25px; margin: 22px 0 12px; }
.arm p { color: var(--ink-mid); margin: 0 0 16px; font-size: 16px; }

.text-link {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 2px;
  transition: color 180ms ease;
}

.text-link:hover { color: var(--terracotta); }

.section-popular { background: var(--paper-deep); }

.plates {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.plate img { border-radius: 3px; }

.plate figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-style: normal;
  font-size: 15px;
  color: var(--ink);
  margin-top: 14px;
}

.plate figcaption b {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  color: var(--terracotta);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 76px;
}

.course h3 {
  font-size: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 8px;
}

.course h3 em {
  font-family: 'Karla', sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-left: 10px;
  vertical-align: middle;
}

.tally { list-style: none; margin: 0; padding: 0; }

.tally li {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(219, 210, 193, 0.55);
}

.tally li:last-child { border-bottom: none; }

.tally-name { flex: 0 1 auto; font-size: 16px; }

.tally-name i {
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid currentColor;
  border-radius: 2px;
  padding: 1px 4px;
  margin-left: 6px;
  vertical-align: 1px;
}

.tally-dots {
  flex: 1 1 auto;
  min-width: 18px;
  border-bottom: 1px dotted var(--rule);
  transform: translateY(-4px);
}

.tally-price {
  flex: 0 0 auto;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
}

.course-note {
  font-size: 14px;
  color: var(--ink-mid);
  margin: 18px 0 0;
}

.section-counter {
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.counter-shell { max-width: 780px; }

.counter-blurb {
  color: var(--ink-mid);
  margin: -20px 0 32px;
  font-size: 17px;
}

.counter-form { display: flex; gap: 10px; }

.counter-form input {
  flex: 1 1 auto;
  font: inherit;
  font-size: 17px;
  padding: 15px 18px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
}

.counter-form input:focus {
  outline: none;
  border-color: var(--terracotta);
}

.counter-form button {
  font: inherit;
  font-size: 15px;
  padding: 15px 30px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.counter-form button:hover { background: var(--terracotta); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chips button {
  font: inherit;
  font-size: 13.5px;
  padding: 7px 14px;
  border: 1px solid var(--rule);
  background: transparent;
  border-radius: 100px;
  cursor: pointer;
  color: var(--ink-mid);
  transition: border-color 160ms ease, color 160ms ease;
}

.chips button:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.counter-answer:empty { display: none; }

.counter-answer {
  margin-top: 30px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 26px 28px;
}

.counter-lead {
  margin: 0 0 20px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  line-height: 1.35;
}

.counter-pick {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(219, 210, 193, 0.7);
}

.counter-pick img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 3px;
  flex: 0 0 auto;
}

.counter-pick-name {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  font-size: 16px;
}

.counter-pick-name b {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  color: var(--terracotta);
  flex: 0 0 auto;
}

.counter-why {
  margin: 3px 0 0;
  font-size: 14.5px;
  color: var(--ink-mid);
}

.studio-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  margin-bottom: 56px;
}

.studio-intro p { margin: 0; color: var(--ink-mid); font-size: 17px; }

.gallery {
  columns: 4;
  column-gap: 22px;
}

.gallery figure {
  break-inside: avoid;
  margin-bottom: 22px;
}

.gallery img { border-radius: 3px; }

.gallery figcaption { font-size: 12.5px; margin-top: 9px; }

.rates {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 76px;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
}

.rate-block h3 {
  font-size: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 8px;
}

.section-advisory {
  background: var(--ash);
  color: var(--paper);
}

.advisory-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 76px;
  align-items: start;
}

.advisory-words h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  max-width: 20ch;
  margin-bottom: 30px;
}

.advisory-words p {
  color: var(--ash-soft);
  max-width: 58ch;
  margin: 0 0 20px;
}

.advisory-list {
  list-style: none;
  margin: 34px 0;
  padding: 0;
}

.advisory-list li {
  padding: 18px 0;
  border-top: 1px solid #3a362f;
  color: var(--ash-soft);
  font-size: 16px;
}

.advisory-list b {
  color: var(--paper);
  font-weight: 600;
}

.advisory-rate {
  color: var(--paper) !important;
  font-size: 16px;
  border-left: 2px solid var(--terracotta);
  padding-left: 18px;
}

.notes {
  background: #2b2823;
  border-radius: 3px;
  padding: 30px 30px 12px;
}

.notes h3 {
  font-size: 13px;
  font-family: 'Karla', sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash-soft);
  margin-bottom: 6px;
}

.notes ol { list-style: none; margin: 0; padding: 0; }

.notes li {
  padding: 18px 0;
  border-bottom: 1px solid #3a362f;
}

.notes li:last-child { border-bottom: none; }

.notes time {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8d8578;
  margin-bottom: 6px;
}

.notes p { margin: 0; font-size: 15px; color: var(--paper); }

.said-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.said-grid blockquote {
  margin: 0;
  padding: 28px 26px;
  background: var(--paper-deep);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.said-grid blockquote p {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  line-height: 1.4;
}

.said-grid footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.said-grid footer img {
  width: 42px;
  height: 42px;
  border-radius: 100px;
  object-fit: cover;
}

.said-grid footer span {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.35;
}

.said-grid footer b { color: var(--ink); font-weight: 600; }

.section-visit { border-top: 1px solid var(--rule); }

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: start;
}

address {
  font-style: normal;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 28px;
}

.hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 26px;
  margin: 0 0 26px;
  font-size: 16px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--rule);
}

.hours dt { color: var(--ink-mid); }
.hours dd { margin: 0; }

.visit-contact { font-size: 17px; margin: 0 0 30px; }
.visit-contact a { text-decoration: none; border-bottom: 1px solid var(--terracotta); }

.visit-notes p {
  font-size: 15px;
  color: var(--ink-mid);
  margin: 0 0 14px;
  max-width: 52ch;
}

.colophon {
  background: var(--ash);
  color: var(--ash-soft);
  padding: 46px 0;
  font-size: 14px;
}

.colophon-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.colophon p { margin: 0 0 4px; }

.colophon-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  color: var(--paper);
  margin-bottom: 8px !important;
}

.colophon-credit a {
  text-decoration: none;
  border-bottom: 1px solid #4d4840;
  transition: color 180ms ease, border-color 180ms ease;
}

.colophon-credit a:hover {
  color: var(--paper);
  border-bottom-color: var(--terracotta);
}

.socials {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 16px 0 0;
  padding: 0;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid #3a362f;
  border-radius: 100px;
  color: var(--ash-soft);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.socials a:hover {
  color: var(--paper);
  border-color: var(--terracotta);
  background: var(--terracotta);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.is-shown {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .plates { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { columns: 3; }
  .said-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .arms { gap: 32px; }
}

@media (max-width: 900px) {
  body { font-size: 16.5px; }
  .section { padding: 76px 0; }
  .shell { padding: 0 22px; }
  .drawer { padding-left: 22px; padding-right: 22px; }
  .primary-nav { display: none; }
  .nav-toggle { display: inline-block; }
  .drawer { display: flex; }
  .hero-grid,
  .story-grid,
  .visit-grid,
  .advisory-grid,
  .menu-grid,
  .rates,
  .studio-intro { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .arms { grid-template-columns: minmax(0, 1fr); gap: 46px; }
  .gallery { columns: 2; }
  .rates { margin-top: 52px; padding-top: 40px; }
  .story-figure, .visit-figure { max-width: 520px; }
}

@media (max-width: 560px) {
  .plates { grid-template-columns: minmax(0, 1fr); }
  .said-grid { grid-template-columns: minmax(0, 1fr); }
  .gallery { columns: 1; }
  .counter-form { flex-direction: column; }
  .counter-form button { width: 100%; }
  .tally li { flex-wrap: wrap; }
  .tally-dots { display: none; }
  .tally-price { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (scripting: none) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
