/* ==========================================================
   RANSOM STRATEGY GROUP — design-spec stylesheet (rev 2)
   Navy #0a1628  Gold #c9a84c  Ivory #f6efe2
   ========================================================== */

:root {
  --navy:        #0a1628;
  --navy-deep:   #050d1a;
  --navy-soft:   #0e1c33;
  --navy-card:   #0c1a30;
  --navy-line:   #14223c;
  --gold:        #c9a84c;
  --gold-soft:   #b89641;
  --gold-light:  #d8be73;
  --ivory:       #f6efe2;
  --ivory-2:     #ece4d3;
  --mute:        #8a93a4;
  --mute-2:      #b6bdc9;
  --line:        rgba(201, 168, 76, 0.22);
  --line-soft:   rgba(246, 239, 226, 0.10);
  --line-faint:  rgba(246, 239, 226, 0.06);
  --serif:       'Cormorant Garamond', 'Times New Roman', serif;
  --sans:        'Inter', system-ui, -apple-system, Helvetica, Arial, sans-serif;
  --max:         1480px;
  --pad:         clamp(20px, 4vw, 64px);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

em { font-style: italic; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.dot { color: var(--gold); padding: 0 4px; opacity: 0.85; }

/* =============== HEADER =============== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(28px, 6vw, 120px);
  z-index: 100;
  transition: all 0.45s var(--ease);
  background: linear-gradient(to bottom, rgba(5, 11, 20, 0.65), rgba(5, 11, 20, 0));
}

.site-header.scrolled {
  background: rgba(8, 17, 31, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 14px clamp(28px, 6vw, 120px);
  border-bottom: 1px solid var(--line-faint);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.brand-logo {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.brand-img {
  height: 56px;
  width: auto;
  display: block;
  transition: opacity 0.3s var(--ease);
}
.brand-logo:hover .brand-img { opacity: 0.85; }

.site-header .brand-img { height: 64px; }
.site-header.scrolled .brand-img { height: 50px; transition: height 0.4s var(--ease); }
.site-footer .brand-img { height: 72px; margin-bottom: 8px; }

.brand-tag-line {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute-2);
}

.brand-mark {
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  font-family: var(--serif);
  color: var(--ivory);
  line-height: 1;
}

.brand-r {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--ivory);
}

.brand-arrow {
  color: var(--gold);
  margin-left: 1px;
  margin-top: 4px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
}

.brand-tag {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute);
  opacity: 0.95;
}

.site-nav {
  display: flex;
  gap: clamp(28px, 4vw, 64px);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  color: var(--ivory);
  padding: 8px 0;
  transition: color 0.3s var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}

.site-nav a.active { color: var(--gold); }
.site-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.site-nav a:hover { color: var(--gold-light); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 18px 28px;
  transition: background 0.4s var(--ease);
  flex-shrink: 0;
}

.header-cta:hover { background: var(--gold-light); }

.menu-toggle {
  display: flex;
  background: transparent;
  border: 0;
  width: 44px; height: 44px;
  padding: 11px 6px;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 8px;
}
.menu-toggle:hover span { background: var(--gold); }
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ivory);
  transition: 0.4s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* =============== HERO =============== */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 clamp(40px, 6vw, 120px);
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto auto;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  background: url("img/hero-anchor.jpg") 42% 28% / cover no-repeat;
  filter: saturate(0.82) brightness(0.68) contrast(1.04);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.30) 0%, rgba(10, 22, 40, 0.15) 30%, rgba(10, 22, 40, 0.85) 100%),
    linear-gradient(90deg, rgba(10, 22, 40, 0.55) 0%, rgba(10, 22, 40, 0.20) 45%, rgba(10, 22, 40, 0.40) 100%);
}

/* HERO TOP — headline */
.hero-top {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  padding-top: 250px;
  padding-bottom: 24px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 5.7vw, 102px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ivory);
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(70px);
  animation: heroLineIn 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-title span:nth-child(1) { animation-delay: 0.40s; }
.hero-title span:nth-child(2) { animation-delay: 0.70s; }
.hero-title span:nth-child(3) { animation-delay: 1.00s; }
.hero-title span:nth-child(4) { animation-delay: 1.30s; }
.hero-title span:nth-child(5) { animation-delay: 2.10s; }

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

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-title .hero-tagline {
  margin-top: 0.18em;
}

/* HERO BOTTOM — body+buttons left, quote right */
.hero-bottom {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: end;
  padding: 60px 0 40px;
}

