:root {
  --ink: #251915;
  --charcoal: #171412;
  --coffee: #3b2922;
  --cream: #fff8ed;
  --paper: #f7efe2;
  --line: rgba(59, 41, 34, 0.14);
  --terracotta: #b94f32;
  --terracotta-dark: #8f371f;
  --gold: #c89943;
  --sage: #667d4f;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(37, 25, 21, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(255, 248, 237, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(37, 25, 21, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius);
  font-family: Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.site-header.scrolled .brand-mark,
.site-header.menu-active .brand-mark {
  border-color: rgba(37, 25, 21, 0.1);
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  font-size: 0.72rem;
  opacity: 0.78;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link,
.nav-toggle,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.phone-link {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .phone-link,
.site-header.menu-active .phone-link {
  border-color: rgba(37, 25, 21, 0.12);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.site-header.scrolled .nav-toggle,
.site-header.menu-active .nav-toggle {
  border-color: rgba(37, 25, 21, 0.12);
  background: var(--white);
}

.section {
  padding: clamp(76px, 9vw, 126px) clamp(18px, 4vw, 48px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 110px;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media img {
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(23, 20, 18, 0.9) 0%, rgba(23, 20, 18, 0.62) 45%, rgba(23, 20, 18, 0.25) 100%),
    linear-gradient(0deg, rgba(23, 20, 18, 0.76), rgba(23, 20, 18, 0.06) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-width: var(--max);
  margin: 0 auto;
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(200, 153, 67, 0.16);
  color: var(--gold);
  border: 1px solid rgba(200, 153, 67, 0.32);
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin: 18px 0 18px;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  max-width: 920px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.6vw, 4.6rem);
}

h3 {
  line-height: 1.15;
  font-size: 1.15rem;
}

.hero-subtitle {
  max-width: 760px;
  font-size: clamp(1.18rem, 2.2vw, 1.7rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(37, 25, 21, 0.2);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.btn-ghost.dark {
  color: var(--ink);
  border-color: rgba(37, 25, 21, 0.16);
  background: rgba(255, 255, 255, 0.64);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof span {
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof strong {
  display: block;
  color: var(--gold);
  font-size: 1.25rem;
}

.section-grid,
.booking-wrap,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.section-copy p,
.section-heading p,
.booking-copy p,
.contact-copy p,
.footer p {
  color: rgba(37, 25, 21, 0.72);
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.check-list span,
.contact-list span,
.contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.check-list svg,
.contact-list svg {
  flex: 0 0 auto;
  color: var(--terracotta);
}

.about-card {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 290px;
  padding: 16px;
  background: rgba(255, 248, 237, 0.94);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(23, 20, 18, 0.24);
}

.section-warm {
  background: var(--paper);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 38px;
}

.section-heading p {
  max-width: 680px;
}

.category-grid,
.dish-grid,
.feature-grid,
.review-grid,
.offer-grid,
.footer-grid {
  display: grid;
  max-width: var(--max);
  margin: 0 auto;
  gap: 18px;
}

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

.category-card,
.dish-card,
.feature-card,
.review-card,
.offer-card,
.booking-form,
.final-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(37, 25, 21, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.dish-card:hover,
.feature-card:hover,
.review-card:hover,
.offer-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 79, 50, 0.28);
  box-shadow: var(--shadow);
}

.category-card img {
  height: 230px;
}

.category-card h3,
.category-card p {
  padding: 0 20px;
}

.category-card h3 {
  margin: 18px 0 8px;
}

.category-card p {
  margin-bottom: 22px;
}

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

.dish-card img {
  height: 250px;
}

.dish-body {
  padding: 18px;
}

.dish-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(102, 125, 79, 0.14);
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dish-body h3 {
  margin: 13px 0 8px;
}

.dish-body p {
  color: rgba(37, 25, 21, 0.7);
}

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.dish-footer strong {
  font-size: 1.35rem;
  color: var(--terracotta-dark);
}

.dish-footer button {
  min-height: 40px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 13px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.section-dark .section-heading p,
.section-dark p,
.section-dark .contact-list span,
.section-dark .contact-list a {
  color: rgba(255, 248, 237, 0.76);
}

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

.feature-card {
  padding: 24px;
  background: rgba(255, 248, 237, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.feature-card svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.feature-card h3 {
  margin: 18px 0 8px;
}

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

.review-card {
  padding: 26px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.review-card p {
  font-size: 1.05rem;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  color: rgba(37, 25, 21, 0.62);
}

.booking-wrap {
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
}

.booking-stat {
  width: fit-content;
  margin-top: 26px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
}

.booking-stat strong,
.booking-stat span {
  display: block;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
}

.booking-form label {
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(37, 25, 21, 0.16);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf7;
  outline: none;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(185, 79, 50, 0.12);
}

.full {
  grid-column: 1 / -1;
}

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

.offer-card {
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 237, 0.92)),
    url("https://images.unsplash.com/photo-1551218808-94e220e084d2?auto=format&fit=crop&w=900&q=80") center/cover;
}

.offer-card.accent {
  background:
    linear-gradient(135deg, rgba(185, 79, 50, 0.94), rgba(59, 41, 34, 0.88)),
    url("https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&w=900&q=80") center/cover;
  color: var(--white);
}

.offer-card span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.offer-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  margin: 12px 0;
}

.offer-card p {
  margin-bottom: 0;
}

.contact-grid {
  grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 1.12fr);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.map-card {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #334332, #66503b 48%, #231815);
  background-size: 46px 46px, 46px 46px, cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  background: rgba(255, 248, 237, 0.42);
  border-radius: 999px;
}

.map-card::before {
  width: 75%;
  height: 12px;
  left: 10%;
  top: 30%;
  transform: rotate(-13deg);
}

.map-card::after {
  width: 12px;
  height: 82%;
  right: 28%;
  top: 8%;
  transform: rotate(17deg);
}

.map-pulse {
  position: absolute;
  left: 48%;
  top: 46%;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--terracotta);
  box-shadow: 0 0 0 14px rgba(185, 79, 50, 0.2), 0 0 0 28px rgba(185, 79, 50, 0.12);
}

.map-label {
  position: absolute;
  left: calc(48% + 24px);
  top: calc(46% - 10px);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.final-cta {
  padding-top: 84px;
  background: var(--cream);
}

.final-card {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 248, 237, 0.94), rgba(255, 248, 237, 0.72)),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1600&q=82") center/cover;
}

.final-card h2 {
  max-width: 820px;
  margin-top: 16px;
}

.footer {
  padding: 54px clamp(18px, 4vw, 48px) 28px;
  background: #100d0c;
  color: var(--white);
}

.footer-grid {
  grid-template-columns: 1.5fr 0.7fr 0.7fr 0.9fr;
  align-items: start;
}

.footer h3 {
  margin-bottom: 14px;
}

.footer a:not(.brand) {
  display: block;
  color: rgba(255, 248, 237, 0.76);
  margin-bottom: 8px;
}

.footer p {
  color: rgba(255, 248, 237, 0.72);
}

.footer-brand {
  margin-bottom: 18px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--max);
  margin: 38px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 248, 237, 0.64);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

@media (max-width: 1040px) {
  .phone-link span {
    display: none;
  }

  .category-grid,
  .dish-grid,
  .feature-grid,
  .review-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 12px 16px;
  }

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

  .nav-links {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 8px;
    border-radius: var(--radius);
    background: var(--cream);
    color: var(--ink);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 12px;
    border-radius: var(--radius);
  }

  .nav-links a:hover {
    background: var(--paper);
  }

  .nav-links a::after {
    display: none;
  }

  .section-grid,
  .booking-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 940px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(23, 20, 18, 0.9), rgba(23, 20, 18, 0.46));
  }

  .hero-content {
    margin-left: 0;
  }

  .about-card,
  .map-card {
    min-height: 390px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand small,
  .phone-link {
    display: none;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-proof,
  .cta-row {
    display: grid;
  }

  .btn,
  .hero-proof span {
    width: 100%;
  }

  .category-grid,
  .dish-grid,
  .feature-grid,
  .review-grid,
  .offer-grid,
  .booking-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card img,
  .dish-card img {
    height: 220px;
  }

  .floating-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }

  .map-label {
    left: 20px;
    top: 22px;
  }
}
