:root {
  --ink: #141211;
  --ink-2: #211c19;
  --cream: #f4ecdc;
  --cream-2: #fff8ea;
  --muted: #cfc1a8;
  --gold: #b99655;
  --red: #b43625;
  --red-dark: #742418;
  --olive: #606b3a;
  --line: rgba(244, 236, 220, 0.16);
  --line-strong: rgba(244, 236, 220, 0.24);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: rgba(180, 54, 37, 0.72);
  color: #fffaf2;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(115deg, rgba(180, 54, 37, 0.12), transparent 26%),
    linear-gradient(245deg, rgba(96, 107, 58, 0.14), transparent 32%),
    linear-gradient(135deg, #0e0c0b 0%, #191411 48%, #100f0e 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

a {
  color: inherit;
}

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

img,
video {
  display: block;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--cream);
  color: var(--ink);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header:has(.site-nav.is-open) {
  border-bottom: 1px solid var(--line);
  background: rgba(20, 18, 17, 0.88);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  padding-block: 0.72rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(185, 150, 85, 0.58);
  border-radius: 50%;
  background: rgba(244, 236, 220, 0.08);
  color: var(--gold);
  font-family: var(--serif);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.8vw, 1.4rem);
}

.site-nav a {
  color: rgba(244, 236, 220, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 0.32em;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream-2);
  text-decoration: underline;
  text-decoration-color: rgba(185, 150, 85, 0.7);
}

.nav-cta {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(185, 150, 85, 0.55);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
}

.section-shell {
  width: min(1240px, calc(100% - 2rem));
  margin-inline: auto;
  max-width: 100%;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(7rem, 11vh, 9rem) 0 clamp(3.4rem, 7vh, 5.4rem);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 18, 17, 0.96), rgba(20, 18, 17, 0.66) 56%, rgba(20, 18, 17, 0.9)),
    linear-gradient(135deg, rgba(180, 54, 37, 0.18), rgba(185, 150, 85, 0.08)),
    repeating-linear-gradient(115deg, rgba(244, 236, 220, 0.05) 0 1px, transparent 1px 18px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.eyebrow,
.card-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
  overflow-wrap: break-word;
}

p,
dd,
a,
button,
label {
  overflow-wrap: break-word;
}

h1 {
  max-width: 9ch;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8.4rem);
  line-height: 0.86;
}

h2 {
  color: var(--cream-2);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  line-height: 0.98;
}

h3 {
  color: var(--cream-2);
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-line {
  max-width: 780px;
  margin-bottom: 1rem;
  color: var(--cream-2);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3.1vw, 2.9rem);
  line-height: 1;
}

.hero-text,
.section-heading p,
.prose,
.credential-panel p,
.barrie-card p,
.notice-box p,
.contact-copy p,
.form-note {
  color: rgba(244, 236, 220, 0.78);
}

.hero-text {
  max-width: 650px;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
}

.hero-actions,
.contact-links,
.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-links {
  margin-top: 1.1rem;
}

.hero-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration-color: rgba(185, 150, 85, 0.55);
  text-underline-offset: 0.28em;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.88rem 1.15rem;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  background: var(--red);
  color: #fffaf2;
  box-shadow: 0 16px 34px rgba(180, 54, 37, 0.28);
}

.button-primary:hover {
  background: #c94632;
  box-shadow: 0 20px 42px rgba(180, 54, 37, 0.34);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(185, 150, 85, 0.5);
  background: rgba(244, 236, 220, 0.08);
  color: var(--cream-2);
}

.button-secondary:hover {
  background: rgba(244, 236, 220, 0.14);
  border-color: rgba(185, 150, 85, 0.75);
  transform: translateY(-2px);
}

.hero-media,
.hero-proof,
.quote-panel,
.credential-panel,
.barrie-card,
.notice-box,
.service-image,
.inquiry-form {
  border: 1px solid var(--line);
  background: rgba(244, 236, 220, 0.075);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(620px, 66vh, 760px);
  margin: 0;
  background: #090807;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: clamp(620px, 66vh, 760px);
  object-fit: cover;
  object-position: 58% 42%;
  filter: saturate(0.98) contrast(1.04);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 58%, rgba(9, 8, 7, 0.72)),
    linear-gradient(90deg, rgba(9, 8, 7, 0.16), transparent 38%);
  content: "";
  pointer-events: none;
}

