/* =============================================================
   DIVOTS SPORT LOUNGE — Premium PoC
   ============================================================= */

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a2a1f;
  background: #fff;
  overflow-x: hidden;
  cursor: none;
}
img, canvas, svg { display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* === Design Tokens === */
:root {
  --green-deep:  #0D4629;
  --green-mid:   #1a6b41;
  --green-light: #23A455;
  --teal:        #6EC1E4;
  --gold:        #c8b077;
  --gold-dark:   #a8905a;
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --gray-light:  #f0efec;
  --gray-text:   #6b7280;
  --dark:        #0a1f13;
  --mid-dark:    #0f2e1c;

  --font-sans:   'DM Sans', sans-serif;
  --font-serif:  'Cormorant Garamond', serif;

  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Lenis === */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

/* ---------------------------------------------------------------
   CURSOR
--------------------------------------------------------------- */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 28px; height: 28px;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), opacity 0.3s;
  mix-blend-mode: normal;
  opacity: 0;
}
.cursor.is-visible { opacity: 1; }
.cursor.is-hovering { transform: translate(-50%, -50%) scale(1.6); }
.cursor.is-hovering circle:first-child { stroke: var(--gold); stroke-width: 1.5; }
@media (hover: none) { .cursor { display: none; } body { cursor: auto; } }

/* ---------------------------------------------------------------
   LAYOUT
--------------------------------------------------------------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ---------------------------------------------------------------
   TYPOGRAPHY UTILITIES
--------------------------------------------------------------- */
.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow--teal  { color: var(--teal); }
.eyebrow--light { color: var(--gold); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--green-deep);
  margin-bottom: 20px;
}
.section-title--light { color: var(--white); }

.section-intro {
  max-width: 540px;
  color: var(--gray-text);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

/* ---------------------------------------------------------------
   BUTTONS
--------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: transform 0.25s var(--ease-out),
              box-shadow 0.25s var(--ease-out),
              background 0.25s,
              border-color 0.25s;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
  border-radius: inherit;
}
.btn:hover::after { transform: scaleX(1); }

.btn--gold {
  background: var(--gold);
  color: #0a1a10;
  box-shadow: 0 4px 24px rgba(200,176,119,0.3);
}
.btn--gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 36px rgba(200,176,119,0.5);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
}
.btn--lg { padding: 16px 40px; font-size: 0.92rem; }
.btn--sm { padding: 10px 22px; font-size: 0.8rem; }

/* ---------------------------------------------------------------
   HERO BACKGROUND IMAGE
--------------------------------------------------------------- */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.28;
  z-index: 0;
  filter: saturate(0.7);
}

/* ---------------------------------------------------------------
   NAVIGATION
--------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.5s var(--ease-inout),
              padding    0.4s var(--ease-inout),
              box-shadow 0.4s;
}
.nav.is-scrolled {
  background: rgba(13,70,41,0.97);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
  cursor: none;
}
.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.1em;
}
.nav-logo-sub {
  font-family: var(--font-sans);
  font-size: 0.48rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-link {
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s;
  cursor: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta { cursor: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s var(--ease-inout);
}
.nav-hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(13,70,41,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px 40px 32px;
    gap: 20px;
  }
  .nav-links.is-open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-inner { padding: 0 24px; }
}

/* ---------------------------------------------------------------
   HERO
--------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--green-deep);
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 110%, transparent 40%, rgba(5,15,10,0.6) 100%),
    radial-gradient(ellipse 60% 60% at 90% 10%,  rgba(5,15,10,0.3) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 130px 40px 80px;
  width: 100%;
}
.hero-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 36px;
  display: flex;
  flex-wrap: wrap;
}
.hero-title .char {
  display: inline-block;
  transform-origin: bottom center;
  will-change: transform, opacity;
  opacity: 0;
}
.hero-tagline {
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 1.2vw, 0.9rem);
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(16px);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 56px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  border-radius: 1px;
}
.scroll-line-inner {
  width: 1px; height: 100%;
  background: var(--gold);
  transform: translateY(-100%);
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(220%); }
}
.hero-scroll-hint span {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .hero-content { padding: 100px 24px 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-content { padding: 90px 20px 60px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ---------------------------------------------------------------
   SECTION UTILITIES
--------------------------------------------------------------- */
section { position: relative; padding: 120px 0; }

.section--light   { background: var(--off-white); }
.section--dark    { background: var(--dark); }
.section--mid     { background: var(--mid-dark); }
.section--green   { background: var(--green-deep); }

