:root {
  color-scheme: light;
  --ink: #16120f;
  --muted: rgba(22, 18, 15, 0.66);
  --line: rgba(22, 18, 15, 0.12);
  --red: #c65d52;
  --red-dark: #9f453c;
  --charcoal: #fbfaf7;
  --paper: #fffaf3;
  --paper-soft: #f5efe6;
  --black-text: #16120f;
  --teal: #0798a8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  min-height: 86px;
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(22, 18, 15, 0.08);
  background: rgba(255, 255, 255, 0.96);
  padding: 12px max(22px, calc((100vw - 1180px) / 2));
  box-shadow: 0 8px 24px rgba(22, 18, 15, 0.05);
}

.site-header__logo img {
  width: 180px;
  max-width: 100%;
  display: block;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 7vw, 120px);
  color: #606168;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.site-header nav a {
  padding: 10px 0;
}

.site-header nav a:hover,
.site-header__socials a:hover {
  color: var(--red-dark);
}

.site-header__socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  color: #7a7b80;
  font-weight: 800;
}

.hero {
  min-height: 720px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.22) 55%, rgba(251, 250, 247, 0.82) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
}

.hero__inner,
.feature-grid,
.menu-band,
.photo-section,
.visit-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.review-strip {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  margin: 42px auto 0;
  border: 1px solid rgba(22, 18, 15, 0.12);
  border-radius: 8px;
  background: white;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(22, 18, 15, 0.08);
}

.review-strip .section-label {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  color: var(--teal);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.review-strip h2 {
  margin-top: 10px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 900;
}

.review-strip p {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 72px 0 120px;
}

.hero__copy {
  width: min(640px, 100%);
  max-width: 680px;
  border: 1px solid rgba(22, 18, 15, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(28px, 5vw, 48px);
  color: var(--black-text);
  text-align: center;
  box-shadow: 0 18px 70px rgba(22, 18, 15, 0.16);
  backdrop-filter: blur(7px);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  margin: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--black-text);
  font-size: 0.88rem;
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  margin-top: 18px;
  max-width: 720px;
  font-size: clamp(1.3rem, 2.2vw, 2.1rem);
  font-weight: 900;
  text-transform: uppercase;
}

h1 span {
  color: var(--black-text);
}

.hero__logo {
  width: min(520px, 100%);
  display: block;
  margin: 18px auto 0;
}

.hero__lead {
  margin: 26px 0 0;
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.actions,
.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.actions {
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--red);
  color: white;
}

.button--primary:hover {
  background: var(--red-dark);
}

.button--outline {
  border: 1px solid rgba(22, 18, 15, 0.18);
  background: rgba(255, 255, 255, 0.7);
  color: var(--black-text);
}

.button--outline:hover {
  border-color: rgba(22, 18, 15, 0.34);
  background: white;
}

.button--dark {
  background: #090806;
  color: white;
  width: fit-content;
  margin-top: 30px;
}

.quick-facts {
  margin-top: 28px;
  color: rgba(22, 18, 15, 0.7);
  font-size: 0.95rem;
}

.quick-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 270px;
}

.quick-facts svg {
  width: 18px;
  height: 18px;
  color: var(--red-dark);
  flex: 0 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 58px 0;
}

.feature-card,
.info-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(22, 18, 15, 0.08);
}

.feature-card {
  padding: 28px;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: white;
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h2 {
  margin-top: 22px;
  font-size: 1.5rem;
  font-weight: 900;
}

.feature-card p,
.menu-band__copy p,
.note {
  color: var(--muted);
  line-height: 1.7;
}

.menu-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 54px;
  padding: 76px max(20px, calc((100vw - 1180px) / 2));
  background: white;
  color: var(--black-text);
}

