:root {
  --cream: #fbf3e7;
  --cream-dark: #f0e2cb;
  --brown-900: #2c1c12;
  --brown-800: #3e2818;
  --brown-600: #6b4a30;
  --brown-400: #9c7350;
  --gold: #c9932f;
  --gold-light: #e0b25a;
  --ink: #2a2119;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(44, 28, 18, 0.15);
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Georgia", "Iowan Old Style", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

a { color: inherit; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top bar ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(44, 28, 18, 0.92);
  backdrop-filter: blur(6px);
  color: var(--cream);
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-decoration: none;
}

.brand span { color: var(--gold-light); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; color: var(--gold-light); }

.topbar .call-btn {
  background: var(--gold);
  color: var(--brown-900);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-image:
    linear-gradient(180deg, rgba(20, 12, 6, 0.55) 0%, rgba(20, 12, 6, 0.55) 40%, rgba(20, 12, 6, 0.85) 100%),
    url("https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  padding: 140px 20px 80px;
}

.hero-content { max-width: 760px; }

.hero-eyebrow {
  display: inline-block;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-light);
  border: 1px solid rgba(224, 178, 90, 0.6);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 26px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.08;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p.lead {
  font-size: 1.2rem;
  max-width: 560px;
  margin: 0 auto 34px;
  color: #f4e9d8;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--brown-900);
  box-shadow: 0 10px 24px rgba(201, 147, 47, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.65);
}

.hero-rating {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  color: #f4e9d8;
}

.hero-rating strong { color: var(--gold-light); }

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 1.6rem;
  animation: bob 2s infinite;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ---------- Section shared ---------- */
section { padding: 96px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.eyebrow {
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  display: block;
}

.section-head h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--brown-900);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--brown-600);
  font-size: 1.05rem;
}

/* ---------- About ---------- */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}

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

.about-text .eyebrow { text-align: left; }

.about-text h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  color: var(--brown-900);
  margin-bottom: 18px;
}

.about-text p {
  color: var(--brown-600);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-stats {
  display: flex;
  gap: 34px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.about-stats div { text-align: left; }

.about-stats strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  color: var(--gold);
}

.about-stats span {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--brown-600);
}

/* ---------- Menu ---------- */
.menu { background: var(--cream-dark); }

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

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.menu-card:hover { transform: translateY(-6px); }

.menu-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.menu-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  color: var(--brown-900);
  margin-bottom: 10px;
}

.menu-card p {
  color: var(--brown-600);
  font-size: 0.96rem;
}

/* ---------- Reviews ---------- */
.reviews {
  background: var(--brown-900);
  color: var(--cream);
  background-image:
    linear-gradient(180deg, rgba(44,28,18,0.93), rgba(44,28,18,0.97)),
    url("https://images.unsplash.com/photo-1517433670267-08bbd4be890f?auto=format&fit=crop&w=1600&q=70");
  background-size: cover;
  background-position: center;
}

.reviews .section-head h2 { color: var(--cream); }
.reviews .section-head p { color: #d9c6ab; }

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

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(224,178,90,0.25);
  border-radius: var(--radius);
  padding: 30px 26px;
}

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

.review-card p.quote {
  font-style: italic;
  color: #f1e4cd;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.review-card .who {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ---------- Visit / hours / map ---------- */
.visit { background: var(--white); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.visit-card {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 40px;
}

.visit-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  color: var(--brown-900);
  margin-bottom: 22px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.98rem;
}

.hours-table td {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(107,74,48,0.25);
  color: var(--brown-600);
}

.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--brown-900); }
.hours-table tr.today td { color: var(--gold); font-weight: 700; }

.contact-list {
  list-style: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.contact-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(107,74,48,0.25);
  color: var(--brown-800);
}

.contact-list li:last-child { border-bottom: none; }

.contact-list .ic {
  color: var(--gold);
  font-size: 1.15rem;
  width: 22px;
}

.contact-list a { text-decoration: none; color: var(--brown-900); font-weight: 600; }

.map-frame {
  margin-top: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: none;
}

.map-frame iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--brown-900), var(--brown-800));
  color: var(--cream);
  text-align: center;
  padding: 80px 24px;
}

.cta-banner h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: #d9c6ab;
  margin-bottom: 30px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Footer ---------- */
footer {
  background: var(--brown-900);
  color: #cbb494;
  padding: 46px 0 30px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(224,178,90,0.15);
  margin-bottom: 22px;
}

.footer-brand {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--cream);
  font-size: 1.25rem;
}

.footer-brand span { color: var(--gold-light); }

.footer-nav { display: flex; gap: 24px; list-style: none; }
.footer-nav a { text-decoration: none; color: #cbb494; }
.footer-nav a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #9a8367;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links, .topbar .call-btn { display: none; }
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; aspect-ratio: 16/9; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero { min-height: 100vh; }
}
