/* ===========================================================
   LUMINOS COFFEE — Landing
   Palette: #0F0F0F #F5F1EA #5C3D2E #C89B5E #F7F4EE
   Type: Playfair Display (display), Inter (UI)
=========================================================== */

:root {
  --black: #0F0F0F;
  --black-2: #161311;
  --black-3: #1c1815;
  --ivory: #F5F1EA;
  --ivory-2: #F7F4EE;
  --brown: #5C3D2E;
  --brown-2: #3a2a20;
  --gold: #C89B5E;
  --gold-2: #E0B87A;
  --gold-glow: rgba(200, 155, 94, 0.35);

  --bg: var(--black);
  --bg-2: var(--black-2);
  --fg: var(--ivory);
  --fg-dim: rgba(245, 241, 234, 0.62);
  --fg-dimmer: rgba(245, 241, 234, 0.38);
  --hairline: rgba(245, 241, 234, 0.08);
  --hairline-2: rgba(245, 241, 234, 0.14);

  --serif: 'Playfair Display', 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --max: 1360px;
  --pad: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
}

/* Light mode */
:root[data-theme="light"] {
  --bg: #F5F1EA;
  --bg-2: #EBE5DA;
  --black-2: #EBE5DA;
  --black-3: #E2DBCE;
  --fg: #1a1512;
  --fg-dim: rgba(26, 21, 18, 0.62);
  --fg-dimmer: rgba(26, 21, 18, 0.38);
  --hairline: rgba(26, 21, 18, 0.10);
  --hairline-2: rgba(26, 21, 18, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.6s var(--ease), color 0.6s var(--ease);
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

/* ===========================================================
   Typography scale
=========================================================== */
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.mono { font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; }
h2.section-title { font-size: clamp(38px, 5.4vw, 72px); }
h3.card-title { font-size: clamp(24px, 2.6vw, 34px); }

.italic-accent { font-style: italic; color: var(--gold); font-weight: 500; }

/* ===========================================================
   Layout helpers
=========================================================== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

section {
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: clamp(48px, 6vw, 88px);
  max-width: 780px;
}

.section-head .lede {
  color: var(--fg-dim);
  font-size: clamp(15px, 1.4vw, 18px);
  max-width: 560px;
  text-wrap: pretty;
}

/* ===========================================================
   Buttons
=========================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s, color 0.4s, border-color 0.4s, box-shadow 0.4s;
  background: transparent;
  color: var(--fg);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--gold);
  color: #1a1512;
  border-color: var(--gold);
  box-shadow: 0 12px 40px -12px var(--gold-glow);
}
.btn-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  box-shadow: 0 18px 60px -12px var(--gold-glow);
}

.btn-ghost {
  border-color: var(--hairline-2);
  color: var(--fg);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===========================================================
   NAV
=========================================================== */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1320px;
  z-index: 100;
  border-radius: 100px;
  padding: 12px 18px 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(245, 241, 234, 0.08);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), top 0.4s var(--ease), padding 0.4s var(--ease);
}
:root[data-theme="light"] .nav {
  background: rgba(245, 241, 234, 0.7);
  border-color: rgba(26, 21, 18, 0.08);
}

.nav.is-scrolled {
  top: 12px;
  background: rgba(15, 15, 15, 0.82);
}
:root[data-theme="light"] .nav.is-scrolled {
  background: rgba(245, 241, 234, 0.92);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 28px; height: 28px;
  display: grid; place-items: center;
}
.brand-name {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.24em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin: 0 auto;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--fg-dim);
  border-radius: 999px;
  transition: color 0.3s, background 0.3s;
}
.nav-links a:hover { color: var(--fg); background: var(--hairline); }

.nav-tools {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.icon-btn {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--fg-dim);
  cursor: pointer;
  transition: all 0.3s;
}
.icon-btn:hover { color: var(--gold); background: var(--hairline); }
.icon-btn svg { width: 17px; height: 17px; }
.icon-btn.active { color: var(--gold); background: rgba(200, 155, 94, 0.12); }
.icon-btn.active svg { animation: pulse-icon 1.4s ease-in-out infinite; }
@keyframes pulse-icon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.nav .btn { padding: 11px 20px; font-size: 12.5px; margin-left: 6px; }

