:root {
  --bg: #f4f0e8;
  --bg-soft: #faf7f1;
  --surface: #fffdf8;
  --ink: #211b16;
  --muted: #6d6359;
  --brand: #b8933f;
  --brand-strong: #8d6a1d;
  --line: rgba(33, 27, 22, 0.12);
  --shadow: 0 24px 60px rgba(20, 12, 2, 0.12);
  --max: 1180px;
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at top, rgba(184, 147, 63, 0.14), transparent 38%),
    linear-gradient(180deg, #f7f3eb 0%, #f3eee5 55%, #ece5da 100%);
  color: var(--ink);
  line-height: 1.6;
}

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

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

button,
.button {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: #111;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(16, 13, 10, 0.92);
  border-bottom: 1px solid rgba(255, 240, 202, 0.12);
}

.home-page .site-header {
  position: absolute;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 0;
}

.nav-shell,
.section-shell,
.footer-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 96px;
}

.nav-shell-home {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding-top: 1.65rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 108px;
  height: auto;
}

.brand-home {
  justify-self: center;
}

.brand-home img {
  width: 286px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d4b062;
}

.brand-subtitle {
  color: rgba(247, 240, 223, 0.82);
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  background: #16130f;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav-home ul {
  gap: 0.8rem;
}

.site-nav.site-nav-home a {
  min-height: auto;
  padding: 0.78rem 1.28rem;
  color: #fff8e7;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
  background: rgba(20, 16, 11, 0.58);
  border: 1px solid rgba(255, 240, 202, 0.34);
  border-radius: 999px;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.site-nav.site-nav-home a[aria-current="page"],
.site-nav.site-nav-home a:hover,
.site-nav.site-nav-home a:focus-visible {
  background: rgba(255, 243, 214, 0.22);
  color: #ffffff;
}

.site-nav-home-left {
  justify-self: start;
}

.site-nav-home-right {
  justify-self: end;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: rgba(247, 240, 223, 0.86);
}

.site-nav-mobile {
  display: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(212, 176, 98, 0.18);
  color: #fff6df;
  outline: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: clip;
  background: #0d0907;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 5%, rgba(0, 0, 0, 0.62) 78%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(90deg, rgba(12, 10, 8, 0.55), rgba(12, 10, 8, 0.16) 48%, rgba(12, 10, 8, 0.7));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 8rem 0 4rem;
  color: #f7f0df;
}

.hero-content-home {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 8.25rem 0 8.5rem;
  text-align: center;
}

.hero .hero-quote {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 4.8rem);
  font-weight: 800;
  color: #f6ecd4;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.82);
  max-width: none;
  line-height: 1;
  white-space: nowrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #e1c576;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  line-height: 0.98;
  margin: 1rem 0;
  max-width: 12ch;
}

.hero p,
.page-hero p {
  max-width: 62ch;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(247, 240, 223, 0.84);
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
}

