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

:root {
  --cream: #faf4ea;
  --warm: #f3e7d3;
  --brown: #6b4423;
  --brown-dark: #4a2f18;
  --terracotta: #c8743f;
  --terracotta-dark: #a85a2a;
  --ink: #2e2118;
  --muted: #8a7458;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Georgia', serif;
  overflow-x: hidden;
}

/* PROMO BANNER */
.promo-bar {
  position: sticky;
  top: 0;
  z-index: 300;
  background: linear-gradient(90deg, var(--brown-dark), var(--brown));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  height: 48px;
  font-family: 'Arial', sans-serif;
}
.promo-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cream);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.promo-back:hover { opacity: 1; transform: translateX(-3px); }
.promo-msg {
  font-size: 13px;
  letter-spacing: 0.02em;
  text-align: center;
  flex: 1;
}
.promo-msg strong { color: #fff; font-style: italic; }
.promo-cta {
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 30px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.promo-cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

/* NAV */
nav {
  position: absolute;
  top: 48px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 60px;
}
.logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-top {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--terracotta);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.logo-main { font-size: 22px; font-weight: bold; letter-spacing: 1px; color: #fff; }

nav ul { list-style: none; display: flex; gap: 34px; align-items: center; }
nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
nav a:hover { color: var(--warm); }
nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 2px;
  background: var(--terracotta);
}
.nav-order {
  background: var(--terracotta);
  padding: 11px 24px;
  border-radius: 30px;
  font-weight: bold;
}
.nav-order:hover { background: var(--terracotta-dark); color: #fff; }
.nav-order.active::after { display: none; }

/* HERO (home) */
.hero {
  height: calc(100vh - 48px);
  min-height: 580px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(46,33,24,0.82) 0%, rgba(46,33,24,0.45) 60%, rgba(46,33,24,0.3) 100%),
    url('https://images.unsplash.com/photo-1509440159596-0249088772ff?w=1600&q=80') center/cover;
}
.hero-content { position: relative; max-width: 640px; padding: 0 60px; }
.hero-eyebrow {
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--warm);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--terracotta); }
.hero h1 {
  font-size: clamp(44px, 6.5vw, 80px);
  line-height: 1.05;
  color: #fff;
  font-weight: normal;
  margin-bottom: 22px;
}
.hero h1 em { display: block; color: var(--terracotta); font-style: italic; }
.hero-sub {
  font-family: 'Arial', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 440px;
  margin-bottom: 38px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* PAGE HERO (inner pages) */
.page-hero {
  height: 56vh;
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,33,24,0.9) 0%, rgba(46,33,24,0.4) 60%, rgba(46,33,24,0.55) 100%);
}
.page-hero-content { position: relative; padding: 0 60px 56px; max-width: 760px; }
.page-hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.05;
  color: #fff;
  font-weight: normal;
}
.page-hero p {
  font-family: 'Arial', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-top: 16px;
  max-width: 540px;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  padding: 16px 34px;
  border-radius: 30px;
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-ghost {
  color: #fff;
  padding: 16px 34px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.5);
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

/* SECTION SHARED */
.section-label {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.about-img {
  background: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=900&q=80') center/cover;
  min-height: 520px;
}
.about-text { padding: 90px 70px; display: flex; flex-direction: column; justify-content: center; }
.about-text h2 { font-size: 42px; line-height: 1.2; font-weight: normal; margin-bottom: 24px; }
.about-text p {
  font-family: 'Arial', sans-serif;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 18px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  padding-top: 34px;
  border-top: 1px solid rgba(107,68,35,0.15);
}
.stat-val { font-size: 34px; color: var(--terracotta); }
.stat-lbl {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* MENU */
.menu { padding: 100px 60px; background: var(--warm); }
.menu-header { text-align: center; margin-bottom: 60px; }
.menu-header h2 { font-size: 48px; font-weight: normal; }
.menu-header p {
  font-family: 'Arial', sans-serif;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 10px;
}
.menu-cat {
  max-width: 920px;
  margin: 0 auto 26px;
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--terracotta);
  border-bottom: 1px solid rgba(107,68,35,0.18);
  padding-bottom: 10px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 920px;
  margin: 0 auto 50px;
}
.menu-item {
  background: var(--cream);
  padding: 26px 30px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-item:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(107,68,35,0.12); }
.item-info h4 { font-size: 18px; margin-bottom: 6px; font-weight: normal; }
.item-info p { font-family: 'Arial', sans-serif; font-size: 12px; color: var(--muted); line-height: 1.6; }
.item-price { color: var(--terracotta); font-size: 18px; white-space: nowrap; flex-shrink: 0; }

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--brown);
  color: var(--cream);
}
.feat-card { padding: 64px 40px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.feat-card:last-child { border-right: none; }
.feat-icon {
  width: 54px; height: 54px;
  margin: 0 auto 22px;
  border: 1px solid var(--terracotta);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feat-card h3 { font-size: 21px; font-weight: normal; margin-bottom: 12px; color: var(--warm); }
.feat-card p { font-family: 'Arial', sans-serif; font-size: 13px; line-height: 1.8; color: rgba(250,244,234,0.75); }

/* VALUES (story page) */
.values { padding: 100px 60px; max-width: 1100px; margin: 0 auto; }
.values-head { text-align: center; margin-bottom: 56px; }
.values-head h2 { font-size: 44px; font-weight: normal; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card {
  background: var(--warm);
  border-radius: 14px;
  padding: 40px 34px;
  text-align: center;
}
.value-card .feat-icon { border-color: var(--terracotta); }
.value-card h3 { font-size: 22px; font-weight: normal; margin-bottom: 12px; }
.value-card p { font-family: 'Arial', sans-serif; font-size: 14px; line-height: 1.8; color: var(--muted); }

/* GALLERY */
.gallery { padding: 100px 60px; text-align: center; }
.gallery h2 { font-size: 44px; font-weight: normal; margin-bottom: 14px; }
.gallery-sub { font-family: 'Arial', sans-serif; color: var(--muted); font-size: 14px; margin-bottom: 50px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.04); }

/* ORDER / CONTACT */
.order {
  padding: 110px 60px;
  background: var(--warm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.order-text h2 { font-size: 46px; font-weight: normal; line-height: 1.2; margin-bottom: 18px; }
.order-text p { font-family: 'Arial', sans-serif; color: var(--muted); line-height: 1.8; font-size: 15px; }
.hours { margin-top: 32px; }
.hours h4 {
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(107,68,35,0.12);
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}
.hours-row span:last-child { color: var(--muted); }
.order-form { background: var(--cream); padding: 44px; border-radius: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
label {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
input, select, textarea {
  background: #fff;
  border: 1px solid rgba(107,68,35,0.2);
  border-radius: 8px;
  color: var(--ink);
  padding: 13px 15px;
  font-size: 14px;
  font-family: 'Arial', sans-serif;
  outline: none;
  transition: border-color 0.3s;
}
input:focus, select:focus, textarea:focus { border-color: var(--terracotta); }
.form-submit {
  margin-top: 20px;
  width: 100%;
  background: var(--terracotta);
  color: #fff;
  padding: 17px;
  border: none;
  border-radius: 30px;
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--terracotta-dark); }

/* MAP STRIP */
.map-strip { height: 320px; width: 100%; filter: saturate(0.9); }
.map-strip img { width: 100%; height: 100%; object-fit: cover; }

/* CTA BAND */
.cta-band {
  background: var(--brown-dark);
  color: var(--cream);
  text-align: center;
  padding: 80px 40px;
}
.cta-band h2 { font-size: 40px; font-weight: normal; margin-bottom: 16px; }
.cta-band p { font-family: 'Arial', sans-serif; color: rgba(250,244,234,0.7); font-size: 15px; margin-bottom: 30px; }

/* FOOTER */
footer {
  background: var(--brown-dark);
  color: var(--warm);
  padding: 64px 60px 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-main { color: var(--cream); font-size: 26px; margin-bottom: 14px; }
.footer-brand p { font-family: 'Arial', sans-serif; font-size: 13px; line-height: 1.8; color: rgba(250,244,234,0.6); max-width: 280px; }
.footer-col h5 {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}
.footer-col p, .footer-col a {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(250,244,234,0.6);
  text-decoration: none;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  background: #2e1c0f;
  text-align: center;
  padding: 18px;
  font-family: 'Arial', sans-serif;
  font-size: 11px;
  color: rgba(250,244,234,0.5);
}

@media (max-width: 860px) {
  nav { padding: 20px 24px; }
  nav ul { display: none; }
  .about, .order { grid-template-columns: 1fr; }
  .features, .values-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content, .page-hero-content { padding-left: 30px; padding-right: 30px; }
  .promo-msg { display: none; }
  footer { grid-template-columns: 1fr; }
}
