/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --navy:       #1B2D3E;
  --navy-deep:  #111E2A;
  --navy-mid:   #243548;
  --gold:       #C09A5B;
  --gold-light: #D4B07A;
  --gold-pale:  #EDD9A3;
  --cream:      #F7F3ED;
  --cream-dark: #EDE7DC;
  --stone:      #B8AA98;
  --text:       #2A2420;
  --text-mid:   #5C534A;
  --text-light: #8C8278;
  --white:      #FFFFFF;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', 'Helvetica Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 20px;
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════ */
.wrap       { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.wrap-tight { max-width: 840px;  margin: 0 auto; padding: 0 48px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.ruled-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 52px;
}
.ruled-heading::before {
  content: '';
  flex: 0 0 48px;
  height: 1px;
  background: var(--gold);
}

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

.section-h { font-size: clamp(32px, 4vw, 48px); color: var(--navy); }
.section-h-light { font-size: clamp(32px, 4vw, 48px); color: var(--white); }

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

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(27,45,62,0.35);
}
.btn-outline-navy:hover { border-color: var(--navy); background: var(--cream-dark); }

.btn-arrow::after {
  content: '→';
  font-size: 18px;
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   ▌NAVIGATION
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.35s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 48px;
  background: rgba(17, 30, 42, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 154, 91, 0.2);
}

/* SVG Logo in nav */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-svg { height: 44px; width: auto; }
.nav-logo-text {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  color: var(--white);
  line-height: 1.25;
}
.nav-logo-text span {
  display: block;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.72);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 500;
  padding: 9px 20px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--navy-deep); }

/* ═══════════════════════════════════════════
   ▌HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy-deep);
}

/* Warm home image overlay - use a CSS gradient to simulate the warm interior */
.hero-scene {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(180,130,70,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(192,154,91,0.08) 0%, transparent 50%),
    linear-gradient(135deg, rgba(17,30,42,0.0) 0%, rgba(17,30,42,0.1) 100%);
  /* Interior home photo suggestion texture */
  background-image:
    radial-gradient(ellipse at 65% 35%, rgba(200,160,90,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 65%, rgba(180,140,80,0.10) 0%, transparent 45%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17,30,42,0.88) 0%,
    rgba(17,30,42,0.70) 55%,
    rgba(17,30,42,0.40) 100%
  );
}

/* Decorative vertical rule */
.hero-rule {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent 10%, var(--gold) 40%, var(--gold) 60%, transparent 90%);
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-content .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.hero-left { }

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 6px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-pale);
  font-weight: 300;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(192,154,91,0.75);
  margin: 18px 0 28px;
}

.hero-divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 28px;
  opacity: 0.6;
}

.hero-copy {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 300;
  color: rgba(255,255,255,0.76);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Right side — decorative card stack */
.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-card-stack {
  position: relative;
  width: 360px;
  height: 440px;
}

.hero-card {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
}

.hc-main {
  width: 280px;
  height: 340px;
  top: 0;
  right: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(192,154,91,0.25);
}

.hc-accent {
  width: 220px;
  height: 200px;
  bottom: 0;
  left: 0;
  background: rgba(192,154,91,0.12);
  border: 1px solid rgba(192,154,91,0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

/* Interior illustration inside hero card */
.hc-interior {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hc-room {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2a3a4a 0%, #1e2d3c 40%, #162230 100%);
}
/* Window light effect */
.hc-window {
  position: absolute;
  top: 12%;
  left: 20%;
  width: 55%;
  height: 45%;
  background: linear-gradient(160deg, rgba(220,190,130,0.28) 0%, rgba(200,160,90,0.12) 100%);
  border: 1px solid rgba(192,154,91,0.3);
  border-radius: 1px;
}
.hc-window::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(192,154,91,0.3);
}
.hc-window::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(192,154,91,0.3);
}
/* Floor */
.hc-floor {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(160,120,70,0.2), transparent);
}
/* Furniture silhouette */
.hc-chair {
  position: absolute;
  bottom: 22%;
  left: 18%;
  width: 28%;
  height: 28%;
  background: rgba(192,154,91,0.15);
  border-radius: 2px 2px 0 0;
  border: 1px solid rgba(192,154,91,0.2);
}
.hc-chair::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 5%;
  right: 5%;
  height: 22%;
  background: rgba(192,154,91,0.1);
  border: 1px solid rgba(192,154,91,0.15);
}

