/* ============================================================
   SOLERA CAPITAL — Global Stylesheet
   Style: Exaggerated Minimalism | Investment Grade
   Palette: Navy / Champagne Gold / Warm Cream
   Typography: Cinzel (headings) + Josefin Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Josefin+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Design Tokens ── */
:root {
  /* Colors */
  --navy:        #0F1F3D;
  --navy-mid:    #162D56;
  --navy-light:  #1E3A6E;
  --gold:        #C9A96E;
  --gold-light:  #D4B98A;
  --gold-dark:   #A8843E;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE7D9;
  --burgundy:    #6B2335;
  --white:       #FAFAFA;
  --off-white:   #F8F6F2;
  --black:       #080808;
  --text-dark:   #0D0D0D;
  --text-mid:    #2C3A52;
  --text-muted:  #6B7280;
  --border:      rgba(201, 169, 110, 0.25);
  --border-dark: rgba(201, 169, 110, 0.15);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Layout */
  --container:  1200px;
  --nav-height: 80px;

  /* Typography scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;
  --text-hero: clamp(3rem, 8vw, 6.5rem);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 31, 61, 0.08);
  --shadow-md: 0 8px 32px rgba(15, 31, 61, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 31, 61, 0.18);

  /* Transitions */
  --transition: 220ms ease;
  --transition-slow: 400ms ease;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: inherit;
}

h1 { font-size: var(--text-hero); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

p {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 65ch;
}

.text-lead {
  font-size: var(--text-xl);
  line-height: 1.6;
  font-weight: 300;
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-cream { color: var(--cream); }
.text-white { color: var(--white); }
.text-muted  { color: var(--text-muted); }

.font-cinzel { font-family: 'Cinzel', serif; }
.font-light  { font-weight: 300; }
.tracking-wide { letter-spacing: 0.15em; text-transform: uppercase; font-size: var(--text-xs); font-weight: 600; }

/* ── Layout Utilities ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-xl) 0;
}

.section-label {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: var(--text-4xl);
  color: inherit;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 55ch;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--gold-dark); gap: 0.75rem; }

.btn-lg { padding: 1.1rem 2.75rem; font-size: var(--text-base); }

/* ── Divider ── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-md) 0;
}

.divider-center { margin: var(--space-md) auto; }

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition-slow);
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.navbar.light-nav {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.navbar.light-nav .nav-link { color: var(--text-dark); }
.navbar.light-nav .nav-link:hover { color: var(--gold-dark); }
.navbar.light-nav .nav-logo-text { color: var(--navy); }
.navbar.light-nav .nav-cta { background: var(--gold); color: var(--navy); }
.navbar.light-nav .hamburger span { background: var(--navy); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.navbar.light-nav .nav-logo img {
  filter: none;
}

.nav-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold); }

.nav-cta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--navy);
  padding: var(--space-lg);
  border-top: 1px solid var(--border-dark);
  z-index: 999;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-menu.open { display: flex; }

.mobile-menu .nav-link {
  font-size: var(--text-base);
  color: var(--white);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid var(--border-dark);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100dvh;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201, 169, 110, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 90%, rgba(107, 35, 53, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, #0F1F3D 0%, #162D56 50%, #0F1F3D 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 169, 110, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 110, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  padding-top: calc(var(--nav-height) + var(--space-xl));
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  color: var(--white);
  line-height: 1.0;
  max-width: 14ch;
  margin-bottom: var(--space-lg);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: var(--text-xl);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: var(--text-xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.page-hero h1 {
  color: var(--white);
  font-size: var(--text-5xl);
  max-width: 16ch;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-xl);
  font-weight: 300;
  max-width: 52ch;
}

/* ── Stats Strip ── */
.stats-strip {
  background: var(--cream);
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: var(--space-md) var(--space-lg);
  border-right: 1px solid var(--cream-dark);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Cinzel', serif;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-number span.gold { color: var(--gold-dark); }

.stat-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Section Backgrounds ── */
.bg-navy    { background: var(--navy); color: var(--white); }
.bg-navy-mid { background: var(--navy-mid); color: var(--white); }
.bg-cream   { background: var(--cream); }
.bg-white   { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-dark    { background: #090f1e; color: var(--white); }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}

.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--cream-dark);
}

.card-body { padding: var(--space-lg); }

.card-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: var(--space-sm);
}

.card h3 {
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.card p { color: var(--text-muted); font-size: var(--text-sm); }

/* Navy card variant */
.card-navy {
  background: var(--navy-mid);
  border: 1px solid var(--border-dark);
  color: var(--white);
}

.card-navy h3 { color: var(--white); }
.card-navy p { color: rgba(255,255,255,0.6); }
.card-navy .card-tag { color: var(--gold); }
.card-navy:hover { border-color: var(--gold); }

/* Property Card */
.property-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.property-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--cream-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon-badge {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--navy);
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
}

.property-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
}

.property-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.08'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.property-placeholder-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  opacity: 0.6;
  position: relative;
  z-index: 1;
}

