/* ── The Zelaya Group — Shared Stylesheet ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #080810;
  --bg2:      #0e0e1c;
  --bg3:      #131325;
  --bg4:      #1a1a32;
  --gold:     #c9a651;
  --gold-l:   #e4c87e;
  --gold-d:   #9e7f37;
  --white:    #ffffff;
  --text:     #e2e2ee;
  --muted:    rgba(226,226,238,0.52);
  --border:   rgba(201,166,81,0.2);
  --border-s: rgba(255,255,255,0.07);
  --radius:   12px;
  --max:      1180px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── SMPL style bar ── */
.style-bar {
  background: #030308;
  padding: 8px 20px;
  display: flex; align-items: center; justify-content: center;
  gap: 6px; font-size: 0.72rem; color: rgba(255,255,255,0.35); flex-wrap: wrap;
  border-bottom: 1px solid rgba(201,166,81,0.12);
}
.style-bar strong { color: rgba(255,255,255,0.6); }
.style-bar a {
  color: var(--gold-l); font-weight: 600; padding: 3px 10px;
  border: 1px solid rgba(201,166,81,0.3); border-radius: 20px; transition: background 0.15s;
}
.style-bar a:hover { background: rgba(201,166,81,0.1); }
.style-bar a.active { background: var(--gold-d); color: #fff; border-color: var(--gold-d); }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(8,8,16,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-s);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto;
  height: 72px; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; flex-direction: column; gap: 1px; }
.nav__logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--gold-l); letter-spacing: 0.02em; line-height: 1;
}
.nav__logo-tag {
  font-size: 0.6rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.15em;
}
.nav__links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav__links a {
  font-size: 0.83rem; color: var(--muted); font-weight: 500;
  transition: color 0.15s; letter-spacing: 0.01em;
}
.nav__links a:hover,
.nav__links a.active { color: var(--gold-l); }
.nav__cta {
  background: transparent; color: var(--gold-l); font-size: 0.83rem; font-weight: 600;
  padding: 9px 22px; border-radius: 8px;
  border: 1.5px solid var(--border);
  transition: background 0.15s, border-color 0.15s;
  cursor: pointer; letter-spacing: 0.02em;
}
.nav__cta:hover { background: rgba(201,166,81,0.08); border-color: var(--gold-l); }
.nav__hamburger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav__hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); border-radius: 2px; }
.nav__mobile {
  display: none; flex-direction: column; gap: 18px;
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: var(--bg2); padding: 28px 28px 36px;
  border-bottom: 1px solid var(--border-s);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.nav__mobile a { color: var(--text); font-size: 1rem; font-weight: 500; }
.nav__mobile .close-btn {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: var(--muted); font-size: 1.5rem; cursor: pointer;
}
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--bg2); border-bottom: 1px solid var(--border-s);
  padding: 72px 28px 64px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,166,81,0.05) 0%, transparent 70%);
}
.page-hero__inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.page-hero__eyebrow {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.page-hero__eyebrow::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}
.page-hero__h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 600;
  color: var(--white); letter-spacing: -0.02em; line-height: 1.12;
  max-width: 700px; margin-bottom: 16px;
}
.page-hero__h1 em { font-style: italic; color: var(--gold-l); }
.page-hero__sub {
  font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 560px;
}

/* ── SECTION BASE ── */
.section { padding: 88px 28px; }
.section--alt  { background: var(--bg2); }
.section--dark { background: var(--bg3); }
.section__inner { max-width: var(--max); margin: 0 auto; }
.section__eyebrow {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 10px;
}
.section__eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.section__eyebrow--center { justify-content: center; }
.section__eyebrow--center::before { display: none; }
.section__h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 600;
  color: var(--white); letter-spacing: -0.01em; line-height: 1.12; margin-bottom: 14px;
}
.section__h2 em { font-style: italic; color: var(--gold-l); }
.section__h2--center { text-align: center; }
.section__sub {
  font-size: 0.975rem; color: var(--muted); line-height: 1.72;
  max-width: 560px; margin-bottom: 52px;
}
.section__sub--wide  { max-width: 720px; }
.section__sub--center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold); color: #080810;
  font-size: 0.875rem; font-weight: 700; padding: 14px 30px;
  border-radius: 8px; border: none; cursor: pointer;
  transition: background 0.15s; display: inline-block; letter-spacing: 0.02em;
}
.btn-gold:hover { background: var(--gold-l); }
.btn-ghost {
  background: transparent; color: var(--text);
  font-size: 0.875rem; font-weight: 600; padding: 14px 30px;
  border-radius: 8px; border: 1px solid var(--border-s);
  cursor: pointer; transition: border-color 0.15s; display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── MARQUEE ── */
.marquee-band {
  background: var(--bg2); border-top: 1px solid var(--border-s);
  border-bottom: 1px solid var(--border-s); overflow: hidden; padding: 18px 0;
}
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 28s linear infinite; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  white-space: nowrap; padding: 0 36px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 16px;
}
.marquee-item::after { content: '✦'; font-size: 0.5rem; color: var(--gold); opacity: 0.6; }

/* ── FOOTER ── */
.footer { background: #030308; border-top: 1px solid var(--border-s); padding: 64px 28px 32px; }
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
@media (max-width: 860px)  { .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px)  { .footer__top { grid-template-columns: 1fr; gap: 28px; } }
.footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--gold-l); margin-bottom: 4px;
}
.footer__brand-tag {
  font-size: 0.68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px;
}
.footer__brand-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer__col-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--text); margin-bottom: 14px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.footer__col-links a { font-size: 0.83rem; color: var(--muted); transition: color 0.15s; }
.footer__col-links a:hover { color: var(--gold-l); }
.footer__bottom {
  border-top: 1px solid var(--border-s); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 0.78rem; color: var(--muted); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 0.78rem; color: var(--muted); transition: color 0.15s; }
.footer__legal a:hover { color: var(--text); }

/* ── SHARED COMPONENT: RESULTS BAND ── */
.results-band { background: var(--bg3); padding: 72px 28px; }
.results-inner { max-width: var(--max); margin: 0 auto; }
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-s);
  border: 1px solid var(--border-s); border-radius: var(--radius);
  overflow: hidden; margin-top: 44px;
}
@media (max-width: 780px) { .results-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .results-grid { grid-template-columns: 1fr; } }
.result-item { background: var(--bg3); padding: 40px 28px; text-align: center; }
.result-item__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 600;
  color: var(--gold-l); line-height: 1; display: block;
}
.result-item__label {
  font-size: 0.8rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 8px; line-height: 1.45;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--bg); border-top: 1px solid var(--border-s);
  padding: 96px 28px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,166,81,0.05) 0%, transparent 70%);
}
.cta-band__inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-band__eyebrow {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.cta-band__h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600;
  color: var(--white); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px;
}
.cta-band__h2 em { font-style: italic; color: var(--gold-l); }
.cta-band__sub { font-size: 0.975rem; color: var(--muted); line-height: 1.7; margin-bottom: 40px; }