.hc-overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(17,30,42,0.9), transparent);
}
.hc-overlay-text p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.hc-accent-text {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* Gold corner ornament */
.hero-ornament {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  opacity: 0.5;
}

/* ═══════════════════════════════════════════
   ▌TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(192,154,91,0.15);
  border-bottom: 1px solid rgba(192,154,91,0.15);
  padding: 20px 0;
}
.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 0 48px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.trust-label {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.trust-sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════
   ▌INTRO / ABOUT
═══════════════════════════════════════════ */
.intro { padding: 100px 0; }

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

.intro-image-block { position: relative; }

.intro-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--navy-mid);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

/* Warm home interior illustration */
.room-illustration {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(160deg, #263545 0%, #1a2b3c 60%, #141f2b 100%);
}
.room-wall { position: absolute; inset: 0; background: linear-gradient(to bottom, #2a3a4c, #1e2d3e 70%); }
.room-light {
  position: absolute;
  top: -20%;
  left: 10%;
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(220,180,110,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.room-wainscot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: rgba(20,30,40,0.6);
  border-top: 1px solid rgba(192,154,91,0.2);
}
.room-panel {
  position: absolute;
  bottom: 8%;
  left: 8%;
  right: 8%;
  height: 24%;
  border: 1px solid rgba(192,154,91,0.15);
  border-radius: 1px;
}
.room-window-group {
  position: absolute;
  top: 14%;
  left: 14%;
  width: 72%;
  height: 42%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.room-window-pane {
  background: linear-gradient(160deg, rgba(200,170,100,0.22) 0%, rgba(160,130,70,0.08) 100%);
  border: 1px solid rgba(192,154,91,0.3);
  border-radius: 1px;
}
.room-floor-lamp {
  position: absolute;
  bottom: 36%;
  right: 20%;
  width: 3px;
  height: 30%;
  background: rgba(192,154,91,0.3);
}
.room-floor-lamp::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -10px;
  width: 22px;
  height: 14px;
  background: rgba(220,180,100,0.25);
  border-radius: 50% 50% 0 0;
  border: 1px solid rgba(192,154,91,0.3);
}
.room-floor-lamp::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 18px;
  height: 3px;
  background: rgba(192,154,91,0.25);
  border-radius: 2px;
}
.room-sofa {
  position: absolute;
  bottom: 33%;
  left: 8%;
  width: 52%;
  height: 18%;
  background: rgba(192,154,91,0.1);
  border: 1px solid rgba(192,154,91,0.2);
  border-radius: 2px 2px 0 0;
}
.room-sofa::after {
  content: '';
  position: absolute;
  bottom: -18%;
  left: 2%;
  width: 96%;
  height: 20%;
  background: rgba(192,154,91,0.08);
  border: 1px solid rgba(192,154,91,0.15);
}
.room-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px 24px;
  background: linear-gradient(to top, rgba(15,25,35,0.92) 40%, transparent);
}
.room-caption p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Floating stat card */
.intro-stat-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--gold);
  padding: 24px 28px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.intro-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--navy-deep);
  line-height: 1;
  display: block;
}
.intro-stat-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(27,45,62,0.75);
  margin-top: 5px;
  display: block;
}

.intro-text { padding-top: 12px; }

.intro-text .eyebrow { margin-bottom: 8px; }
.intro-text h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}
.intro-text h2 em { font-style: italic; color: var(--gold); }

