/* ============================================
   Sunflour Dessert & Coffee — Stylesheet
   Palette: warm cream + butter + golden sunflower
   ============================================ */

:root {
  --cream: #fff8ec;
  --cream-2: #f7eed9;
  --butter: #f5d77c;
  --butter-soft: #fbe6a8;
  --honey: #e9a23b;
  --honey-dark: #c47e1e;
  --crust: #8a5a2b;
  --cocoa: #4a342a;
  --ink: #2e251c;
  --ink-soft: #4f4538;
  --muted: #8c7f6c;
  --berry: #b14668;
  --leaf: #6b8068;
  --white: #ffffff;
  --line: rgba(46,37,28,0.10);
  --line-soft: rgba(46,37,28,0.06);
  --shadow: 0 24px 60px rgba(74,52,42,0.14);
  --shadow-sm: 0 10px 28px rgba(74,52,42,0.10);
  --radius: 16px;
  --radius-lg: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1180px;
  --font-display: 'Fraunces', serif;
  --font-script: 'Pacifico', cursive;
  --font-body: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--honey); color: var(--cream); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ===================== Top Bar ===================== */
.topbar { background: var(--cocoa); color: var(--cream); font-size: 13px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 42px; gap: 16px; flex-wrap: wrap; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar i { color: var(--butter); margin-right: 7px; }
.topbar a { color: var(--cream); }
.topbar a:hover { color: var(--butter); }
.topbar__social { display: flex; gap: 14px; }
.hide-mobile { display: inline; }

/* ===================== Navigation ===================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,248,236,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled { background: rgba(255,248,236,0.99); box-shadow: 0 10px 30px rgba(74,52,42,0.10); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--honey);
  color: var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(233,162,59,0.18);
  transition: transform 0.4s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(20deg) scale(1.05); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-script); font-size: 26px; color: var(--cocoa); }
.brand__sub { font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--honey-dark); margin-top: 2px; font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 14px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-soft); position: relative; padding: 6px 0; }
.nav__links a:not(.nav__cta)::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--honey); transition: width 0.3s var(--ease); }
.nav__links a:not(.nav__cta):hover { color: var(--honey-dark); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links a.active { color: var(--honey-dark); }
.nav__links a.active::after { width: 100%; }
.nav__cta {
  background: var(--honey); color: var(--white) !important;
  padding: 12px 24px !important; border-radius: 50px; font-weight: 600 !important; letter-spacing: 0.06em !important;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav__cta:hover { background: var(--honey-dark); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(233,162,59,0.4); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px; }
.nav__toggle span { height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 50px;
  font-weight: 600; font-size: 15px; letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn--primary { background: var(--honey); color: var(--white); box-shadow: 0 12px 28px rgba(233,162,59,0.35); }
.btn--primary:hover { background: var(--honey-dark); transform: translateY(-3px); box-shadow: 0 18px 36px rgba(233,162,59,0.45); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(46,37,28,0.2); }
.btn--ghost:hover { border-color: var(--honey); color: var(--honey-dark); transform: translateY(-3px); }

/* ===================== Hero ===================== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 130px 0 100px; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(255,248,236,0.86) 0%, rgba(255,248,236,0.45) 45%, rgba(255,248,236,0.7) 100%),
    url('https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.14); } }
.hero__overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 70%, rgba(245,215,124,0.35) 0%, transparent 55%); }
.hero__inner { position: relative; z-index: 2; max-width: 700px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--honey-dark);
  background: var(--cream); border: 1px solid var(--line-soft);
  padding: 8px 16px; border-radius: 50px; margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero__stars { color: var(--honey); display: inline-flex; gap: 2px; }
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(48px, 9vw, 104px); line-height: 1.0; color: var(--cocoa);
  margin-bottom: 24px; letter-spacing: -0.5px;
}
.hero__title span { display: block; font-family: var(--font-script); font-weight: 400; font-style: normal; color: var(--honey-dark); font-size: 0.7em; line-height: 1.2; margin-top: 6px; }
.hero__sub { font-size: clamp(16px, 2vw, 19px); color: var(--ink-soft); max-width: 560px; margin-bottom: 36px; font-weight: 300; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 34px; }
.hero__chips { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__chips span {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); border: 1px solid var(--line-soft);
  padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.hero__chips i { color: var(--honey); }
.hero__scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted);
  z-index: 2;
}
.hero__scroll-line { width: 1px; height: 50px; background: linear-gradient(var(--honey), transparent); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================== Marquee ===================== */
.marquee { background: var(--cocoa); color: var(--butter); padding: 16px 0; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; align-items: center; gap: 28px; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: 20px; font-weight: 500; }
.marquee__track i { font-size: 10px; color: var(--honey); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== Intro ===================== */
.intro { padding: 120px 0; }
.intro__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.intro__media { position: relative; }
.intro__img {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,248,236,0.10), rgba(255,248,236,0.30)),
    url('https://images.unsplash.com/photo-1555507036-ab1f4048b35e?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
  box-shadow: var(--shadow);
}
.intro__tag {
  position: absolute; bottom: -22px; right: -16px;
  background: var(--cream); border: 1px solid var(--line-soft);
  padding: 16px 22px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.intro__tag i { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--butter-soft); color: var(--honey-dark); font-size: 17px; }
.intro__tag strong { display: block; font-size: 14px; color: var(--ink); }
.intro__tag span { font-size: 12px; color: var(--muted); }

.intro__content h2 { margin: 8px 0 22px; }
.intro__content p { color: var(--ink-soft); margin-bottom: 18px; font-weight: 300; }
.intro__badges { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.intro__badges div { display: flex; align-items: center; gap: 12px; }
.intro__badges i { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--butter-soft); color: var(--honey-dark); font-size: 17px; }
.intro__badges span { font-size: 13px; line-height: 1.3; color: var(--ink-soft); display: block; }

/* ===================== Stats ===================== */
.stats { padding: 56px 0; background: var(--butter-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat { padding: 12px; position: relative; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: -12px; top: 20%; height: 60%; width: 1px; background: rgba(196,126,30,0.25); }
.stat__num { display: block; font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 6vw, 62px); color: var(--honey-dark); line-height: 1; }
.stat__label { display: block; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cocoa); margin-top: 12px; font-weight: 600; }

/* ===================== Section Head ===================== */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__eyebrow { display: inline-block; font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--honey-dark); margin-bottom: 16px; position: relative; padding-left: 32px; font-weight: 600; }
.section-head--center .section-head__eyebrow { padding-left: 0; }
.section-head__eyebrow::before { content: ''; position: absolute; left: 0; top: 50%; width: 22px; height: 1px; background: var(--honey); transform: translateY(-50%); }
.section-head--center .section-head__eyebrow::before { display: none; }
.section-head__title { font-family: var(--font-display); font-weight: 500; font-size: clamp(36px, 6vw, 64px); line-height: 1.05; color: var(--cocoa); margin-bottom: 20px; letter-spacing: -0.5px; }
.section-head__sub { font-size: 16px; color: var(--ink-soft); max-width: 560px; font-weight: 300; }
.section-head--center .section-head__sub { margin-left: auto; margin-right: auto; }

