@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --navy: #0B1C2E;        /* Deep Slate Navy */
  --navy-deep: #050B12;   /* Premium Midnight Navy */
  --navy-light: #12283E;  /* Lighter Slate Navy */
  --navy-accent: #19344E; /* Vibrant Navy Slate */
  --gold: #C5A059;        /* Sophisticated Warm Brass Gold */
  --gold-light: #E0CE8D;  /* Radiant Soft Gold */
  --gold-dark: #9E7D3F;   /* Antique Burnished Bronze */
  --cream: #FAF8F3;       /* Premium Warm Linen Cream */
  --cream-dim: #F2EBE0;   /* Muted Linen Overlay */
  --cream-dark: #E4D8C5;  /* Deep Warm Contrast Cream */
  --ink: #111A24;         /* Rich Slate Ink Charcoal */
  --ink-soft: #4B5A6A;    /* Refined Slate Blue Gray */
  --white: #FFFFFF;
  --glass-light: rgba(255, 255, 255, 0.75);
  --glass-dark: rgba(5, 11, 18, 0.82);
  --border-light: rgba(11, 26, 36, 0.06);
  --border-dark: rgba(197, 160, 89, 0.15);
  --shadow-soft: 0 12px 36px rgba(11, 26, 36, 0.03);
  --shadow-medium: 0 24px 50px rgba(11, 26, 36, 0.06);
  --shadow-gold: 0 12px 30px rgba(197, 160, 89, 0.12);
  --max: 1200px;
  --gap: 32px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--cream);
  /* Elegant, subtle engineering dot grid */
  background-image: 
    radial-gradient(rgba(197, 160, 89, 0.05) 1px, transparent 1px),
    radial-gradient(rgba(197, 160, 89, 0.03) 1.5px, transparent 1.5px);
  background-size: 36px 30px;
  background-position: 0 0, 18px 15px;
  color: var(--ink);
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

h1, h2, h3 {
  font-family: 'Cinzel', serif;
  margin: 0;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.03em;
  line-height: 1.25;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-light);
  color: var(--navy-deep);
}

/* ---------- eyebrow / utility text ---------- */
.eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--on-cream {
  color: var(--gold-dark);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold-dark);
}
.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(197, 160, 89, 0.25);
}
.btn--primary:hover::before {
  left: 100%;
}
.btn--primary:active {
  transform: translateY(-1px);
}
.btn--lg {
  padding: 18px 40px;
  font-size: 0.85rem;
}
.btn--ghost {
  border-color: rgba(197, 160, 89, 0.4);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover {
  border-color: var(--gold-light);
  color: #ffffff;
  background: rgba(197, 160, 89, 0.1);
  transform: translateY(-2px);
}
.btn--ghost-dark {
  border-color: rgba(11, 28, 44, 0.2);
  color: var(--navy);
  background: transparent;
}
.btn--ghost-dark:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(197, 160, 89, 0.05);
  transform: translateY(-2px);
}
.btn-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.btn-note--dark {
  color: var(--ink-soft);
}

/* ---------- trust chips ---------- */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream-dim);
  background: rgba(197, 160, 89, 0.04);
  backdrop-filter: blur(4px);
  transition: var(--transition-smooth);
}
.chip:hover {
  border-color: var(--gold-light);
  background: rgba(197, 160, 89, 0.08);
}
.chip svg {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
  flex: none;
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-dark);
  backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  transition: var(--transition-smooth);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__brand svg {
  width: 32px;
  height: 32px;
  flex: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__brand:hover svg {
  transform: rotate(180deg);
}
.nav__wordmark {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  color: var(--white);
}
.nav__wordmark span {
  color: var(--gold);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}
.nav__links a:hover, .nav__links a[aria-current="page"] {
  color: var(--gold-light);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition-smooth);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after {
  left: 0;
  right: 0;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__toggle {
  display: none;
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  position: relative;
  cursor: pointer;
}
.nav__toggle span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition-smooth);
}
.nav__toggle span:nth-child(1) { top: 12px; }
.nav__toggle span:nth-child(2) { top: 18px; }
.nav__toggle span:nth-child(3) { top: 24px; }

.nav.open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(197, 160, 89, 0.1), transparent 50%),
    radial-gradient(ellipse at 20% 70%, rgba(18, 40, 62, 0.45), transparent 60%),
    linear-gradient(rgba(197, 160, 89, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 160, 89, 0.02) 1px, transparent 1px),
    var(--navy);
  background-size: auto, auto, 40px 40px, 40px 40px;
  padding: 140px 0 110px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}
