/* =============================================================
   TOYO EATERY — styles.css
   Design: GFS Didot (display) + Onest (body)
   Palette: warm stone-concrete derived from TOYO logo mark
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=GFS+Didot&family=Onest:wght@300;400;500;600&display=swap');

/* ── Custom Properties ── */
:root {
  --dark:       #0D0B08;
  --bg-alt:     #181410;
  --surface:    #221E19;
  --surface-2:  #2E2821;
  --accent:     #B8A890;
  --highlight:  #C8A868;
  --cream:      #F5F1EA;
  --muted:      rgba(245,241,234,.45);
  --border:     rgba(184,168,144,.18);

  --ff-display: 'GFS Didot', serif;
  --ff-body:    'Onest', sans-serif;

  --nav-h:  72px;
  --r:      4px;
  --trans:  .3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--trans); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-body); }

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.4rem,6vw,4.8rem); }
h2 { font-size: clamp(1.8rem,4vw,3.2rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.8rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; color: rgba(245,241,234,.82); }

.overline {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: .8rem;
}
.section-title { margin-bottom: 1.6rem; }
.section-intro { max-width: 640px; margin: 0 auto 3rem; text-align: center; }

/* ── Fade-in animation ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .78rem 2rem;
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid currentColor;
  transition: background var(--trans), color var(--trans);
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--highlight); border-color: var(--highlight); }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--dark); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(245,241,234,.4); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ======================================================
   NAVBAR
   ====================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: rgba(13,11,8,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.nav-brand img { height: 42px; width: auto; object-fit: contain; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  margin-left: auto;
  margin-right: 2.4rem;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,241,234,.8);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-cta .btn { padding: .52rem 1.4rem; font-size: .78rem; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  transition: var(--trans);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(13,11,8,.97);
  padding: 2rem 5% 3rem;
  flex-direction: column;
  gap: 1.6rem;
  z-index: 8999;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,241,234,.8);
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a.active { color: var(--accent); }

/* ======================================================
   HERO SECTION
   ====================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,11,8,.72) 0%, rgba(13,11,8,.55) 50%, rgba(13,11,8,.78) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 0 5%;
}
.hero-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(184,168,144,.4);
  padding: .4rem 1.2rem;
  margin-bottom: 1.8rem;
}
.hero h1 { color: var(--cream); margin-bottom: 1.6rem; }
.hero-tagline {
  font-size: clamp(1rem,2vw,1.2rem);
  color: rgba(245,241,234,.78);
  max-width: 600px;
  margin: 0 auto 2.4rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(245,241,234,.5);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ======================================================
   PAGE HERO (inner pages)
   ====================================================== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 3.5rem;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,8,.9) 0%, rgba(13,11,8,.4) 60%, rgba(13,11,8,.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 { color: var(--cream); }

/* ======================================================
   FEATURES STRIP
   ====================================================== */
.features-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.4rem 5%;
}
.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.4rem;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-icon { color: var(--accent); flex-shrink: 0; }
.feature-item h4 { font-family: var(--ff-body); font-size: .88rem; font-weight: 600; margin-bottom: .2rem; }
.feature-item p { font-size: .78rem; color: rgba(245,241,234,.6); margin: 0; }

/* ======================================================
   SECTION — GENERAL
   ====================================================== */
.section { padding: 6rem 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.divider {
  width: 48px; height: 1px;
  background: var(--accent);
  margin: 1.2rem auto;
}

/* ======================================================
   OFFERINGS GRID (index.html — 3×3 cards)
   ====================================================== */
.offerings-section { background: var(--bg-alt); }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.offering-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  cursor: pointer;
}
.offering-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.offering-card:hover img { transform: scale(1.06); }
.offering-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,8,.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
}
.offering-card h3 {
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: .3rem;
}
.offering-card p {
  font-size: .78rem;
  color: rgba(245,241,234,.7);
  margin: 0;
}

/* ======================================================
   BRAND TEASER SPLIT
   ====================================================== */
.brand-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}
.brand-split-image { position: relative; }
.brand-split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.brand-split-content {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
}
.brand-split-content .overline { margin-bottom: 1rem; }
.brand-split-content h2 { margin-bottom: 1.4rem; }
.brand-split-content p { margin-bottom: 2rem; }

/* ======================================================
   STATS ROW
   ====================================================== */
.stats-row {
  background: var(--surface);
  padding: 4rem 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stat-item {
  padding: 1.5rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem,4vw,3rem);
  color: var(--accent);
  display: block;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,241,234,.6);
}

/* ======================================================
   REVIEWS
   ====================================================== */