.intro-text .rule { width: 48px; height: 1px; background: var(--gold); margin-bottom: 28px; opacity: 0.7; }

.intro-text p {
  font-size: 19px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}

.intro-values {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.intro-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.iv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}
.iv-text {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
}
.iv-text strong {
  font-weight: 500;
  color: var(--text);
  font-family: var(--serif);
  font-size: 19px;
}

/* ═══════════════════════════════════════════
   ▌WHAT WE DO
═══════════════════════════════════════════ */
.what-we-do {
  background: #F0EBE1;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.what-we-do::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(192,154,91,0.08);
}
.what-we-do::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(192,154,91,0.06);
}

.what-header { margin-bottom: 64px; }
.what-header .eyebrow { }
.what-header h2 { color: var(--navy); }
.what-header .rule { width: 48px; height: 1px; background: var(--gold); margin: 24px 0 0; opacity: 0.6; }

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.service-item {
  background: #FFFFFF;
  border: 1px solid rgba(192,154,91,0.3);
  padding: 40px 40px 36px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.35s ease;
}
.service-item:hover {
  background: #FDF8F2;
  border-color: var(--gold);
}
.service-item:hover::before { height: 100%; }

.si-number {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: rgba(192,154,91,0.5);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.si-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.si-copy {
  font-size: 17.5px;
  font-weight: 400;
  color: #2A2420;
  line-height: 1.8;
}

/* CTA row within services */
.services-cta-row {
  grid-column: 1 / -1;
  background: rgba(192,154,91,0.18);
  border: 1px solid rgba(192,154,91,0.4);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.scr-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.5;
  max-width: 560px;
}

/* ═══════════════════════════════════════════
   ▌WHO WE WORK WITH
═══════════════════════════════════════════ */
.who { padding: 100px 0; background: var(--cream); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.who-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(192,154,91,0.15);
  padding: 36px 28px;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.who-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 48px rgba(27,45,62,0.08);
  transform: translateY(-4px);
}
.who-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.who-card:hover::after { transform: scaleX(1); }

.wc-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(192,154,91,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.wc-icon svg { width: 22px; height: 22px; fill: var(--gold); }
.wc-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}
.wc-copy {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   ▌HOW WE WORK (PROCESS)
═══════════════════════════════════════════ */
.process {
  background: var(--cream-dark);
  padding: 100px 0;
}

.process-header { text-align: center; margin-bottom: 72px; }
.process-header .eyebrow { justify-content: center; display: flex; align-items: center; gap: 12px; }
.process-header .eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.process-header h2 { font-size: clamp(28px, 3.5vw, 44px); color: var(--navy); margin-top: 10px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 1px;
  background: var(--gold);
  opacity: 0.25;
  z-index: 0;
}

.process-step { padding: 0 24px; text-align: center; position: relative; z-index: 1; }

.ps-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(192,154,91,0.75);
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  transition: all 0.3s ease;
}
.ps-circle:hover { border-color: var(--gold); background: rgba(192,154,91,0.08); }

.ps-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--gold);
}

.ps-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.ps-copy {
  font-size: 17px;
  font-weight: 400;
  color: #2A2420;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   ▌TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  background: var(--navy-deep);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 48px;
  font-family: var(--serif);
  font-size: 320px;
  font-weight: 400;
  color: rgba(192,154,91,0.04);
  line-height: 1;
  pointer-events: none;
}

.testi-header { margin-bottom: 56px; }
.testi-header h2 { color: var(--white); }

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

.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(192,154,91,0.12);
  padding: 36px 32px;
  border-radius: 3px;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--serif);
  font-size: 56px;
  color: rgba(192,154,91,0.2);
  line-height: 1;
}