/* Mobile nav */
.nav-toggle {
  display: none;
}
@media (max-width: 900px) {
  .nav { padding: 10px 12px 10px 20px; gap: 8px; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
  .nav .btn { display: none; }
  .brand-name { font-size: 15px; }
}

/* ===========================================================
   HERO
=========================================================== */
.hero {
  min-height: 100vh;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.42) contrast(1.08) saturate(0.9);
  transform: scale(1.05);
}
:root[data-theme="light"] .hero-bg img {
  filter: brightness(0.75) contrast(1.02) saturate(0.85);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 45% at 25% 60%, rgba(200, 155, 94, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(15, 15, 15, 0.35) 0%, rgba(15, 15, 15, 0.55) 55%, rgba(15, 15, 15, 0.85) 100%);
}
:root[data-theme="light"] .hero-bg::after {
  background:
    radial-gradient(60% 45% at 25% 60%, rgba(200, 155, 94, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(245, 241, 234, 0.55) 0%, rgba(245, 241, 234, 0.65) 55%, rgba(245, 241, 234, 0.9) 100%);
}

/* Fireflies */
.fireflies {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.firefly {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold), 0 0 24px rgba(200, 155, 94, 0.5);
  opacity: 0;
  animation: firefly-drift 14s ease-in-out infinite, firefly-glow 3s ease-in-out infinite;
}
@keyframes firefly-drift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(60px, -80px); }
  50%  { transform: translate(-40px, -140px); }
  75%  { transform: translate(-100px, -70px); }
  100% { transform: translate(0, 0); }
}
@keyframes firefly-glow {
  0%, 100% { opacity: 0; transform-origin: center; }
  50% { opacity: 0.9; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  width: 100%;
}

.hero-copy { max-width: 640px; }
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero-copy .brand-block {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--fg-dim);
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7.6vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-title .line { display: block; }
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero-lede {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--fg-dim);
  max-width: 480px;
  margin-bottom: 40px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Right: floating cup */
.hero-cup {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 520px;
  margin-left: auto;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}
.hero-cup .glow {
  position: absolute;
  inset: -10% -20% -10% -20%;
  background: radial-gradient(ellipse at center, rgba(200, 155, 94, 0.42) 0%, rgba(200, 155, 94, 0) 60%);
  filter: blur(30px);
  z-index: 0;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.hero-cup img {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55)) drop-shadow(0 10px 20px rgba(200, 155, 94, 0.15));
}

/* Steam */
.steam {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40%;
  z-index: 2;
  pointer-events: none;
}
.steam-wisp {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 24px;
  height: 100%;
  background: linear-gradient(to top, rgba(245, 241, 234, 0.55), rgba(245, 241, 234, 0));
  border-radius: 40% 40% 20% 20%;
  filter: blur(8px);
  transform-origin: bottom center;
  animation: steam 4.5s ease-in infinite;
  opacity: 0;
}
.steam-wisp:nth-child(1) { left: 30%; animation-delay: 0s; }
.steam-wisp:nth-child(2) { left: 50%; animation-delay: 1.2s; width: 32px; }
.steam-wisp:nth-child(3) { left: 65%; animation-delay: 2.4s; }
@keyframes steam {
  0%   { transform: translate(-50%, 0) scale(0.6, 0.6); opacity: 0; }
  25%  { opacity: 0.6; }
  60%  { transform: translate(-50%, -40%) scale(1.1, 1.6) rotate(-6deg); opacity: 0.4; }
  100% { transform: translate(-40%, -80%) scale(1.6, 2.2) rotate(6deg); opacity: 0; }
}

