/* IN PLACE — Luxury Landing Page */

:root {
  --bg: #070707;
  --bg-alt: #0e0e0e;
  --bg-alt-mid: rgba(14, 14, 14, 0.5);
  --surface: #161616;
  --surface-high: #1f1f1f;
  --brand: #5a0b21;
  --brand-light: #8b2040;
  --accent: #ffc0cb;
  --accent-warm: #e8a0ad;
  --gold: #c9a87c;
  --gold-light: #e8d5b5;
  --gold-dim: rgba(201, 168, 124, 0.35);
  --text: #fafafa;
  --text-secondary: #c4c4c4;
  --text-muted: #8a8a8a;
  --border: rgba(201, 168, 124, 0.14);
  --border-blush: rgba(255, 192, 203, 0.12);
  --glow: rgba(255, 192, 203, 0.2);
  --glow-gold: rgba(201, 168, 124, 0.25);
  --shadow: rgba(0, 0, 0, 0.45);
  --shadow-strong: rgba(0, 0, 0, 0.6);
  --nav-scrolled-bg: rgba(7, 7, 7, 0.88);
  --nav-mobile-bg: rgba(7, 7, 7, 0.97);
  --hero-overlay:
    linear-gradient(105deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.55) 45%, rgba(7, 7, 7, 0.75) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.3) 0%, rgba(7, 7, 7, 0.95) 85%, var(--bg) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(90, 11, 33, 0.25) 0%, transparent 55%);
  --cta-overlay:
    linear-gradient(135deg, rgba(90, 11, 33, 0.55) 0%, rgba(7, 7, 7, 0.65) 50%, rgba(90, 11, 33, 0.45) 100%);
  --card-img-overlay: none;
  --gallery-caption: linear-gradient(transparent, rgba(90, 11, 33, 0.72));
  --card-surface-gradient: linear-gradient(160deg, var(--surface) 0%, var(--surface-high) 100%);
  --badge-bg: rgba(7, 7, 7, 0.8);
  --grain-opacity: 0.035;
  --radius: 4px;
  --radius-lg: 8px;
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --nav-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #faf8f5;
  --bg-alt: #f3efe8;
  --bg-alt-mid: rgba(235, 230, 222, 0.6);
  --surface: #ffffff;
  --surface-high: #ebe6de;
  --brand: #5a0b21;
  --brand-light: #8b2040;
  --accent: #b84d62;
  --accent-warm: #a04558;
  --text: #1a1a1a;
  --text-secondary: #4a4540;
  --text-muted: #7a7570;
  --gold: #9a7b4f;
  --gold-light: #c4a574;
  --gold-dim: rgba(154, 123, 79, 0.28);
  --border: rgba(154, 123, 79, 0.22);
  --border-blush: rgba(184, 77, 98, 0.15);
  --glow: rgba(184, 77, 98, 0.12);
  --glow-gold: rgba(154, 123, 79, 0.2);
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-strong: rgba(0, 0, 0, 0.14);
  --nav-scrolled-bg: rgba(250, 248, 245, 0.92);
  --nav-mobile-bg: rgba(250, 248, 245, 0.98);
  --hero-overlay:
    linear-gradient(105deg, rgba(250, 248, 245, 0.94) 0%, rgba(250, 248, 245, 0.72) 42%, rgba(250, 248, 245, 0.35) 100%),
    linear-gradient(180deg, rgba(250, 248, 245, 0.25) 0%, rgba(250, 248, 245, 0.88) 85%, var(--bg) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(90, 11, 33, 0.08) 0%, transparent 55%);
  --cta-overlay:
    linear-gradient(135deg, rgba(90, 11, 33, 0.35) 0%, rgba(250, 248, 245, 0.75) 50%, rgba(154, 123, 79, 0.2) 100%);
  --card-img-overlay: none;
  --gallery-caption: linear-gradient(transparent, rgba(250, 248, 245, 0.94));
  --card-surface-gradient: linear-gradient(160deg, var(--surface) 0%, var(--bg-alt) 100%);
  --badge-bg: rgba(250, 248, 245, 0.92);
  --grain-opacity: 0.02;
}

html[data-theme="dark"] {
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.45s ease, color 0.45s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1240px, calc(100% - 56px));
  margin-inline: auto;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Ornamental divider */
.divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 auto 3rem;
  max-width: 280px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.divider span {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.8vw, 3.75rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.section__title em {
  font-style: italic;
  color: var(--accent);
}

.section__lead {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.85;
}

.section__lead.center { margin-inline: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #b8945f 100%);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: 0 4px 24px var(--glow-gold);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px var(--glow-gold);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
  letter-spacing: 0.12em;
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 32px var(--glow-gold);
}

.btn--sm { padding: 0.7rem 1.5rem; font-size: 0.72rem; }

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  overflow-x: clip;
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: var(--nav-scrolled-bg);
  backdrop-filter: blur(24px);
  border-color: var(--border);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__brand { flex-shrink: 0; }
.nav__logo { height: 34px; width: auto; }

.nav__links {
  display: flex;
  gap: 2.25rem;
  margin-left: auto;
}

.nav__links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover { color: var(--gold-light); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { margin-left: 0.5rem; }

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--gold);
  flex-shrink: 0;
  transition: border-color 0.3s, color 0.3s, background 0.3s, transform 0.3s var(--ease);
}

.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: rotate(15deg);
}

.theme-toggle__icon {
  width: 18px;
  height: 18px;
}

.theme-toggle__icon--moon { display: none; }

[data-theme="light"] .theme-toggle__icon--sun { display: none; }
[data-theme="light"] .theme-toggle__icon--moon { display: block; }

html[data-theme="light"] .nav__logo,
html[data-theme="light"] .hero__logo,
html[data-theme="light"] .eco-card__hub-logo,
html[data-theme="light"] .footer__brand img {
  filter: invert(1) brightness(0.12);
}

html[data-theme="light"] .hero__content {
  text-shadow: 0 1px 24px rgba(250, 248, 245, 0.65);
}

html[data-theme="light"] .hero__title em {
  background: linear-gradient(135deg, var(--brand-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html[data-theme="light"] .btn--ghost {
  color: var(--text);
  border-color: rgba(154, 123, 79, 0.35);
}

html[data-theme="light"] .btn--ghost:hover {
  color: var(--brand);
  border-color: var(--gold);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-light);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--nav-mobile-bg);
  backdrop-filter: blur(24px);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.nav__mobile.is-open { display: flex; }

.nav__mobile a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.35rem 0;
}

.nav__mobile a:hover { color: var(--gold); }
body.menu-open { overflow: hidden; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.15); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
  transition: background 0.45s ease;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 7rem;
  max-width: 720px;
}

/* Hero text — CSS animation so text always appears even if JS fails */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__content .hero-animate {
  opacity: 0;
  animation: heroIn 0.85s var(--ease) forwards;
}

.hero__content .hero-animate:nth-child(1) { animation-delay: 0.1s; }
.hero__content .hero-animate:nth-child(2) { animation-delay: 0.2s; }
.hero__content .hero-animate:nth-child(3) { animation-delay: 0.32s; }
.hero__content .hero-animate:nth-child(4) { animation-delay: 0.44s; }
.hero__content .hero-animate:nth-child(5) { animation-delay: 0.56s; }
.hero__content .hero-animate:nth-child(6) { animation-delay: 0.68s; }

@media (prefers-reduced-motion: reduce) {
  .hero__content .hero-animate {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

.hero__logo {
  height: 52px;
  width: auto;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 4px 24px var(--shadow));
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 2.75rem;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  gap: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 0.5rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Marquee */
.marquee {
  padding: 1.25rem 0;
  border-block: 1px solid var(--border);
  background: linear-gradient(90deg, var(--bg) 0%, var(--bg-alt) 50%, var(--bg) 100%);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee__track span::after {
  content: "◆";
  margin-left: 4rem;
  color: var(--gold);
  font-size: 0.45rem;
  vertical-align: middle;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Quote band */
.quote-band {
  padding: 5rem 0;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(90,11,33,0.12) 0%, transparent 70%),
    var(--bg);
  border-block: 1px solid var(--border);
}

.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto 1.25rem;
}

.quote-band cite {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* Sections */
.section {
  padding: 8rem 0;
  position: relative;
}

.section--alt {
  background:
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-alt-mid) 50%, var(--bg-alt) 100%);
}

.section__head {
  text-align: center;
  margin-bottom: 5rem;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: center;
}

.split__media {
  position: relative;
}

.split__media::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 2;
}

.split__media img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.split__badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 3;
  background: var(--badge-bg);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}

.split__badge span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.split__badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--gold-light);
}

