/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --navy-900: #0b1628;
  --navy-800: #0f1f3d;
  --navy-700: #1a3561;
  --navy-600: #1e4080;
  --gold-400: #e8c96d;
  --gold-500: #c9a84c;
  --gold-600: #a8893a;
  --white: #ffffff;
  --gray-50: #f7f8fc;
  --gray-100: #eef0f6;
  --gray-200: #dde1ed;
  --gray-400: #9aa3b8;
  --gray-600: #5a6480;
  --gray-800: #1e2540;
  --text: #1a2040;
  --text-muted: #5a6480;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
  --shadow-gold: 0 8px 32px rgba(201,168,76,.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Skip link — visually hidden until focused */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--gold-400);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

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

ul { list-style: none; }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--radius-xl);
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}
.btn:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   SECTION LABELS & HEADERS
═══════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: .75rem;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy-800);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(11, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: block;
}

.nav-logo-svg {
  height: 2.8rem;
  width: auto;
  display: block;
  overflow: visible;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-cta {
  padding: .5rem 1.25rem;
  background: var(--gold-500) !important;
  color: var(--navy-900) !important;
  border-radius: var(--radius-xl);
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold-400) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-ai-link {
  position: relative;
}

.nav-ai-badge {
  display: inline-block;
  margin-left: .35rem;
  padding: .1em .45em;
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  vertical-align: middle;
  line-height: 1.6;
  position: relative;
  top: -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: var(--transition);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
  text-align: center;
  padding: 8rem 2rem 6rem;
}

.hero-bg {
  position: absolute;
  inset: -30%;
  pointer-events: none;
  will-change: transform;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--navy-700) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: float 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.15) 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--navy-600) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-slow 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}
@keyframes pulse-slow {
  0%, 100% { opacity: .3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: .5; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  will-change: transform;
}

.hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease both .2s;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 1.25rem;
  animation: fadeUp .8s ease both .3s;
}

.hero-definition {
  font-size: 1rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease both .4s;
}

.hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeUp .8s ease both .5s;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s ease both .6s;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeUp .8s ease both .9s;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: .4; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats {
  background: var(--navy-800);
  padding: 3.5rem 0;
}

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

.stat {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: .5rem;
}

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

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services {
  padding: 7rem 0;
  background: var(--gray-50);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-400);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--gold-400);
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800);
}

.service-card p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.65;
  flex: 1;
}

.service-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .5rem;
}
.service-card-footer span {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--navy-700);
  background: var(--gray-100);
  padding: .25rem .6rem;
  border-radius: 99px;
}

/* ═══════════════════════════════════════════
   SERVICE CARD CTA
═══════════════════════════════════════════ */
.service-card {
  cursor: pointer;
}

.service-card-cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--gray-100);
  transition: gap var(--transition), color var(--transition);
}
.service-card-cta svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.service-card:hover .service-card-cta {
  color: var(--gold-500);
  gap: .65rem;
}
.service-card:hover .service-card-cta svg {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   SERVICE MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(11, 22, 40, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  max-height: 76vh;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
  transform: translateY(24px) scale(0.98);
  transition: transform var(--transition);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-image-wrap {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.modal-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.modal-overlay.open .modal-image {
  transform: scale(1.03);
}

.modal-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,22,40,.5) 0%, transparent 60%);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.modal-close:hover {
  background: rgba(255,255,255,.3);
  transform: rotate(90deg);
}
.modal-close svg { width: 16px; height: 16px; }

.modal-body {
  padding: 1.75rem 2rem;
  overflow-y: auto;
  min-height: 0;
  max-height: 76vh;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.modal-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy-800);
  line-height: 1.2;
}

.modal-description {
  color: var(--text-muted);
  font-size: .875rem;
  line-height: 1.6;
}

.modal-divider {
  height: 1px;
  background: var(--gray-100);
  margin: .25rem 0;
}

.modal-deliverables-heading {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: .5rem;
}

.modal-deliverables ul {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.modal-deliverables li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .85rem;
  color: var(--text);
}
.modal-deliverables li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.modal-cta {
  margin-top: .5rem;
  align-self: flex-start;
}

/* ── Modal panels (info ↔ contact) ── */
.modal-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: panelIn .28s ease both;
}

.modal-panel--hidden {
  display: none;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

.modal-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding: 0;
  margin-bottom: .25rem;
  transition: color var(--transition), gap var(--transition);
}
.modal-back:hover { color: var(--navy-800); gap: .6rem; }
.modal-back svg { width: 14px; height: 14px; }

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.modal-form .form-group { margin-bottom: 1rem; }

.modal-form .btn { margin-top: .25rem; }