/* Hero side chips */
.hero-chips {
  position: absolute;
  right: max(24px, 4vw);
  bottom: max(24px, 4vw);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 340px;
  justify-content: flex-end;
}
.chip {
  padding: 8px 14px;
  border: 1px solid var(--hairline-2);
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(12px);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
}
:root[data-theme="light"] .chip {
  background: rgba(245, 241, 234, 0.5);
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: var(--fg-dimmer);
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-cue .bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: bar-drop 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes bar-drop {
  0% { transform: scaleY(0); }
  60% { transform: scaleY(1); }
  100% { transform: scaleY(1) translateY(30px); opacity: 0; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-cup { max-width: 360px; margin: 0 auto; order: -1; }
  .hero-chips { display: none; }
}

/* ===========================================================
   MARQUEE (values strip)
=========================================================== */
.marquee {
  padding: 30px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee span {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee span::after {
  content: '✦';
  color: var(--gold);
  font-size: 0.6em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================================================
   SIGNATURE DRINKS
=========================================================== */
.drinks {
  background: var(--bg);
  position: relative;
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .drinks-grid { grid-template-columns: 1fr; } }

.drink-card {
  position: relative;
  padding: 32px 28px 36px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(245, 241, 234, 0.04) 0%, rgba(245, 241, 234, 0.015) 100%);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
  isolation: isolate;
}
:root[data-theme="light"] .drink-card {
  background: linear-gradient(180deg, rgba(26, 21, 18, 0.03) 0%, rgba(26, 21, 18, 0.01) 100%);
}
.drink-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, var(--gold), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.drink-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 155, 94, 0.3);
  box-shadow: 0 40px 80px -30px rgba(200, 155, 94, 0.25);
}
.drink-card:hover::before { opacity: 1; }

.drink-media {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 26px;
  background: linear-gradient(160deg, #2a2118, #0f0f0f);
}
:root[data-theme="light"] .drink-media {
  background: linear-gradient(160deg, #d8cfc0, #b8a892);
}
.drink-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(200, 155, 94, 0.22), transparent 70%);
  pointer-events: none;
}
.drink-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease);
}
.drink-card:hover .drink-media img { transform: scale(1.08); }

.drink-tag {
  position: absolute;
  top: 44px;
  left: 44px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.55);
  border: 1px solid rgba(200, 155, 94, 0.4);
  backdrop-filter: blur(10px);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.drink-price {
  position: absolute;
  top: 44px;
  right: 44px;
  z-index: 2;
  min-width: 68px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1512;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 8px 24px -6px var(--gold-glow);
}

.drink-title {
  font-size: 28px;
  margin-bottom: 8px;
}
.drink-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 18px;
}
.drink-notes {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 22px;
}
.drink-notes .dot {
  color: var(--gold);
  margin: 0 8px;
  opacity: 0.6;
}

.drink-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--hairline-2);
  padding-bottom: 6px;
  transition: color 0.3s, border-color 0.3s;
}
.drink-cta:hover { color: var(--gold); border-color: var(--gold); }
.drink-cta .arrow { transition: transform 0.3s var(--ease); }
.drink-cta:hover .arrow { transform: translateX(4px); }

/* ===========================================================
   STORY
=========================================================== */
.story {
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.story::before {
  content: 'L';
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(400px, 60vw, 900px);
  font-weight: 700;
  color: rgba(200, 155, 94, 0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } }

.story-media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}
.story-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}
.story-media:hover img { transform: scale(1.06); }
.story-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
  pointer-events: none;
}
.story-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: var(--ivory);
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}
.story-caption .year {
  font-family: var(--serif);
  font-size: 42px;
  letter-spacing: -0.02em;
  color: var(--gold);
  text-transform: none;
  line-height: 1;
}

.story-copy h2 {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 28px;
}
.story-copy p {
  color: var(--fg-dim);
  font-size: clamp(15px, 1.35vw, 17px);
  margin-bottom: 20px;
  line-height: 1.7;
  max-width: 520px;
  text-wrap: pretty;
}
.story-copy p em {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}
.story-copy .btn { margin-top: 20px; }

.story-stats {
  display: flex;
  gap: 42px;
  margin: 40px 0 32px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.stat-num {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ===========================================================
   EXPERIENCE
=========================================================== */
.experience {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(200, 155, 94, 0.05), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(92, 61, 46, 0.12), transparent 45%);
  pointer-events: none;
}
.experience::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='none' stroke='%23C89B5E' stroke-width='0.5' opacity='0.06'><ellipse cx='30' cy='30' rx='11' ry='7' transform='rotate(30 30 30)'/><path d='M20 30 Q30 26 40 30' /><ellipse cx='85' cy='75' rx='11' ry='7' transform='rotate(-20 85 75)'/><path d='M75 75 Q85 71 95 75'/><ellipse cx='60' cy='105' rx='11' ry='7' transform='rotate(60 60 105)'/><path d='M50 105 Q60 101 70 105'/></g></svg>");
  opacity: 0.5;
  pointer-events: none;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .exp-grid { grid-template-columns: 1fr; } }