.hero-bottom-left {
  max-width: 440px;
}

.hero-sub {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.75;
  color: var(--ivory-2);
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-quote {
  position: relative;
  max-width: 340px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  align-self: flex-end;
  margin-bottom: 8px;
}

.hero-quote-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.45;
  color: var(--ivory);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}

.hero-quote-attr {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mute-2);
}

.quote-mark { display: none; }

/* HERO BOTTOM STRIP */
.hero-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line-faint);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mute-2);
}

.strip-left { text-align: left; }
.strip-center {
  text-align: center;
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.strip-center .bullet { color: var(--gold); font-size: 5px; line-height: 1; opacity: 0.85; }
.strip-right { text-align: right; color: var(--ivory); }
.arrow-down { color: var(--gold); margin-left: 6px; }

/* =============== BUTTONS =============== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 22px 32px;
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-primary .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
  font-size: 14px;
  font-weight: 400;
}
.btn-primary:hover .arrow { transform: translateX(6px); }

.btn-text {
  color: var(--ivory);
  padding: 22px 4px;
  position: relative;
}
.btn-text::after {
  content: "";
  position: absolute;
  bottom: 16px; left: 4px; right: 4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.btn-text:hover { color: var(--gold); }
.btn-text:hover::after { width: calc(100% - 8px); }

.arrow { font-family: var(--sans); font-weight: 400; }

/* =============== STATS BAR =============== */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy-deep);
  padding: 56px clamp(40px, 5vw, 90px);
  gap: 0;
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
}

.stat {
  padding: 0 36px;
  border-right: 1px solid var(--line-faint);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; padding-right: 0; }

.stat-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.stat-emblem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--gold);
  opacity: 0.9;
  flex-shrink: 0;
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.stat-emblem-tall { height: 64px; width: 40px; }
.stat-emblem-wide { width: 70px; height: 42px; }
.stat-emblem svg,
.stat-emblem .emblem-img { width: 100%; height: 100%; display: block; object-fit: contain; }
.stat:hover .stat-emblem { opacity: 1; transform: translateY(-2px); }
.stat-row .stat-num { margin-bottom: 0; }

.stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.stat-num sup {
  font-size: 0.78em;
  vertical-align: baseline;
  font-weight: 400;
  margin-left: 4px;
  color: var(--gold-light);
}
.stat-num-italic em {
  font-style: italic;
  font-weight: 300;
  font-size: 1em;
}

.stat-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 14px;
}

.stat-desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--mute);
  max-width: 220px;
}

/* =============== SECTION COMMON =============== */

.section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 36px;
}
.eye-num { color: var(--gold); }
.eye-slash { color: var(--gold); opacity: 0.55; padding-right: 4px; }
.eye-line {
  display: inline-block;
  width: 56px; height: 1px;
  background: var(--ivory);
  opacity: 0.7;
  margin: 0 4px;
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ivory);
}
.display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* =============== ABOUT SECTION =============== */

.section-about {
  padding-top: clamp(80px, 10vw, 130px);
  padding-bottom: clamp(40px, 5vw, 70px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) 1.35fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.about-portrait { position: sticky; top: 110px; }

.portrait-figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy-soft);
  border: 1px solid var(--line-faint);
}

.portrait-img {
  position: absolute;
  inset: 0;
  background: url("img/richard-portrait.jpg?v=2") center top / cover no-repeat;
  transition: transform 1.4s var(--ease);
}

.about-portrait:hover .portrait-img { transform: scale(1.03); }

.portrait-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mute);
}
.portrait-meta .plate { color: var(--gold); }

.portrait-signature {
  margin-top: 24px;
  text-align: left;
}
.portrait-signature .sig-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  color: var(--gold);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.portrait-signature .sig-role {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute-2);
}

.about-body { padding-top: 0; }

.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--ivory);
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 22px;
  margin: 36px 0 36px;
  max-width: 600px;
  letter-spacing: -0.005em;
}

.about-body > p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mute-2);
  margin-bottom: 22px;
  max-width: 620px;
}

.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--line-faint);
}

.fact-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.fact-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.fact-note {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--mute);
  line-height: 1.5;
}

.signature {
  display: flex;
  align-items: baseline;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.sig-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: -0.015em;
}
.sig-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mute-2);
}

/* =============== ROOM SECTION =============== */

