:root {
  --ink: #211b18;
  --muted: #74685f;
  --paper: #fffaf3;
  --linen: #f3eadc;
  --olive: #68724a;
  --terracotta: #b85f3a;
  --wine: #5d2630;
  --gold: #d9a441;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(30, 21, 15, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.95);
  box-shadow: 0 12px 34px rgba(38, 28, 18, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 24px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transition: width 160ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
}

.header-cta {
  padding: 0 18px;
  color: var(--ink);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

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

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(27, 16, 12, 0.78), rgba(27, 16, 12, 0.36) 48%, rgba(27, 16, 12, 0.16)),
    linear-gradient(0deg, rgba(27, 16, 12, 0.46), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 150px clamp(20px, 8vw, 96px) 110px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.25;
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 13px 20px;
  border: 1px solid transparent;
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  bottom: 38px;
  z-index: 3;
  width: min(300px, calc(100% - 40px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(33, 27, 24, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card span,
.hero-card a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.hero-card strong {
  display: block;
  margin: 6px 0;
  font-size: 27px;
  line-height: 1.1;
}

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

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(33, 27, 24, 0.12);
  background: var(--white);
}

.quick-info article {
  padding: 30px clamp(20px, 5vw, 54px);
  border-right: 1px solid rgba(33, 27, 24, 0.12);
}

.quick-info article:last-child {
  border-right: 0;
}

.quick-info span,
.contact-grid span,
.daily-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong,
.contact-grid strong {
  font-size: 18px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.section-copy {
  max-width: 640px;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.feature-grid article,
.daily-menu,
.reviews article,
.contact-grid article {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(33, 27, 24, 0.08);
}

.feature-grid article {
  padding: 24px;
}

.feature-grid span {
  color: var(--terracotta);
  font-weight: 900;
}

.feature-grid p,
.menu-list p {
  color: var(--muted);
}

.menu-band {
  background: var(--linen);
}

.menu-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 26px;
}

.text-link {
  color: var(--wine);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.menu-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding-top: 0;
}

.daily-menu {
  align-self: start;
  padding: clamp(24px, 4vw, 42px);
  background: var(--wine);
  color: var(--white);
}

.daily-label {
  color: var(--gold);
}

.daily-menu ul,
.menu-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.daily-menu li,
.menu-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
}

.daily-menu li {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.menu-list article {
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(33, 27, 24, 0.14);
}

.menu-list strong {
  color: var(--terracotta);
  white-space: nowrap;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.service-list span {
  padding: 10px 12px;
  border: 1px solid rgba(33, 27, 24, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 800;
}

.gallery {
  padding-top: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.reviews {
  background: var(--olive);
  color: var(--white);
}

.reviews-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.reviews article {
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
}

.reviews p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 4vw, 42px);
  line-height: 1.18;
}

.rating {
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  text-align: center;
}

.rating span {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1;
}

.rating small {
  max-width: 100px;
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 6vw, 76px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-grid article {
  min-height: 128px;
  padding: 22px;
}

.map-placeholder {
  grid-column: 1 / -1;
  display: grid;
  min-height: 260px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(33, 27, 24, 0.78), rgba(93, 38, 48, 0.78)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1200&q=80") center/cover;
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(20px, 6vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .site-nav,
  .site-header.is-open .header-cta {
    display: flex;
  }

  .site-header.is-open {
    grid-template-columns: 1fr auto;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-header.is-open .header-cta {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .quick-info,
  .intro,
  .menu-layout,
  .split,
  .reviews-inner,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -86px 20px 28px;
  }
}

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

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding: 116px 20px 126px;
  }

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

  .quick-info article {
    border-right: 0;
    border-bottom: 1px solid rgba(33, 27, 24, 0.12);
  }

  .section {
    width: min(100% - 32px, 1180px);
    padding: 68px 0;
  }

  .menu-heading {
    align-items: start;
    flex-direction: column;
  }

  .daily-menu li,
  .menu-list article {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .image-panel img {
    height: 360px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