.property-placeholder-text {
  font-family: 'Cinzel', serif;
  font-size: var(--text-sm);
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.property-body { padding: var(--space-lg); }

.property-name {
  font-family: 'Cinzel', serif;
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.property-location {
  font-size: var(--text-sm);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: var(--space-md);
}

.property-meta {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: var(--space-md);
}

.property-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.property-meta-value {
  font-family: 'Cinzel', serif;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
}

.property-meta-label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Deal Card */
.deal-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.deal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.deal-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.deal-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
}

.deal-status.available .deal-status-dot { background: #22c55e; }
.deal-status.available { color: #15803d; }

.deal-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin: var(--space-md) 0;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.deal-metric-value {
  font-family: 'Cinzel', serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.deal-metric-label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Pillar Card */
.pillar-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pillar-card:hover::after { opacity: 1; }

.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
}

.pillar-card h3 {
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.pillar-card p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 100%;
}

/* ── Step Process ── */
.step {
  display: flex;
  gap: var(--space-lg);
  position: relative;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
}

.step-content h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: var(--text-sm);
  max-width: 100%;
}

/* ── FAQ Accordion ── */
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-family: 'Josefin Sans', sans-serif;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--gold-dark); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open { max-height: 400px; }

.faq-answer p {
  padding-bottom: var(--space-md);
  font-size: var(--text-sm);
  line-height: 1.8;
}

/* ── Forms ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}

.form-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-input,
.form-select,
.form-textarea {
  font-family: 'Josefin Sans', sans-serif;
  font-size: var(--text-base);
  padding: 0.875rem 1rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  min-height: 44px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-textarea { min-height: 140px; resize: vertical; }

/* Dark form variant */
.form-dark .form-label { color: rgba(255,255,255,0.7); }
.form-dark .form-input,
.form-dark .form-select,
.form-dark .form-textarea {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--white);
}
.form-dark .form-input::placeholder,
.form-dark .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-dark .form-input:focus,
.form-dark .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--navy);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-lg);
  margin: 0 auto var(--space-xl);
  max-width: 48ch;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: #070E1C;
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--space-xl);
}

.footer-brand img {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: var(--space-md);
}

.footer-brand-name {
  font-family: 'Cinzel', serif;
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: var(--space-xs);
}

.footer-brand-tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  font-style: italic;
  display: block;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 32ch;
}

.footer-col h5 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-link:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.65rem;
}

.footer-contact-item a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-legal {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

.footer-legal-links {
  display: flex;
  gap: var(--space-md);
}

.footer-legal-links a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}

.footer-legal-links a:hover { color: var(--gold); }

.footer-disclaimer {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.05);
  max-width: 90ch;
}

/* ── Highlight Box ── */
.highlight-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg) var(--space-lg);
}

.highlight-box-dark {
  background: rgba(201, 169, 110, 0.08);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg);
}

/* ── Tag / Badge ── */
.tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  background: var(--cream);
  color: var(--text-mid);
}

.tag-gold { background: rgba(201, 169, 110, 0.15); color: var(--gold-dark); }
.tag-navy { background: var(--navy); color: var(--gold); }
.tag-burgundy { background: rgba(107, 35, 53, 0.1); color: var(--burgundy); }

/* ── Quote / Callout ── */
.callout {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.callout::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: 'Cinzel', serif;
  font-size: 10rem;
  color: rgba(201, 169, 110, 0.07);
  line-height: 1;
  pointer-events: none;
}

.callout-text {
  font-family: 'Cinzel', serif;
  font-size: var(--text-2xl);
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.callout-author {
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}

/* ── Checklist ── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.checklist-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gold);
  margin-top: 2px;
}

/* ── Number Highlight ── */
.number-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.number-highlight-value {
  font-family: 'Cinzel', serif;
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.number-highlight-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  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; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --space-3xl: 6rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
    --space-xl: 2.5rem;
  }

  h2 { font-size: var(--text-3xl); }
  h3 { font-size: var(--text-xl); }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .stat-item:last-child { border-bottom: none; }

  .deal-metrics { grid-template-columns: repeat(3, 1fr); }

  .hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .cta-banner-actions { flex-direction: column; align-items: center; }

  .page-hero h1 { font-size: var(--text-4xl); }
}

@media (max-width: 480px) {
  :root { --space-xl: 2rem; }
  .container { padding: 0 var(--space-md); }
  .stats-grid { grid-template-columns: 1fr; }
  .deal-metrics { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
