:root {
  --cream: #f7efe4;
  --clay: #d3b79f;
  --cocoa: #6b4a3a;
  --spice: #c07a45;
  --deep: #3b241c;
  --sage: #a6b09a;
  --white: #fffaf4;
  --shadow: 0 18px 40px rgba(59, 36, 28, 0.18);
  --radius: 24px;
  --max-width: 1100px;
}

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

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--deep);
  background: radial-gradient(circle at top, #fff9f0 0%, var(--cream) 60%, #f2e4d4 100%);
  line-height: 1.6;
}

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

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

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 239, 228, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 74, 58, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a {
  white-space: nowrap;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--spice);
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1px solid rgba(59, 36, 28, 0.15);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--deep);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
  padding: 80px 0 70px;
  background: linear-gradient(135deg, rgba(211, 183, 159, 0.35) 0%, rgba(247, 239, 228, 0) 55%);
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--spice);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: #503427;
  margin-bottom: 26px;
}

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

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--spice);
  color: var(--white);
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(59, 36, 28, 0.24);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--spice);
  color: var(--deep);
  box-shadow: none;
}

.hero-note {
  font-size: 0.9rem;
  color: rgba(59, 36, 28, 0.7);
}

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

.hero-card-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  margin-bottom: 14px;
}

.hero-card-inner ul {
  list-style: none;
  display: grid;
  gap: 12px;
  font-weight: 600;
  color: #5a3b2d;
}

.steam {
  position: absolute;
  top: -20px;
  right: 30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(192, 122, 69, 0.3) 0%, rgba(247, 239, 228, 0) 70%);
  filter: blur(2px);
}

.about {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.about-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.about-card p {
  margin-bottom: 16px;
  color: #56382b;
}

.about-panel {
  background: linear-gradient(160deg, rgba(208, 178, 151, 0.7), rgba(247, 239, 228, 0.4));
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid rgba(107, 74, 58, 0.1);
}

.about-panel h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.about-panel ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: #523227;
  font-weight: 600;
}

.menu {
  padding: 70px 0 90px;
}

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

.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.section-head p {
  color: #5c3f31;
}

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

.menu-card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.menu-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  margin-bottom: 14px;
}

.menu-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #5d3c2f;
  font-weight: 600;
}

.visit {
  padding: 70px 0 90px;
  background: linear-gradient(180deg, rgba(211, 183, 159, 0.25) 0%, rgba(247, 239, 228, 0) 100%);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

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

.visit-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.visit-info {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.visit-info h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--spice);
  margin-bottom: 6px;
}

.visit-panel {
  background: var(--deep);
  color: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visit-panel h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.visit-panel p {
  margin-bottom: 18px;
  color: rgba(255, 250, 244, 0.8);
}

.contact {
  padding: 80px 0 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.contact h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: #5a3b2d;
  display: grid;
  gap: 10px;
}

.site-footer {
  padding: 28px 0 40px;
  text-align: center;
  color: rgba(59, 36, 28, 0.7);
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .visit-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }
}

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 4%;
    background: var(--white);
    border-radius: 16px;
    padding: 18px 22px;
    flex-direction: column;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 0;
  }

  .hero-card,
  .about-card,
  .menu-card,
  .visit-card,
  .visit-panel,
  .contact-card {
    padding: 24px;
  }

  .hero-note {
    font-size: 0.85rem;
  }
}
