/* ============================================================
   KOPI HITAM — Specialty Coffee House
   Style: Neo-Brutalism + Dark Editorial
   Stack: Vanilla CSS
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors */
  --bg:        #0d0b09;
  --bg-2:      #141210;
  --bg-3:      #1c1814;
  --surface:   #221e19;
  --border:    #2e2820;
  --amber:     #d4883a;
  --amber-lt:  #e8a45c;
  --cream:     #f0e6d3;
  --text:      #e8ddd0;
  --text-muted:#8a7d6e;
  --text-dim:  #5a4f44;
  --white:     #ffffff;
  --danger:    #c0392b;
  --success:   #27ae60;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;

  /* Spacing */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  cursor: none;
}

/* Hide default cursor on desktop only */
@media (pointer: fine) {
  a, button, [role="tab"], select, textarea, input { cursor: none; }
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ── CUSTOM CURSOR ── */
.cursor,
.cursor-follower {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s;
}

.cursor {
  width: 10px;
  height: 10px;
  background: var(--amber);
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(212, 136, 58, 0.5);
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease), width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-follower.hovered {
  width: 56px;
  height: 56px;
  border-color: var(--amber);
  background: rgba(212, 136, 58, 0.08);
}

@media (pointer: coarse) {
  .cursor, .cursor-follower { display: none; }
}

/* ── LOADER ── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}

.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }

.loader-bar {
  width: 160px;
  height: 2px;
  background: var(--border);
  margin: 0 auto var(--sp-md);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--amber);
  animation: loadBar 1.2s var(--ease) forwards;
}

@keyframes loadBar { to { left: 0; } }

.loader-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-md);
  background: var(--amber);
  color: var(--bg);
  padding: var(--sp-sm) var(--sp-md);
  font-weight: 600;
  border-radius: var(--r-sm);
  z-index: 9000;
  transition: top 0.2s;
}
.skip-link:focus { top: var(--sp-md); }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

@media (max-width: 768px) {
  .container { padding: 0 var(--sp-md); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--r-sm);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s;
  min-height: 48px;
  touch-action: manipulation;
}

.btn:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--amber);
  color: var(--bg);
  box-shadow: 4px 4px 0 var(--amber-lt);
}
.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--amber-lt);
}
.btn--primary:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--amber-lt); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }

.btn--outline {
  background: transparent;
  color: var(--amber);
  border: 1.5px solid var(--amber);
}
.btn--outline:hover { background: var(--amber); color: var(--bg); }

.btn--full { width: 100%; justify-content: center; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 18px var(--sp-xl);
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(13, 11, 9, 0.9);
  backdrop-filter: blur(12px);
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-right: auto;
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--amber); }
.logo-mark { color: var(--amber); font-size: 14px; }

.nav-links {
  display: flex;
  gap: var(--sp-xl);
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width 0.25s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.nav-link:focus-visible { outline: 2px solid var(--amber); outline-offset: 4px; border-radius: 2px; }

.nav-cta {
  margin-left: var(--sp-xl);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 8px 18px;
  border-radius: var(--r-sm);
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--amber); color: var(--bg); }
.nav-cta:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--sp-sm);
  margin-left: var(--sp-md);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--bg-2);
  z-index: 999;
  padding: 88px var(--sp-xl) var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  transform: translateY(-110%);
  transition: transform 0.35s var(--ease);
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { transform: translateY(0); }

.mobile-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--amber); }
.mobile-link--cta {
  margin-top: var(--sp-md);
  color: var(--amber);
  border-bottom: none;
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .navbar { padding: 18px var(--sp-md); }
}

/* ── HERO ── */
.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px var(--sp-xl) var(--sp-xl);
  position: relative;
  overflow: hidden;
  gap: var(--sp-xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 50%, rgba(212,136,58,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.title-line--accent { color: var(--amber); }
.title-line--outline {
  -webkit-text-stroke: 1.5px var(--text-dim);
  color: transparent;
}

.title-line {
  overflow: hidden;
  display: block;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  margin-top: var(--sp-sm);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: min(440px, 100%);
}

.hero-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  filter: brightness(0.92) saturate(1.1);
  transition: filter 0.3s;
}
.hero-img:hover { filter: brightness(1) saturate(1.2); }

.hero-img-ring {
  position: absolute;
  inset: -12px;
  border-radius: 24px;
  border: 1px dashed rgba(212,136,58,0.2);
  pointer-events: none;
  animation: rotateRing 20s linear infinite;
}
@keyframes rotateRing { to { transform: rotate(360deg); } }

.hero-img-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.badge-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--amber);
}
.badge-sub {
  font-weight: 600;
  font-size: 13px;
  color: var(--cream);
}