.split__text p {
  color: var(--text-secondary);
  margin-bottom: 1.35rem;
  line-height: 1.9;
  font-weight: 300;
}

.checklist { margin-top: 2rem; }

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 300;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* Ecosystem */
.ecosystem {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

.eco-card {
  background: var(--card-surface-gradient);
  border: 1px solid var(--border);
  padding: 3rem 2.25rem;
  text-align: center;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
  position: relative;
  overflow: hidden;
}

.eco-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.eco-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-dim);
  box-shadow: 0 24px 64px var(--shadow);
}

.eco-card:hover::before { opacity: 1; }

.eco-card__label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.eco-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.eco-card__tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.eco-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
}

.eco-card--hub {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(90,11,33,0.5) 0%, var(--bg) 65%);
  border: 1px solid var(--gold-dim);
  padding: 1.75rem;
  box-shadow: 0 0 80px rgba(201,168,124,0.08);
}

.eco-card__hub-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 124, 0.12);
  animation: ringPulse 5s ease-in-out infinite;
}

.eco-card__hub-ring:nth-child(2) {
  inset: -32px;
  animation-delay: 1s;
  opacity: 0.5;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.04); opacity: 0.9; }
}

.eco-card__hub-logo { height: 36px; margin-bottom: 1rem; }

.eco-card--hub p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.eco-card--hub small {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

/* Showcase */
.showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.showcase--reverse .showcase__visual { order: 2; }
.showcase--reverse .showcase__content { order: 1; }

.showcase__visual { position: relative; }

.showcase__img--main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 32px 80px var(--shadow);
}

.showcase__img--float {
  position: absolute;
  bottom: -2.5rem;
  right: -2rem;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-dim);
  box-shadow: 0 24px 56px var(--shadow-strong);
}

.showcase__content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.showcase__content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.85;
  font-weight: 300;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: var(--surface-high);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  transition: border-color 0.3s, color 0.3s;
}

.feature-pill:hover {
  border-color: var(--gold-dim);
  color: var(--gold-light);
}

.feature-pill::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Cards */
.cards {
  display: grid;
  gap: 1.75rem;
}

.cards + .cards,
.cards--2 { margin-top: 3.5rem; }

.cards--2 { grid-template-columns: 1fr 1fr; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  position: relative;
}

.card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 64px var(--shadow);
}

.card:hover::after { opacity: 1; }

.card__img-wrap {
  overflow: hidden;
  position: relative;
}

.card__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-img-overlay);
  pointer-events: none;
}

html[data-theme="light"] .gallery__item figcaption {
  color: var(--text);
}

.card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.card:hover img { transform: scale(1.06); }

.card--horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.card--horizontal .card__img-wrap,
.card--horizontal img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 300px;
}

.card__body { padding: 2rem; }

.card__body h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.card__body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.card__body ul li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.card__body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.mini-card {
  background: var(--card-surface-gradient);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}

.mini-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

.mini-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 1rem;
  line-height: 1;
}

.mini-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.mini-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.25rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery__item:hover img { transform: scale(1.08); }

.gallery__item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--gallery-caption);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.gallery__item--a { grid-column: span 4; grid-row: span 2; }
.gallery__item--b { grid-column: span 4; }
.gallery__item--c { grid-column: span 4; }
.gallery__item--d { grid-column: span 5; }
.gallery__item--e { grid-column: span 3; }

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.timeline__step { text-align: center; position: relative; }

.timeline__dot {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--gold);
  box-shadow: 0 0 24px var(--glow-gold);
  position: relative;
}

.timeline__dot::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline__step h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.timeline__step p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Trust */
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust__item {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-alt-mid) 100%);
  border: 1px solid var(--border);
  transition: border-color 0.4s, transform 0.4s var(--ease);
}

.trust__item:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}

.trust__label {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.trust__item h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
}

.trust__item p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CTA */
.cta {
  position: relative;
  padding: 8rem 0 10rem;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  will-change: transform;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: var(--cta-overlay);
  transition: background 0.45s ease;
}

