:root {
  --bg: #f7f1ea;
  --bg-deep: #ede2d4;
  --accent: #a4512f;
  --accent-dark: #6f331e;
  --text: #2f241e;
  --muted: #6a5a4f;
  --cream: #fff7ef;
  --sage: #d7c6b2;
  --shadow: 0 20px 45px rgba(47, 36, 30, 0.12);
  --radius: 24px;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html,
body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Nunito", sans-serif;
  min-height: 100%;
}

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

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

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 241, 234, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(106, 90, 79, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--accent-dark);
}

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

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

.nav-toggle-bar {
  width: 28px;
  height: 2px;
  background: var(--accent-dark);
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--accent);
}

.hero {
  background: radial-gradient(circle at top left, #fff7ef 0%, #f2e4d3 55%, #e7d5c1 100%);
  padding: 80px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 26px;
}

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

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

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

.btn.ghost {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hero-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-inner h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.hero-card-inner p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
}

.feature-list span {
  padding: 6px 12px;
  background: var(--bg-deep);
  border-radius: 999px;
}

.steam {
  position: absolute;
  width: 90px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 219, 200, 0.6) 0%, rgba(255, 255, 255, 0) 65%);
  filter: blur(1px);
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
}

.steam-one {
  top: -60px;
  right: 40px;
}

.steam-two {
  top: -40px;
  right: 120px;
  animation-delay: 1s;
}

.steam-three {
  top: -80px;
  right: 0;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.about {
  padding: 90px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.about h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}

.about p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.about-highlights {
  display: grid;
  gap: 16px;
}

.about-highlights h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 6px;
}

.about-panel {
  background: linear-gradient(140deg, var(--bg-deep), #f5ede4);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.panel-frame {
  border: 1px solid rgba(106, 90, 79, 0.2);
  border-radius: 18px;
  padding: 28px;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
}

.panel-frame span {
  display: block;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.menu {
  background: var(--cream);
  padding: 90px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.menu-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.menu-card p {
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.location {
  padding: 90px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.location h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 14px;
}

.location p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.location-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.location-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
}

.location-card .contact {
  font-weight: 700;
  margin-top: 12px;
  color: var(--accent-dark);
}

.map-panel {
  background: linear-gradient(150deg, #e7d7c3, #f6ede5);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow);
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(3, 60px);
  grid-template-rows: repeat(3, 60px);
  gap: 10px;
  margin-bottom: 16px;
}

.map-grid div {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 10px;
}

.map-grid .pin {
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}

.map-grid .pin::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hours {
  background: var(--bg-deep);
  padding: 80px 0;
}

.hours-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  align-items: center;
}

.hours h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.hours p {
  color: var(--muted);
  line-height: 1.6;
}

.hours-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(106, 90, 79, 0.2);
  font-weight: 600;
}

.hours-row:last-child {
  border-bottom: none;
}

.site-footer {
  padding: 60px 0 30px;
  background: #2f241e;
  color: #f7f1ea;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.site-footer h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 8px;
}

.site-footer p {
  color: rgba(247, 241, 234, 0.8);
  line-height: 1.6;
}

.footer-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: #f3c59b;
}

.footer-note {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: rgba(247, 241, 234, 0.7);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    right: 5vw;
    top: 64px;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.2s ease;
  }

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

  .hero {
    padding: 70px 0 80px;
  }

  .hero-card {
    padding: 28px;
  }

  .map-grid {
    grid-template-columns: repeat(3, 50px);
    grid-template-rows: repeat(3, 50px);
  }

  .hours-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 540px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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