/* Hero scroll */
.hero-scroll {
  position: absolute;
  bottom: var(--sp-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:1} 50%{transform:scaleY(0.4);opacity:0.4} }
.scroll-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 88px;
    gap: var(--sp-xl);
  }
  .hero-content { align-items: center; }
  .hero-title { font-size: clamp(48px, 14vw, 72px); }
  .hero-sub { text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-img-wrap { width: min(360px, 100%); }
  .hero-scroll { display: none; }
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: var(--sp-xl);
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.marquee-dot { color: var(--amber); font-size: 8px; }

/* ── SECTION LABELS ── */
.section-label {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-md);
}
.label-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--amber);
}
.label-line {
  flex: 0 0 32px;
  height: 1px;
  background: var(--border);
}
.label-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* ── SECTION HEADER ── */
.section-header {
  margin-bottom: var(--sp-2xl);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  color: var(--cream);
  margin-bottom: var(--sp-md);
}
.section-title em {
  font-style: normal;
  color: var(--amber);
}
.section-desc {
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ── MENU SECTION ── */
.menu-section {
  padding: var(--sp-3xl) 0;
  background: var(--bg);
}

.menu-filter {
  display: flex;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-2xl);
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.2s;
  min-height: 40px;
  touch-action: manipulation;
}
.filter-btn:hover { color: var(--text); border-color: var(--text-dim); }
.filter-btn.active { background: var(--amber); color: var(--bg); border-color: var(--amber); }
.filter-btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

/* Menu card */
.menu-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,136,58,0.15);
}

.menu-card.hidden { display: none; }

.menu-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.menu-card:hover .menu-card-img { transform: scale(1.05); }
.menu-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,0.6) 0%, transparent 60%);
  pointer-events: none;
}
.menu-card-tag {
  position: absolute;
  top: var(--sp-md);
  right: var(--sp-md);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  background: var(--amber);
  color: var(--bg);
  padding: 4px 10px;
  border-radius: 100px;
}

.menu-card-body {
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  flex: 1;
}
.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-sm);
}
.menu-card-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.03em;
  color: var(--cream);
  line-height: 1;
}
.menu-card-price {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--amber);
  white-space: nowrap;
}
.menu-card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}
.menu-card-meta {
  display: flex;
  gap: var(--sp-md);
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}
.menu-card-btn {
  padding: 10px var(--sp-md);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  min-height: 44px;
  touch-action: manipulation;
  align-self: flex-start;
}
.menu-card-btn:hover { background: var(--amber); color: var(--bg); border-color: var(--amber); }
.menu-card-btn:active { opacity: 0.85; transform: scale(0.98); }
.menu-card-btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

/* Wide card */
.menu-card--wide {
  grid-column: 1 / -1;
  flex-direction: row;
}
.menu-card-wide-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-2xl);
  padding: var(--sp-xl);
  width: 100%;
}
.menu-card-wide-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.wide-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--amber);
}
.wide-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--cream);
}
.wide-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
}
.wide-meta { display: flex; align-items: center; gap: var(--sp-xl); }
.wide-price {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.02em;
  color: var(--amber);
}
.menu-card-wide-visual {
  flex-shrink: 0;
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wide-visual-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(212,136,58,0.3);
  animation: rotateRing 15s linear infinite;
}
.wide-visual-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--amber);
  opacity: 0.4;
  text-align: center;
  line-height: 1.2;
}

.menu-cta-wrap {
  margin-top: var(--sp-2xl);
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .menu-card--wide { grid-column: span 2; }
  .menu-card-wide-inner { flex-direction: column; align-items: flex-start; gap: var(--sp-lg); }
  .menu-card-wide-visual { display: none; }
}
@media (max-width: 600px) {
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card--wide { grid-column: span 1; }
}

/* ── STORY STRIP ── */
.story-strip {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-3xl) var(--sp-xl);
}
.story-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.story-strip-label {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}
.story-strip-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: var(--sp-2xl);
}
.accent-text { color: var(--amber); }

.story-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  padding: var(--sp-xl);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.pillar:hover { border-color: rgba(212,136,58,0.35); transform: translateY(-3px); }
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.pillar:hover::before { opacity: 1; }
.pillar-icon { color: var(--amber); margin-bottom: var(--sp-sm); }
.pillar-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--cream);
  line-height: 1;
}
.pillar-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .story-pillars { grid-template-columns: 1fr; }
  .story-strip { padding: var(--sp-2xl) var(--sp-md); }
}