.tc-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 28px;
}
.tc-rule { width: 28px; height: 1px; background: var(--gold); margin-bottom: 16px; opacity: 0.7; }
.tc-name {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.tc-role {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
}

/* ═══════════════════════════════════════════
   ▌CONTACT CTA STRIP
═══════════════════════════════════════════ */
.cta-strip {
  background: var(--gold);
  padding: 80px 0;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-strip-text h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  color: var(--navy-deep);
  margin-bottom: 8px;
}
.cta-strip-text p {
  font-size: 18px;
  font-weight: 300;
  color: rgba(27,45,62,0.7);
}
.btn-navy {
  background: var(--navy-deep);
  color: var(--white);
  flex-shrink: 0;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   ▌CONTACT SECTION
═══════════════════════════════════════════ */
.contact { background: var(--cream); padding: 100px 0; }

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

.contact-info { }
.contact-info h2 { color: var(--navy); margin-bottom: 20px; }
.contact-info .rule { width: 48px; height: 1px; background: var(--gold); margin-bottom: 28px; opacity: 0.6; }
.contact-info p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(192,154,91,0.15);
}
.cd-item:last-child { border-bottom: none; padding-bottom: 0; }
.cd-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(192,154,91,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.cd-icon svg { width: 15px; height: 15px; fill: var(--gold); }
.cd-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.cd-value {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--navy);
  line-height: 1.4;
}
.cd-value a { color: var(--navy); }
.cd-value a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-wrap { }
.contact-form {
  background: var(--white);
  border: 1px solid rgba(192,154,91,0.18);
  padding: 40px;
  border-radius: 3px;
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(192,154,91,0.2);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 17.5px;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-privacy {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   ▌FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-col { }
.footer-brand-logo { margin-bottom: 18px; }
.footer-brand-copy {
  font-size: 16.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 16.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.fci-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}
.fci-text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
}
.fci-text a { color: rgba(255,255,255,0.48); }
.fci-text a:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.25);
}
.footer-social { display: flex; gap: 10px; }
.social-pill {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.social-pill:hover { border-color: var(--gold); }
.social-pill svg { width: 13px; height: 13px; fill: rgba(255,255,255,0.4); }
.social-pill:hover svg { fill: var(--gold); }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-left > * {
  animation: fadeUp 0.85s ease both;
}
.hero-eyebrow  { animation-delay: 0.1s; }
.hero-h1       { animation-delay: 0.2s; }
.hero-sub      { animation-delay: 0.3s; }
.hero-divider  { animation-delay: 0.35s; }
.hero-copy     { animation-delay: 0.4s; }
.hero-buttons  { animation-delay: 0.5s; }
.hero-right    { animation: fadeIn 1.2s ease 0.6s both; }

/* ═══════════════════════════════════════════
   RESPONSIVE (basic)
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .wrap, .wrap-tight { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .hero-content .wrap { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-stat-card { position: static; margin-top: 20px; display: inline-block; }
  .services-list { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .process-steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .trust-inner { gap: 24px; }
  .trust-sep { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section, .intro, .what-we-do, .who, .process, .testimonials, .contact { padding: 64px 0; }
}

/* ═══════════════════════════════════════════
   CONTACT FORM — SUCCESS POPUP
═══════════════════════════════════════════ */
#lhts-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 45, 62, 0.72);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lhtsOverlayIn 0.25s ease;
}
@keyframes lhtsOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#lhts-popup {
  background: #fff;
  border-radius: 6px;
  padding: 48px 40px 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  animation: lhtsPopupIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes lhtsPopupIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
#lhts-popup-icon {
  width: 64px;
  height: 64px;
  background: #C09A5B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
  line-height: 1;
}
#lhts-popup h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #1B2D3E;
  margin-bottom: 10px;
}
#lhts-popup p {
  font-family: 'Jost', sans-serif;
  font-size: 17.5px;
  font-weight: 300;
  color: #5C534A;
  line-height: 1.75;
  margin-bottom: 24px;
}
#lhts-popup button {
  background: #1B2D3E;
  color: #fff;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}
#lhts-popup button:hover { background: #243548; }

/* Send button loading state */
#lhts-send-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
