:root {
  --background: #0d0d0b;
  --surface: #17160f;
  --surface-light: #1d1c14;
  --foreground: #e9e6df;
  --accent: #c9a84c;
  --accent-foreground: #0d0d0b;

  --line: rgba(233, 230, 223, 0.1);
  --muted-200: rgba(233, 230, 223, 0.65);
  --muted-400: rgba(233, 230, 223, 0.45);
  --muted-500: rgba(233, 230, 223, 0.35);

  --header-h: 90px; /* fallback; script.js sets the exact measured value */
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h); /* keep anchor targets clear of the fixed header */
  overscroll-behavior-y: none; /* stop iOS Safari's rubber-band bounce from detaching the fixed header */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overscroll-behavior-y: none;
}

/* Grain texture overlay — premium dark aesthetic */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

img, svg {
  display: block;
}

main {
  padding-top: var(--header-h);
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Active nav link */
.nav-desktop a.is-active,
.nav-mobile a:not(.btn).is-active {
  color: var(--accent);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

em {
  font-style: normal;
  font-weight: 700;
  color: var(--accent);
}

/* Animated gold shimmer on hero headline */
.h1 em {
  background: linear-gradient(90deg, #a8872e 0%, #c9a84c 25%, #f0d98a 50%, #c9a84c 75%, #a8872e 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gold-shimmer 5s linear infinite;
}

@keyframes gold-shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

@media (prefers-reduced-motion: reduce) {
  .h1 em {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
  }
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon { width: 16px; height: 16px; }
.icon-sm { width: 14px; height: 14px; }
.icon-md { width: 20px; height: 20px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 26px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.btn:hover { opacity: 0.9; transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-accent { background: var(--accent); color: var(--accent-foreground); }
.btn-light { background: var(--foreground); color: var(--background); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
}
.link-arrow .icon,
.route-link .icon { transition: transform 0.2s ease; }
.link-arrow:hover .icon,
.route-link:hover .icon { transform: translateX(4px); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--background);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-name {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand-person {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}
.nav-desktop a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-200);
}
.nav-desktop a:hover { color: var(--accent); }

.nav-cta { display: none; }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: none;
  color: var(--foreground);
  cursor: pointer;
}
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a:not(.btn) {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-200);
}
.nav-mobile .btn { justify-content: center; margin-top: 8px; }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-cta { display: flex; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }
}

/* Placeholder image (still used for avatars) */
.placeholder-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  border: 1px dashed rgba(233, 230, 223, 0.2);
  background: var(--surface);
  background-image: repeating-linear-gradient(45deg, rgba(233,230,223,0.025) 0px, rgba(233,230,223,0.025) 2px, transparent 2px, transparent 12px);
}
.placeholder-img span {
  position: relative;
  padding: 0 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-400);
}
.avatar { width: 40px; height: 40px; border-radius: 999px; flex-shrink: 0; }
.avatar span { font-size: 9px; padding: 0; }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--surface-light);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.h2 {
  margin: 14px 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.h2-dark { color: var(--foreground); }
.body-text {
  margin-top: 16px;
  line-height: 1.75;
  color: var(--muted-200);
}
.body-text-dark { color: var(--muted-200); max-width: 420px; }
.section-intro { max-width: 640px; }

/* Hero */
.hero { overflow: hidden; min-height: 88vh; display: flex; flex-direction: column; }
.hero-grid { display: grid; flex: 1; }

.hero-text {
  padding: 64px 24px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Mobile hero: photo first (top), text below */
@media (max-width: 767px) {
  .hero { min-height: 0; overflow: hidden; }
  .hero-grid { display: flex; flex-direction: column; flex: 1; }
  .hero-photo-wrap {
    order: -1;
    height: 52vw;
    min-height: 200px;
    max-height: 340px;
    flex-shrink: 0;
  }
  .hero-photo { object-position: center 15%; }
  .hero-photo-fade {
    background: linear-gradient(to bottom, transparent 30%, var(--background) 100%);
  }
  .hero-text {
    padding: 0 24px 52px;
    justify-content: flex-start;
  }
  .h1 { font-size: 36px; }
  .lead { font-size: 15px; margin-top: 14px; }
  .cta-row { margin-top: 24px; }
  .hero-checklist { margin-top: 20px; }
}

.hero-eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 20px;
}

.h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 440px;
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted-200);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.hero-checklist {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--foreground);
}
.hero-checklist .icon-sm { color: var(--accent); flex-shrink: 0; }

/* Hero photo — full bleed right side on desktop */
.hero-photo-wrap {
  position: relative;
  min-height: 360px;
}
.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-photo-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 55%, var(--background) 95%),
    linear-gradient(to right, rgba(13,13,11,0.4) 0%, transparent 30%);
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
  }
  .hero-text {
    padding-left: max(24px, calc((100vw - 1152px) / 2 + 24px));
    padding-right: 56px;
  }
  .hero-photo-wrap { min-height: 100%; }
  .h1 { font-size: 58px; }
}