.hero-media figcaption {
  position: absolute;
  left: clamp(1rem, 3vw, 1.4rem);
  bottom: clamp(1rem, 3vw, 1.4rem);
  z-index: 2;
  color: var(--cream-2);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-proof {
  margin-top: clamp(1.25rem, 3vw, 1.8rem);
  padding: clamp(1rem, 2.4vw, 1.3rem);
  border-color: rgba(185, 150, 85, 0.34);
  background: rgba(244, 236, 220, 0.055);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero-proof h2 {
  max-width: 18ch;
  margin-bottom: 0.95rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.02;
}

.hero-proof .stat-list {
  gap: 0.7rem;
  margin-top: 0;
}

.hero-proof .stat-list dt {
  padding-top: 0.78rem;
}

.stat-list {
  position: relative;
  display: grid;
  gap: 1rem;
  margin: 1rem 0 0;
  z-index: 1;
}

.stat-list dt {
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
}

.stat-list dt {
  color: var(--gold);
  font-weight: 900;
}

.stat-list dd {
  margin: 0.1rem 0 0;
  color: rgba(244, 236, 220, 0.78);
}

.intro-strip {
  border-block: 1px solid var(--line);
  background: rgba(14, 12, 11, 0.64);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.strip-grid p {
  margin: 0;
  padding: 1.1rem;
  color: var(--cream-2);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.01em;
}

.strip-grid p + p {
  border-left: 1px solid var(--line);
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.two-column,
.story-grid,
.credential-grid,
.barrie-grid,
.contact-grid,
.follow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.section-heading {
  max-width: 760px;
}

.hero-copy,
.hero-media,
.story-copy,
.section-heading,
.prose,
.credential-panel,
.quote-panel,
.barrie-card,
.notice-box,
.contact-copy,
.inquiry-form,
.portrait-frame,
.food-feature,
.service-image,
.follow-portrait,
.social-video,
.contact-image,
.menu-card,
.service-card,
.social-card,
.gallery-tile {
  min-width: 0;
}

.story-grid {
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  align-items: center;
}

.portrait-frame,
.food-feature,
.service-image,
.follow-portrait,
.contact-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(244, 236, 220, 0.065);
}

.portrait-frame img,
.food-feature img,
.service-image img,
.follow-portrait img,
.contact-image img,
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-frame {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.portrait-frame img {
  object-position: 52% 38%;
}

.portrait-frame figcaption,
.food-feature figcaption,
.service-image figcaption,
.follow-portrait figcaption {
  color: rgba(244, 236, 220, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.portrait-frame figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--cream-2);
}

.portrait-frame::after,
.food-feature::after,
.service-image::after,
.follow-portrait::after,
.gallery-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(9, 8, 7, 0.78));
  content: "";
  pointer-events: none;
}

.section-heading.narrow {
  max-width: 900px;
  margin-bottom: 2rem;
}

.prose {
  max-width: 680px;
  font-size: 1.08rem;
}

.text-link,
.service-card a,
.contact-links a {
  color: var(--gold);
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
}

.credential-section,
.gallery-section {
  background: rgba(244, 236, 220, 0.045);
}

.credential-panel,
.quote-panel,
.barrie-card,
.notice-box {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.credential-panel,
.barrie-card {
  position: relative;
}

.credential-panel::after,
.barrie-card::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 58px;
  height: 58px;
  border-top: 1px solid rgba(185, 150, 85, 0.5);
  border-right: 1px solid rgba(185, 150, 85, 0.5);
  content: "";
  opacity: 0.62;
}

.quote-panel {
  background:
    linear-gradient(135deg, rgba(116, 36, 24, 0.62), rgba(33, 28, 25, 0.92)),
    repeating-linear-gradient(45deg, rgba(244, 236, 220, 0.05) 0 1px, transparent 1px 12px);
}

.number {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(5.5rem, 14vw, 10rem);
  line-height: 0.9;
}

.quote-panel p {
  color: var(--cream-2);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.12;
}

.philosophy-grid,
.service-grid,
.social-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

.philosophy-grid {
  grid-template-columns: repeat(3, 1fr);
}

.food-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.82fr);
  gap: 1rem;
  margin-top: 1rem;
}