.section-room {
  padding-top: clamp(40px, 5vw, 70px);
  padding-bottom: clamp(60px, 8vw, 130px);
  position: relative;
}

.section-room .container {
  position: relative;
}

.section-room .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--pad);
  width: clamp(80px, 8vw, 140px);
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0.7;
}

.room-head {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-top: 48px;
}

.room-head-left .display { margin: 0; }

.room-head-right {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mute-2);
  max-width: 380px;
  padding-bottom: 14px;
}

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

.room-card { display: block; }

.room-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--navy-soft) center / cover no-repeat;
  border: 1px solid var(--line-faint);
  margin-bottom: 24px;
  transition: transform 0.7s var(--ease);
  filter: saturate(0.95);
}
.room-card:hover .room-img { transform: translateY(-4px); }

.room-img-obama { background-image: url("img/obama.jpg"); background-position: center; }
.room-img-biden { background-image: url("img/biden.jpg"); background-position: center 30%; }
.room-img-lee   { background-image: url("img/bill-lee.jpg"); background-position: center; }

.room-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 8px;
}
.room-title em {
  color: var(--gold);
  font-style: italic;
}
.room-loc {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mute);
}

/* =============== SERVICES SECTION =============== */

.section-services {
  background: var(--navy);
  border-top: 1px solid var(--line-faint);
  padding-top: clamp(80px, 11vw, 140px);
}

.services-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: 80px;
}
.services-head-right {
  max-width: 420px;
  padding-bottom: 16px;
}

.services-head-right.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.services-head-right .svc-stat {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateX(90px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}

.services-head-right .svc-stat-2 {
  transition-delay: 0.55s;
  margin-bottom: 8px;
}

.services-head-right .svc-stat-2 em,
.services-head-right .svc-stat-3 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.services-head-right .svc-stat-3 {
  transition-delay: 1.10s;
  margin-bottom: 28px;
}

.services-head-right .svc-rest {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.75;
  color: var(--mute-2);
  max-width: 380px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.0s var(--ease), transform 1.0s var(--ease);
  transition-delay: 1.75s;
}

.services-head-right.is-visible .svc-stat,
.services-head-right.is-visible .svc-rest {
  opacity: 1;
  transform: none;
}

.service-list {
  list-style: none;
  border-top: 1px solid var(--line-faint);
}

.service-row {
  display: grid;
  grid-template-columns: 90px 1.2fr 1.8fr 130px;
  gap: 40px;
  align-items: center;
  padding: 44px 0;
  border-bottom: 1px solid var(--line-faint);
  position: relative;
  transition: padding 0.5s var(--ease);
}
.service-row::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.7s var(--ease);
}
.service-row:hover::before { width: 100%; }
.service-row:hover .srv-name { color: var(--gold); }
.service-row:hover .srv-cta { color: var(--gold); }

.srv-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.srv-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ivory);
  transition: color 0.4s var(--ease);
}

.srv-desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--mute-2);
  max-width: 540px;
}

.srv-cta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
  transition: color 0.4s var(--ease);
}
.srv-cta .arrow {
  width: 36px; height: 1px;
  background: currentColor;
  position: relative;
  display: inline-block;
}
.srv-cta .arrow::after {
  content: "";
  position: absolute;
  right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* =============== WHO WE HELP =============== */

.section-who {
  padding-top: clamp(80px, 11vw, 140px);
}

.section-who .display { margin-bottom: 28px; }

.who-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--mute-2);
  max-width: 540px;
  margin-bottom: 80px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold);
}

.who-card {
  padding: 56px 32px;
  border-right: 1px solid var(--line-faint);
  position: relative;
  display: flex;
  flex-direction: column;
}
.who-card:last-child { border-right: 0; }

@media (min-width: 1181px) {
  .who-grid { grid-template-rows: auto auto 1fr auto; }
  .who-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
  }
  .who-card p { margin-bottom: 0; }
  .who-tick { margin-top: 24px; }
}

.who-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 56px;
}
.who-num span { color: var(--gold); margin-right: 6px; }

.who-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 18px;
}

.who-card p {
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--mute-2);
  margin-bottom: 36px;
  flex: 1;
}

.who-tick {
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
  margin-top: auto;
}

/* =============== PRINCIPLE QUOTE =============== */

.section-principle {
  padding: clamp(100px, 14vw, 180px) 0;
  text-align: center;
  position: relative;
}