.hero__ring {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 580px;
  height: 580px;
  opacity: 0.85;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  line-height: 1.15;
  color: var(--white);
  font-weight: 700;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
}
.hero__sub {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
  max-width: 580px;
  line-height: 1.75;
}
.hero .btn-row {
  margin-top: 40px;
}

/* hero ring animation */
.ring-draw { transform-origin: 65px 65px; }
.ring-draw .ring-outer { transform-origin: 65px 65px; opacity: 0; animation: ringFade .9s ease forwards .15s; }
.ring-draw .ring-ticks line { opacity: 0; animation: tickFade .5s ease forwards; }
.ring-draw .ring-ticks line:nth-child(1) { animation-delay: .5s; }
.ring-draw .ring-ticks line:nth-child(2) { animation-delay: .6s; }
.ring-draw .ring-ticks line:nth-child(3) { animation-delay: .7s; }
.ring-draw .ring-ticks line:nth-child(4) { animation-delay: .8s; }
.ring-draw .ring-main {
  opacity: 0;
  transform: rotate(-32deg);
  transform-origin: 65px 65px;
  animation: ringMain 1.3s cubic-bezier(.16, 1, 0.3, 1) forwards .35s;
}
.ring-draw .ring-tail { opacity: 0; transform: scale(.4); transform-origin: 101px 95px; animation: tailPop .5s ease forwards 1.25s; }

@keyframes ringFade { to { opacity: 1; } }
@keyframes tickFade { to { opacity: .55; } }
@keyframes ringMain { to { opacity: 1; transform: rotate(60deg); } }
@keyframes tailPop { to { opacity: 1; transform: scale(1); } }

@media (prefers-reduced-motion: reduce) {
  .ring-draw .ring-outer, .ring-draw .ring-ticks line, .ring-draw .ring-main, .ring-draw .ring-tail {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  .ring-draw .ring-main { transform: rotate(60deg) !important; }
}

/* ---------- value strip ---------- */
.value-strip {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}
.value-strip__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.value-strip__item {
  padding: 0 24px;
  border-left: 1px solid rgba(197, 160, 89, 0.15);
  position: relative;
}
.value-strip__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 24px;
  background: var(--gold);
}
.value-strip__item:first-child {
  border-left: none;
  padding-left: 0;
}
.value-strip__item:first-child::after {
  display: none;
}
.value-strip__item h3 {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.value-strip__item p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* ---------- sections ---------- */
.section {
  padding: 110px 0;
  position: relative;
}
.section--cream {
  background: transparent; /* inherits the custom grid body background */
}
.section--navy {
  background: 
    radial-gradient(circle at 10% 20%, rgba(18, 40, 62, 0.4), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(197, 160, 89, 0.05), transparent 50%),
    var(--navy);
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}
.section--navy-deep {
  background: 
    radial-gradient(circle at 50% 50%, rgba(197, 160, 89, 0.04), transparent 60%),
    var(--navy-deep);
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}
.section-head {
  max-width: 680px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.8vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.section-head p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}
.section--navy .section-head p, .section--navy-deep .section-head p {
  color: rgba(255, 255, 255, 0.72);
}
.section--navy .section-head h2, .section--navy-deep .section-head h2 {
  color: var(--white);
}

/* ---------- problem / risk section ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.problem-card {
  border: 1px solid rgba(197, 160, 89, 0.15);
  background: rgba(255, 255, 255, 0.02);
  padding: 40px 32px;
  border-radius: 4px;
  border-top: 3px solid var(--gold);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.03), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}
.problem-card .num {
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 20px;
  position: relative;
}
.problem-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 14px;
  line-height: 1.45;
  position: relative;
}
.problem-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
}
.problem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: 0 20px 48px rgba(5, 11, 18, 0.3);
}
.problem-card:hover::before {
  opacity: 1;
}

/* ---------- service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(11, 26, 36, 0.05);
  border-top: 3px solid var(--gold);
  padding: 44px 36px;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(197, 160, 89, 0.22);
  border-top-color: var(--gold-light);
}
.service-card svg {
  width: 44px;
  height: 44px;
  color: var(--gold-dark);
  margin-bottom: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}
.service-card:hover svg {
  transform: rotate(6deg) scale(1.1);
  color: var(--gold);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-card .card-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}
.service-card .card-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* ---------- outcome strip inside cards ---------- */
.outcome {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--navy-light);
  background: rgba(197, 160, 89, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  padding: 12px 16px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.outcome b {
  color: var(--gold-dark);
  font-weight: 700;
}

/* Staggered Desktop Layout for Grids to break predictability */
@media (min-width: 981px) {
  .problem-grid .problem-card:nth-child(2),
  .services-grid .service-card:nth-child(2),
  .services-grid .service-card:nth-child(5),
  .services-grid .service-card:nth-child(8) {
    transform: translateY(24px);
  }
  .problem-grid .problem-card:nth-child(3),
  .services-grid .service-card:nth-child(3),
  .services-grid .service-card:nth-child(6),
  .services-grid .service-card:nth-child(9) {
    transform: translateY(48px);
  }
  .section .problem-grid,
  .section .services-grid {
    margin-bottom: 56px;
  }
  /* Restore original positions on hover but keep active stagger feel */
  .problem-grid .problem-card:nth-child(2):hover,
  .services-grid .service-card:nth-child(2):hover,
  .services-grid .service-card:nth-child(5):hover,
  .services-grid .service-card:nth-child(8):hover {
    transform: translateY(16px) scale(1.02);
  }
  .problem-grid .problem-card:nth-child(3):hover,
  .services-grid .service-card:nth-child(3):hover,
  .services-grid .service-card:nth-child(6):hover,
  .services-grid .service-card:nth-child(9):hover {
    transform: translateY(40px) scale(1.02);
  }
}

/* ---------- why independent / reasons ---------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.reason {
  padding: 10px;
}
.reason svg {
  width: 38px;
  height: 38px;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0.9;
}
.reason h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.reason p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid rgba(11, 26, 36, 0.05);
  border-radius: 6px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}
.faq-item[open] {
  box-shadow: var(--shadow-medium);
  border-color: rgba(197, 160, 89, 0.2);
}
.faq-item summary {
  padding: 24px 32px;
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold-dark);
  flex: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item[open] summary::after {
  transform: rotate(135deg);
  color: var(--gold);
}
.faq-item p {
  padding: 0 32px 28px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 700px;
}

/* ---------- about teaser / cta bands ---------- */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
}
.split h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 24px;
}
.split p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-size: 1.05rem;
}
.split p + p {
  margin-top: 18px;
}
.split-figure {
  border: 1px solid rgba(197, 160, 89, 0.2);
  padding: 48px;
  border-radius: 6px;
  background: rgba(197, 160, 89, 0.03);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}
