/* =============================================
   LONGEVITA LIGHT — Insurance Management Corp
   Design: Warm Ivory / Champagne / Editorial Light
   ============================================= */

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

/* ===== TOKENS ===== */
:root {
  --ivory:        #faf7f2;
  --ivory-warm:   #f5f0e8;
  --ivory-deep:   #ede6d8;
  --parchment:    #e8dfc9;
  --gold:         #a07840;
  --gold-light:   #c9a96e;
  --gold-bright:  #d4b47e;
  --gold-pale:    #f0e6d0;
  --gold-dark:    #7a5a28;
  --obsidian:     #1a1612;
  --ink:          #2c2418;
  --charcoal:     #3d3226;
  --warm-grey:    #8a7d6e;
  --warm-grey-lt: #b5a898;
  --border-gold:  rgba(160,120,64,0.18);
  --border-warm:  rgba(160,120,64,0.10);
  --border-dark:  rgba(44,36,24,0.10);

  --font-display: 'Didot', 'Bodoni MT', 'Playfair Display', 'Times New Roman', serif;
  --font-body:    'Optima', 'Candara', 'Gill Sans', 'Segoe UI', sans-serif;

  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;

  --shadow:    0 2px 16px rgba(44,36,24,0.08);
  --shadow-md: 0 6px 32px rgba(44,36,24,0.10);
  --shadow-lg: 0 16px 56px rgba(44,36,24,0.12);
}

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

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== SUBTLE PAPER TEXTURE ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
p { color: var(--warm-grey); line-height: 1.8; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 76px;
}

.logo { flex-shrink: 0; margin-right: auto; display: flex; align-items: center; gap: 12px; }
.logo-svg { width: 36px; height: 36px; flex-shrink: 0; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.logo-tag {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; }

nav { margin-right: 24px; }
nav > ul { display: flex; align-items: center; gap: 4px; }
nav > ul > li { position: relative; }
nav > ul > li > a {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
  white-space: nowrap;
}
nav > ul > li > a:hover { color: var(--gold-dark); }

nav > ul > li > ul { display: none; position: absolute; top: 100%; left: 0; padding-top: 8px; }
nav > ul > li:hover > ul { display: block; }
nav > ul > li > ul > .dd {
  background: var(--ivory);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 10px 0;
  box-shadow: var(--shadow-lg);
}
nav > ul > li > ul li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-grey);
  transition: color 0.2s, background 0.2s;
}
nav > ul > li > ul li a:hover { color: var(--gold-dark); background: var(--ivory-warm); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold); color: var(--ivory); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-right: 8px;
}
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--charcoal); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  background: var(--ivory);
}

/* Light geometric background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160,120,64,0.06) 0%, transparent 65%);
  right: -200px; top: -200px;
}
.hero-bg::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,223,201,0.7) 0%, transparent 70%);
  left: -80px; bottom: -100px;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(160,120,64,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160,120,64,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 80% 50%, black 30%, transparent 70%);
}

/* Photo: city through window — light/dawn version */
.hero {
  background-image:
    linear-gradient(
      135deg,
      rgba(250,247,242,0.96) 0%,
      rgba(250,247,242,0.82) 45%,
      rgba(245,240,232,0.92) 100%
    ),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  padding: 100px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold-light); }

.hero h1 { margin-bottom: 1.6rem; }
.hero-desc {
  font-size: 1.1rem;
  color: var(--warm-grey);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* Hero stat card */
.hero-card {
  background: var(--ivory-warm);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}
.hero-stat { margin-bottom: 32px; }
.hero-stat:last-child { margin-bottom: 0; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.hero-stat-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-grey); }
.hero-card-divider { height: 1px; background: var(--border-warm); margin: 24px 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--charcoal); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--warm-grey);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-gold);
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--gold-dark); border-color: var(--gold); }
.btn-ghost .arrow { transition: transform 0.2s; }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ===== SECTIONS ===== */
.section { padding: 120px 0; position: relative; z-index: 1; }
.section-warm { background: var(--ivory-warm); }
.section-parchment { background: var(--ivory-deep); }
.section-ink { background: var(--ink); }

.section-accent {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

/* ===== INTRO STRIP ===== */
.intro {
  background: var(--ivory-warm);
  padding: 80px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative; z-index: 1;
}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--ink);
  line-height: 1.4;
  font-weight: 400;
  border-left: 2px solid var(--gold-light);
  padding-left: 28px;
}
.intro-quote em { color: var(--gold-dark); font-style: normal; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-item {
  background: var(--ivory);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
  border-right: 1px solid var(--border-dark);
}
.service-item:nth-child(3n) { border-right: none; }
.service-item:hover { background: var(--ivory-warm); }
.service-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 40px; right: 40px;
  height: 1px;
  background: var(--border-dark);
}
.service-item:nth-last-child(-n+3)::after { display: none; }
.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(160,120,64,0.12);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.service-item h3 { font-size: 1.2rem; margin-bottom: 12px; }
.service-item p { font-size: 0.88rem; line-height: 1.7; }
.service-arrow {
  display: inline-block;
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 20px;
  transition: transform 0.2s;
}
.service-item:hover .service-arrow { transform: translateX(6px); }

