@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-500.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-600.ttf") format("truetype");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/cormorant-garamond-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/manrope-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/manrope-700.ttf") format("truetype");
}

:root {
  --bg: #f6f0e5;
  --bg-soft: #efe3cf;
  --surface: rgba(255, 248, 237, 0.88);
  --text: #2c2015;
  --muted: #6e5b47;
  --accent: #a34a1f;
  --accent-dark: #7a2f0b;
  --line: rgba(68, 43, 26, 0.12);
  --shadow: 0 20px 60px rgba(58, 34, 17, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 126, 67, 0.16), transparent 32%),
    radial-gradient(circle at right, rgba(138, 66, 31, 0.12), transparent 26%),
    var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(246, 240, 229, 0.8);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand img {
  width: 220px;
  max-width: 48vw;
  filter: brightness(0) saturate(100%) opacity(0.9);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.4rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-dark);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(34, 23, 14, 0.14), rgba(34, 23, 14, 0.74)),
    linear-gradient(120deg, rgba(81, 36, 12, 0.55), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 8rem 0 5rem;
  color: #fff5eb;
}

.eyebrow,
.section-kicker,
.contact-label,
.footer-title {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero h1,
.hero h2,
.story-section h2,
.menu-section h2,
.grill-section h2,
.gallery-section h2,
.contact-section h2,
.legal-page h1,
.legal-page h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

.hero h1 {
  margin-top: 0.6rem;
  max-width: 9ch;
  font-size: clamp(3.5rem, 10vw, 7rem);
}

.hero-copy {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 245, 235, 0.88);
}

.hero-actions,
.center-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #fff5eb;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  background: rgba(255, 245, 235, 0.14);
  border: 1px solid rgba(255, 245, 235, 0.24);
  color: inherit;
}

.info-strip,
.story-section,
.menu-section,
.grill-section,
.gallery-section,
.contact-section,
.legal-page {
  padding: 5rem 0;
}

.story-section .container {
  width: min(1280px, calc(100% - 1rem));
}

.info-grid,
.story-layout,
.split-layout,
.contact-shell,
.footer-shell {
  display: grid;
  gap: 1.5rem;
}

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

.info-card,
.contact-card,
.legal-card {
  padding: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.info-card h2,
.story-section h2,
.menu-section h2,
.grill-section h2,
.gallery-section h2,
.contact-section h2,
.legal-page h1,
.legal-page h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.info-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.02;
  margin-bottom: 0.75rem;
}

.info-card p {
  margin: 0;
  line-height: 1.7;
}

.info-card p + p {
  margin-top: 0.7rem;
}

.story-layout,
.split-layout,
.contact-shell {
  grid-template-columns: 1fr 1.15fr;
  align-items: start;
}

.story-intro {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.story-copy,
.split-copy,
.contact-card,
.legal-card {
  color: var(--muted);
}

.quote {
  margin-top: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(163, 74, 31, 0.35);
  font-style: italic;
  color: var(--text);
}

.story-journey {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(86vw, 980px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.2rem 0 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(122, 47, 11, 0.35) transparent;
}

.story-journey::-webkit-scrollbar {
  height: 10px;
}

.story-journey::-webkit-scrollbar-thumb {
  background: rgba(122, 47, 11, 0.35);
  border-radius: 999px;
}

.story-carousel-shell {
  display: grid;
  gap: 1rem;
}

.story-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.story-carousel-header p {
  margin: 0;
}

.story-controls {
  display: flex;
  gap: 0.7rem;
}

.story-control {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.story-control:hover,
.story-control:focus-visible {
  background: #fff6ec;
}

.story-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  max-width: 1120px;
  margin: 0 auto;
}

.story-card-inner {
  display: grid;
  grid-template-columns: 56% 44%;
  align-items: stretch;
  min-height: 560px;
}

.story-card-image {
  height: 100%;
}

.story-card-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.story-card-copy {
  padding: 2.3rem 2rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(247, 238, 224, 0.98));
}

.story-step {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.story-panel h3 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.story-card-copy h3 {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 0.96;
  color: var(--text);
}

.story-card-copy p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.8;
}

.story-card-copy p + p {
  margin-top: 0.95rem;
}

.story-card-copy .quote {
  margin-top: 0;
}

.section-head {
  max-width: 44rem;
  margin-bottom: 1.8rem;
}

.menu-frame-shell {
  padding: 1rem;
  background: rgba(255, 248, 237, 0.76);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}

.menu-frame {
  width: 100%;
  min-height: 78vh;
  border: 0;
  border-radius: 20px;
  background: #fff;
}

.split-gallery {
  display: grid;
  gap: 1rem;
}

.split-gallery img,
.gallery-grid img {
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.gallery-carousel-shell {
  display: grid;
  gap: 1rem;
}

.gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
}

.gallery-control {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-control:hover,
.gallery-control:focus-visible {
  background: #fff6ec;
}

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82vw, 920px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.2rem 0 1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(122, 47, 11, 0.35) transparent;
}

.gallery-strip::-webkit-scrollbar {
  height: 10px;
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: rgba(122, 47, 11, 0.35);
  border-radius: 999px;
}

.gallery-strip img {
  width: 100%;
  height: min(72vh, 760px);
  object-fit: contain;
  object-position: center;
  scroll-snap-align: start;
  border-radius: 24px;
  background: linear-gradient(180deg, #f9f1e4, #efe0c8);
  box-shadow: var(--shadow);
}

.gallery-grid img:nth-child(1) {
  grid-column: span 7;
}

.gallery-grid img:nth-child(2) {
  grid-column: span 5;
}

.gallery-grid img:nth-child(3) {
  grid-column: span 4;
}

.gallery-grid img:nth-child(4) {
  grid-column: span 4;
}

.gallery-grid img:nth-child(5) {
  grid-column: span 4;
}

.contact-value {
  display: inline-block;
  margin: 0.2rem 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--accent-dark);
}

.contact-text {
  margin: 0.25rem 0 1rem;
}

.site-footer {
  padding: 1.8rem 0 3rem;
}

.footer-shell {
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.8rem 1.2rem;
  color: var(--muted);
}

.legal-page {
  min-height: 100vh;
}

.legal-shell {
  display: grid;
  gap: 1.5rem;
}

.legal-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

@media (max-width: 900px) {
  .info-grid,
  .story-layout,
  .story-intro,
  .split-layout,
  .contact-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .story-carousel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .story-journey {
    grid-auto-columns: min(92vw, 720px);
  }

  .story-section .container {
    width: min(100%, calc(100% - 1rem));
  }

  .story-card-inner,
  .story-card-reverse .story-card-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .story-card-image {
    height: auto;
  }

  .story-card-copy {
    padding: 1.7rem 1.5rem 1.8rem;
  }

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

  .gallery-grid img:nth-child(n) {
    grid-column: auto;
  }

  .gallery-strip {
    grid-auto-columns: min(92vw, 720px);
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
  }

  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 180px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 6rem 0 3.5rem;
  }

  .story-card-copy {
    padding: 1.35rem;
  }

  .story-card-image img {
    height: auto;
    min-height: 280px;
    max-height: 360px;
  }

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

  .gallery-strip img {
    height: min(52vh, 420px);
  }

  .menu-frame {
    min-height: 60vh;
  }
}