/* ===================== Menu ===================== */
.menu { padding: 120px 0; }
.menu__tabs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.menu__tab {
  padding: 11px 22px; border-radius: 50px;
  font-size: 14px; letter-spacing: 0.03em; font-weight: 500;
  color: var(--ink-soft); background: var(--cream-2);
  border: 1px solid var(--line-soft);
  transition: all 0.3s var(--ease);
}
.menu__tab:hover { color: var(--honey-dark); border-color: var(--honey); }
.menu__tab.active { background: var(--honey); color: var(--white); border-color: var(--honey); box-shadow: 0 10px 22px rgba(233,162,59,0.3); }

.menu__panel { display: none; animation: fadeIn 0.5s var(--ease); }
.menu__panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.menu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu-item {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
}
.menu-item:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(233,162,59,0.4); }
.menu-item__img { aspect-ratio: 4/3; background-size: cover; background-position: center; position: relative; }
.menu-item__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(74,52,42,0.15)); }
.menu-item__body { padding: 22px 24px 24px; position: relative; }
.menu-item__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 8px; }
.menu-item__head h3 { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--cocoa); letter-spacing: -0.2px; }
.menu-item__price { font-family: var(--font-display); font-weight: 600; color: var(--honey-dark); font-size: 18px; white-space: nowrap; }
.menu-item p { color: var(--ink-soft); font-size: 14px; font-weight: 300; line-height: 1.6; }
.menu-item--featured { border-color: rgba(233,162,59,0.3); }
.menu-item__badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  background: var(--honey); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 50px;
  box-shadow: 0 6px 14px rgba(233,162,59,0.4);
}
.menu__note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 40px; }

/* Menu item images (assigned via data-img attribute in JS) */

