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

:root {
  --cream: #fdf6e3;
  --brown: #5c3d2e;
  --brown-light: #8b6914;
  --gold: #d4a843;
  --gold-light: #f0d68a;
  --white: #ffffff;
  --text: #3a2a1a;
  --text-light: #6b5b4e;
  --accent: #c0392b;
  --max-width: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--brown-light);
  text-decoration: none;
}

a:hover {
  color: var(--gold);
}

/* ── Navigation ── */
nav {
  background: var(--brown);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--brown) 0%, #7a5240 100%);
  color: var(--cream);
  padding: 5rem 1.5rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}

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

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--gold-light);
}

.hero-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--brown);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: var(--brown);
}

/* ── Sections ── */
main {
  flex: 1;
}

section {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--brown);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

.bg-white {
  background: var(--white);
}

.bg-cream {
  background: var(--cream);
}

.bg-brown {
  background: var(--brown);
  color: var(--cream);
}

.bg-brown h2 {
  color: var(--gold);
}

.bg-brown .section-subtitle {
  color: var(--gold-light);
}

/* ── Cards Grid ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--brown);
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── Feature Row ── */
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.feature-item .feature-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.feature-item h3 {
  margin-bottom: 0.4rem;
  color: var(--gold);
}

.feature-item p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ── About Page ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-visual {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  font-size: 5rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-text h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--brown);
}

.story-text p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* ── Menu Grid ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: 10px;
  padding: 1.25rem;
  border: 1px solid rgba(0,0,0,0.04);
}

.menu-item-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: var(--brown);
}

.menu-item p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.menu-item .price {
  font-weight: 700;
  color: var(--brown-light);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

/* ── Values ── */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.value-item {
  padding: 1.5rem;
}

.value-item .value-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.value-item h3 {
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.value-item p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ── Testimonials ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.75rem;
  border-left: 4px solid var(--gold);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text);
}

.testimonial .author {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--brown);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-detail h4 {
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: var(--brown);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--cream);
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background: var(--brown);
  color: var(--cream);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.submit-btn:hover {
  background: var(--brown-light);
  transform: translateY(-1px);
}

/* ── Map placeholder ── */
.map-placeholder {
  background: linear-gradient(135deg, #e8d5b7 0%, var(--gold-light) 100%);
  border-radius: 12px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--brown);
  margin-top: 1.5rem;
  font-weight: 500;
}

/* ── FAQ ── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,0,0,0.04);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--brown);
}

.faq-item p {
  font-size: 0.93rem;
  color: var(--text-light);
}

/* ── CTA Banner ── */
.cta-banner {
  text-align: center;
  padding: 3.5rem 1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--brown-light) 100%);
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cta-banner p {
  max-width: 500px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}

.cta-banner .hero-btn {
  background: var(--brown);
  color: var(--cream);
}

/* ── Footer ── */
footer {
  background: var(--brown);
  color: var(--cream);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.88rem;
  color: var(--gold-light);
  line-height: 1.8;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ── Page Header ── */
.page-header {
  background: var(--brown);
  color: var(--cream);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--gold-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--brown);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.5rem 1.5rem;
  }

  section {
    padding: 3rem 1.25rem;
  }

  .story-visual {
    font-size: 3.5rem;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .cards,
  .menu-grid {
    grid-template-columns: 1fr;
  }
}