.modal-form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  text-align: center;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  margin-top: .5rem;
}
.modal-form-success.visible { display: flex; }
.modal-form-success svg { width: 36px; height: 36px; color: #22c55e; }
.modal-form-success strong { font-size: 1rem; color: var(--navy-800); }
.modal-form-success p { font-size: .85rem; color: var(--text-muted); }

@keyframes btn-spin { to { transform: rotate(360deg); } }
.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(15,23,42,.25);
  border-top-color: var(--navy-900, #0f172a);
  border-radius: 50%;
  animation: btn-spin .65s linear infinite;
  flex-shrink: 0;
}
.btn--loading .btn-spinner { display: block; }
.btn--loading > span:not(.btn-spinner),
.btn--loading > svg { display: none; }

@media (max-width: 680px) {
  .modal-overlay {
    align-items: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
  }
  .modal {
    grid-template-columns: 1fr;
    grid-template-rows: 200px auto;
    max-height: none;
    margin: auto;
  }
  .modal-image-wrap { min-height: unset; }
  .modal-body { padding: 1.5rem; }
  .modal-title { font-size: 1.4rem; }
}

/* ═══════════════════════════════════════════
   PHILOSOPHY
═══════════════════════════════════════════ */
.philosophy {
  padding: 7rem 0;
  background: var(--navy-900);
  color: var(--white);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.philosophy-text .section-label {
  color: var(--gold-400);
}

.philosophy-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.philosophy-text p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.philosophy-text blockquote {
  border-left: 3px solid var(--gold-500);
  padding-left: 1.5rem;
  margin-top: 2.5rem;
}
.philosophy-text blockquote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: .5rem;
}
.philosophy-text blockquote cite {
  font-size: .85rem;
  color: var(--gold-400);
  font-style: normal;
  font-weight: 600;
}

/* Concentric rings diagram */
.philosophy-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-rings {
  position: relative;
  width: 340px;
  height: 340px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-slow);
}

.ring-outer {
  inset: 0;
  border-color: rgba(201,168,76,.35);
  background: rgba(201,168,76,.04);
  animation: spin-slow 30s linear infinite;
}
.ring-middle {
  inset: 15%;
  border-color: rgba(201,168,76,.5);
  background: rgba(201,168,76,.06);
  animation: spin-slow 20s linear infinite reverse;
}
.ring-inner {
  inset: 33%;
  border-color: var(--gold-500);
  background: rgba(201,168,76,.12);
  animation: spin-slow 15s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ring-label {
  position: absolute;
  text-align: center;
  animation: counter-spin-slow var(--duration, 30s) linear infinite;
}
.ring-outer .ring-label {
  top: 10%;
  right: 10%;
  --duration: 30s;
  animation-direction: reverse;
}
.ring-middle .ring-label {
  bottom: 10%;
  left: 5%;
  --duration: 20s;
}
.ring-inner .ring-label {
  --duration: 15s;
  animation-direction: reverse;
}

@keyframes counter-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ring-label strong {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.ring-label span {
  font-size: .65rem;
  color: rgba(255,255,255,.45);
}

.philosophy-rings:hover .ring-outer { border-color: rgba(201,168,76,.6); }
.philosophy-rings:hover .ring-middle { border-color: var(--gold-400); }
.philosophy-rings:hover .ring-inner { background: rgba(201,168,76,.2); }

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process {
  padding: 7rem 0;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 0 1rem;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color var(--transition);
}
.process-step:hover .step-number {
  color: var(--gold-400);
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: .75rem;
}

.step-content p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.65;
}

.process-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-200), var(--gold-500), var(--gray-200));
  margin-top: 1.75rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about {
  padding: 7rem 0;
  background: var(--gray-50);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-card {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-xl);
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(201,168,76,.08);
}

.about-card-quote {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: .8;
  color: var(--gold-500);
  margin-bottom: 1rem;
  display: block;
}

.about-card p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  position: relative;
}

.about-card-rule {
  width: 48px;
  height: 2px;
  background: var(--gold-500);
  margin: 2rem 0 1.5rem;
}

.about-card-sig {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.about-card-sig strong {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.about-card-sig span {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

.about-text .section-label {
  color: var(--gold-500);
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  color: var(--navy-800);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-diamond {
  width: 10px;
  height: 10px;
  background: var(--gold-500);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: .35rem;
}

.value-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: .2rem;
}
.value-item p {
  font-size: .875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  padding: 7rem 0;
  background: var(--white);
}

.contact .section-header h2 {
  color: var(--navy-800);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

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

.form-group input,
.form-group textarea {
  font-family: 'Poppins', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  transition: var(--transition);
  width: 100%;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  margin-top: 1.5rem;
}
.form-success.visible {
  display: flex;
}
.form-success svg {
  width: 40px;
  height: 40px;
  color: #22c55e;
}
.form-success strong {
  font-size: 1.1rem;
  color: var(--navy-800);
}
.form-success p {
  color: var(--text-muted);
  font-size: .9rem;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: .5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-400);
}

.contact-item strong {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy-800);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .25rem;
}
.contact-item a,
.contact-item span {
  font-size: .95rem;
  color: var(--text-muted);
}
.contact-item a:hover { color: var(--gold-600); }

.contact-guarantee {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1rem;
}

.guarantee-icon {
  font-size: 1.1rem;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: .1rem;
}

.contact-guarantee p {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
}
.contact-guarantee strong {
  color: var(--gold-400);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy-900);
  padding: 3rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}

.footer-brand p {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  font-style: italic;
  max-width: 300px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold-400); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.25);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .process-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--gray-200), var(--gold-500), var(--gray-200));
    margin: 0 auto;
  }

  .philosophy-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .philosophy-visual { order: -1; }

  .philosophy-rings {
    width: 260px;
    height: 260px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) { border-right: none; }
  .stat { border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat:nth-child(3),
  .stat:nth-child(4) { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 22, 40, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.25rem; }
  .nav-cta { padding: .75rem 2rem !important; font-size: 1.1rem !important; }
  .nav-toggle { display: flex; z-index: 101; }

  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: center; }

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

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

  .section-header { margin-bottom: 2.5rem; }

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

  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero { padding: 6rem 1.25rem 5rem; }
  .about-card { padding: 2rem; }
  .contact-form { padding: 1.5rem; }
}