.split-figure::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.06), transparent 60%);
  pointer-events: none;
}
.split-figure svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.cta-band {
  background: 
    radial-gradient(circle at 50% -50%, rgba(197, 160, 89, 0.12), transparent 70%),
    var(--navy-deep);
  text-align: center;
  padding: 110px 0;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  position: relative;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.25;
}
.cta-band .btn-row {
  justify-content: center;
}

/* ---------- footer ---------- */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.55);
  padding: 96px 0 36px;
  border-top: 1px solid rgba(197, 160, 89, 0.18);
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.3), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand svg {
  width: 28px;
  height: 28px;
}
.footer-brand span {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  font-size: 1.1rem;
}
.footer-col h4 {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 700;
}
.footer-col ul li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.footer-col ul li a {
  transition: var(--transition-smooth);
}
.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}
.footer-bottom {
  margin-top: 72px;
  padding-top: 28px;
  border-top: 1px solid rgba(197, 160, 89, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- page hero (sub-pages) ---------- */
.page-hero {
  background:
    radial-gradient(ellipse at 80% 30%, rgba(197, 160, 89, 0.08), transparent 50%),
    repeating-linear-gradient(0deg, rgba(197, 160, 89, 0.02) 0px, rgba(197, 160, 89, 0.02) 1px, transparent 1px, transparent 46px),
    repeating-linear-gradient(90deg, rgba(197, 160, 89, 0.02) 0px, rgba(197, 160, 89, 0.02) 1px, transparent 1px, transparent 46px),
    var(--navy);
  padding: 160px 0 90px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
}
.page-hero p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 600px;
  font-size: 1.1rem;
  line-height: 1.75;
}
.page-hero__ring {
  position: absolute;
  right: -100px;
  top: -80px;
  width: 500px;
  height: 500px;
  opacity: 0.22;
  pointer-events: none;
}

/* ---------- services list page ---------- */
.service-row {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  padding: 72px 0;
  border-bottom: 1px solid rgba(11, 26, 36, 0.08);
  align-items: start;
}
.service-row:first-child {
  padding-top: 0;
}
.service-row:last-child {
  border-bottom: none;
}
.service-row__icon {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: sticky;
  top: 120px;
}
.service-row__icon svg {
  width: 48px;
  height: 48px;
  color: var(--gold-dark);
  flex: none;
  background: rgba(197, 160, 89, 0.06);
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(197, 160, 89, 0.12);
}
.service-row__icon-text h2 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.service-row__icon-text p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}
.service-row__body p.lead {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 24px;
}
.service-row__body h4 {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
  font-weight: 700;
}
.service-row__list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}
.service-row__list li {
  display: flex;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.service-row__list li svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 5px;
  color: var(--gold);
}
.service-row__best {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  background: rgba(197, 160, 89, 0.04);
  padding: 12px 18px;
  border-left: 2px solid var(--gold);
  border-radius: 0 4px 4px 0;
}
.service-row__best b {
  font-style: normal;
  color: var(--navy);
  font-weight: 700;
}