/* About photo card — still keeps subtle badge treatment */
.about-img-wrap { position: relative; }
.about-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
}

.floating-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--background);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}
.floating-badge strong {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--accent);
}
.floating-badge span {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.floating-badge-alt { left: auto; right: 24px; }

/* About */
/* Stats strip */
.stats-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 48px 24px;
  background: var(--surface);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .stat-item + .stat-item { border-left: 1px solid var(--line); }
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.stat-value {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  line-height: 1;
}
.stat-num {
  font-family: "Poppins", sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #a8872e 0%, #c9a84c 25%, #f0d98a 50%, #c9a84c 75%, #a8872e 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 5s linear infinite;
}
.stat-suffix {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #a8872e 0%, #c9a84c 25%, #f0d98a 50%, #c9a84c 75%, #a8872e 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 5s linear infinite;
  align-self: flex-end;
  padding-bottom: 6px;
}
.stat-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-200);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Typewriter cursor */
.typewriter-cursor {
  display: inline-block;
  color: var(--accent);
  font-style: normal;
  animation: blink-cursor 0.75s step-end infinite;
  margin-left: 2px;
}
.typewriter-cursor.hidden { display: none; }
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.about { padding: 88px 24px; position: relative; overflow: hidden; }
.about::before {
  content: "Movement";
  position: absolute;
  bottom: 16px;
  left: -4px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(72px, 10.5vw, 148px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.16);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.about-grid { display: grid; gap: 56px; align-items: center; position: relative; z-index: 1; }

.quote {
  display: flex;
  gap: 14px;
  margin: 28px 0 0;
  padding: 22px 24px;
  border-radius: 10px;
  background: var(--surface);
}
.quote p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--foreground);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.pill-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--surface);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.pill-list .icon, .check-list .icon { color: var(--accent); flex-shrink: 0; }

/* Process */
.process { background: var(--background); padding: 88px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process .container { padding: 0 24px; }
.process .section-intro { padding: 0 0 8px; }

.steps-list {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.step-item:last-child { border-bottom: 1px solid var(--line); }

.step-num {
  font-family: "Poppins", sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.45);
  flex-shrink: 0;
  width: 80px;
  text-align: right;
  user-select: none;
  transition: color 0.35s ease, -webkit-text-stroke 0.35s ease;
}
.step-item:hover .step-num {
  color: rgba(201, 168, 76, 0.1);
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.8);
}

.step-body { padding-top: 6px; }

.step-title {
  margin: 0 0 10px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.step-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted-200);
  max-width: 520px;
}

@media (min-width: 768px) {
  .steps-list { display: grid; grid-template-columns: 1fr 1fr; }
  .step-item { gap: 36px; padding: 44px 48px 44px 0; }
  .step-item:nth-child(2),
  .step-item:nth-child(4) { border-left: 1px solid var(--line); padding-left: 48px; padding-right: 0; }
  .step-item:nth-child(3),
  .step-item:nth-child(4) { border-bottom: 1px solid var(--line); }
  .step-item:last-child { border-bottom: 1px solid var(--line); }
  .step-num { font-size: 96px; width: 116px; }
  .step-title { font-size: 22px; }
}

.callout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 56px;
  padding: 28px 32px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--background);
  color: var(--foreground);
}
.callout p { margin: 0; font-family: "Poppins", sans-serif; font-size: 17px; font-weight: 600; }

@media (min-width: 768px) {
  .callout { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* Location */
.location { padding: 88px 24px; }

.location-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

.location-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  flex-direction: column;
}

.location-map { overflow: hidden; }
.location-map img { width: 100%; height: 280px; object-fit: cover; object-position: center 30%; display: block; transition: transform 0.6s ease; }
.location-card:hover .location-map img { transform: scale(1.04); }

.location-info {
  padding: 32px 28px 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.location-info h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--foreground);
}
.location-info-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.location-info .location-label { display: none; }
.location-info .detail { margin: 8px 0 0; font-size: 14px; color: var(--muted-200); line-height: 1.6; }

@media (min-width: 768px) {
  .location-cards-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); max-width: 560px; }
  .location-map img { height: 260px; }
}

.route-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.route-link:hover { opacity: 0.85; }

.facilities {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.facilities summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-400);
}
.facilities summary::-webkit-details-marker { display: none; }
.facilities summary .icon { transition: transform 0.15s ease; }
.facilities[open] summary .icon { transform: rotate(180deg); }
.facilities ul {
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.facilities li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--muted-200);
}
.facilities li .icon { color: var(--accent); flex-shrink: 0; }