/* ===================== About ===================== */
.about { padding: 120px 0; background: var(--cream-2); }
.about__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.about__content h2 { margin: 8px 0 24px; }
.about__content p { color: var(--ink-soft); margin-bottom: 18px; font-weight: 300; }
.about__list { margin: 28px 0 32px; }
.about__list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; color: var(--ink); font-size: 15px; }
.about__list i { color: var(--honey-dark); }
.about__media { position: relative; }
.about__img {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,248,236,0.10), rgba(255,248,236,0.30)),
    url('https://images.unsplash.com/photo-1517433670267-086d4364d96b?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
  box-shadow: var(--shadow);
}
.about__badge {
  position: absolute; bottom: -26px; right: -16px;
  background: var(--cream); border: 1px solid var(--line-soft);
  padding: 20px 26px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-sm);
}
.about__badge-num { display: block; font-family: var(--font-display); font-weight: 600; font-size: 44px; line-height: 1; color: var(--honey-dark); }
.about__badge-stars { color: var(--honey); display: block; margin: 6px 0 4px; font-size: 13px; }
.about__badge-text { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ===================== Gallery ===================== */
.gallery { padding: 120px 0; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery__item { position: relative; border-radius: var(--radius); overflow: hidden; background-size: cover; background-position: center; cursor: pointer; transition: transform 0.4s var(--ease); }
.gallery__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(74,52,42,0.65)); }
.gallery__item:hover { transform: scale(1.02); }
.gallery__tag {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream); font-weight: 600;
  padding: 5px 12px; background: rgba(74,52,42,0.5); border-radius: 50px; backdrop-filter: blur(6px);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__grid .gallery__item:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1555507036-ab1f4048b35e?auto=format&fit=crop&w=700&q=80'); }
.gallery__grid .gallery__item:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1573620649-e26b35fff5b0?auto=format&fit=crop&w=700&q=80'); }
.gallery__grid .gallery__item:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1598373182133-52452f76993f?auto=format&fit=crop&w=700&q=80'); }
.gallery__grid .gallery__item:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1100&q=80'); }
.gallery__grid .gallery__item:nth-child(5) { background-image: url('https://images.unsplash.com/photo-1486427944299-d1955d23e349?auto=format&fit=crop&w=700&q=80'); }
.gallery__grid .gallery__item:nth-child(6) { background-image: url('https://images.unsplash.com/photo-1599785209707-a456fc1337f1?auto=format&fit=crop&w=700&q=80'); }

/* ===================== Reviews ===================== */
.reviews { padding: 120px 0; background: var(--cream-2); overflow: hidden; }
.reviews__rating { display: inline-flex; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; justify-content: center; }
.reviews__rating-stars { color: var(--honey); font-size: 18px; }
.reviews__rating-text { color: var(--ink-soft); font-size: 15px; }
.reviews__rating-text strong { color: var(--ink); }
.reviews__track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 24px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.reviews__track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 calc(33.333% - 15px); min-width: 300px;
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: 32px; scroll-snap-align: start;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.review-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-4px); border-color: rgba(233,162,59,0.4); }
.review-card__stars { color: var(--honey); margin-bottom: 18px; font-size: 14px; }
.review-card p { color: var(--ink-soft); line-height: 1.7; margin-bottom: 26px; font-family: var(--font-display); font-style: italic; font-size: 17px; font-weight: 400; }
.review-card__author { display: flex; align-items: center; gap: 14px; }
.review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--honey); color: var(--white); display: grid; place-items: center; font-weight: 600; font-size: 18px; }
.review-card__author strong { display: block; font-size: 15px; color: var(--ink); }
.review-card__source { font-size: 12px; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.reviews__nav { display: flex; gap: 12px; justify-content: center; margin-top: 14px; }
.reviews__btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); color: var(--ink); display: grid; place-items: center; background: var(--white); transition: all 0.25s var(--ease); }
.reviews__btn:hover { background: var(--honey); border-color: var(--honey); color: var(--white); }

/* ===================== Visit ===================== */
.visit { padding: 120px 0; }
.visit__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: stretch; }
.visit__info { display: flex; flex-direction: column; gap: 20px; }
.visit__card { display: flex; gap: 20px; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px; transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease); }
.visit__card:hover { box-shadow: var(--shadow-sm); border-color: rgba(233,162,59,0.4); }
.visit__card-icon { flex-shrink: 0; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--butter-soft); color: var(--honey-dark); font-size: 20px; }
.visit__card h3 { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--cocoa); margin-bottom: 8px; letter-spacing: -0.2px; }
.visit__card p { color: var(--ink-soft); font-size: 15px; font-weight: 300; }
.visit__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; color: var(--honey-dark); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; }
.visit__link i { transition: transform 0.25s var(--ease); }
.visit__link:hover i { transform: translateX(5px); }
.hours { width: 100%; margin-top: 6px; }
.hours li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 14px; color: var(--ink-soft); }
.hours li:last-child { border-bottom: none; }
.hours li span:first-child { color: var(--ink); font-weight: 500; }
.visit__map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); min-height: 460px; box-shadow: var(--shadow); }
.visit__map iframe { display: block; width: 100%; height: 100%; min-height: 460px; }