.food-feature {
  min-height: 280px;
  aspect-ratio: 1 / 1;
}

.food-feature.large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.food-feature.large img {
  object-position: 50% 52%;
}

.food-feature:nth-child(2) img {
  object-position: 52% 44%;
}

.food-feature figcaption,
.service-image figcaption,
.follow-portrait figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--cream-2);
}

.menu-card,
.service-card,
.social-card,
.gallery-tile {
  border: 1px solid var(--line);
  background: rgba(244, 236, 220, 0.065);
}

.menu-card,
.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.3rem;
}

.service-card {
  min-height: 176px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 150, 85, 0.42);
  background: rgba(244, 236, 220, 0.09);
}

.menu-card::before,
.service-card::before {
  position: absolute;
  top: 0;
  left: 1.3rem;
  right: 1.3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--olive));
  content: "";
}

.menu-card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.menu-card p,
.service-card p {
  color: rgba(244, 236, 220, 0.72);
}

.service-card p {
  margin-bottom: 1rem;
}

.service-card a {
  display: inline-block;
  font-size: 0.92rem;
}

.barrie-section {
  background:
    linear-gradient(90deg, rgba(96, 107, 58, 0.18), transparent),
    rgba(14, 12, 11, 0.5);
}

.service-image {
  grid-column: 1 / -1;
  min-height: 380px;
  aspect-ratio: 16 / 7;
}

.service-image img {
  object-position: 50% 46%;
}

.notice-box {
  border-color: rgba(185, 150, 85, 0.34);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.follow-grid {
  align-items: center;
}

.follow-portrait {
  margin-top: 2rem;
  aspect-ratio: 5 / 4;
}

.follow-portrait img {
  object-position: 50% 46%;
}

.social-grid {
  grid-template-columns: 1fr;
}

.social-card {
  display: block;
  padding: 1.25rem;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 150, 85, 0.42);
  background: rgba(244, 236, 220, 0.1);
}

.social-card span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-card strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--cream-2);
  font-size: 1.35rem;
}

.social-card em {
  display: block;
  margin-top: 0.45rem;
  color: rgba(244, 236, 220, 0.68);
  font-style: normal;
}

.social-card-feature {
  min-height: 190px;
  background:
    linear-gradient(135deg, rgba(116, 36, 24, 0.55), rgba(33, 28, 25, 0.92)),
    repeating-linear-gradient(115deg, rgba(244, 236, 220, 0.06) 0 1px, transparent 1px 16px);
}

.social-card-feature::after {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 1.1rem;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
  opacity: 0.68;
}

.social-video {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(244, 236, 220, 0.065);
}

.social-video video {
  width: 100%;
  height: auto;
  max-height: 560px;
  background: #090807;
  object-fit: contain;
}

.social-video p {
  margin: 0;
  padding: 1rem 1.25rem;
  color: rgba(244, 236, 220, 0.72);
  font-size: 0.92rem;
}

.gallery-grid {
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-auto-rows: minmax(230px, auto);
  margin-top: 2rem;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  isolation: isolate;
  margin: 0;
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  filter: saturate(1.02) contrast(1.02);
}

.gallery-tile:nth-child(1) img {
  object-position: 50% 42%;
}

.gallery-tile:nth-child(2) img {
  object-position: 50% 58%;
}

.gallery-tile:nth-child(4) img {
  object-position: 50% 48%;
}

.gallery-tile figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: var(--cream-2);
  font-weight: 900;
}

.gallery-tile.tall {
  grid-row: span 2;
}

.gallery-tile.wide {
  grid-column: span 2;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(20, 18, 17, 0.3), rgba(116, 36, 24, 0.16)),
    rgba(14, 12, 11, 0.9);
}