/* ── ABOUT ── */
.about-section {
  padding: var(--sp-3xl) var(--sp-xl);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual-col { position: relative; }
.about-img-stack { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  filter: brightness(0.88) saturate(1.1);
}
.about-img-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--amber);
  color: var(--bg);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.img-card-num {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}
.img-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}
.about-img-badge {
  position: absolute;
  top: var(--sp-xl);
  left: -20px;
  width: 100px;
  height: 100px;
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-spiral {
  position: absolute;
  inset: 0;
  animation: rotateRing 12s linear infinite;
  font-family: var(--font-mono);
  font-size: 10px;
}
.badge-icon { z-index: 1; }

.about-text-col { display: flex; flex-direction: column; gap: var(--sp-lg); }
.about-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  color: var(--cream);
}
.about-title em { font-style: normal; color: var(--amber); }
.about-p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

.about-facts {
  display: flex;
  gap: var(--sp-xl);
  padding: var(--sp-lg) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fact-item { display: flex; flex-direction: column; gap: 4px; }
.fact-num {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 0.02em;
  color: var(--amber);
  line-height: 1;
}
.fact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual-col { order: -1; }
  .about-section { padding: var(--sp-2xl) var(--sp-md); }
  .about-img { aspect-ratio: 16/9; }
  .about-img-card { right: var(--sp-md); bottom: var(--sp-md); }
  .about-img-badge { display: none; }
}

/* ── TESTIMONIAL ── */
.testimonial-section {
  padding: var(--sp-3xl) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial-track {
  position: relative;
  min-height: 240px;
  margin: var(--sp-2xl) 0 var(--sp-xl);
}
.testimonial-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.testimonial-card--active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.testimonial-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 3px;
}
.testimonial-quote {
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--bg);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--cream);
  display: block;
}
.author-role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  display: block;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-lg);
}
.testi-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  touch-action: manipulation;
}
.testi-nav-btn:hover { border-color: var(--amber); color: var(--amber); background: rgba(212,136,58,0.08); }
.testi-nav-btn:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.testi-dots { display: flex; gap: var(--sp-sm); }
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.2s, width 0.2s;
  min-width: 8px;
  touch-action: manipulation;
}
.testi-dot.active { background: var(--amber); width: 24px; border-radius: 4px; }
.testi-dot:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

/* ── ORDER SECTION ── */
.order-section {
  padding: var(--sp-3xl) 0;
  position: relative;
  overflow: hidden;
}
.order-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(212,136,58,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: start;
}
.order-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--amber);
  margin-bottom: var(--sp-md);
}
.order-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--cream);
  margin-bottom: var(--sp-lg);
}
.order-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 400px;
}

/* Form */
.order-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.required { color: var(--amber); }
.form-optional { color: var(--text-dim); font-weight: 400; text-transform: none; letter-spacing: normal; }
.form-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px var(--sp-md);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 48px;
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(212,136,58,0.12); }
.form-input.error { border-color: var(--danger); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7d6e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-textarea { min-height: 96px; resize: vertical; }
.form-error {
  font-size: 12px;
  color: var(--danger);
  display: none;
}
.form-error.visible { display: block; }

@media (max-width: 900px) {
  .order-inner { grid-template-columns: 1fr; }
  .order-section { padding: var(--sp-2xl) 0; }
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: var(--sp-3xl) var(--sp-xl) 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: var(--sp-md);
  transition: color 0.2s;
}
.footer-logo:hover { color: var(--amber); }
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: var(--sp-lg);
}
.footer-socials { display: flex; gap: var(--sp-md); }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--amber); color: var(--amber); }
.social-link:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

.footer-links-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-sm); }
.footer-link {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  padding: 4px 0;
}
.footer-link:hover { color: var(--amber); }
.footer-link:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }

.footer-hours { display: flex; flex-direction: column; gap: var(--sp-sm); }
.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  gap: var(--sp-md);
}
.hours-day { color: var(--text-muted); }
.hours-time { color: var(--text-dim); font-family: var(--font-mono); font-size: 12px; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-md);
}
.footer-copy { font-size: 12px; color: var(--text-dim); }
.footer-mono {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer { padding: var(--sp-2xl) var(--sp-md) 0; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: var(--sp-xl);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-md) var(--sp-xl);
  font-size: 14px;
  color: var(--text);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
  z-index: 5000;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-color: var(--success); }
.toast.error   { border-color: var(--danger); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: var(--sp-xl);
  right: var(--sp-xl);
  width: 44px; height: 44px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, color 0.2s, border-color 0.2s;
  z-index: 500;
  touch-action: manipulation;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { color: var(--amber); border-color: var(--amber); }
.back-to-top:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}