/* ===================== Order CTA ===================== */
.order { padding: 100px 0; background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%); position: relative; overflow: hidden; }
.order::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&w=1600&q=80') center/cover; opacity: 0.12; mix-blend-mode: overlay; }
.order__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.order__content .section-head__eyebrow { color: var(--butter); }
.order__content .section-head__eyebrow::before { background: var(--butter); }
.order__title { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 7vw, 80px); line-height: 1.05; color: var(--white); margin: 10px 0 20px; letter-spacing: -0.5px; }
.order__sub { color: rgba(255,248,236,0.9); font-size: 17px; max-width: 460px; margin-bottom: 32px; font-weight: 300; }
.order__cta { display: flex; gap: 16px; flex-wrap: wrap; }
.order__cta .btn--primary { background: var(--white); color: var(--honey-dark); }
.order__cta .btn--primary:hover { background: var(--cream); }
.order__cta .btn--ghost { color: var(--white); border-color: rgba(255,248,236,0.4); }
.order__cta .btn--ghost:hover { border-color: var(--white); color: var(--white); }
.order__sun { display: grid; place-items: center; }
.order__sun-core {
  width: 150px; height: 150px; border-radius: 50%;
  background: var(--white); color: var(--honey-dark);
  display: grid; place-items: center;
  position: relative;
  animation: pulse 3s var(--ease) infinite;
}
.order__sun-core::before, .order__sun-core::after {
  content: ''; position: absolute; inset: -14px; border-radius: 50%;
  border: 1px dashed rgba(255,248,236,0.4);
}
.order__sun-core::after { inset: -26px; border-color: rgba(255,248,236,0.25); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50% { box-shadow: 0 0 0 22px rgba(255,255,255,0); }
}

/* ===================== Footer ===================== */
.footer { background: var(--cocoa); color: var(--cream); padding-top: 70px; }
.brand--footer .brand__name { color: var(--butter); }
.brand--footer .brand__mark { background: var(--honey); box-shadow: 0 0 0 5px rgba(233,162,59,0.18); }
.footer__tag { color: rgba(255,248,236,0.7); font-size: 14px; margin: 18px 0; max-width: 320px; font-weight: 300; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,248,236,0.18); display: grid; place-items: center; color: var(--cream); transition: all 0.25s var(--ease); }
.footer__social a:hover { background: var(--honey); border-color: var(--honey); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; }
.footer__col h4 { font-family: var(--font-display); font-weight: 500; font-size: 18px; color: var(--butter); margin-bottom: 18px; letter-spacing: 0.5px; }
.footer__col a, .footer__col p { display: block; color: rgba(255,248,236,0.7); font-size: 14px; padding: 6px 0; font-weight: 300; }
.footer__col a:hover { color: var(--butter); }
.footer__col p i, .footer__col a i { color: var(--butter); margin-right: 8px; }
.footer__bottom { border-top: 1px solid rgba(255,248,236,0.12); padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,248,236,0.6); flex-wrap: wrap; gap: 8px; }

/* ===================== Back to top ===================== */
.to-top { position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--honey); color: var(--white); display: grid; place-items: center; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.3s var(--ease); z-index: 40; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--honey-dark); transform: translateY(-3px); }

/* ===================== Reveal ===================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .intro__inner, .about__inner, .visit__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__badge { right: 16px; }
  .intro__tag { right: 16px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { flex-basis: calc(50% - 11px); }
  .order__inner { grid-template-columns: 1fr; text-align: center; }
  .order__content { text-align: center; }
  .order__cta { justify-content: center; }
}

@media (max-width: 768px) {
  .topbar { font-size: 12px; }
  .topbar__inner { height: auto; padding: 8px 24px; gap: 8px; }
  .hide-mobile { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; top: 0; right: 0; width: min(320px, 85vw); height: 100vh;
    background: var(--cream); border-left: 1px solid var(--line);
    flex-direction: column; justify-content: center; gap: 28px;
    transform: translateX(100%); transition: transform 0.4s var(--ease);
    z-index: 55; padding: 40px;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 18px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat:not(:last-child)::after { display: none; }
  .intro, .stats, .menu, .about, .gallery, .reviews, .visit, .order { padding: 80px 0; }
  .menu__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--wide { grid-column: span 2; }
  .review-card { flex-basis: 85%; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .section-head { margin-bottom: 40px; }
  .hero { padding: 110px 0 70px; }
  .menu__tabs { gap: 8px; }
  .menu__tab { padding: 9px 16px; font-size: 13px; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide, .gallery__item--tall { grid-column: span 1; grid-row: span 1; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero__bg, .marquee__track, .order__sun-core { animation: none; }
  .reveal { opacity: 1; transform: none; }
}