:root {
  --bg: #071a2c;
  --bg-2: #0d2238;
  --panel: rgba(255,255,255,0.06);
  --panel-2: rgba(255,255,255,0.08);
  --gold: #c59a52;
  --gold-soft: rgba(197, 154, 82, 0.18);
  --text: #f4f0ea;
  --muted: #c9d0da;
  --dark: #0f1720;
  --white: #ffffff;
  --light-bg: #f5f2ec;
  --line: rgba(255,255,255,0.12);
  --line-dark: rgba(7, 26, 44, 0.12);
  --shadow: 0 18px 45px rgba(0,0,0,0.22);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(7, 26, 44, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.brand-name,
.brand-sub,
.footer-title,
.footer-subtitle {
  display: block;
}

.brand-name,
.footer-title {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.12em;
  font-size: 1.45rem;
  line-height: 1;
}

.brand-sub {
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.96rem;
  color: var(--muted);
}

.nav a:hover { color: var(--white); }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(197,154,82,0.18), transparent 28%),
    radial-gradient(circle at left center, rgba(255,255,255,0.05), transparent 20%),
    linear-gradient(180deg, #081b2d 0%, #071625 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0) 45%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  padding: 92px 0 82px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.77rem;
  color: #d7bd91;
}

.eyebrow-dark { color: #8b6a35; }

.hero h1,
.section-head h2,
.authority-section h2,
.contact-section h2,
.hero-card h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 0.96;
  max-width: 10ch;
}

.hero-subcopy,
.section-copy,
.hero-card p,
.intro-card p,
.offer-main p,
.side-card p,
.case-card p,
.timeline-item p,
.authority-copy p,
.contact-wrap p,
.contact-note {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.hero-subcopy {
  max-width: 62ch;
  margin: 24px 0 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: #101010;
}
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
}

.hero-points li {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel { display: flex; justify-content: end; }
.hero-card {
  max-width: 430px;
  padding: 34px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.1);
}

.mini-label {
  margin: 0 0 10px;
  color: #d7bd91;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-size: 2rem;
  line-height: 1;
}

.card-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.metric {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  color: var(--white);
}
.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  padding: 88px 0;
}

.intro-strip {
  background: #0a1f34;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.intro-grid,
.case-grid,
.authority-grid {
  display: grid;
  gap: 24px;
}

.intro-grid { grid-template-columns: repeat(3, 1fr); }
.intro-card,
.case-card,
.card-light,
.card-dark,
.contact-wrap {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.intro-card {
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.intro-card h3,
.offer-main h3,
.case-card h3,
.timeline-item h3,
.side-card h4 {
  margin-top: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
}

.offer-section,
.process-section,
.contact-section {
  background: var(--light-bg);
  color: var(--dark);
}

.section-head {
  text-align: center;
  margin-bottom: 42px;
}
.narrow { max-width: 820px; }
.left-head { text-align: left; }
.section-head h2 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  color: var(--dark);
  line-height: 1;
}
.dark-band .section-head h2,
.dark-band .section-head p,
.dark-band h2 { color: var(--white); }
.light-copy { color: var(--muted); }
.section-copy {
  max-width: 72ch;
  margin: 16px auto 0;
}
.left-head .section-copy { margin-left: 0; }

.offer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.card-light {
  background: #fffdfa;
  padding: 34px;
  border: 1px solid rgba(7,26,44,0.08);
}
.card-dark {
  background: #0d2238;
  color: var(--text);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
}
.accent-card {
  background: linear-gradient(180deg, #102843, #0c2035);
}
.offer-lead {
  margin-top: 8px;
  color: #425264;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.check-grid h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8b6a35;
}
.check-grid ul {
  padding-left: 18px;
  margin: 0;
  color: #4d5d6b;
  line-height: 1.8;
}
.offer-side {
  display: grid;
  gap: 18px;
}

.dark-band {
  background: linear-gradient(180deg, #081a2d, #071524);
}
.case-grid { grid-template-columns: repeat(3, 1fr); }
.case-card {
  padding: 28px;
}
.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(197,154,82,0.18);
  color: #dcb882;
  margin-bottom: 14px;
  font-weight: 700;
}

.timeline {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  align-items: start;
  background: #fffdfa;
  border: 1px solid rgba(7,26,44,0.08);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow);
}
.timeline-index {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f2236;
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
}

.authority-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
}
.authority-copy { max-width: 720px; }
.authority-copy p + p { margin-top: 16px; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.contact-note {
  max-width: 360px;
  font-size: 0.92rem;
  color: #5d6a76;
}

.site-footer {
  background: #071625;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-wrap {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.footer-subtitle,
.footer-note {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .hero-grid,
  .offer-grid,
  .authority-grid,
  .contact-wrap,
  .intro-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel { justify-content: start; }
  .nav { display: none; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { position: static; }
  .hero-grid { padding: 66px 0 56px; }
  .brand-name, .footer-title { font-size: 1.2rem; }
  .brand-sub { letter-spacing: 0.25em; }
  .hero h1 { max-width: 11ch; }
  .section { padding: 68px 0; }
  .check-grid,
  .card-metrics,
  .hero-actions,
  .contact-actions,
  .footer-wrap {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline-item {
    grid-template-columns: 1fr;
  }
}
