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

:root {
  --navy-deepest: #050d1f;
  --navy-deep: #081228;
  --navy: #0d1f42;
  --navy-mid: #142952;
  --navy-light: #1e3a6e;
  --gold: #c9933a;
  --gold-light: #e0ae5c;
  --gold-bright: #f0c96a;
  --gold-pale: rgba(201, 147, 58, 0.12);
  --gold-glow: rgba(201, 147, 58, 0.25);
  --cream: #f8f4ee;
  --cream-muted: #e8e0d0;
  --cream-dim: #a89880;
  --white: #ffffff;
  --border: rgba(201, 147, 58, 0.18);
  --border-subtle: rgba(255, 255, 255, 0.07);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--navy-deepest);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(5, 13, 31, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

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

.nav-cta {
  background: var(--gold);
  color: var(--navy-deepest) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.15s ease !important;
}

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 6rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(201, 147, 58, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(13, 31, 66, 0.6) 0%, transparent 60%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy-deepest) 55%, #020810 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.02) 79px,
      rgba(255,255,255,0.02) 80px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255,255,255,0.02) 79px,
      rgba(255,255,255,0.02) 80px
    );
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--cream-muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deepest);
  padding: 1rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 147, 58, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--cream-muted);
  padding: 1rem 2rem;
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--cream);
}

.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--cream-dim);
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Hero right panel — fee preview */
.hero-panel {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
}

.hero-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 2.5rem;
  right: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.panel-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

.fee-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.fee-line:last-of-type {
  border-bottom: none;
}

.fee-name {
  font-size: 0.875rem;
  color: var(--cream-muted);
  font-weight: 400;
}

.fee-amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-light);
}

.fee-zero {
  color: #4ade80;
  font-style: italic;
}

.panel-note {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--cream-dim);
  line-height: 1.6;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.25rem;
}

/* ===== SERVICES ===== */
.services {
  padding: 7rem 3rem;
  background: var(--navy-deep);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

.services-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.section-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 40px;
  background: var(--gold);
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 4rem;
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}

.service-card {
  background: var(--navy-deep);
  padding: 2.25rem 2rem;
  transition: background 0.25s ease;
  position: relative;
}

.service-card:hover {
  background: var(--navy-mid);
}

.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--cream-dim);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-fee {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid rgba(201, 147, 58, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 1px;
}

/* Fee table */
.fee-table-wrap {
  margin-top: 4rem;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.fee-table-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fee-table-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.fee-table-sub {
  font-size: 0.8rem;
  color: var(--cream-dim);
}

table.fees {
  width: 100%;
  border-collapse: collapse;
}

table.fees th,
table.fees td {
  padding: 1.1rem 2rem;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border-subtle);
}

table.fees th {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: rgba(0, 0, 0, 0.15);
}

table.fees td {
  color: var(--cream-muted);
}

table.fees td:last-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-light);
  text-align: right;
}

table.fees tr:last-child td {
  border-bottom: none;
}

table.fees tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.fee-zero-td {
  color: #4ade80 !important;
  font-style: italic;
}

/* ===== SERVICE AREA ===== */
.area {
  padding: 7rem 3rem;
  position: relative;
  background: var(--navy-deepest);
}

.area-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.area-map {
  position: relative;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.area-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 147, 58, 0.06) 0%, transparent 70%);
}

.map-svg-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
}

.map-location-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.pin-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  box-shadow: 0 0 30px var(--gold-glow);
}

.pin-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
}

.pin-label {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  text-align: center;
  margin-top: 0.5rem;
}

.pin-sub {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.city-chip {
  font-size: 0.75rem;
  color: var(--cream-dim);
  background: var(--navy);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

.area-text {
  padding-left: 1rem;
}

.area-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.area-stat {
  background: var(--navy-mid);
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--cream-dim);
  line-height: 1.4;
}

.licensing-note {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 147, 58, 0.3);
  border-radius: 3px;
  font-size: 0.825rem;
  color: var(--cream-muted);
  line-height: 1.6;
}

.licensing-note strong {
  color: var(--gold-light);
}

/* ===== FORM / CTA ===== */
.cta-section {
  padding: 7rem 3rem;
  background: var(--navy-deep);
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

.cta-inner {
  max-width: 820px;
  margin: 0 auto;
}

.lead-form {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 3rem;
  margin-top: 3rem;
  position: relative;
}

.lead-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 3rem;
  right: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

input, textarea, select {
  background: var(--navy);
  border: 1px solid var(--border-subtle);
  border-radius: 2px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: var(--cream-dim);
  opacity: 0.6;
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(201, 147, 58, 0.5);
  box-shadow: 0 0 0 3px rgba(201, 147, 58, 0.08);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

select option {
  background: var(--navy);
}

.form-submit {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.78rem;
  color: var(--cream-dim);
}

.form-success {
  display: none;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 3px;
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: #4ade80;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.form-error {
  display: none;
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: 3px;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #f87171;
  margin-top: 1rem;
}

/* ===== ABOUT ===== */
.about {
  padding: 7rem 3rem;
  background: var(--navy-deepest);
}

.about-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--cream-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.about-text p strong {
  color: var(--cream);
  font-weight: 500;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--navy-mid);
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  transition: border-color 0.2s ease;
}

.value-item:hover {
  border-color: var(--border);
}

.value-bullet {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.value-text {
  font-size: 0.9rem;
  color: var(--cream-muted);
  line-height: 1.65;
}

.value-text strong {
  display: block;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 4rem 3rem 3rem;
  background: var(--navy-deepest);
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 2rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.footer-brand-name span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
}

.footer-contact-detail {
  font-size: 0.875rem;
  color: var(--cream-muted);
  margin-bottom: 0.4rem;
}

.footer-contact-detail a {
  color: var(--gold);
  text-decoration: none;
}

.footer-contact-detail a:hover {
  text-decoration: underline;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--cream-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--cream-dim);
}

.footer-legal {
  font-size: 0.72rem;
  color: var(--cream-dim);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner,
  .area-inner,
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-panel {
    max-width: 520px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 6rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .services,
  .area,
  .cta-section,
  .about {
    padding: 5rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 2rem 1.5rem;
  }

  .fee-table-wrap {
    overflow-x: auto;
  }

  table.fees th,
  table.fees td {
    padding: 0.9rem 1.25rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .area-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