.exp-card {
  padding: 44px 32px;
  border-radius: 22px;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(245, 241, 234, 0.03), transparent);
  backdrop-filter: blur(8px);
  transition: border-color 0.4s, transform 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
:root[data-theme="light"] .exp-card {
  background: linear-gradient(180deg, rgba(26, 21, 18, 0.03), transparent);
}
.exp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 155, 94, 0.35);
}
.exp-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(200, 155, 94, 0.18), rgba(200, 155, 94, 0.04));
  border: 1px solid rgba(200, 155, 94, 0.24);
  color: var(--gold);
  display: grid; place-items: center;
  margin-bottom: 26px;
}
.exp-icon svg { width: 26px; height: 26px; }
.exp-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}
.exp-card p {
  color: var(--fg-dim);
  font-size: 14.5px;
  line-height: 1.65;
  text-wrap: pretty;
}

/* ===========================================================
   GALLERY
=========================================================== */
.gallery {
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 120px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 0.6s;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(200, 155, 94, 0) 0%, rgba(200, 155, 94, 0) 60%, rgba(200, 155, 94, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.1); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .caption {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s, transform 0.5s var(--ease);
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.gallery-item:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

/* Masonry sizes */
.g-1 { grid-column: span 2; grid-row: span 3; }
.g-2 { grid-column: span 2; grid-row: span 2; }
.g-3 { grid-column: span 2; grid-row: span 3; }
.g-4 { grid-column: span 3; grid-row: span 2; }
.g-5 { grid-column: span 3; grid-row: span 2; }
.g-6 { grid-column: span 2; grid-row: span 3; }
.g-7 { grid-column: span 4; grid-row: span 3; }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .g-1, .g-6 { grid-column: span 2; grid-row: span 2; }
  .g-2, .g-3, .g-4, .g-5, .g-7 { grid-column: span 1; grid-row: span 1; }
}

/* ===========================================================
   TESTIMONIALS
=========================================================== */
.testimonials { background: var(--bg); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

.testi {
  padding: 34px 30px;
  border-radius: 22px;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(245, 241, 234, 0.03), transparent);
  position: relative;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
:root[data-theme="light"] .testi {
  background: linear-gradient(180deg, rgba(26, 21, 18, 0.02), transparent);
}
.testi:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 155, 94, 0.3);
}
.testi .stars {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.testi blockquote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.testi footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brown));
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 15px;
  color: #1a1512;
  font-weight: 500;
}
.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
}
.testi-meta {
  font-size: 12px;
  color: var(--fg-dim);
}

/* ===========================================================
   LOYALTY
=========================================================== */
.loyalty {
  padding: 60px 0 100px;
  background: var(--bg);
  position: relative;
}
.loyalty-card {
  position: relative;
  padding: clamp(40px, 6vw, 72px);
  border-radius: 32px;
  background: linear-gradient(135deg, #1a1512 0%, #2a1e15 100%);
  border: 1px solid rgba(200, 155, 94, 0.25);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
:root[data-theme="light"] .loyalty-card {
  background: linear-gradient(135deg, #EBE5DA 0%, #DCC9A8 100%);
  border-color: rgba(200, 155, 94, 0.4);
}
.loyalty-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(200, 155, 94, 0.22), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(200, 155, 94, 0.12), transparent 50%);
  pointer-events: none;
}
.loyalty-content { position: relative; z-index: 1; }
.loyalty-content .eyebrow { margin-bottom: 20px; }
.loyalty-content h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 18px;
}
.loyalty-content p {
  color: var(--fg-dim);
  font-size: 15.5px;
  margin-bottom: 28px;
  max-width: 460px;
  text-wrap: pretty;
}
.loyalty-stars {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: 160px;
}
.loyalty-star {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px dashed rgba(200, 155, 94, 0.35);
  display: grid; place-items: center;
  color: rgba(200, 155, 94, 0.35);
  transition: all 0.4s var(--ease);
}
.loyalty-star.filled {
  background: linear-gradient(160deg, var(--gold), var(--gold-2));
  border-style: solid;
  border-color: var(--gold);
  color: #1a1512;
  box-shadow: 0 8px 20px -4px var(--gold-glow);
  transform: scale(1.05);
}
.loyalty-star svg { width: 22px; height: 22px; }
.loyalty-count {
  margin-left: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(200, 155, 94, 0.12);
  border: 1px solid rgba(200, 155, 94, 0.25);
  text-align: center;
}
.loyalty-count .num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.loyalty-count .lbl {
  font-size: 10px;
  color: var(--fg-dim);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (max-width: 780px) {
  .loyalty-card { grid-template-columns: 1fr; }
  .loyalty-stars { flex-wrap: wrap; }
}

/* ===========================================================
   LOCATION
=========================================================== */
.location {
  background: var(--bg-2);
  border-top: 1px solid var(--hairline);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  background: var(--bg);
}
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr; } }

