:root {
  --navy: #0A1F44;
  --header-bg: #0C1C32;
  --navy-light: #122a52;
  --navy-card: #0f2647;
  --silver: #C0C0C0;
  --gold: #D4AF37;
  --gold-muted: rgba(212, 175, 55, 0.65);
  --cream: #F7F4EF;
  --cream-dark: #EDE8E0;
  --text: #3a3a3a;
  --text-muted: #6b6b6b;
  --white: #ffffff;
  --border: rgba(10, 31, 68, 0.12);
  --border-light: rgba(255, 255, 255, 0.1);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --container: min(1140px, calc(100% - 48px));
  --header-h: 104px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

.section-heading {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-heading h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-inner {
  width: var(--container);
  margin: 0 auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
}

.header-logo img {
  height: 88px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--silver);
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-light);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: #c4a030;
  color: var(--navy);
}

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

.btn-outline:hover {
  border-color: var(--navy);
}

.btn-link {
  background: none;
  border: none;
  padding: 0.7rem 0;
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  color: var(--white);
  flex-shrink: 0;
}

.menu-toggle-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
}

.menu-toggle-icon::before { top: -7px; }
.menu-toggle-icon::after { top: 7px; }

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

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

.hero-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.hero-deco {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 40vw, 480px);
  height: clamp(280px, 40vw, 480px);
  border: 1px solid rgba(10, 31, 68, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-deco::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(10, 31, 68, 0.06);
  border-radius: 50%;
}

.hero-deco::after {
  content: "C";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: clamp(12rem, 22vw, 20rem);
  font-weight: 600;
  color: rgba(10, 31, 68, 0.04);
  line-height: 1;
}

/* Stats */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.stat-item {
  padding: clamp(1.75rem, 3vw, 2.5rem) 1.5rem;
  border-right: 1px solid var(--border);
}

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

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Why choose us */
.section-why {
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--border);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
}

.reason-item {
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  border-right: 1px solid var(--border);
}

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

.reason-num {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.reason-item h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.reason-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Services */
.section-services {
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  border-bottom: 1px solid var(--border);
}

.service-row:first-of-type {
  border-top: 1px solid var(--border);
}

.service-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 0.35rem;
}

.service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.service-body h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: 0.75rem;
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 62ch;
}

/* Process */
.section-process {
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
}

.process-num {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--gold-muted);
  margin-bottom: 1.25rem;
}

.process-step h3 {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 26ch;
}

/* Outcomes */
.section-outcomes {
  background: var(--navy);
  color: var(--silver);
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-outcomes .eyebrow {
  color: var(--gold);
}

.section-outcomes h2 {
  color: var(--white);
}

.section-outcomes .section-heading p {
  color: var(--silver);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.outcome-card {
  background: var(--navy-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.75rem;
}

.outcome-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.outcome-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.outcome-card p {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.6;
}

/* Team */
.section-team {
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.06);
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

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

/* Contact */
.section-contact {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.page-contact .section-contact {
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.contact-panel {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(2rem, 4vw, 3rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-info-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--navy);
}

.contact-info-list svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info-list a:hover {
  color: var(--gold);
}

.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: 0 8px 32px rgba(10, 31, 68, 0.08);
}

.form-field {
  margin-bottom: 1.1rem;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.form-message-success {
  background: rgba(212, 175, 55, 0.15);
  color: var(--navy);
  border: 1px solid var(--gold);
}

.form-message-error {
  background: rgba(180, 40, 40, 0.08);
  color: #8b2020;
  border: 1px solid rgba(180, 40, 40, 0.25);
}

.btn-full {
  width: 100%;
  padding: 0.9rem;
  margin-top: 0.5rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--silver);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.88rem;
}

.site-footer a {
  color: var(--gold);
}

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

.footer-separator {
  margin: 0 0.5rem;
  opacity: 0.4;
}

/* Responsive */
@media (max-width: 1024px) {
  .reasons-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reason-item:nth-child(3) {
    border-right: none;
  }

  .reason-item:nth-child(4),
  .reason-item:nth-child(5) {
    border-top: 1px solid var(--border);
  }

  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 88px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-logo img {
    height: 68px;
    max-width: 200px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.5rem 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .site-nav li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav a {
    display: block;
    padding: 0.85rem 0;
  }

  .header-cta-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero-deco {
    opacity: 0.5;
    right: -20%;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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

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

  .reason-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .reason-item:last-child {
    border-bottom: none;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .process-grid::before {
    display: none;
  }

  .team-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 540px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

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