@media (max-width: 767px) {
  .location-map { min-height: 260px; }
  .location-map img { min-height: 260px; }
}

/* Testimonials */
.testimonials { padding: 88px 24px; }

.cards-grid {
  display: grid;
  gap: 0;
  margin-top: 56px;
}

@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 48px 28px 36px;
  margin: 0;
  text-align: center;
  border: none;
  background: transparent;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 140px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 768px) {
  .testimonial-card:not(:first-child) { border-left: 1px solid var(--line); border-top: none; }
  .testimonial-card:first-child { border-top: none; }
}

.stars { color: var(--accent); font-size: 16px; letter-spacing: 0.15em; }
.testimonial-card blockquote {
  flex: 1;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted-200);
}
.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
}
.testimonial-card .name { margin: 0; font-size: 14px; font-weight: 600; }
.testimonial-card .detail { margin: 0; font-size: 12px; color: var(--muted-400); }

/* Quote Banner */
.quote-banner {
  padding: 40px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-banner-text {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.005em;
  max-width: 520px;
}

.quote-banner-attr {
  margin: 14px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-400);
}

/* Instagram */
.instagram-section {
  padding: 88px 24px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.instagram-reels {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .instagram-reels {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

.reel-card {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.reel-card:hover .reel-video,
.reel-card:focus-visible .reel-video {
  transform: scale(1.03);
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 70%;
  background: linear-gradient(to top, rgba(13, 13, 11, 0.75), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.reel-badge {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(13, 13, 11, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--foreground);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.reel-badge .icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.reel-card:hover::after,
.reel-card:focus-visible::after,
.reel-card.is-playing::after,
.reel-card:hover .reel-badge,
.reel-card:focus-visible .reel-badge,
.reel-card.is-playing .reel-badge {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .instagram-reels { gap: 20px; }
}

/* CTA Banner */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 100px 24px;
  background: var(--surface) url('../images/cta-bg.jpg') center center / cover no-repeat;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,11,0.88) 0%,
    rgba(13,13,11,0.78) 50%,
    rgba(13,13,11,0.70) 100%
  );
  z-index: 0;
}

.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 20px;
}
.cta-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.cta-title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-desc {
  margin: 20px 0 0;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-200);
}

.cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
}
.cta-tags span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

.btn-cta-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 36px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn-cta-big:hover { opacity: 0.88; transform: translateY(-2px); }
.btn-cta-big:hover .icon { transform: translateX(3px); }
.btn-cta-big .icon { transition: transform 0.2s ease; }
.btn-cta-big:active { transform: translateY(0) scale(0.98); }

@media (min-width: 768px) {
  .cta-banner-inner { grid-template-columns: 1fr auto; gap: 80px; }
  .cta-title { font-size: 54px; }
}

/* Legal pages */
.legal-hero { padding: 64px 24px 0; }
.legal-hero .body-text { color: var(--muted-400); }
.legal-content {
  max-width: 720px;
  padding: 40px 24px 96px;
  color: var(--muted-200);
  line-height: 1.75;
}
.legal-content h2 {
  margin: 40px 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--foreground);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin: 0 0 4px; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal-content a:hover { opacity: 0.85; }

/* 404 */
.error-hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
.error-hero .eyebrow { align-self: center; }
.error-code {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, #a8872e 0%, #c9a84c 25%, #f0d98a 50%, #c9a84c 75%, #a8872e 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gold-shimmer 5s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
  }
}
.error-title { margin-top: 18px; }
.error-desc { max-width: 440px; margin-left: auto; margin-right: auto; }
.error-hero .cta-row { justify-content: center; margin-top: 28px; }
.error-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--muted-400);
}
.error-links a:hover { color: var(--accent); }
@media (min-width: 768px) {
  .error-code { font-size: 140px; }
}

/* Footer */
.site-footer { padding: 40px 24px; }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--muted-400);
}
.footer-inner p { margin: 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.footer-links a { color: var(--muted-400); }
.footer-links a:hover { color: var(--accent); }

@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* Floating WhatsApp button */
.whatsapp-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-foreground);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.15s ease;
}
.whatsapp-floating:hover { transform: scale(1.05); }
.whatsapp-floating .icon { width: 24px; height: 24px; }

/* Respect reduced-motion for all micro-animations */
@media (prefers-reduced-motion: reduce) {
  .btn:hover, .btn:active,
  .btn-cta-big:hover, .btn-cta-big:active,
  .link-arrow:hover .icon, .route-link:hover .icon,
  .btn-cta-big:hover .icon,
  .location-card:hover .location-map img,
  .reel-card:hover .reel-video,
  .reel-card:focus-visible .reel-video,
  .whatsapp-floating:hover {
    transform: none;
  }
  .stat-num, .stat-suffix { animation: none; }
}

/* Desktop layout overrides */
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .h1 { font-size: 52px; }
}