.section-header   { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-intro { margin: 0 auto; }

/* Wave top dividers */
.wave-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  pointer-events: none;
}
.wave-top::before {
  content: '';
  position: absolute;
  top: -1px; left: -2%; right: -2%;
  height: 80px;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}
.wave-top--green::before { background: var(--green-deep); }
.wave-top--dark::before  { background: var(--mid-dark); }

@media (max-width: 768px) {
  section { padding: 72px 0; }
}
@media (max-width: 480px) {
  section { padding: 60px 0; }
  .container { padding: 0 20px; }
}

/* ---------------------------------------------------------------
   EXPERIENCE PILLARS
--------------------------------------------------------------- */
.experience { padding-top: 160px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  perspective: 1600px;
}
@media (max-width: 960px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

.pillar-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  border: 1px solid rgba(13,70,41,0.06);
  transition: box-shadow 0.4s var(--ease-out), border-color 0.3s;
  transform-style: preserve-3d;
  overflow: hidden;
  will-change: transform;
  cursor: none;
}
.pillar-card:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,0.14);
  border-color: rgba(13,70,41,0.14);
}

/* ---------------------------------------------------------------
   PILLAR CARD IMAGES
--------------------------------------------------------------- */
.pillar-img-wrap {
  margin: -40px -34px 28px;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  flex-shrink: 0;
}
.pillar-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s var(--ease-out);
  display: block;
}
.pillar-card:hover .pillar-img-wrap img {
  transform: scale(1.07);
}
.pillar-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(248, 247, 244, 0.55) 100%
  );
}

/* Specular highlight overlay */
.pillar-glow {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110,193,228,0.18) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  top: -80px; right: -80px;
}
.pillar-card:hover .pillar-glow { opacity: 1; }

.pillar-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center; justify-content: center;
  background: rgba(13,70,41,0.07);
  border-radius: 14px;
  color: var(--green-deep);
  margin-bottom: 28px;
  transition: background 0.3s, color 0.3s;
}
.pillar-card:hover .pillar-icon {
  background: var(--green-deep);
  color: #fff;
}
.pillar-num {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 10px;
}
.pillar-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--green-deep);
  margin-bottom: 14px;
  line-height: 1.2;
}
.pillar-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.pillar-cta {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: letter-spacing 0.25s;
}
.pillar-card:hover .pillar-cta { letter-spacing: 0.08em; }

/* ---------------------------------------------------------------
   SCENE GALLERY
--------------------------------------------------------------- */
.scene-gallery {
  padding: 0;
  overflow: hidden;
}
.scene-gallery-track {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-template-rows: 520px;
  gap: 4px;
}
@media (max-width: 900px) {
  .scene-gallery-track {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px;
  }
  .scene-item--tall { grid-row: span 2; }
  .scene-item--short { display: none; }
}
@media (max-width: 600px) {
  .scene-gallery-track {
    grid-template-columns: 1fr;
    grid-template-rows: 260px;
  }
  .scene-item--wide { display: block; }
  .scene-item--tall, .scene-item--short { display: none; }
}

.scene-item {
  position: relative;
  overflow: hidden;
}
.scene-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-out);
  filter: saturate(0.85);
}
.scene-item:hover img {
  transform: scale(1.05);
  filter: saturate(1);
}
.scene-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 31, 19, 0.75) 0%,
    rgba(10, 31, 19, 0.1) 50%,
    transparent 100%
  );
  z-index: 1;
  transition: opacity 0.4s;
}
.scene-item:hover::before { opacity: 0.7; }

.scene-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease-out);
}
.scene-item:hover .scene-label { transform: translateY(0); }

.scene-label-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.scene-label-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
}

/* ---------------------------------------------------------------
   SIMULATOR SECTION
--------------------------------------------------------------- */
.simulator-section { overflow: hidden; }

.simulator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 960px) {
  .simulator-container { grid-template-columns: 1fr; gap: 48px; }
}

.simulator-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}
.sim-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 44px;
}
.sim-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot--gold { background: var(--gold); }

.simulator-visual { position: relative; }
.sim-screen {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 1px rgba(110,193,228,0.15),
    0 40px 100px rgba(0,0,0,0.5),
    0 0 80px rgba(110,193,228,0.05);
}
#sim-canvas { width: 100%; height: 100%; }