.button-primary {
  background: linear-gradient(135deg, #dcb45a, #a57a24);
  color: #140e08;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(165, 122, 36, 0.25);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 241, 214, 0.25);
  color: #fff6e4;
}

.main-content section {
  padding: 5rem 0;
}

.awards-home-section {
  background: #fff;
  padding-top: 4.5rem;
}

.panel {
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(184, 147, 63, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.home-story-section {
  align-items: stretch;
}

.home-story-section > .panel {
  height: 100%;
  min-height: 780px;
}

.story-card,
.contact-grid,
.gallery-grid,
.menu-grid,
.award-grid,
.stats-grid {
  display: grid;
  gap: 1.35rem;
}

.story-card {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.home-story-section .story-card {
  height: 100%;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.story-block,
.contact-card,
.menu-card,
.award-card,
.gallery-card,
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.35rem;
}

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

.home-story-section .story-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.2rem;
}

.home-story-section .story-block img {
  max-width: 190px;
  width: 100%;
  margin: 0 auto 1rem;
}

.story-block h3,
.contact-card h3,
.menu-card h3,
.award-card h3,
.gallery-card h3,
.info-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.section-title {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin: 0;
}

.section-title p {
  max-width: 62ch;
  color: var(--muted);
  margin: 0;
}

.section-title-centered {
  text-align: center;
  justify-items: center;
}

.award-grid {
  grid-template-columns: 1.4fr 0.9fr 0.9fr;
}

.award-grid-home {
  grid-template-columns: 1fr;
  align-items: start;
}

.award-card-main {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.award-card-main img {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.award-card-plain {
  display: none;
}

.award-card img,
.gallery-card img,
.menu-card img {
  border-radius: 18px;
}

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

.menu-card span {
  color: var(--brand-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

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

.gallery-card {
  overflow: hidden;
  padding: 0;
}

.gallery-card figcaption {
  padding: 1rem 1.1rem 1.2rem;
  color: var(--muted);
}

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

.contact-card img {
  width: 58px;
  margin-bottom: 1rem;
}

.page-hero {
  padding: 8rem 0 3rem;
}

.page-hero-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 3rem;
  background:
    linear-gradient(160deg, rgba(16, 12, 8, 0.92), rgba(44, 28, 12, 0.75)),
    url("../img/hero.jpg") center/cover;
  color: #fff5dd;
  border-radius: 36px;
  overflow: hidden;
}

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

.stat-value {
  display: block;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--brand-strong);
  font-weight: 700;
}

.site-footer {
  padding: 4rem 0 2rem;
  background: #11100f;
  color: #f4ebd6;
}

.footer-shell {
  display: grid;
  gap: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand img {
  width: 120px;
  margin-bottom: 1rem;
}

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

.footer-links a,
.footer-meta a {
  color: #f4ebd6;
  opacity: 0.82;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(244, 235, 214, 0.12);
  color: rgba(244, 235, 214, 0.7);
}

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

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

.flow > * + * {
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .split,
  .award-grid,
  .menu-grid,
  .gallery-grid,
  .contact-grid,
  .footer-top,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-shell {
    min-height: 88px;
  }

  .brand-home img {
    width: 228px;
  }

  .site-nav.site-nav-home a {
    font-size: 0.9rem;
    padding: 0.72rem 1rem;
  }
}

@media (max-width: 768px) {
  .home-page .site-header {
    position: sticky;
    background: rgba(247, 243, 235, 0.95);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(33, 27, 22, 0.08);
  }

  .site-header {
    background: rgba(16, 13, 10, 0.96);
    border-bottom: 1px solid rgba(255, 240, 202, 0.12);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav-home {
    display: none;
  }

  .site-nav-mobile {
    display: none;
  }

  .nav-shell-home {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-top: 0;
  }

  .brand-home {
    justify-self: start;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 0.5rem) 1rem auto;
    background: rgba(247, 243, 235, 0.98);
    border: 1px solid rgba(33, 27, 22, 0.1);
    border-radius: 24px;
    padding: 0.75rem;
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav[data-open="true"] {
    display: block;
  }

  .site-nav-mobile[data-open="true"] {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    justify-content: center;
  }

  .split,
  .story-card,
  .award-grid,
  .menu-grid,
  .gallery-grid,
  .contact-grid,
  .footer-top,
  .stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-hero-shell,
  .story-block,
  .contact-card,
  .menu-card,
  .award-card,
  .gallery-card,
  .info-card {
    border-radius: 22px;
  }

  .page-hero-shell {
    padding: 2rem;
  }

  .hero-content {
    padding-top: 6.5rem;
  }

  .hero-content-home {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 0 2.2rem;
  }

  .hero .hero-quote {
    font-size: clamp(2.35rem, 9vw, 3.3rem);
    white-space: normal;
  }
}

@media (max-width: 414px) {
  .nav-shell,
  .section-shell,
  .footer-shell,
  .hero-content,
  .page-hero-shell {
    width: min(calc(100% - 1rem), var(--max));
  }

  .brand img {
    width: 88px;
  }

  .brand-home img {
    width: 118px;
  }

  .brand-subtitle,
  .brand-title {
    font-size: 0.76rem;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }

  .contact-card,
  .menu-card,
  .story-block,
  .award-card,
  .info-card {
    padding: 1.1rem;
  }

  .awards-home-section {
    padding-top: 3rem;
  }

  .award-grid-home {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .award-card-main {
    grid-column: 1 / -1;
  }
}