.principle-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.principle-mark {
  display: block;
  font-family: var(--serif);
  font-size: 96px;
  line-height: 0.4;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 24px;
}

.principle-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 56px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ivory);
  margin-bottom: 44px;
}
.principle-text em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.principle-attr {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mute);
}
.principle-attr .line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* =============== TESTIMONIALS =============== */

.section-testimonials {
  padding-top: clamp(80px, 11vw, 140px);
  padding-bottom: clamp(80px, 11vw, 140px);
}

.testimonials-head { margin-bottom: clamp(56px, 7vw, 96px); }
.section-testimonials .display { margin-top: 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 0 0 clamp(32px, 3.5vw, 44px);
  background: linear-gradient(180deg, rgba(15, 28, 51, 0.4), rgba(8, 17, 31, 0.25));
  border: 1px solid var(--line-faint);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
  overflow: hidden;
}

@media (min-width: 1181px) {
  .testimonials-grid { grid-template-rows: auto auto 1fr auto auto; }
  .testimonial-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
  }
  .testimonial-card blockquote { flex: none; }
}
.testimonial-card:hover {
  border-color: var(--line);
  transform: translateY(-3px);
}

.testimonial-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-soft);
  border-bottom: 1px solid var(--line-faint);
}
.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transition: transform 1.2s var(--ease);
  filter: saturate(0.92);
}
.testimonial-photo-susan img { object-position: center 38%; }
.testimonial-photo-deidre img { object-position: center 32%; }
.testimonial-card:hover .testimonial-photo img { transform: scale(1.04); }

.testimonial-card .testimonial-mark {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 0.3;
  font-weight: 400;
  color: var(--gold);
  margin: 30px clamp(24px, 2.6vw, 36px) 18px;
  display: block;
}

.testimonial-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.55;
  color: var(--ivory);
  margin: 0 clamp(24px, 2.6vw, 36px) 28px;
  flex: 1;
}

.testimonial-divider {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0 clamp(24px, 2.6vw, 36px) 18px;
  opacity: 0.7;
}

.testimonial-card .testimonial-attr {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute-2);
  line-height: 1.6;
  margin: 0 clamp(24px, 2.6vw, 36px);
}
.testimonial-card .testimonial-attr em {
  display: block;
  font-style: normal;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 6px;
}
.testimonial-card .testimonial-attr span {
  font-size: 10px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0.18em;
  display: block;
}

.testimonial-card.reveal.is-visible:nth-child(2) { transition-delay: 0.08s; }
.testimonial-card.reveal.is-visible:nth-child(3) { transition-delay: 0.16s; }
.testimonial-card.reveal.is-visible:nth-child(4) { transition-delay: 0.24s; }

@media (max-width: 1180px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === Resolution feature block === */

.resolution-block {
  margin-top: clamp(80px, 10vw, 130px);
  padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 60px);
  background: linear-gradient(180deg, rgba(15, 28, 51, 0.5), rgba(8, 17, 31, 0.3));
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
}
.resolution-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.resolution-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ivory);
  margin: 18px 0 28px;
}
.resolution-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.resolution-text p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.85;
  color: var(--mute-2);
  margin-bottom: 18px;
}

.resolution-attr {
  font-family: var(--sans) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase;
  color: var(--gold) !important;
  margin-top: 28px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line-faint);
  line-height: 1.6 !important;
}

.resolution-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.resolution-image img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  border: 1px solid var(--line-faint);
  box-shadow: 0 30px 80px -25px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s var(--ease);
}
.resolution-image img:hover { transform: translateY(-4px); }

/* =============== CONTACT =============== */

.section-contact {
  background: var(--navy-deep);
  border-top: 1px solid var(--line-faint);
  padding-top: clamp(80px, 11vw, 140px);
  padding-bottom: clamp(80px, 10vw, 130px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.contact-body {
  margin: 36px 0 44px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--mute-2);
  max-width: 480px;
}

.contact-actions { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }

.contact-card {
  background: var(--navy-card);
  border: 1px solid var(--line-faint);
  padding: clamp(36px, 4vw, 56px);
  position: relative;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 8px;
}
.card-title em { color: var(--gold); font-style: italic; }

.card-sub {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--mute);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-faint);
}

.contact-meta { display: flex; flex-direction: column; }
.contact-meta > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-faint);
}
.contact-meta > div:last-child { border-bottom: 0; padding-bottom: 0; }

