
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --terracotta: #AF4631;
  --terracotta-dark: #8B3424;
  --orange: #F5851F;
  --sand: #F0D795;
  --salmon: #F28D63;
  --charcoal: #2A2220;
  --offwhite: #FDF6EC;
  --cream: #FAF0DC;
}

html { scroll-behavior: smooth; }

body {
  background: var(--offwhite);
  color: var(--charcoal);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(42,34,32,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--orange);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--terracotta); }

nav ul { list-style: none; display: flex; gap: 2rem; }
nav ul li a {
  color: rgba(253,246,236,0.65);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav ul li a:hover { color: var(--sand); }

.nav-btn {
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border-radius: 2px;
}
.nav-btn:hover { background: var(--terracotta); transform: scale(1.03); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 7rem 2.5rem 4rem;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  gap: 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(175,70,49,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-text { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.4rem;
}
.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--orange);
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.3rem;
  text-align: left;
}

.hero-title-wok {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(4.5rem, 9vw, 8rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240,215,149,0.5);
  margin-bottom: 2rem;
}

.hero-tagline {
  color: rgba(253,246,236,0.55);
  max-width: 360px;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.hero-cta:hover { background: var(--terracotta); transform: translateY(-2px); }

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}


.hero-logo-frame {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid rgba(245,133,31,0.2);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.logo-placeholder-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  text-transform: uppercase;
  color: var(--sand);
  line-height: 1;
  text-align: center;
}
.logo-placeholder-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
}
.logo-placeholder-hint {
  font-size: 0.72rem;
  color: rgba(245,133,31,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--terracotta);
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.strip-dot { color: rgba(255,255,255,0.35); font-size: 1.2rem; }

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 320px;
}

.photo-cell {
  position: relative;
  overflow: hidden;
  background: #2a1e1a;
}
.photo-cell img { width:100%; height:100%; object-fit:cover; transition: transform 0.5s; }
.photo-cell:hover img { transform: scale(1.06); }


.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #2a1e1a;
  border-right: 1px solid rgba(175,70,49,0.2);
  color: rgba(175,70,49,0.35);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  background: rgba(42,34,32,0.7);
  padding: 0.2rem 0.6rem;
  backdrop-filter: blur(4px);
}

/* ── OVER ONS ── */
.over-section {
  padding: 6rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.section-eyebrow::before {
  content: '';
  width: 25px;
  height: 1px;
  background: var(--orange);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section-title em { color: var(--terracotta); font-style: normal; }

.over-text p {
  color: rgba(42,34,32,0.65);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.over-img-frame {
  aspect-ratio: 4/5;
  background: var(--cream);
  border: 2px dashed rgba(175,70,49,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: rgba(175,70,49,0.3);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.values-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--orange);
}
.value-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--terracotta);
}
.value-sub {
  font-size: 0.8rem;
  color: rgba(42,34,32,0.45);
  letter-spacing: 0.04em;
}

/* ── MENU ── */
.menu-section {
  background: var(--charcoal);
  padding: 6rem 2.5rem;
}
.menu-inner { max-width: 1100px; margin: 0 auto; }

.menu-section .section-eyebrow { color: var(--orange); }
.menu-section .section-eyebrow::before { background: var(--orange); }
.menu-section .section-title { color: var(--sand); }
.menu-section .section-title em { color: var(--terracotta); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  margin-top: 3rem;
  background: rgba(175,70,49,0.15);
}

.menu-card {
  background: #2a2220;
  padding: 2rem 1.8rem;
  transition: background 0.2s;
}
.menu-card:hover { background: #332a27; }

.menu-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.menu-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sand);
  margin-bottom: 0.5rem;
}

.menu-desc {
  font-size: 0.88rem;
  color: rgba(240,215,149,0.4);
  line-height: 1.7;
}

.menu-cta { text-align: center; margin-top: 3rem; }

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-orange:hover { background: var(--terracotta); transform: translateY(-2px); }

/* ── INFO ── */
.info-section {
  padding: 6rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}

.info-block h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid rgba(175,70,49,0.15);
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(42,34,32,0.07); }
.hours-table td { padding: 0.6rem 0; font-size: 0.9rem; }
.hours-table td:first-child { color: rgba(42,34,32,0.5); }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--charcoal); }
.hours-table .closed td { color: rgba(42,34,32,0.3) !important; font-style: italic; }
.hours-table .today td { color: var(--terracotta) !important; font-weight: 600; }
.hours-table .today td:first-child::after { content: ' ←'; font-size: 0.75rem; }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.92rem;
  color: rgba(42,34,32,0.65);
  line-height: 1.5;
}
.c-icon {
  width: 36px;
  height: 36px;
  background: rgba(175,70,49,0.08);
  border: 1px solid rgba(175,70,49,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
}
.c-icon svg { width: 16px; height: 16px; stroke: var(--terracotta); fill: none; stroke-width: 2; }
.contact-list a { color: var(--terracotta); text-decoration: none; font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }

.map-wrap {
  margin-top: 2rem;
  height: 240px;
  overflow: hidden;
  border: 1px solid rgba(175,70,49,0.12);
  border-radius: 2px;
}
.map-wrap iframe { width:100%; height:100%; border:none; filter: sepia(20%) contrast(95%); }

/* ── BESTEL BANNER ── */
.order-banner {
  background: var(--terracotta);
  padding: 5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.order-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px,
    transparent 1px, transparent 40px
  );
}
.order-banner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
}
.order-banner p {
  color: rgba(253,246,236,0.65);
  max-width: 400px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--sand);
  color: var(--terracotta-dark);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  position: relative;
}
.btn-light:hover { background: #fff; transform: translateY(-2px); }

/* ── SOCIAL / FOOTER ── */
.social-bar {
  background: var(--charcoal);
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.social-bar a {
  color: rgba(240,215,149,0.4);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.social-bar a:hover { color: var(--sand); }
.social-sep { color: rgba(245,133,31,0.25); }

footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(175,70,49,0.15);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-logo span { color: var(--terracotta); }
.footer-copy { font-size: 0.72rem; color: rgba(240,215,149,0.25); letter-spacing: 0.04em; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow   { animation: fadeUp 0.6s ease 0.1s both; }
.hero-title     { animation: fadeUp 0.7s ease 0.22s both; }
.hero-title-wok { animation: fadeUp 0.7s ease 0.3s both; }
.hero-sub       { animation: fadeUp 0.7s ease 0.38s both; }
.hero-tagline   { animation: fadeUp 0.7s ease 0.46s both; }
.hero-cta       { animation: fadeUp 0.7s ease 0.54s both; }
.hero-visual    { animation: fadeUp 0.8s ease 0.3s both; }
