:root {
  --navy: #0A1628;
  --navy-light: #142240;
  --navy-mid: #1A2D4A;
  --gold: #C9A96E;
  --gold-light: #D4BA86;
  --gold-dim: rgba(201, 169, 110, 0.15);
  --cream: #F8F6F1;
  --cream-dark: #EDE9E0;
  --white: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-muted: rgba(255, 255, 255, 0.55);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.12);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 400;
}

.logo-text {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
}

/* ========== HERO ========== */
.hero {
  background: var(--navy);
  padding: 160px 32px 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 90% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
  font-weight: 400;
}

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

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--navy-light);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
}

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

/* ========== SERVICES ========== */
.services {
  padding: 120px 32px;
  background: var(--cream);
}

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

.section-header {
  max-width: 640px;
  margin-bottom: 72px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 400;
}

.section-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  padding: 48px 36px;
  border-radius: 16px;
  border: 1px solid var(--cream-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.08);
}

.service-number {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}

.service-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 16px;
  font-weight: 400;
}

.service-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ========== PROCESS ========== */
.process {
  padding: 120px 32px;
  background: var(--navy);
  position: relative;
}

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

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.process-left .section-title {
  color: var(--white);
  margin-bottom: 24px;
}

.process-left .section-description {
  color: var(--text-light);
}

.process-step {
  display: flex;
  gap: 24px;
  padding-bottom: 40px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.3);
}

.step-line {
  width: 1px;
  flex: 0 0 20px;
  background: rgba(201, 169, 110, 0.25);
}

.process-step:first-child .step-line {
  background: transparent;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 400;
}

.step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  font-weight: 300;
}

/* ========== CLOSING ========== */
.closing {
  padding: 120px 32px;
  background: var(--cream);
  text-align: center;
  position: relative;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
}

.closing-accent {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 48px;
  border-radius: 2px;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 24px;
  font-weight: 400;
}

.closing-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 300;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--gold);
  font-style: italic;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy);
  padding: 60px 32px 40px;
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}

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

.footer-brand {
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-logo .logo-mark {
  width: 32px;
  height: 32px;
  font-size: 17px;
}

.footer-logo .logo-text {
  font-size: 15px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 300;
}

.footer-info {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 32px;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 400;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .trust-inner {
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 120px 20px 64px;
  }

  .services,
  .process,
  .closing {
    padding: 80px 20px;
  }

  .service-card {
    padding: 32px 24px;
  }

  .nav-inner {
    padding: 14px 20px;
  }

  .logo-text {
    font-size: 14px;
  }

  .footer-info {
    flex-direction: column;
    gap: 8px;
  }

  .trust-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }
}
/* ========== NAV LINKS ========== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-menu {
  display: none;
}

/* ========== HERO BUTTONS ========== */
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 169, 110, 0.35);
}

.btn-ghost {
  display: inline-block;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: -0.01em;
}

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

/* ========== FAQ ========== */
.faq {
  padding: 120px 32px;
  background: var(--cream);
}

.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-item:first-child {
  border-top: 1px solid var(--cream-dark);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
  transition: color 0.2s;
}

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

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

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

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

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

.faq-answer p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ========== CONTACT ========== */
.contact {
  padding: 120px 32px;
  background: var(--navy);
  position: relative;
}

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

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-assurances {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-assurances li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 15px;
  font-weight: 400;
}

.contact-assurances svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Contact form */
.contact-form {
  background: var(--cream);
  border-radius: 20px;
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group-full {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.required {
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A5A5A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

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

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold);
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 18px 32px;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: opacity 0.2s, transform 0.2s;
}

.form-submit:hover:not(:disabled) {
  opacity: 0.88;
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
}

.form-success svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.form-success strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}

.form-success p {
  font-size: 14px;
  color: var(--text-secondary);
}

.form-error {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(220, 60, 60, 0.08);
  border: 1px solid rgba(220, 60, 60, 0.2);
  border-radius: 8px;
  color: #c0392b;
  font-size: 14px;
}

/* ========== MOBILE NAV ========== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav-mobile-menu {
    display: flex;
    flex-direction: column;
    background: var(--navy);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
  }

  body.nav-open .nav-mobile-menu {
    max-height: 280px;
  }

  .nav-mobile-link {
    padding: 16px 20px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s;
  }

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

  .nav-mobile-cta {
    color: var(--gold);
    font-weight: 600;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 40px;
  }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faq,
  .contact {
    padding: 80px 20px;
  }
}