/* ---------- about page ---------- */
.intro-block {
  max-width: 820px;
  margin: 0 auto 96px;
  text-align: center;
}
.intro-block p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--ink-soft);
}
.intro-block p + p {
  margin-top: 24px;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  margin-bottom: 110px;
}
.pillar {
  border-top: 3px solid var(--gold);
  background: var(--white);
  padding: 40px 32px;
  border-radius: 0 0 6px 6px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}
.pillar h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  color: var(--navy);
}
.pillar p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.75;
}
.process {
  display: grid;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(11, 26, 36, 0.08);
}
.process-step:last-child {
  border-bottom: none;
}
.process-step__num {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  color: var(--gold-dark);
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
}
.process-step__num::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-light);
  position: absolute;
  right: 12px;
}
.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.process-step p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 600px;
}

/* ---------- contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid rgba(11, 26, 36, 0.05);
  padding: 48px;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.form-row .form-field {
  margin-bottom: 0;
}
.form-field label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-field input, .form-field select, .form-field textarea {
  font-family: 'Raleway', sans-serif;
  font-size: 0.96rem;
  padding: 14px 16px;
  border: 1px solid rgba(11, 26, 36, 0.12);
  border-radius: 4px;
  background: #FCFAF6;
  color: var(--ink);
  transition: var(--transition-smooth);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.12);
}
.form-field textarea {
  resize: vertical;
  min-height: 140px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 16px;
  line-height: 1.5;
}
.form-success {
  display: none;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.25);
  padding: 18px 24px;
  border-radius: 4px;
  font-size: 0.95rem;
  margin-bottom: 24px;
  color: var(--gold-dark);
  font-weight: 600;
  line-height: 1.5;
}
.form-success.show {
  display: block;
}

.info-card {
  background: 
    radial-gradient(circle at 10% 10%, rgba(197, 160, 89, 0.08), transparent 45%),
    var(--navy);
  color: var(--white);
  padding: 48px;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(197, 160, 89, 0.15);
}
.info-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.info-list {
  display: grid;
  gap: 24px;
  margin-bottom: 36px;
}
.info-list dt {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
  font-weight: 700;
}
.info-list dd {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
.info-card hr {
  border: none;
  border-top: 1px solid rgba(197, 160, 89, 0.18);
  margin: 32px 0;
}
.info-card .eyebrow {
  margin-bottom: 12px;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: block;
  }
  .nav__right .btn--ghost {
    display: none;
  }
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--navy-deep);
    padding: 32px 32px 40px;
    gap: 24px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    box-shadow: 0 30px 60px rgba(5, 11, 18, 0.4);
    animation: slideDown 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .split-figure {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 120px 0 80px;
  }
  .hero__ring {
    width: 380px;
    height: 380px;
    right: -120px;
  }
  .value-strip__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
  .value-strip__item {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    padding-top: 24px;
  }
  .value-strip__item::after {
    top: -1px;
    left: 0;
    width: 24px;
    height: 1px;
  }
  .value-strip__item:first-child {
    border-top: none;
    padding-top: 0;
  }
  .section {
    padding: 72px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }
  .service-row__icon {
    position: static;
  }
  .pillars {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }
  .process-step__num::after {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 130px 0 64px;
  }
  .contact-form {
    padding: 32px 24px;
  }
  .info-card {
    padding: 32px 24px;
  }
}