.sim-hud {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}
.sim-hud-block {
  background: rgba(5,15,10,0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
  min-width: 80px;
}
.sim-hud-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.sim-hud-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

.sim-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110,193,228,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110,193,228,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ---------------------------------------------------------------
   PROMOTIONS
--------------------------------------------------------------- */
.promos-scroll {
  overflow: hidden;
  padding: 8px 0 32px;
}
.promos-track {
  display: flex;
  gap: 20px;
  padding: 12px 40px 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  justify-content: center;
  flex-wrap: wrap;
}
.promos-track::-webkit-scrollbar { display: none; }
.promos-track.is-dragging { cursor: grabbing; }

.promo-card {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
  cursor: none;
}
.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.35);
}

.glass {
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.1);
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 55%);
  pointer-events: none;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid rgba(200,176,119,0.4);
  width: fit-content;
  margin-bottom: 6px;
}
.promo-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
}
.promo-info {
  font-size: 0.74rem;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.promo-pricing {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.promo-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}
.promo-label {
  font-size: 0.68rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .promos-track {
    padding: 12px 24px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
  }
}

/* ---------------------------------------------------------------
   LOCATIONS
--------------------------------------------------------------- */
.locations { padding-top: 160px; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 960px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .locations-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

.loc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(13,70,41,0.08);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.3s;
  cursor: none;
  display: flex;
  flex-direction: column;
}
.loc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.13);
  border-color: rgba(13,70,41,0.18);
}
.loc-card--featured {
  background: var(--green-deep);
  border-color: transparent;
}
.loc-card--featured .loc-city,
.loc-card--featured .loc-hours dt,
.loc-card--featured .loc-hours dd { color: var(--white); }
.loc-card--featured .loc-state { color: rgba(255,255,255,0.45); }
.loc-card--featured .loc-map-link { color: var(--gold); }
.loc-card--featured .loc-hours { border-top-color: rgba(255,255,255,0.1); }

.loc-marker {
  width: 38px; height: 38px;
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  transform: rotate(-45deg);
  margin-bottom: 28px;
  position: relative;
}
.loc-card--featured .loc-marker {
  background: rgba(255,255,255,0.18);
}
.loc-marker::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--white);
  border-radius: 50%;
}
.loc-card--featured .loc-marker::after { background: var(--gold); }

.loc-city {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  font-style: italic;
  color: var(--green-deep);
  margin-bottom: 4px;
  line-height: 1.1;
}
.loc-state {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--gray-text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.loc-hours {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(13,70,41,0.08);
  margin-bottom: 24px;
}
.loc-hours dt { font-size: 0.75rem; font-weight: 300; color: var(--gray-text); letter-spacing: 0.02em; }
.loc-hours dd {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--green-deep);
  text-align: right;
}
.loc-map-link {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: letter-spacing 0.25s;
  cursor: none;
}
.loc-map-link:hover { letter-spacing: 0.04em; }

/* ---------------------------------------------------------------
   RESERVATION CTA
--------------------------------------------------------------- */
.res-cta { overflow: hidden; text-align: center; }

.res-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  top: 50%; left: 50%;
}
.res-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,176,119,0.16) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: orbPulse 4s ease-in-out infinite;
}
.res-orb--2 {
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(110,193,228,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: orbPulse 7s ease-in-out infinite reverse;
}
@keyframes orbPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 1; }
  50%       { transform: translate(-50%, -50%) scale(1.12); opacity: 0.7; }
}

.res-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.res-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 28px;
}
.res-title .char { display: inline-block; }
.res-sub {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 52px;
  max-width: 400px;
}
.res-locations {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.res-loc-btn {
  padding: 14px 38px;
  border-radius: 100px;
  border: 1px solid rgba(200,176,119,0.3);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease-out);
  cursor: none;
}
.res-loc-btn:hover {
  background: var(--gold);
  color: #0a1a10;
  border-color: var(--gold);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .res-locations { flex-direction: column; align-items: center; }
}

/* ---------------------------------------------------------------
   FOOTER
--------------------------------------------------------------- */
.footer {
  background: var(--dark);
  padding: 64px 0 40px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: flex-start;
}
.footer-brand { flex: 1; min-width: 180px; }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(200,176,119,0.3);
  border-radius: 100px;
  transition: all 0.2s;
  cursor: none;
}
.social-btn:hover {
  background: var(--gold);
  color: #0a1a10;
  border-color: var(--gold);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  cursor: none;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy {
  width: 100%;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.18);
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}
@media (max-width: 768px) {
  .footer-inner { flex-direction: column; gap: 32px; }
}
