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

:root {
  --navy:    #0b1628;
  --navy-2:  #0f1e38;
  --navy-3:  #162440;
  --gold:    #c9a84c;
  --gold-lt: #e0c27a;
  --gold-dk: #a8883a;
  --white:   #ffffff;
  --off-white: #f5f3ee;
  --gray-100: #f1f0ed;
  --gray-200: #e2e0db;
  --gray-400: #9c9990;
  --gray-600: #635f58;
  --gray-800: #2e2b26;
  --text:    #1a1814;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);

  --max-w: 1160px;
  --section-py: 100px;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Utilities ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: var(--section-py) 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; }

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-top: 12px;
  line-height: 1.7;
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
}

/* ─── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
}

.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.nav-logo span { color: var(--gold); margin-left: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 16px 32px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-mobile a {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 60px;
  background:
    linear-gradient(135deg, #0b1628 0%, #162440 50%, #0f2233 100%);
  overflow: hidden;
}

/* Subtle geometric texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201,168,76,.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Grid lines accent */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 700px;
}

.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 64px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  padding: 28px 40px;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
}
.stat:first-child { padding-left: 0; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(201,168,76,.25);
  flex-shrink: 0;
}

/* ─── Services ─────────────────────────────────────────────── */
.services { background: var(--off-white); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-dk);
}
.service-icon svg { width: 24px; height: 24px; }

.service-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card p {
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.service-details li {
  font-size: .875rem;
  color: var(--gray-800);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-details li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Why Us ───────────────────────────────────────────────── */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content h2 {
  color: var(--navy);
  margin-bottom: 16px;
}

.why-content > p {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.feature-icon svg { width: 16px; height: 16px; }

.feature h4 {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.why-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.why-card-highlight {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}

.why-card-inner { padding: 28px 32px; }

.why-card-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.why-card-highlight .why-card-label { color: var(--gold); }

.compare-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compare-list li {
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-list li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

.compare-bad li { color: var(--gray-600); }
.compare-bad li::before {
  background-color: #fde8e8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e05252'%3E%3Cpath d='M5.47 5.47a.75.75 0 011.06 0L12 10.94l5.47-5.47a.75.75 0 111.06 1.06L13.06 12l5.47 5.47a.75.75 0 11-1.06 1.06L12 13.06l-5.47 5.47a.75.75 0 01-1.06-1.06L10.94 12 5.47 6.53a.75.75 0 010-1.06z'/%3E%3C/svg%3E");
}

.compare-good li { color: rgba(255,255,255,.85); }
.compare-good li::before {
  background-color: rgba(201,168,76,.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a84c'%3E%3Cpath fill-rule='evenodd' d='M19.916 4.626a.75.75 0 01.208 1.04l-9 13.5a.75.75 0 01-1.154.114l-6-6a.75.75 0 011.06-1.06l5.353 5.353 8.493-12.739a.75.75 0 011.04-.208z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

/* ─── Process ──────────────────────────────────────────────── */
.process { background: var(--navy); }

.process .section-header .eyebrow { color: var(--gold); }
.process .section-header h2 { color: var(--white); }
.process .section-sub { color: rgba(255,255,255,.55); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 0 24px;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: .3;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.step p {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  line-height: 1.75;
}

.step-arrow {
  flex-shrink: 0;
  padding-top: 56px;
  color: var(--gold);
  opacity: .35;
}
.step-arrow svg { width: 28px; height: 28px; }

/* ─── Contact ──────────────────────────────────────────────── */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { color: var(--navy); margin-bottom: 16px; }

.contact-info > p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-800);
  font-size: .95rem;
  font-weight: 500;
}
.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-dk);
  flex-shrink: 0;
}

.contact-disclaimer {
  font-size: .78rem;
  color: var(--gray-400);
  line-height: 1.6;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: .02em;
  text-transform: uppercase;
}

input, select, textarea {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text);
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  outline: none;
  appearance: none;
}

input::placeholder, textarea::placeholder { color: var(--gray-400); }

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
  background: var(--white);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%239c9990'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}

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

.btn-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.form-note {
  font-size: .78rem;
  color: var(--gray-400);
  text-align: center;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 48px 24px;
}
.form-success h3 { color: var(--navy); margin-bottom: 12px; }
.form-success p { color: var(--gray-600); }

/* ─── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 24px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo span { color: var(--gold); margin-left: 4px; }

.footer-tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
  letter-spacing: .04em;
}

.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

.footer-legal {
  text-align: right;
  max-width: 420px;
}

/* ─── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 100px 24px 48px; }
  .hero-stats {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    align-items: flex-start;
  }
  .stat { padding: 0; }
  .stat-divider { width: 40px; height: 1px; }

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

  .steps {
    flex-direction: column;
    gap: 32px;
  }
  .step { padding: 0; }
  .step-arrow { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .container { padding: 0 20px; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-legal { text-align: left; max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