.cta__wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.cta__panel {
  position: relative;
  width: min(760px, 100%);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  text-align: center;
  background:
    linear-gradient(145deg, rgba(90, 11, 33, 0.94) 0%, rgba(42, 8, 18, 0.97) 55%, rgba(26, 6, 12, 0.98) 100%);
  border: 1px solid rgba(201, 168, 124, 0.35);
  border-radius: var(--radius-lg);
  box-shadow:
    0 32px 80px rgba(90, 11, 33, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  top: -40%;
  left: 50%;
  width: 120%;
  height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(201, 168, 124, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.cta__logo {
  position: relative;
  height: 48px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.cta__panel h2 {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  color: #fafafa;
}

.cta__panel h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #ffc0cb, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta__panel > p {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  margin-bottom: 2.25rem;
  line-height: 1.85;
  font-size: 1.05rem;
}

.cta__actions {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.cta__actions a {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

a.btn {
  text-decoration: none;
  color: var(--bg);
}

.btn--on-dark {
  color: #fafafa;
  border-color: rgba(201, 168, 124, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.btn--on-dark:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  background: rgba(201, 168, 124, 0.12);
  box-shadow: 0 0 28px rgba(201, 168, 124, 0.2);
}

.cta__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
  background: rgba(201, 168, 124, 0.1);
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.cta__phone:hover {
  color: #fff8ee;
  border-color: var(--gold-light);
  background: rgba(201, 168, 124, 0.18);
  box-shadow: 0 0 32px var(--glow-gold);
}

/* Footer */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer__brand img { height: 34px; margin-bottom: 1.25rem; }

.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__cols h5 {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__cols a {
  display: block;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  transition: color 0.3s;
}

.footer__cols a:hover { color: var(--gold-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer__credit {
  margin: 0;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.footer__sep {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

.footer__credit a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__credit a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Scroll sections — GSAP animates on scroll; no hidden-by-default trap */
.reveal {
  will-change: transform, opacity;
}

/* Responsive */
@media (max-width: 1024px) {
  .split, .showcase, .showcase--reverse { grid-template-columns: 1fr; gap: 3rem; }
  .showcase--reverse .showcase__visual,
  .showcase--reverse .showcase__content { order: unset; }
  .showcase__img--float { right: 1rem; bottom: -1.5rem; width: 42%; }
  .ecosystem { grid-template-columns: 1fr; justify-items: center; }
  .eco-card--hub { order: -1; }
  .cards--3, .cards--4 { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .timeline::before { display: none; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--a,
  .gallery__item--b,
  .gallery__item--c,
  .gallery__item--d,
  .gallery__item--e {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 240px;
  }
  .gallery__item--a { grid-column: span 2; min-height: 320px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 76px; }
  .container { width: min(1240px, calc(100% - 32px)); }
  .nav__links, .nav__cta { display: none; }
  .nav__inner {
    gap: 0.5rem;
    flex-wrap: nowrap;
    min-width: 0;
  }
  .nav__brand {
    margin-right: auto;
    min-width: 0;
  }
  .nav__logo { height: 30px; }
  .theme-toggle {
    margin-left: 0;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
  }
  .nav__toggle {
    display: flex;
    margin-left: 0;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    border: 1px solid var(--gold-dim);
    border-radius: 2px;
    background: rgba(201, 168, 124, 0.08);
    flex-shrink: 0;
  }
  .nav__toggle span {
    width: 22px;
    height: 2px;
    background: var(--gold);
  }
  .hero__content { padding: 3rem 0 5rem; }
  .hero__logo { height: 40px; }
  .hero__title { font-size: clamp(2.5rem, 10vw, 3.25rem); }
  .hero__subtitle { font-size: 0.95rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__stats {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .hero__scroll { display: none; }
  .section { padding: 5rem 0; }
  .section__head { margin-bottom: 3rem; }
  .section__title { font-size: clamp(1.85rem, 7vw, 2.5rem); }
  .split__media img { aspect-ratio: 16/10; }
  .showcase__img--main { aspect-ratio: 4/3; }
  .showcase__img--float {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1.25rem;
  }
  .eco-card--hub { width: 180px; height: 180px; }
  .cards--2, .cards--3, .cards--4 { grid-template-columns: 1fr; }
  .card--horizontal { grid-template-columns: 1fr; }
  .card--horizontal img { min-height: 220px; }
  .feature-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--a { grid-column: span 1; }
  .cta { padding: 5rem 0 6rem; }
  .cta__panel { padding: 2rem 1.5rem; }
  .cta__actions { flex-direction: column; align-items: stretch; }
  .cta__actions .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .marquee__track { animation-duration: 30s; }
}

@media (max-width: 480px) {
  .container { width: calc(100% - 24px); }
  .stat__value { font-size: 2.25rem; }
}
