:root {
  --ink: #17201d;
  --ink-soft: #46514d;
  --paper: #f3f5f0;
  --surface: #e8ece6;
  --line: #c7cec8;
  --accent: #a43d24;
  --accent-dark: #7f2d1a;
  --white: #fafbf7;
  --header-height: 72px;
  --radius: 3px;
  --shadow: 0 20px 55px rgb(23 32 29 / 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.page-shell {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}
.section { padding: clamp(88px, 11vw, 152px) 0; }
.section-kicker,
.hero-kicker {
  margin: 0 0 14px;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  letter-spacing: -0.038em;
  line-height: 0.96;
}
h1 { font-size: clamp(3.2rem, 10vw, 8rem); }
h2 { font-size: clamp(2.45rem, 5.4vw, 5.2rem); }
h3 { line-height: 1.15; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - 1240px) / 2));
  color: var(--white);
  border-bottom: 1px solid rgb(250 251 247 / 0.2);
  background: rgb(15 20 18 / 0.16);
  backdrop-filter: blur(12px);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgb(243 245 240 / 0.94);
  border-bottom-color: var(--line);
}
.brand-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-link img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a,
.footer-links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}
.desktop-nav a { position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 4px; }
.social-link {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: inherit;
}
.social-link svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.social-link svg path { fill: currentColor; stroke: none; }
.social-link .social-dot { fill: currentColor; stroke: none; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span { display: block; height: 2px; margin: 7px 0; background: currentColor; transition: transform 180ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  padding: calc(var(--header-height) + 30px) 22px 32px;
  background: var(--paper);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu-inner { display: flex; min-height: 100%; flex-direction: column; justify-content: space-between; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 8px 0; text-decoration: none; font-size: clamp(2.2rem, 12vw, 4rem); font-weight: 800; letter-spacing: -0.05em; line-height: 1; }
.mobile-contact { border-top: 1px solid var(--line); padding-top: 20px; }
.mobile-contact a { font-weight: 800; }
.mobile-contact p { margin: 8px 0 0; color: var(--ink-soft); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #242724;
}
.hero-image,
.hero-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { z-index: -2; object-fit: cover; object-position: 62% 52%; }
.hero-scrim {
  z-index: -1;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.18), rgb(0 0 0 / 0.26) 48%, rgb(0 0 0 / 0.30));
}
.hero-content { display: flex; flex-direction: column; align-items: flex-end; padding-top: 120px; padding-bottom: clamp(148px, 17vh, 184px); text-align: right; }
.hero-kicker { color: #f0ad97; }
.hero h1 { max-width: 10ch; margin-bottom: 22px; font-size: clamp(3.2rem, 8.1vw, 7.15rem); }
.hero-copy { max-width: 48ch; margin-bottom: 28px; font-size: clamp(1rem, 1.7vw, 1.14rem); font-weight: 550; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.hero-quick-info {
  position: absolute;
  right: 0;
  bottom: clamp(56px, 9vh, 100px);
  left: 0;
  display: flex;
  justify-content: flex-end;
  gap: 38px;
  pointer-events: none;
}
.hero-quick-info p { margin: 0; padding-left: 18px; border-left: 1px solid rgb(226 103 69 / 0.82); }
.hero-quick-info strong,
.hero-quick-info span { display: block; }
.hero-quick-info strong { color: #f0ad97; font-size: 0.75rem; letter-spacing: 0.09em; text-transform: uppercase; }
.hero-quick-info span { margin-top: 3px; font-size: 0.88rem; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.button:active { transform: translateY(1px); }
.button-primary { background: var(--white); color: var(--ink); }
.button-primary:hover { background: #e7e9e5; }
.hero .button-primary { background: var(--accent); color: var(--white); }
.hero .button-primary:hover { background: var(--accent-dark); }
.button-ghost { border-color: rgb(250 251 247 / 0.72); background: rgb(15 20 18 / 0.14); color: var(--white); }
.button-ghost:hover { background: rgb(250 251 247 / 0.16); }
.button-accent { background: var(--accent); color: var(--white); }
.button-accent:hover { background: var(--accent-dark); }
.button-outline { border-color: var(--ink); color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }

.intro-strip { border-bottom: 1px solid var(--line); background: var(--surface); }
.feature-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-row p { margin: 0; padding: 24px 18px; border-left: 1px solid var(--line); text-align: center; }
.feature-row p:last-child { border-right: 1px solid var(--line); }
.feature-row strong,
.feature-row span { display: block; }
.feature-row strong { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.feature-row span { margin-top: 3px; color: var(--ink-soft); font-size: 0.78rem; }

.about-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr); gap: clamp(48px, 7vw, 104px); align-items: center; }
.about { padding-block: clamp(56px, 6vw, 80px); }
.about-copy { max-width: 620px; min-height: 610px; display: flex; flex-direction: column; justify-content: center; }
.about-copy h2 { margin-bottom: 38px; font-size: clamp(3.1rem, 5.8vw, 5.8rem); }
.about-copy > p:not(.section-kicker) { max-width: 52ch; color: var(--ink-soft); font-size: 1.17rem; line-height: 1.72; }
.about-copy .text-link { margin-top: 10px; }
.ratio-frame { aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--radius); }
.ratio-frame img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-media { position: relative; padding: 0 32px 46px 0; }
.about-image img { object-position: 50% 50%; }
.about-stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(210px, 48%);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
}
.about-stamp img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; }
.about-stamp span { font-size: 0.78rem; font-weight: 800; line-height: 1.35; text-transform: uppercase; letter-spacing: 0.06em; }
.text-link {
  display: inline-block;
  color: var(--accent-dark);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 5px;
  font-weight: 800;
}

.menu-preview { background: var(--ink); color: var(--white); }
.section-heading { max-width: 760px; margin-bottom: clamp(42px, 7vw, 76px); }
.section-heading h2 { margin-bottom: 22px; }
.section-heading > p:last-child { max-width: 58ch; color: #c7ceca; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 28px); }
.menu-panel { border-top: 1px solid #525c57; padding-top: 16px; }
.menu-panel .ratio-frame { margin-bottom: 22px; }
.menu-panel img { object-position: center; }
.menu-panel-copy h3 { margin-bottom: 10px; font-size: clamp(1.5rem, 2.5vw, 2.15rem); letter-spacing: -0.035em; }
.menu-panel-copy p { max-width: 33ch; color: #c7ceca; }

.people-story { position: relative; min-height: min(82svh, 820px); display: grid; align-items: end; overflow: hidden; isolation: isolate; color: var(--white); background: var(--ink); }
.people-story > img,
.people-story-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.people-story > img { z-index: -2; object-fit: cover; object-position: 50% 58%; }
.people-story-scrim { z-index: -1; background: linear-gradient(90deg, rgb(0 0 0 / 0.60), rgb(0 0 0 / 0.34) 48%, rgb(0 0 0 / 0.12)); }
.people-story-copy { padding-bottom: clamp(44px, 8vw, 88px); }
.people-story-copy p { max-width: 15ch; margin-bottom: 16px; font-size: clamp(2.4rem, 6.5vw, 5.8rem); font-weight: 850; line-height: 0.97; letter-spacing: -0.038em; text-wrap: balance; }
.people-story-copy span { font-weight: 700; }

.gallery-heading { max-width: 720px; margin-bottom: 48px; }
.gallery-heading h2 { margin-bottom: 18px; }
.gallery-heading p { color: var(--ink-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #d9ddd7;
  cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 450ms cubic-bezier(.16, 1, .3, 1); }
.gallery-item:hover img { transform: scale(1.025); }

.reviews { background: var(--surface); }
.reviews-layout { display: grid; grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr); gap: clamp(50px, 10vw, 140px); align-items: start; }
.reviews-summary { position: sticky; top: 116px; }
.review-source { display: inline-block; margin-bottom: 20px; padding: 7px 11px; background: var(--accent); color: var(--white); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.reviews-summary h2 { margin-bottom: 40px; }
.rating-lockup { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: center; }
.rating-number { grid-row: span 2; font-size: 4.4rem; font-weight: 850; letter-spacing: -0.08em; line-height: 0.9; }
.stars { color: var(--accent); letter-spacing: 0.05em; }
.rating-lockup > span:last-child { color: var(--ink-soft); font-size: 0.9rem; }
.review { padding: 34px 0; border-bottom: 1px solid var(--line); }
.review:first-child { padding-top: 0; }
.review-topline { display: flex; align-items: center; gap: 16px; }
.review-topline img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.review-topline h3 { margin: 0 0 3px; font-size: 1rem; }
.review-topline span { color: var(--accent); font-size: 0.82rem; letter-spacing: 0.06em; }
.review blockquote { max-width: 650px; margin: 22px 0 18px; font-size: clamp(1.22rem, 2.3vw, 1.7rem); line-height: 1.45; letter-spacing: -0.025em; }
.review mark { background: transparent; color: var(--accent-dark); font-weight: 760; }
.review > a { color: var(--accent-dark); font-size: 0.86rem; font-weight: 800; text-underline-offset: 4px; }

.visit { padding-bottom: 0; }
.visit-heading { margin-bottom: 48px; }
.visit-heading h2 { max-width: 840px; }
.visit-grid { display: grid; grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr); gap: clamp(40px, 7vw, 92px); align-items: stretch; }
.visit-details { display: grid; align-content: start; gap: 38px; padding-bottom: 80px; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 10px; padding-bottom: 6px; }
.visit-block { padding-top: 16px; border-top: 1px solid var(--line); }
.visit-block h3 { margin-bottom: 12px; font-size: 0.78rem; letter-spacing: 0.11em; text-transform: uppercase; }
.visit-block p { color: var(--ink-soft); }
.phone-link { font-size: 1.3rem; font-weight: 850; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.hours-list { margin: 0; }
.hours-list div { display: flex; justify-content: space-between; gap: 20px; }
.hours-list dt { color: var(--ink-soft); }
.hours-list dd { margin: 0; text-align: right; font-weight: 750; }
.map-wrap { min-height: 620px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; background: #d7dbd6; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 620px; display: block; }

.site-footer { padding: 54px 0; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.7fr 1fr; gap: 42px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.footer-brand strong { display: block; font-size: 1.25rem; }
.footer-brand span { color: #bfc7c2; font-size: 0.9rem; }
.footer-links { display: grid; gap: 8px; }
.footer-contact { justify-self: end; text-align: right; }
.footer-contact > a { font-weight: 800; }
.footer-contact p { margin: 8px 0 10px; color: #bfc7c2; }
.footer-socials { display: flex; justify-content: flex-end; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 90px;
  align-items: center;
  padding: 72px 24px 28px;
  background: rgb(10 14 12 / 0.94);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox-close { position: absolute; top: 22px; right: 24px; border: 1px solid rgb(255 255 255 / 0.42); border-radius: var(--radius); padding: 9px 14px; background: transparent; color: var(--white); cursor: pointer; }
.lightbox-nav { border: 0; padding: 14px 8px; background: transparent; color: var(--white); cursor: pointer; font-weight: 750; }
.lightbox-stage { min-width: 0; margin: 0; display: grid; place-items: center; }
.lightbox-stage img { max-width: 100%; max-height: calc(100svh - 140px); object-fit: contain; }
.lightbox-stage figcaption { margin-top: 12px; color: #d5dbd7; font-size: 0.88rem; text-align: center; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { animation: reveal-in 560ms cubic-bezier(.16, 1, .3, 1) both; }
@keyframes reveal-in {
  from { opacity: 0.72; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

:focus-visible { outline: 3px solid #e26745; outline-offset: 4px; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-actions > .social-link { display: none; }
  .menu-toggle, .mobile-menu { display: block; }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .feature-row p:nth-child(3) { border-top: 1px solid var(--line); }
  .feature-row p:nth-child(4) { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .about-grid, .reviews-layout, .visit-grid { grid-template-columns: 1fr; }
  .about-copy { max-width: none; }
  .about-copy { min-height: 0; }
  .about-image { width: min(100%, 620px); justify-self: end; }
  .about-media { width: min(100%, 620px); justify-self: end; }
  .menu-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .reviews-summary { position: static; }
  .visit-details { grid-template-columns: repeat(3, 1fr); padding-bottom: 0; }
  .map-wrap { min-height: 520px; }
  .map-wrap iframe { min-height: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; justify-self: start; text-align: left; }
  .footer-socials { justify-content: flex-start; }
}

@media (max-width: 700px) {
  :root { --header-height: 64px; }
  .page-shell { width: min(100% - 32px, 1240px); }
  .section { padding: 84px 0; }
  .site-header { padding-inline: 16px; }
  .brand-link img { width: 40px; height: 40px; }
  .brand-link span { font-size: 0.94rem; }
  .hero-content { padding-top: 102px; padding-bottom: 118px; }
  .hero h1 { font-size: clamp(3rem, 15.5vw, 4.9rem); max-width: 8ch; }
  .hero-image { object-position: 16% center; }
  .hero-copy { max-width: 33ch; }
  .hero-quick-info { display: none; }
  .button { flex: 1 1 145px; }
  .feature-row p { padding: 17px 7px; }
  .feature-row strong { font-size: 0.68rem; }
  .feature-row span { font-size: 0.7rem; }
  .about-grid { gap: 42px; }
  .about { padding-block: 52px; }
  .about-media { width: 100%; padding: 0 44px 50px 0; }
  .about-image { width: 100%; }
  .menu-grid { grid-template-columns: 1fr; gap: 48px; }
  .menu-panel { padding-top: 12px; }
  .people-story { min-height: 72svh; }
  .people-story > img { object-position: 44% 50%; }
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-item { width: 100%; }
  .reviews-layout { gap: 46px; }
  .review blockquote { font-size: 1.16rem; }
  .visit-grid { gap: 30px; }
  .visit-details { grid-template-columns: 1fr; gap: 26px; }
  .map-wrap, .map-wrap iframe { min-height: 450px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-contact { grid-column: auto; }
  .lightbox { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr auto; padding: 72px 14px 18px; }
  .lightbox-stage { grid-column: 1 / -1; }
  .lightbox-prev { grid-row: 2; }
  .lightbox-next { grid-row: 2; }
}

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