.reviews-section { background: var(--dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review-card {
  background: var(--surface);
  padding: 2.4rem;
  border: 1px solid var(--border);
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .35;
  position: absolute;
  top: 1rem; left: 1.6rem;
}
.review-text {
  font-size: .95rem;
  color: rgba(245,241,234,.82);
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  font-style: italic;
}
.review-source { font-size: .78rem; font-weight: 600; letter-spacing: .06em; color: var(--accent); }
.review-publication { font-size: .72rem; color: rgba(245,241,234,.5); margin-top: .2rem; }

/* ======================================================
   SOCIAL CTA
   ====================================================== */
.social-cta {
  text-align: center;
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.social-icons-row {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 2rem;
}
.social-icon-link {
  width: 48px; height: 48px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,241,234,.7);
  transition: border-color var(--trans), color var(--trans), background var(--trans);
}
.social-icon-link:hover { border-color: var(--accent); color: var(--accent); background: rgba(184,168,144,.06); }
.social-icon-link svg { width: 18px; height: 18px; }

/* ======================================================
   SOCIAL FEED GRID (6 images)
   ====================================================== */
.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5px;
}
.social-feed-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.social-feed-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, opacity .3s ease;
}
.social-feed-item:hover img { transform: scale(1.08); opacity: .8; }

/* ======================================================
   ABOUT PAGE
   ====================================================== */
.origin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.origin-text .overline { margin-bottom: 1rem; }
.origin-text h2 { margin-bottom: 1.4rem; }
.origin-text p { margin-bottom: 1.2rem; }
.origin-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.philosophy-card {
  padding: 2.4rem;
  border: 1px solid var(--border);
  background: var(--surface);
}
.philosophy-icon { color: var(--accent); margin-bottom: 1.2rem; }
.philosophy-card h3 { margin-bottom: .8rem; font-size: 1.2rem; }

.values-section { background: var(--surface); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.value-item {
  background: var(--surface);
  padding: 2.4rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.value-number {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: rgba(184,168,144,.25);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
}

.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  gap: 2.4rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-year {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--accent);
  min-width: 80px;
  text-align: right;
  padding-top: .2rem;
}
.timeline-item:nth-child(even) .timeline-year { text-align: left; }
.timeline-dot {
  position: absolute;
  left: 50%;
  top: .4rem;
  width: 10px; height: 10px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: var(--dark);
  transform: translateX(-50%);
  flex-shrink: 0;
}
.timeline-content { flex: 1; }
.timeline-content h4 { margin-bottom: .4rem; font-family: var(--ff-body); font-size: 1rem; font-weight: 600; }
.timeline-content p { font-size: .88rem; margin: 0; }

/* ======================================================
   MENU PAGE
   ====================================================== */
.menu-disclaimer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.2rem 1.8rem;
  margin-bottom: 3rem;
  font-size: .88rem;
  color: rgba(245,241,234,.72);
}
.menu-section { margin-bottom: 4rem; }
.menu-section-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.menu-section-header h2 { font-size: 1.8rem; }
.menu-section-note { font-size: .82rem; color: rgba(245,241,234,.5); }
.menu-items-list { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info { flex: 1; }
.menu-item-info h4 { font-family: var(--ff-body); font-size: 1rem; font-weight: 600; margin-bottom: .3rem; }
.menu-item-info p { font-size: .88rem; margin: 0; color: rgba(245,241,234,.65); }
.menu-item-tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: .25rem .65rem;
  white-space: nowrap;
  align-self: flex-start;
}

/* ======================================================
   GALLERY PAGE
   ====================================================== */
.filter-bar {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}
.filter-btn {
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 1.3rem;
  border: 1.5px solid var(--border);
  color: rgba(245,241,234,.7);
  background: transparent;
  transition: var(--trans);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(184,168,144,.06);
}

.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  transition: transform .5s ease, opacity .3s ease;
}
.gallery-item:hover img { transform: scale(1.04); opacity: .85; }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,11,8,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(13,11,8,.25); }
.gallery-zoom-icon { color: var(--cream); opacity: 0; transition: opacity .3s ease; }
.gallery-item:hover .gallery-zoom-icon { opacity: 1; }

/* ── Lightbox ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13,11,8,.96);
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,241,234,.8);
  background: rgba(13,11,8,.5);
  font-size: 1.4rem;
  transition: border-color var(--trans), background var(--trans);
  cursor: pointer;
}
.lightbox-prev:hover,
.lightbox-next:hover { border-color: var(--accent); background: rgba(184,168,144,.15); }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-close {
  position: absolute;
  top: -2.5rem; right: 0;
  color: rgba(245,241,234,.7);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--trans);
}
.lightbox-close:hover { color: var(--accent); }
#lightboxImg {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}
#lightboxCounter {
  text-align: center;
  margin-top: .8rem;
  font-size: .78rem;
  color: rgba(245,241,234,.5);
  letter-spacing: .1em;
}

/* ======================================================
   CONTACT PAGE
   ====================================================== */
