:root {
  --cream: #fdf6ec;
  --cream-dark: #f3e6d2;
  --brown: #3a2418;
  --brown-light: #6b4a35;
  --orange: #f4821f;
  --orange-dark: #d9660a;
  --black: #1a1410;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(26, 20, 16, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--black);
}

a {
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(244, 130, 31, 0.35);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}

.btn-outline-dark:hover {
  background: var(--brown);
  color: var(--white);
}

/* Top bar */
.topbar {
  background: var(--black);
  color: var(--cream-dark);
  font-size: 0.82rem;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar a {
  color: var(--orange);
}

.topbar .rating {
  color: var(--orange);
  font-weight: 600;
}

/* Header / Nav */
header.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0,0,0,0.25);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
}

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

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--cream);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: radial-gradient(ellipse at top right, #2a1c14 0%, var(--black) 65%);
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244,130,31,0.25) 0%, transparent 70%);
  top: -150px;
  right: -150px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1.2;
}

.hero-badge {
  display: inline-block;
  background: rgba(244,130,31,0.15);
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-text h1 {
  color: var(--white);
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: var(--orange);
}

.hero-text p {
  font-size: 1.1rem;
  color: #e8dcd0;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-logo-frame {
  background: var(--white);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
  transform: rotate(-2deg);
}

.hero-logo-frame img {
  width: 260px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

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

.hero-stats strong {
  display: block;
  font-size: 1.8rem;
  color: var(--orange);
  font-family: 'Playfair Display', serif;
}

.hero-stats span {
  font-size: 0.85rem;
  color: #cbb9a8;
}

/* Section base */
section {
  padding: 90px 0;
}

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

.section-tag {
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.8rem;
}

.section-head h2 {
  font-size: 2.3rem;
  margin: 10px 0 14px;
}

.section-head p {
  color: var(--brown-light);
}

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

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

.about-visual {
  background: var(--black);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 200px;
  margin: 0 auto 20px;
}

.about-visual p {
  color: var(--orange);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
}

.about-text h2 {
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--brown-light);
}

.about-features {
  list-style: none;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.about-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

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

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

.menu-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

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

.menu-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.menu-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

.menu-note {
  text-align: center;
  margin-top: 40px;
  color: var(--brown-light);
  font-style: italic;
}

/* Reviews */
.reviews {
  background: var(--black);
  color: var(--white);
}

.reviews .section-head h2 {
  color: var(--white);
}

.reviews .section-head p {
  color: #cbb9a8;
}

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

.review-card {
  background: #241812;
  border: 1px solid rgba(244,130,31,0.25);
  border-radius: 16px;
  padding: 30px;
}

.review-stars {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.review-card p {
  color: #e8dcd0;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.review-card .reviewer {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
}

/* Visit / Hours + Map */
.visit {
  background: var(--cream);
}

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

.visit-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 40px;
}

.visit-card h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 26px;
}

.hours-table tr {
  border-bottom: 1px solid var(--cream-dark);
}

.hours-table td {
  padding: 10px 0;
  font-size: 0.95rem;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--orange-dark);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.98rem;
}

.contact-line .badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* Final CTA */
.cta-strip {
  background: linear-gradient(120deg, var(--orange-dark), var(--orange));
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.cta-strip h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 14px;
}

.cta-strip p {
  margin-bottom: 26px;
  color: #fff3e8;
}

.cta-strip .btn-primary {
  background: var(--black);
  box-shadow: none;
}

.cta-strip .btn-primary:hover {
  background: #000;
}

/* Footer */
footer {
  background: var(--black);
  color: #cbb9a8;
  padding: 50px 0 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 40px;
}

.footer-brand span {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.2rem;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cbb9a8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  text-align: center;
  font-size: 0.82rem;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta .btn-outline-dark {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  header.site-header.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 20px 24px;
    gap: 18px;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .topbar .container {
    justify-content: center;
    text-align: center;
  }
}