.contact-meta dt {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-meta dd {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  color: var(--ivory);
  letter-spacing: -0.005em;
}
.contact-meta dd a { transition: color 0.3s var(--ease); }
.contact-meta dd a:hover { color: var(--gold); }
.contact-meta .phone-or {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 0 6px;
}

/* =============== FOOTER =============== */

.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--line-faint);
  padding: 56px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-faint);
}

.footer-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.footer-cities { color: var(--ivory); }
.footer-contact { color: var(--mute-2); }
.footer-contact a { transition: color 0.3s var(--ease); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mute);
}
.footer-mid { text-align: center; }
.footer-legal { text-align: right; }
.footer-legal a { transition: color 0.3s var(--ease); }
.footer-legal a:hover { color: var(--gold); }

/* =============== REVEAL ANIMATIONS =============== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.0s var(--ease), transform 1.0s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.hero-title .reveal { transition-delay: 0s; }
.hero-title .reveal.is-visible:nth-child(2) { transition-delay: 0.1s; }
.hero-title .reveal.is-visible:nth-child(3) { transition-delay: 0.2s; }

.stats-bar .stat.reveal.is-visible:nth-child(2) { transition-delay: 0.10s; }
.stats-bar .stat.reveal.is-visible:nth-child(3) { transition-delay: 0.20s; }
.stats-bar .stat.reveal.is-visible:nth-child(4) { transition-delay: 0.30s; }

.fact-grid.reveal.is-visible { transition-delay: 0.05s; }

.room-card.reveal.is-visible:nth-child(2) { transition-delay: 0.12s; }
.room-card.reveal.is-visible:nth-child(3) { transition-delay: 0.24s; }

.service-row.reveal.is-visible:nth-child(2) { transition-delay: 0.08s; }
.service-row.reveal.is-visible:nth-child(3) { transition-delay: 0.16s; }
.service-row.reveal.is-visible:nth-child(4) { transition-delay: 0.24s; }
.service-row.reveal.is-visible:nth-child(5) { transition-delay: 0.32s; }

.who-card.reveal.is-visible:nth-child(2) { transition-delay: 0.08s; }
.who-card.reveal.is-visible:nth-child(3) { transition-delay: 0.16s; }
.who-card.reveal.is-visible:nth-child(4) { transition-delay: 0.24s; }
.who-card.reveal.is-visible:nth-child(5) { transition-delay: 0.32s; }

/* =============== DESKTOP PAGE-SWITCHED MODE =============== */

@media (min-width: 920px) {
  /* Hide every section that doesn't belong to the active page.
     Active sections keep their original display (grid, flex, block, etc). */
  body[data-mode="paged"][data-active-page="home"]         main > section[data-page]:not([data-page="home"])         { display: none; }
  body[data-mode="paged"][data-active-page="about"]        main > section[data-page]:not([data-page="about"])        { display: none; }
  body[data-mode="paged"][data-active-page="services"]     main > section[data-page]:not([data-page="services"])     { display: none; }
  body[data-mode="paged"][data-active-page="who"]          main > section[data-page]:not([data-page="who"])          { display: none; }
  body[data-mode="paged"][data-active-page="testimonials"] main > section[data-page]:not([data-page="testimonials"]) { display: none; }
  body[data-mode="paged"][data-active-page="contact"]      main > section[data-page]:not([data-page="contact"])      { display: none; }

  /* Fade-in for whichever sections are showing */
  body[data-mode="paged"] main > section[data-page] { animation: pageFadeIn 0.6s var(--ease) both; }

  /* Hide hamburger on desktop in paged mode */
  body[data-mode="paged"] .menu-toggle { display: none; }

  /* Sub-pages: first section gets top padding so the fixed header doesn't sit on it */
  body[data-mode="paged"][data-active-page="about"]        main > section[data-page="about"]:first-of-type,
  body[data-mode="paged"][data-active-page="services"]     main > section[data-page="services"]:first-of-type,
  body[data-mode="paged"][data-active-page="who"]          main > section[data-page="who"]:first-of-type,
  body[data-mode="paged"][data-active-page="testimonials"] main > section[data-page="testimonials"]:first-of-type,
  body[data-mode="paged"][data-active-page="contact"]      main > section[data-page="contact"]:first-of-type {
    padding-top: clamp(160px, 16vw, 220px);
  }
}

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

/* =============== RESPONSIVE =============== */

@media (max-width: 1280px) {
  .stats-bar { padding: 48px clamp(28px, 4vw, 64px); }
  .stat { padding: 0 24px; }
}

