:root {
  --terracotta: #C2654A;
  --sand: #F5E6D3;
  --cream: #FFF8F0;
  --deep-green: #2D5A3D;
  --olive: #6B7F5E;
  --espresso: #3D2B1F;
  --gold: #D4A64A;
  --warm-gray: #8C7E72;
  --white: #FFFDF9;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(170deg, var(--sand) 0%, var(--cream) 40%, #fdf0e2 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,101,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,90,61,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  border-radius: 100px;
  padding: 0.4rem 1.4rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--espresso);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

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

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--warm-gray);
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.hero-details {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--olive);
  font-weight: 500;
}

.hero-details span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-details .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ── SECTION SHARED ── */
section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--espresso);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 600px;
  line-height: 1.6;
}

/* ── CONCEPT ── */
.concept {
  background: var(--white);
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.concept-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.concept-card:hover {
  transform: translateY(-4px);
}

.concept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
}

.concept-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.concept-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.6rem;
}

.concept-card p {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.5;
}

/* ── MENU PREVIEW ── */
.menu-preview {
  background: linear-gradient(175deg, var(--espresso) 0%, #2a1f16 100%);
  color: var(--sand);
  position: relative;
}

.menu-preview .section-label {
  color: var(--gold);
}

.menu-preview .section-title {
  color: var(--sand);
}

.menu-preview .section-desc {
  color: rgba(245,230,211,0.7);
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.menu-col h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(212,166,74,0.25);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  font-size: 0.95rem;
}

.menu-item .name {
  color: var(--sand);
}

.menu-item .price {
  color: var(--gold);
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  white-space: nowrap;
  margin-left: 1rem;
}

.menu-note {
  margin-top: 2.5rem;
  padding: 1.2rem 1.5rem;
  background: rgba(212,166,74,0.08);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: rgba(245,230,211,0.8);
  font-style: italic;
}

/* ── AMBIANCE ── */
.ambiance {
  background: var(--sand);
}

.ambiance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.ambiance-item {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.ambiance-item:hover {
  transform: scale(1.02);
}

.ambiance-item .emoji {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
}

.ambiance-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 0.4rem;
}

.ambiance-item p {
  font-size: 0.85rem;
  color: var(--warm-gray);
}

/* ── CLOSING ── */
.closing {
  background: var(--cream);
  text-align: center;
  padding: 6rem 2rem;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--espresso);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.closing h2 span {
  color: var(--terracotta);
}

.closing p {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: var(--espresso);
  color: rgba(245,230,211,0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
}

footer .footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--sand);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

footer .footer-loc {
  margin-bottom: 0.3rem;
}

/* ── HERO CTAs ── */
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.btn-primary {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(194,101,74,0.25);
}

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

.btn-secondary {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid rgba(61,43,31,0.2);
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--espresso);
  transform: translateY(-2px);
}

/* ── LOCATION ── */
.location {
  background: var(--white);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
}

.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.loc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.loc-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.loc-info strong {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: 0.04em;
}

.loc-info span {
  font-size: 0.9rem;
  color: var(--warm-gray);
  display: block;
}

.map-placeholder {
  background: linear-gradient(145deg, var(--sand) 0%, #ede0cc 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  text-align: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(194,101,74,0.08) 0%, transparent 60%);
}

.map-pin { font-size: 3rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.map-label {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--espresso);
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}
.map-sub { font-size: 0.85rem; color: var(--warm-gray); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.map-link {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1.5px solid var(--terracotta);
  padding-bottom: 0.1rem;
  position: relative;
  z-index: 1;
  transition: opacity 0.2s;
}
.map-link:hover { opacity: 0.7; }

/* Menu section anchor */
.menu-preview { scroll-margin-top: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .ambiance-grid {
    grid-template-columns: 1fr;
  }
  .concept-grid {
    grid-template-columns: 1fr;
  }
  .hero-details {
    flex-direction: column;
    gap: 0.8rem;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .location-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  section {
    padding: 3.5rem 1.5rem;
  }
}