.menu-band .section-label {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  color: var(--teal);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-band h2 {
  margin-top: 16px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 900;
}

.menu-band__copy p:last-child {
  max-width: 520px;
  color: rgba(22, 18, 15, 0.66);
  font-size: 1.08rem;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.menu-list span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(22, 18, 15, 0.1);
  border-radius: 8px;
  background: var(--paper-soft);
  padding: 15px 18px;
  color: var(--black-text);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(22, 18, 15, 0.06);
}

.photo-section {
  padding: 68px 0 0;
}

.section-heading {
  margin-bottom: 24px;
}

.photo-section .section-label {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  color: var(--teal);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 650px;
  margin-top: 14px;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 900;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.photo-card {
  min-height: 240px;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 34px rgba(22, 18, 15, 0.08);
}

.photo-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card--wide {
  grid-column: span 2;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  transition: transform 260ms ease;
}

.photo-card:hover img {
  transform: scale(1.025);
}

.photo-card figcaption {
  position: absolute;
  inset: auto 10px 10px;
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.78);
  padding: 10px 12px;
  color: white;
  font-size: 0.9rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.social-spotlight {
  width: min(1180px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  margin: 42px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 54px;
}

.social-spotlight .section-label {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  color: var(--teal);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.social-spotlight h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
}

.social-spotlight p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.7;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.social-cards article {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 34px rgba(22, 18, 15, 0.08);
}

.social-cards img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.social-cards article:first-child img {
  background: #080706;
  object-fit: contain;
}

.social-cards h3 {
  position: absolute;
  inset: auto 10px 10px;
  margin: 0;
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.78);
  padding: 10px 12px;
  color: white;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}

.video-section {
  width: min(1180px, calc(100% - 40px));
  margin: 62px auto 0;
}

.video-section .section-label {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
  color: var(--teal);
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.video-card {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  box-shadow: 0 12px 34px rgba(22, 18, 15, 0.08);
}

.video-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.video-card video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.video-card figcaption {
  position: absolute;
  inset: auto 10px 10px;
  border-radius: 8px;
  background: rgba(8, 7, 6, 0.78);
  padding: 10px 12px;
  color: white;
  font-size: 0.9rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 64px 0;
}

.info-panel {
  padding: 32px;
}

.info-panel h2 {
  font-size: 2rem;
  font-weight: 900;
}

.hours {
  margin: 24px 0 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  font-size: 1.08rem;
}

.hours dt,
.hours dd {
  margin: 0;
}

.hours dt {
  font-weight: 700;
}

.hours dd {
  color: rgba(22, 18, 15, 0.66);
  text-align: right;
}

.note {
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.info-panel--red {
  background: var(--teal);
  border-color: rgba(22, 18, 15, 0.04);
  color: white;
}

.info-panel--red address,
.info-panel--red .button {
  color: white;
}

address {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  font-style: normal;
  font-size: 1.08rem;
  line-height: 1.55;
}

address a {
  width: fit-content;
  max-width: 100%;
}

address a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 20px;
  color: rgba(22, 18, 15, 0.48);
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    padding: 14px 18px;
  }

  .site-header nav {
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.84rem;
  }

  .site-header__socials {
    justify-content: center;
  }

  .hero {
    min-height: 720px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.28) 48%, rgba(251, 250, 247, 0.9) 100%);
  }

  .hero__image {
    object-position: 62% center;
  }

  .feature-grid,
  .menu-band,
  .photo-grid,
  .review-strip,
  .social-spotlight,
  .social-cards,
  .video-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .review-actions {
    justify-content: flex-start;
  }

  .photo-card--large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .photo-card--wide {
    grid-column: span 1;
  }

  .video-card--large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .menu-band {
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .hero__inner,
  .feature-grid,
  .photo-section,
  .review-strip,
  .social-spotlight,
  .video-section,
  .visit-grid {
    width: min(100% - 28px, 1180px);
  }

  .social-actions,
  .social-actions .button,
  .review-actions,
  .review-actions .button {
    width: 100%;
  }

  .hero__inner {
    padding: 42px 0 78px;
  }

  h1 {
    font-size: clamp(1.1rem, 6vw, 1.6rem);
  }

  .hero__copy {
    padding: 24px 18px;
  }

  .actions,
  .actions .button {
    width: 100%;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .hours div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hours dd {
    text-align: left;
  }
}