@media (max-width: 1180px) {
  .who-grid { grid-template-columns: repeat(3, 1fr); }
  .who-card:nth-child(3) { border-right: 0; padding-right: 0; }
  .who-card:nth-child(4) { padding-left: 0 !important; border-top: 1px solid var(--line-faint); padding-top: 56px; border-right: 1px solid var(--line-faint); padding-right: 32px !important; }
  .who-card:nth-child(5) { border-top: 1px solid var(--line-faint); padding-top: 56px; padding-left: 32px !important; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 0; padding: 48px clamp(28px, 4vw, 64px); }
  .stat { padding: 28px 32px; border-bottom: 1px solid var(--line-faint); }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat:nth-child(2) { border-right: 0; padding-right: 0; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: 0; padding-bottom: 0; }
  .stat:nth-child(3) { padding-top: 36px; }
  .stat:nth-child(4) { padding-top: 36px; padding-right: 0; }
  .hero-quote { display: none; }
  .hero-bottom { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  /* ----- HEADER ----- */
  .site-header { padding: 16px 20px; }
  .site-header.scrolled { padding: 12px 20px; }
  .site-header .brand-img { height: 44px; }
  .site-header.scrolled .brand-img { height: 38px; }
  .brand-tag { display: none; }
  .brand-name { font-size: 11px; letter-spacing: 0.18em; }
  .brand-r { font-size: 30px; }
  .site-header .brand-tag-line { display: none; }
  .site-footer .brand-tag-line { font-size: 8.5px; letter-spacing: 0.22em; }

  .site-nav { display: none; }
  .site-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 76px 0 0 0;
    background: rgba(5, 13, 26, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    padding: 32px 28px 60px;
    align-items: flex-start;
    z-index: 99;
    gap: 0;
    overflow-y: auto;
  }
  .site-nav.mobile-open a {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.015em;
    text-transform: none;
    padding: 20px 0;
    border-bottom: 1px solid var(--line-faint);
    width: 100%;
    color: var(--ivory);
    min-height: 56px;
    display: flex;
    align-items: center;
  }

  /* ----- HERO ----- */
  .hero {
    padding: 0 24px;
    min-height: 100svh;
    min-height: 100vh;
    grid-template-rows: 1fr auto auto;
  }
  .hero-img { background-position: 45% 30%; }
  .hero-top {
    padding-top: 0;
    padding-bottom: 12px;
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
  }
  .hero-title {
    font-size: clamp(26px, 7vw, 40px);
    line-height: 1.05;
    text-align: right;
    margin-left: auto;
  }
  .hero-title .hero-tagline { margin-top: 0.22em; }
  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px 0 22px;
    justify-items: end;
    text-align: right;
  }
  .hero-bottom-left { max-width: 100%; text-align: right; }
  .hero-sub { font-size: 12.5px; line-height: 1.7; margin-bottom: 22px; margin-left: auto; }
  .hero-actions { justify-content: flex-end; }
  .hero-actions { gap: 8px; }
  .hero-actions .btn-primary { padding: 18px 22px; font-size: 11px; }
  .hero-actions .btn-text { padding: 18px 4px; font-size: 11px; }
  .hero-quote { display: none; }
  .hero-strip {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0 22px;
    text-align: center;
  }
  .strip-center {
    font-size: 9px;
    letter-spacing: 0.24em;
    gap: 10px 14px;
  }
  .strip-center .bullet { display: none; }
  .strip-center span:not(.bullet) {
    display: inline-block;
    padding: 2px 0;
  }

  /* ----- SECTION COMMON ----- */
  .section { padding: clamp(60px, 14vw, 90px) 0; }
  .display { font-size: clamp(34px, 9vw, 52px); }
  .eyebrow { font-size: 10px; margin-bottom: 24px; letter-spacing: 0.28em; }
  .eye-line { width: 36px; }

  /* ----- ABOUT ----- */
  .section-about { padding-top: clamp(60px, 12vw, 90px); padding-bottom: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait { position: static; max-width: 480px; margin: 0 auto; }
  .portrait-signature { text-align: center; }
  .portrait-signature .sig-name { font-size: 26px; }
  .portrait-signature .sig-role { font-size: 10px; letter-spacing: 0.22em; }
  .pull-quote { font-size: 17px; padding-left: 18px; margin: 28px 0; }
  .about-body > p { font-size: 14px; line-height: 1.8; }
  .fact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 28px;
    margin-top: 40px;
  }
  .fact-value { font-size: 20px; }
  .fact-note { font-size: 12px; }

  /* ----- ROOM ----- */
  .section-room { padding-top: 28px; padding-bottom: clamp(60px, 12vw, 100px); }
  .room-head { grid-template-columns: 1fr; gap: 20px; padding-top: 28px; margin-bottom: 40px; }
  .room-head-right { font-size: 14px; max-width: 100%; padding-bottom: 0; }
  .room-grid { grid-template-columns: 1fr; gap: 28px; }
  .room-img { margin-bottom: 18px; }
  .room-title { font-size: 20px; }
  .room-loc { font-size: 9px; letter-spacing: 0.28em; }

  /* ----- SERVICES ----- */
  .section-services { padding-top: clamp(60px, 12vw, 90px); }
  .services-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .services-head-right { max-width: 100%; }
  .services-head-right .svc-stat {
    font-size: clamp(24px, 6.4vw, 32px);
    transform: translateX(40px);
  }
  .services-head-right .svc-stat-2 { margin-bottom: 4px; }
  .services-head-right .svc-stat-3 { margin-bottom: 20px; }
  .services-head-right .svc-rest { font-size: 14px; max-width: 100%; }
  .service-row {
    grid-template-columns: 44px 1fr;
    gap: 12px 16px;
    padding: 32px 0;
    align-items: start;
  }
  .srv-num { grid-row: 1; grid-column: 1; font-size: 18px; }
  .srv-name { grid-row: 1; grid-column: 2; font-size: 22px; line-height: 1.15; }
  .srv-desc { grid-row: 2; grid-column: 1 / -1; max-width: 100%; font-size: 14px; line-height: 1.65; }
  .srv-cta {
    grid-row: 3; grid-column: 1 / -1; justify-self: start;
    font-size: 10px; letter-spacing: 0.28em;
    min-height: 44px; align-items: center;
  }

  /* ----- WHO WE HELP ----- */
  .section-who { padding-top: clamp(60px, 12vw, 90px); }
  .section-who .display { margin-bottom: 18px; }
  .who-sub { margin-bottom: 48px; font-size: 14px; }
  .who-grid { grid-template-columns: 1fr; border-top: 1px solid var(--gold); }
  .who-card {
    padding: 32px 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line-faint);
  }
  .who-card:last-child { border-bottom: 0; }
  .who-num { margin-bottom: 18px; }
  .who-card h3 { font-size: 19px; margin-bottom: 12px; min-height: 0; }
  .who-card p { font-size: 13px; margin-bottom: 20px; }

  /* ----- TESTIMONIALS ----- */
  .section-testimonials { padding-top: clamp(60px, 12vw, 90px); padding-bottom: clamp(60px, 12vw, 90px); }
  .testimonials-head { margin-bottom: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
  .testimonial-card .testimonial-mark { font-size: 48px; margin: 26px 22px 14px; }
  .testimonial-card blockquote { margin: 0 22px 22px; font-size: 17px; }
  .testimonial-divider { margin: 0 22px 14px; }
  .testimonial-card .testimonial-attr { margin: 0 22px; }
  .testimonial-card .testimonial-attr em { font-size: 12px; }
  .testimonial-card .testimonial-attr span { font-size: 9px; }

  /* ----- RESOLUTION ----- */
  .resolution-block {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: clamp(28px, 6vw, 40px) clamp(22px, 5vw, 32px);
    margin-top: 56px;
  }
  .resolution-image { order: -1; }
  .resolution-image img { max-width: 260px; }
  .resolution-title { font-size: clamp(24px, 7vw, 32px); margin: 12px 0 20px; }
  .resolution-text p { font-size: 13.5px; }

  /* ----- CONTACT ----- */
  .section-contact { padding-top: clamp(60px, 12vw, 90px); padding-bottom: clamp(60px, 12vw, 90px); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-body { margin: 28px 0 32px; font-size: 14.5px; max-width: 100%; }
  .contact-actions { gap: 16px; flex-direction: column; align-items: stretch; }
  .contact-actions .btn-primary { justify-content: space-between; padding: 18px 24px; }
  .contact-actions .btn-text { padding: 14px 4px; align-self: flex-start; }
  .contact-card { padding: 32px 24px; }
  .card-title { font-size: 24px; }
  .card-sub { font-size: 12px; margin-bottom: 24px; padding-bottom: 20px; }
  .contact-meta > div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
  .contact-meta dt { font-size: 9px; letter-spacing: 0.28em; }
  .contact-meta dd { font-size: 17px; line-height: 1.4; }
  .contact-meta .phone-or { padding: 0 4px; font-size: 10px; }

  /* ----- FOOTER ----- */
  .site-footer { padding: 40px 0 28px; }
  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
    padding-bottom: 24px;
  }
  .site-footer .brand-img { height: 60px; }
  .footer-meta {
    text-align: center;
    align-items: center;
    gap: 10px;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 10.5px;
    letter-spacing: 0.22em;
  }
  .footer-contact .dot { display: none; }
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
    margin-top: 20px;
  }
  .footer-mid, .footer-legal { text-align: center; }

  /* ----- STATS BAR ----- */
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 36px 24px;
    gap: 0;
  }
  .stat {
    padding: 26px 16px !important;
    border-right: 1px solid var(--line-faint) !important;
    border-bottom: 1px solid var(--line-faint) !important;
  }
  .stat:nth-child(2n) { border-right: 0 !important; padding-right: 0 !important; }
  .stat:nth-child(2n+1) { padding-left: 0 !important; }
  .stat:nth-child(n+3) { padding-bottom: 0 !important; border-bottom: 0 !important; padding-top: 32px !important; }
  .stat-num { font-size: clamp(34px, 9vw, 48px); margin-bottom: 14px; }
  .stat-row { gap: 12px; margin-bottom: 14px; }
  .stat-emblem { width: 36px; height: 36px; }
  .stat-emblem-tall { width: 32px; height: 52px; }
  .stat-emblem-wide { width: 56px; height: 34px; }
  .stat-label { font-size: 9px; letter-spacing: 0.24em; margin-bottom: 10px; }
  .stat-desc { font-size: 12px; line-height: 1.5; max-width: none; }
}