/* Stylized map */
.map {
  position: relative;
  min-height: 480px;
  background: linear-gradient(135deg, #14100d 0%, #1c1512 50%, #241812 100%);
  overflow: hidden;
}
:root[data-theme="light"] .map {
  background: linear-gradient(135deg, #d8cfc0 0%, #c6b89e 50%, #b8a685 100%);
}
.map-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.map-pin {
  position: absolute;
  top: 48%;
  left: 52%;
  transform: translate(-50%, -100%);
  z-index: 2;
}
.pin-mark {
  width: 48px; height: 48px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
  box-shadow: 0 12px 30px -6px var(--gold-glow), 0 0 0 8px rgba(200, 155, 94, 0.15);
  display: grid; place-items: center;
  animation: pin-bounce 3s ease-in-out infinite;
}
@keyframes pin-bounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-6px); }
}
.pin-mark::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #1a1512;
  transform: rotate(45deg);
}
.map-pin::after {
  content: '';
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 12px;
  background: radial-gradient(ellipse, rgba(200, 155, 94, 0.5), transparent 70%);
  border-radius: 50%;
  animation: pin-shadow 3s ease-in-out infinite;
}
@keyframes pin-shadow {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(0.7); opacity: 0.9; }
}
.map-label {
  position: absolute;
  top: calc(48% - 100px);
  left: 52%;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(200, 155, 94, 0.35);
  backdrop-filter: blur(10px);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.loc-info {
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.loc-info h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  margin-top: 8px;
}
.loc-address {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.7;
}
.loc-address strong {
  display: block;
  color: var(--fg);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.loc-hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 20px;
  padding: 20px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin: 8px 0;
}
.loc-hours dt {
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.loc-hours dd {
  font-size: 13.5px;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
}
.loc-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ===========================================================
   FOOTER
=========================================================== */
.footer {
  padding: 80px 0 40px;
  background: var(--bg);
  border-top: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.footer-wordmark {
  font-family: var(--serif);
  font-size: clamp(80px, 16vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--fg) 0%, var(--fg-dim) 60%, transparent 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 780px) { .footer-inner { grid-template-columns: 1fr 1fr; } }

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-dim);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: var(--fg);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.35;
  color: var(--fg-dim);
  max-width: 280px;
  margin-top: 10px;
}
.footer-tag em { color: var(--gold); font-style: italic; }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.social {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hairline-2);
  display: grid; place-items: center;
  color: var(--fg-dim);
  transition: all 0.3s;
}
.social:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.social svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 12px;
  color: var(--fg-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===========================================================
   FLOATING ORDER BUTTON
=========================================================== */
.float-order {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1512;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 20px 50px -12px var(--gold-glow), 0 8px 24px -8px rgba(0,0,0,0.5);
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
  cursor: pointer;
  border: none;
}
.float-order:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 30px 70px -12px var(--gold-glow), 0 12px 30px -8px rgba(0,0,0,0.5);
}
.float-order .pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--gold);
  animation: pulse-ring 2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* ===========================================================
   SCROLL REVEAL
=========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* ===========================================================
   LOADER
=========================================================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease) 0.4s, visibility 0.8s 0.4s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-mark {
  animation: loader-pulse 1.6s ease-in-out infinite;
}
@keyframes loader-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

/* ===========================================================
   Selection
=========================================================== */
::selection { background: var(--gold); color: #1a1512; }
