/* ============================================================
   HomeCapture — Shared Styles
   Brand system, resets, nav, footer, buttons, stats bar
   ============================================================ */

@font-face {
  font-family: 'Canela';
  src: url('/fonts/Canela-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('/fonts/Canela-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('/fonts/Canela-RegularItalic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Canela';
  src: url('/fonts/Canela-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

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

:root {
  --evergreen: #052E24;
  --carbon: #181B19;
  --gold: #C9A96E;
  --grey-olive: #76887F;
  --white: #FFFFFF;
  --smoke: #F2F2F2;
  --gutter: 64px;
  --max-w: 1280px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--carbon);
  overflow-x: hidden;
}

.inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

section { padding: 100px var(--gutter); }

/* ===================== EYEBROW ===================== */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-olive);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--grey-olive);
}

/* ===================== SECTION TITLE ===================== */
.section-title {
  font-family: 'Canela', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--evergreen);
  letter-spacing: -0.02em;
}

/* ===================== NAV ===================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.4s ease;
}
.site-nav.scrolled { background: var(--evergreen); }
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  display: block;
  height: 24px;
  width: auto;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-link {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: #F2F2F2; }
.nav-link.active { color: #F2F2F2; }
.nav-book {
  border: 0.5px solid rgba(242,242,242,0.45);
  padding: 7px 20px;
  border-radius: 100px;
  color: #F2F2F2;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.nav-book:hover { background: rgba(242,242,242,0.1); }

/* ===================== BUTTONS ===================== */
.btn-primary {
  background: var(--white);
  color: var(--evergreen);
  border: none;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 13px 32px;
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

.btn-ghost-lt {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 13px 32px;
  border-radius: 100px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-ghost-lt:hover { border-color: rgba(255,255,255,0.7); color: #fff; }

/* ===================== STATS BAR ===================== */
.stats {
  background: var(--carbon);
  padding: 48px var(--gutter);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Canela', Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num sup { font-size: 22px; vertical-align: super; color: var(--gold); }
.stat-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-olive);
}

/* ===================== FOOTER CTA ===================== */
.footer-cta {
  background: var(--carbon);
  padding: 100px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(5,46,36,0.6) 0%, transparent 70%);
  pointer-events: none;
}
.fcta-left { position: relative; z-index: 2; }
.fcta-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  color: rgba(242,242,242,0.35);
  font-family: 'Inter', sans-serif;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fcta-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: rgba(242,242,242,0.25);
  flex-shrink: 0;
}
.fcta-title {
  font-family: 'Canela', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: #F2F2F2;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
/* Champagne on italic word in footer CTA */
.fcta-title em { font-style: italic; color: var(--gold); }
.fcta-contact {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.3);
}
.fcta-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--carbon);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-h {
  font-family: 'Canela', Georgia, serif;
  font-size: 56px;
  color: rgba(242,242,242,0.04);
  line-height: 1;
  font-weight: 400;
}
.footer-city {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.14);
  margin-top: 4px;
}
.footer-links { display: flex; gap: 24px; }
.footer-link {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.14);
  text-decoration: none;
}
.footer-tagline {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.08);
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* ===================== RESPONSIVE (shared) ===================== */
@media (max-width: 900px) {
  :root { --gutter: 24px; }
  .footer-cta { flex-direction: column; gap: 40px; align-items: flex-start; }
  .fcta-btns { align-items: flex-start; }
  .site-footer { flex-direction: column; gap: 16px; align-items: flex-start; }
  section { padding: 64px var(--gutter); }
}