.contact-blocks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.contact-block {
  background: var(--surface);
  padding: 2.4rem;
  border: 1px solid var(--border);
}
.contact-block-icon { color: var(--accent); margin-bottom: 1.2rem; }
.contact-block h3 { font-size: 1.1rem; margin-bottom: .8rem; }
.contact-block p, .contact-block a {
  font-size: .9rem;
  color: rgba(245,241,234,.75);
  display: block;
  margin-bottom: .3rem;
}
.contact-block a:hover { color: var(--accent); }

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.form-intro h2 { margin-bottom: 1rem; }
.form-intro p { margin-bottom: 2rem; }

.inquiry-form { display: flex; flex-direction: column; gap: 1.3rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,241,234,.65);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: .92rem;
  padding: .85rem 1rem;
  outline: none;
  transition: border-color var(--trans);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select { background-image: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#formSuccess {
  display: none;
  background: var(--surface);
  border: 1px solid var(--accent);
  padding: 2rem;
  text-align: center;
}
#formSuccess h3 { margin-bottom: .5rem; font-size: 1.3rem; }
#formSuccess p { font-size: .9rem; margin: 0; }
.form-error { display: none; color: #e07878; font-size: .8rem; margin-top: .2rem; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #e07878; }
.form-group.has-error .form-error { display: block; }

.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  color: rgba(245,241,234,.5);
  margin-bottom: 4rem;
}
.map-placeholder svg { opacity: .4; }
.map-placeholder p { font-size: .88rem; margin: 0; }
.map-placeholder a { color: var(--accent); font-size: .82rem; font-weight: 600; }

/* FAQ */
.faq-section { background: var(--bg-alt); }
.faq-grid { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  background: transparent;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 22px; height: 22px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform var(--trans), border-color var(--trans);
  color: var(--accent);
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--accent); }
.faq-answer {
  display: none;
  padding: 0 0 1.5rem;
  font-size: .92rem;
  color: rgba(245,241,234,.72);
}
.faq-item.open .faq-answer { display: block; }

/* ======================================================
   FOOTER
   ====================================================== */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 5rem 5% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { font-size: .88rem; color: rgba(245,241,234,.6); margin-bottom: 1.4rem; }
.footer-social {
  display: flex;
  gap: .7rem;
}
.footer-col h5 {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a {
  font-size: .88rem;
  color: rgba(245,241,234,.65);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .78rem;
  color: rgba(245,241,234,.4);
}

/* ======================================================
   SCROLL TO TOP
   ====================================================== */
#scrollTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  z-index: 888;
  cursor: pointer;
  transition: border-color var(--trans), background var(--trans);
}
#scrollTop.visible { display: flex; }
#scrollTop:hover { border-color: var(--accent); background: rgba(184,168,144,.1); }

/* ======================================================
   RESPONSIVE — 1024px
   ====================================================== */
@media (max-width:1024px) {
  .features-strip-grid { grid-template-columns: repeat(2,1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-right: 1px solid var(--border); }

  .offerings-grid { grid-template-columns: repeat(3,1fr); }
  .brand-split { grid-template-columns: 1fr; }
  .brand-split-image { height: 380px; }
  .brand-split-content { padding: 3.5rem 5%; }
  .stats-grid { grid-template-columns: repeat(4,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .social-feed-grid { grid-template-columns: repeat(3,1fr); }

  .origin-split { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr; }

  .contact-blocks-grid { grid-template-columns: repeat(2,1fr); }
  .contact-form-section { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ======================================================
   RESPONSIVE — 768px
   ====================================================== */
@media (max-width:768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-scroll { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }

  .features-strip-grid { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(3) { border-right: none; }
  .feature-item { padding: .8rem 1rem; }

  .offerings-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .social-feed-grid { grid-template-columns: repeat(3,1fr); }

  .philosophy-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .contact-blocks-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .timeline::before { left: 16px; }
  .timeline-item { flex-direction: row !important; }
  .timeline-item:nth-child(even) .timeline-year { text-align: right; }
  .timeline-dot { left: 16px; }
  .timeline-year { min-width: 60px; font-size: 1rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ======================================================
   RESPONSIVE — 480px
   ====================================================== */
@media (max-width:480px) {
  :root { --nav-h: 64px; }
  .section { padding: 4rem 5%; }
  .features-strip { padding: 1.6rem 5%; }
  .features-strip-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .offerings-grid { grid-template-columns: 1fr; }
  .social-feed-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { columns: 1; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }

  .lightbox-prev { left: .5rem; }
  .lightbox-next { right: .5rem; }
}
