:root {
  --wine: #7a241c;
  --wine-dark: #531813;
  --cream: #f8f1e5;
  --cream-dark: #eee2cf;
  --gold: #c99b55;
  --ink: #2c2420;
  --muted: #746860;
  --white: #fffdf9;
  --shadow: 0 16px 45px rgba(55, 32, 22, 0.12);
  --radius: 18px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid rgba(122, 36, 28, 0.12);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1180px, calc(100% - 36px));
  min-height: 78px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--wine);
}

.brand small {
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.72rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
}

.nav a:hover {
  color: var(--wine);
}

.hero {
  min-height: min(720px, calc(100vh - 78px));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #3a211a;
  background-image: url("frnt restaurant.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(38, 18, 13, 0.82) 0%, rgba(38, 18, 13, 0.60) 48%, rgba(38, 18, 13, 0.20) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: auto;
  padding: 90px 0;
  color: white;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.72rem;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  max-width: 700px;
}

.hero-text {
  max-width: 570px;
  margin: 28px 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

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

.button {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.button-primary {
  background: var(--gold);
  color: #24160e;
}

.button-light {
  border: 1px solid rgba(255,255,255,0.65);
  color: white;
}

.intro-strip {
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--cream-dark);
}

.intro-item {
  min-height: 110px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--cream-dark);
}

.intro-item:last-child {
  border-right: 0;
}

.icon {
  font-size: 1.7rem;
}

.intro-item div {
  display: flex;
  flex-direction: column;
}

.intro-item strong {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.intro-item span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
}

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

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

.about-image {
  height: 610px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-copy h2,
.section-heading h2,
.visit-copy h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  color: var(--wine-dark);
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1;
}

.about-copy p {
  color: #544943;
}

.signature {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
}

.signature span {
  font-family: var(--serif);
  color: var(--wine);
  font-size: 1.15rem;
}

.signature small {
  color: var(--muted);
}

.menu-section {
  max-width: 1280px;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 15px;
}

.section-heading > p:last-child {
  color: var(--muted);
  margin: 0;
}

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

.menu-card {
  background: white;
  border: 1px solid #eadfd2;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(55, 32, 22, 0.06);
}

.menu-image {
  height: 230px;
  position: relative;
  background: var(--cream);
}

.menu-image img {
  transition: transform 0.4s ease;
}

.menu-card:hover .menu-image img {
  transform: scale(1.04);
}

.badge {
  position: absolute;
  left: 14px;
  top: 14px;
  background: var(--wine);
  color: white;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 800;
}

.menu-card-body {
  padding: 20px;
}

.menu-card h3 {
  margin: 0 0 6px;
  color: var(--wine-dark);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.menu-note {
  margin: 30px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.quote-section {
  background: var(--wine);
  color: white;
  padding: 90px 20px;
  text-align: center;
}

.quote-inner {
  max-width: 800px;
  margin: auto;
}

.quote-mark {
  display: block;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
}

blockquote {
  margin: 25px 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.1;
}

.quote-inner p {
  margin: 0;
  color: #ead7b8;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.gallery {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 360px;
  gap: 18px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery img {
  transition: transform 0.4s ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.visit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--cream);
}

.visit-image {
  min-height: 520px;
}

.visit-copy {
  padding: 80px clamp(28px, 7vw, 100px);
  align-self: center;
}

.visit-copy h2 {
  margin-bottom: 24px;
}

.visit-copy p {
  color: #544943;
}

.location-text {
  font-size: 1.08rem;
}

.route-note {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
}

.route-note > span {
  font-size: 1.4rem;
}

.route-note div {
  display: flex;
  flex-direction: column;
}

.route-note strong {
  color: var(--wine-dark);
}

.route-note small {
  color: var(--muted);
}

.footer {
  background: #261915;
  color: #f5eadb;
  padding: 34px 0;
}

.footer-inner {
  width: min(1180px, calc(100% - 36px));
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer strong {
  font-family: var(--serif);
  font-size: 1.25rem;
}

.footer p {
  margin: 4px 0 0;
  color: #cbbeb2;
  font-size: 0.78rem;
}

.footer-right {
  text-align: right;
}

/* Tablets */
@media (max-width: 850px) {
  .header-inner {
    min-height: 70px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 0.75rem;
  }

  .hero {
    min-height: 620px;
  }

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

  .about-image {
    height: 450px;
  }

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

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 230px;
  }

  .gallery-large {
    grid-column: 1 / -1;
  }

  .visit-section {
    grid-template-columns: 1fr;
  }

  .visit-image {
    height: 430px;
    min-height: 0;
  }
}

/* Phones */
@media (max-width: 600px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
    min-height: 64px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.65rem;
  }

  .nav {
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    white-space: nowrap;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 620px;
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(38, 18, 13, 0.82), rgba(38, 18, 13, 0.52));
  }

  .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 70px 0;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .hero-text {
    font-size: 0.96rem;
    max-width: 360px;
  }

  .button {
    padding: 12px 16px;
  }

  .intro-strip {
    grid-template-columns: 1fr;
  }

  .intro-item {
    justify-content: flex-start;
    min-height: 78px;
    padding: 16px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--cream-dark);
  }

  .intro-item:last-child {
    border-bottom: 0;
  }

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

  .about-image {
    height: 350px;
  }

  .about-copy h2,
  .section-heading h2,
  .visit-copy h2 {
    font-size: 2.5rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .menu-image {
    height: 250px;
  }

  .quote-section {
    padding: 70px 20px;
  }

  blockquote {
    font-size: 1.8rem;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 270px);
  }

  .gallery-large {
    grid-column: auto;
  }

  .visit-image {
    height: 330px;
  }

  .visit-copy {
    padding: 60px 20px;
  }

  .footer-inner {
    width: min(100% - 28px, 1180px);
    flex-direction: column;
  }

  .footer-right {
    text-align: left;
  }
}