/* ===== WHO WE SERVE ===== */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.serve-card {
  background: var(--ivory);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  box-shadow: var(--shadow);
}
.serve-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.serve-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}
.serve-icon {
  width: 52px; height: 52px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.3rem;
  background: var(--gold-pale);
}
.serve-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.serve-card p { font-size: 0.88rem; }

/* ===== PILLARS ===== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.pillar {
  padding: 44px 32px;
  border-right: 1px solid var(--border-dark);
  background: var(--ivory);
  transition: background 0.3s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--ivory-warm); }
.pillar-icon { font-size: 1.6rem; margin-bottom: 16px; }
.pillar h3 { font-size: 1rem; margin-bottom: 10px; }
.pillar p { font-size: 0.85rem; }

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-light));
  z-index: 0;
}
.step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-dark);
  box-shadow: var(--shadow);
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.85rem; }

/* ===== ABOUT ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-visual-box {
  background: var(--ivory-warm);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-visual-box::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}
.about-metric { margin-bottom: 36px; }
.about-metric:last-child { margin-bottom: 0; }
.about-metric-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-metric-label { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-grey); margin-top: 6px; }
.about-metric-divider { height: 1px; background: var(--border-dark); margin: 28px 0; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--ivory-warm);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--ivory);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold-light); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--ivory); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem; flex-shrink: 0;
  background: var(--gold-pale);
}
.contact-info-item h4 { font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold-dark); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.92rem; color: var(--charcoal); margin: 0; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-dark);
  background-image:
    linear-gradient(
      to bottom,
      rgba(250,247,242,0.94) 0%,
      rgba(250,247,242,0.86) 55%,
      rgba(250,247,242,0.97) 100%
    ),
    url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1920&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center 35%;
  background-attachment: fixed;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160,120,64,0.05) 0%, transparent 65%);
  right: -200px; top: -200px;
  z-index: 0;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero-desc { font-size: 1.1rem; max-width: 580px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--ink);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image:
    linear-gradient(to bottom, rgba(26,22,18,0.96) 0%, rgba(26,22,18,0.92) 100%),
    url('https://images.unsplash.com/photo-1541701494587-cb58502866ab?w=1920&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(160,120,64,0.07) 0%, transparent 70%);
}
.cta-band h2 { color: var(--ivory); position: relative; z-index: 1; margin-bottom: 0.8rem; }
.cta-band p { color: rgba(250,247,242,0.55); position: relative; z-index: 1; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band-actions { position: relative; z-index: 1; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--gold); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--gold-bright); }
.cta-band .btn-ghost { color: rgba(250,247,242,0.6); border-color: rgba(160,120,64,0.3); }
.cta-band .btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ===== PARTNERS STRIP ===== */
.partners-strip {
  padding: 48px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  background: var(--ivory-deep);
  position: relative; z-index: 1;
}
.partners-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--warm-grey-lt); text-align: center; margin-bottom: 32px; }
.partners-logos { display: flex; gap: 48px; justify-content: center; align-items: center; flex-wrap: wrap; }
.partner-logo-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--warm-grey);
  opacity: 0.5;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.partner-logo-item:hover { opacity: 0.85; }

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
  position: relative; z-index: 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-top: 16px; color: rgba(250,247,242,0.4); }
.footer-brand .logo-name { color: var(--ivory); }
.footer-brand .logo-tag { color: var(--gold); }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(250,247,242,0.4); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.75rem; color: rgba(250,247,242,0.2); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.75rem; color: rgba(250,247,242,0.2); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(250,247,242,0.5); }

/* ===== 404 ===== */
.page-404 {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
  background: var(--ivory-warm);
  position: relative; overflow: hidden;
}
.page-404::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160,120,64,0.07) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.page-404-inner { position: relative; z-index: 1; max-width: 580px; }
.page-404-num {
  font-family: var(--font-display);
  font-size: clamp(7rem, 20vw, 14rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(160,120,64,0.25);
  letter-spacing: -0.05em;
  display: block;
  margin-bottom: -2rem;
}
.page-404 h1 { font-size: clamp(1.4rem, 4vw, 2.2rem); margin-bottom: 1rem; }
.page-404 p { margin-bottom: 2.5rem; }
.page-404-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-gold);
  color: var(--gold-dark); font-size: 0.88rem;
  padding: 12px 22px; border-radius: 50px;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: var(--gold-pale); border-color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 500px; }
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-item:nth-child(2n) { border-right: none; }
  .service-item:nth-child(3n) { border-right: 1px solid var(--border-dark); }
  .pillars { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  nav {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: rgba(250,247,242,0.99);
    padding: 32px 24px;
    overflow-y: auto;
  }
  nav.open { display: block; }
  nav > ul { flex-direction: column; gap: 4px; }
  nav > ul > li > a { font-size: 1.1rem; padding: 14px 16px; }
  nav > ul > li > ul { display: none !important; position: static; padding: 0; }
  nav > ul > li > ul.mob-open { display: block !important; }
  nav > ul > li > ul > .dd { box-shadow: none; border: none; background: transparent; padding: 0 0 0 16px; }
  .header-cta { display: none; }
  .serve-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .pillar:last-child { border-bottom: none; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-form-wrap { padding: 32px 24px; }
  .hero, .page-hero { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