.contact-cues {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-cues li {
  border: 1px solid rgba(185, 150, 85, 0.38);
  border-radius: 999px;
  color: var(--cream-2);
  font-size: 0.86rem;
  font-weight: 900;
  padding: 0.4rem 0.68rem;
}

.contact-links a:hover,
.service-card a:hover,
.text-link:hover,
.hero-links a:hover,
.site-footer nav a:hover {
  color: var(--cream-2);
}

.contact-image {
  width: min(360px, 100%);
  margin-top: 2rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.contact-image::after {
  display: none;
}

.contact-image img {
  object-position: 50% 50%;
}

.inquiry-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.field-group {
  display: grid;
  gap: 0.4rem;
}

label {
  color: var(--cream-2);
  font-weight: 900;
}

label span {
  color: var(--muted);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(244, 236, 220, 0.18);
  border-radius: 0;
  background: rgba(20, 18, 17, 0.78);
  color: var(--cream-2);
  font: inherit;
  padding: 0.9rem 1rem;
  transition: border-color 160ms ease, background 160ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(244, 236, 220, 0.32);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: rgba(20, 18, 17, 0.95);
  outline: 0;
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.inquiry-form .button {
  width: fit-content;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  background: #0d0b0a;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer p {
  margin: 1rem 0 0;
  color: rgba(244, 236, 220, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer nav a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.thanks-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
}

.thanks-shell {
  width: min(680px, calc(100% - 2rem));
  text-align: center;
}

.thanks-shell h1 {
  max-width: none;
  font-size: clamp(4rem, 12vw, 8rem);
}

.reveal {
  transform: none;
  opacity: 1;
  transition: transform 700ms ease, opacity 700ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 920px) {
  h2 {
    font-size: clamp(1.9rem, 8vw, 3.1rem);
  }

  .hero-text,
  .prose,
  .section-heading p,
  .credential-panel p,
  .barrie-card p,
  .notice-box p,
  .contact-copy p {
    font-size: 1rem;
  }

  .nav-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border: 1px solid rgba(244, 236, 220, 0.2);
    border-radius: 999px;
    background: rgba(244, 236, 220, 0.08);
    color: var(--cream);
    padding: 0 1rem;
    font: inherit;
    font-weight: 900;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    background: rgba(20, 18, 17, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.7rem 0;
  }

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .two-column,
  .story-grid,
  .credential-grid,
  .barrie-grid,
  .contact-grid,
  .follow-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
  }

  .hero-media,
  .hero-media > img {
    min-height: 520px;
  }

  .hero-media::before {
    background: linear-gradient(180deg, transparent 58%, rgba(9, 8, 7, 0.78));
  }

  .philosophy-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .food-feature-grid {
    grid-template-columns: 1fr;
  }

  .food-feature.large {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-image {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 5.85rem;
  }

  h1 {
    max-width: 6.8ch;
    font-size: clamp(3.2rem, 15vw, 4.2rem);
  }

  .hero-line {
    font-size: clamp(1.55rem, 9vw, 2.35rem);
  }

  .hero-media,
  .hero-media > img {
    min-height: 345px;
  }

  .hero-media > img {
    object-position: 58% 32%;
  }

  .hero-proof h2 {
    max-width: 100%;
  }

  .portrait-frame {
    aspect-ratio: 1 / 1.12;
  }

  .quote-panel p,
  .social-card strong {
    font-size: 1.12rem;
  }

  .hero-actions,
  .contact-links,
  .hero-links {
    flex-direction: column;
  }

  .button,
  .inquiry-form .button {
    width: 100%;
  }

  .strip-grid,
  .philosophy-grid,
  .service-grid,
  .gallery-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .strip-grid p + p {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .gallery-tile.tall,
  .gallery-tile.wide {
    grid-row: auto;
    grid-column: auto;
  }

  .food-feature,
  .service-image,
  .follow-portrait,
  .gallery-tile {
    min-height: 250px;
  }

  .contact-image {
    width: min(260px, 82vw);
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}