@media (max-width: 600px) {
  /* ----- HEADER ----- */
  .site-header { padding: 14px 16px; }
  .site-header.scrolled { padding: 10px 16px; }
  .site-header .brand-img { height: 38px; }
  .site-header.scrolled .brand-img { height: 34px; }
  .site-nav.mobile-open { inset: 66px 0 0 0; padding: 24px 20px 60px; }
  .site-nav.mobile-open a { font-size: 24px; padding: 18px 0; }

  /* ----- HERO ----- */
  .hero { padding: 0 20px; }
  .hero-top { padding-top: clamp(96px, 28vw, 132px); }
  .hero-title { font-size: clamp(24px, 7.4vw, 34px); }
  .hero-sub { font-size: 12px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 6px; }
  .hero-actions .btn-primary { justify-content: space-between; padding: 16px 20px; font-size: 10.5px; }
  .hero-actions .btn-text { align-self: flex-start; padding: 16px 4px; font-size: 10.5px; }
  .strip-center { font-size: 8.5px; letter-spacing: 0.22em; gap: 8px 12px; }

  /* ----- STATS — single column ----- */
  .stats-bar { grid-template-columns: 1fr; padding: 28px 20px; }
  .stat {
    padding: 26px 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line-faint) !important;
  }
  .stat:last-child { border-bottom: 0 !important; padding-bottom: 0 !important; }
  .stat:first-child { padding-top: 0 !important; }

  /* ----- TYPOGRAPHY ----- */
  .display { font-size: clamp(32px, 9.2vw, 44px); }
  .principle-text { font-size: clamp(22px, 6vw, 30px); }
  .pull-quote { font-size: 16px; }
  .sig-name { font-size: 24px; }

  /* ----- CONTACT card spacing ----- */
  .contact-card { padding: 26px 20px; }
  .card-title { font-size: 22px; }

  /* ----- RESOLUTION ----- */
  .resolution-block { padding: 24px 18px; margin-top: 44px; }
  .resolution-image img { max-width: 220px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: clamp(22px, 7.8vw, 30px); }
  .hero-sub { font-size: 11.5px; }
  .display { font-size: clamp(28px, 9.5vw, 38px); }
  .hero { padding: 0 16px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .site-header { padding: 12px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-title span { opacity: 1 !important; transform: none !important; animation: none !important; }
  .services-head-right .svc-stat,
  .services-head-right .svc-rest { opacity: 1 !important; transform: none !important; }
  * { transition-duration: 0.05s !important; }
}
