/* Praesidium Pro — shared styling used across every page (nav, footer, typography,
   layout, and other elements common to the whole site). Extracted from the
   per-page stylesheets so it loads once and stays cached across page visits
   instead of re-downloading on every navigation. */

*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
:root {
            --black: #000000;
            --black-2: #000000;
            --charcoal: #000000;
            --charcoal-2: #131313;
            --line: rgba(188, 166, 110, 0.2);
            --line-gold: rgba(188, 166, 110, 0.25);
            --gold: #bca66e;
            --gold-light: #ccba86;
            --offwhite: #ece6da;
            --muted: #9a9a9a;
            --muted-2: #8e8e8e;
            --font-display: 'Cormorant Garamond', serif;
            --font-body: 'Inter', sans-serif;
        }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
            font-family: var(--font-body);
            font-weight: 300;
            background-color: var(--black);
            color: var(--offwhite);
            line-height: 1.65;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-size: 16px;
        }
::selection { background: var(--gold); color: var(--black); }
a { color: inherit; text-decoration: none; }
a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        select:focus-visible,
        [tabindex]:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 3px;
        }
.btn-primary:active,
        .btn-secondary:active,
        .nav-cta:active,
        .ab-cta__link:active,
        .svc-cta__action:active {
            transform: scale(0.97);
            filter: brightness(0.88);
        }
img { display: block; max-width: 100%; height: auto; }
.skip-link {
            position: absolute;
            top: -100px;
            left: 16px;
            background: var(--gold);
            color: var(--black);
            padding: 12px 20px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-decoration: none;
            z-index: 10000;
            transition: top 0.2s ease;
        }
.skip-link:focus {
            top: 16px;
            outline: 2px solid var(--offwhite);
            outline-offset: 2px;
        }
#scroll-progress {
            position: fixed;
            top: 0; left: 0;
            width: 0%; height: 2px;
            background: var(--gold);
            z-index: 10000;
            transition: none;
        }
.nav {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 900;
            padding: 20px 0;
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--line);
            transition: padding 0.3s ease, background 0.3s ease;
        }
.nav.scrolled {
            padding: 16px 0;
            background: rgba(10, 10, 10, 0.96);
        }
.nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 40px;
        }
.nav-logo {
            font-family: var(--font-display);
            font-weight: 500;
            font-size: 20px;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: var(--gold);
            display: flex;
            align-items: center;
            gap: 12px;
        }
.nav-logo-mark {
            display: block;
            height: 64px;
            width: auto;
            flex-shrink: 0;
        }
.nav.scrolled .nav-logo-mark {
            height: 58px;
        }
.nav-links {
            display: none;
            align-items: center;
            gap: 40px;
            list-style: none;
        }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-links > li { position: relative; }
.nav-links a,
        .nav-links .nav-services-trigger {
            font-family: var(--font-body);
            font-weight: 400;
            font-size: 12px;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--offwhite);
            transition: color 0.3s ease;
        }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
            color: var(--black) !important;
            background: var(--gold);
            padding: 10px 24px;
            letter-spacing: 0.22em;
            transition: all 0.3s ease;
        }
.nav-cta:hover {
            background: var(--gold-light);
            color: var(--black) !important;
        }
.nav-services { position: relative; cursor: pointer; }
.nav-services-trigger::after {
            content: '\25BE';
            font-size: 9px;
            margin-left: 6px;
            opacity: 0.6;
            position: relative;
            top: -1px;
        }
.nav-services-menu {
            position: absolute;
            top: calc(100% + 18px);
            left: 50%;
            transform: translateX(-50%) translateY(-6px);
            min-width: 320px;
            background: var(--charcoal);
            border: 1px solid var(--line-gold);
            padding: 24px 0;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
        }
.nav-services:hover .nav-services-menu,
        .nav-services-menu:hover,
        .nav-services.nav-services--open .nav-services-menu {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }
.nav-services-menu::before {
            content: '';
            position: absolute;
            top: -18px; left: 0; right: 0;
            height: 18px;
        }
.nav-services-menu a {
            display: block;
            padding: 12px 28px;
            font-size: 11px;
            letter-spacing: 0.18em;
            color: var(--offwhite);
            border-left: 2px solid transparent;
            transition: all 0.25s ease;
        }
.nav-services-menu a:hover {
            color: var(--gold);
            border-left-color: var(--gold);
            background: rgba(188, 166, 110, 0.04);
        }
.nav-services-menu .nav-services-all {
            margin-top: 12px;
            padding-top: 16px;
            border-top: 1px solid var(--line);
            color: var(--gold);
            font-weight: 500;
        }
.mobile-menu-btn {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 26px; height: 18px;
            background: none; border: none;
            cursor: pointer; padding: 0;
            z-index: 1001;
            color: var(--gold);
        }
.mobile-menu-btn span {
            display: block;
            width: 100%; height: 2px;
            background: currentColor;
            transition: all 0.3s ease;
        }
.mobile-menu-btn.active { opacity: 0; pointer-events: none; }

@media (min-width: 1024px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu {
            position: fixed;
            top: 0; right: 0;
            width: 320px; max-width: 88vw;
            height: 100vh;
            height: 100dvh;
            z-index: 9999;
            background: var(--charcoal);
            transform: translateX(100%);
            transition: transform 0.35s ease;
            padding: 84px 32px 32px;
            overflow-y: auto;
            border-left: 1px solid var(--line-gold);
        }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a {
            display: block;
            padding: 16px 0;
            font-size: 13px;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--offwhite);
            border-bottom: 1px solid var(--line);
            transition: color 0.2s ease;
        }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-services-list {
            padding: 8px 0 8px 16px;
            border-bottom: 1px solid var(--line);
        }
.mobile-menu-services-list a {
            padding: 8px 0;
            font-size: 11px;
            letter-spacing: 0.15em;
            color: var(--muted);
            border-bottom: none;
        }
.mobile-menu-services-list a.mobile-menu-services-all {
            color: var(--gold);
            font-weight: 500;
        }
.mobile-menu-close {
            position: absolute;
            top: 24px; right: 24px;
            width: 40px; height: 40px;
            display: flex; align-items: center; justify-content: center;
            background: transparent;
            border: 1px solid var(--line-gold);
            cursor: pointer;
        }
.mobile-menu-close span {
            position: absolute;
            width: 16px; height: 1px;
            background: var(--gold);
        }
.mobile-menu-close span:first-child { transform: rotate(45deg); }
.mobile-menu-close span:last-child { transform: rotate(-45deg); }
body.mobile-menu-open::before {
            content: '';
            position: fixed; inset: 0;
            background: rgba(0, 0, 0, 0.75);
            z-index: 9998;
        }
.reveal {
            opacity: 0;
            transform: translateY(14px);
            transition: opacity 0.55s ease, transform 0.55s ease;
        }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.reveal-delay-4 { transition-delay: 0.32s; }

.display {
            font-family: var(--font-display);
            font-weight: 400;
            font-size: clamp(64px, 7.4vw, 140px);
            line-height: 0.95;
            letter-spacing: 0.02em;
            color: var(--offwhite);
        }
.h-statement {
            font-family: var(--font-display);
            font-weight: 400;
            font-size: clamp(36px, 5.5vw, 72px);
            line-height: 1.1;
            letter-spacing: -0.005em;
            color: var(--offwhite);
        }
.h-section {
            font-family: var(--font-display);
            font-weight: 500;
            font-size: clamp(30px, 4vw, 48px);
            line-height: 1.15;
            letter-spacing: -0.005em;
            color: var(--offwhite);
        }
.h-card {
            font-family: var(--font-display);
            font-weight: 500;
            font-size: clamp(22px, 2.4vw, 30px);
            line-height: 1.2;
            color: var(--offwhite);
        }
.eyebrow {
            font-family: var(--font-body);
            font-weight: 500;
            font-size: clamp(12px, 0.95vw, 15px);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
        }
.body-large {
            font-size: clamp(17px, 1.25vw, 19px);
            line-height: 1.75;
            color: var(--offwhite);
            font-weight: 300;
        }
.body {
            font-size: clamp(15px, 1.1vw, 17px);
            line-height: 1.75;
            color: var(--muted);
            font-weight: 300;
        }
.label {
            font-family: var(--font-body);
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--muted);
        }
.gold-text { color: var(--gold); }
em { font-style: italic; font-weight: 400; }
.container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 40px;
        }
.container--narrow { max-width: 920px; }
.section { padding: clamp(60px, 7vw, 140px) 0; }
.section--tight-bottom { padding-bottom: clamp(28px, 3vw, 60px); }
.section--tight-top { padding-top: clamp(28px, 3vw, 60px); }
.text-center { text-align: center; }
.divider {
            width: 60px;
            height: 1px;
            background: var(--gold);
            margin: 32px auto;
        }
.divider-left { margin-left: 0; }

.hero__content {
            text-align: center;
            max-width: 1100px;
            position: relative;
            z-index: 2;
        }
.hero__eyebrow {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease, transform 1s ease;
            display: inline-block;
            margin-bottom: clamp(40px, 3.5vw, 64px);
        }
.hero__eyebrow.visible { opacity: 1; transform: translateY(0); }
.hero__eyebrow .eyebrow {
            font-size: clamp(13px, 1vw, 20px);
            letter-spacing: 0.32em;
        }
.hero__eyebrow-pron {
            display: inline-block;
            font-family: var(--font-display);
            font-style: italic;
            font-size: clamp(14px, 1.1vw, 22px);
            color: var(--muted);
            letter-spacing: 0.12em;
            margin-left: clamp(10px, 0.9vw, 18px);
        }

@media (max-width: 640px) {
  .hero__eyebrow { margin-bottom: 48px; }
}

.hero__watch {
            color: var(--gold);
            animation: watchPulse 4.2s ease-in-out infinite;
            will-change: color, text-shadow;
        }
@keyframes watchPulse {
            0%, 100% {
                color: var(--muted);
                text-shadow: 0 0 0 rgba(188, 166, 110, 0);
            }
            50% {
                color: var(--gold-light);
                text-shadow: 0 0 14px rgba(188, 166, 110, 0.45);
            }
        }

@media (prefers-reduced-motion: reduce) {
  .hero__watch {
                  animation: none;
                  color: var(--gold);
              }
}

.hero__display.visible { opacity: 1; transform: translateY(0); }
.hero__qualifier {
            display: block;
            font-family: var(--font-display);
            font-weight: 400;
            font-style: italic;
            font-size: clamp(20px, 2.2vw, 30px);
            letter-spacing: 0.06em;
            color: var(--offwhite);
            margin-bottom: 44px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1.2s ease 0.2s, transform 1.2s ease 0.2s;
        }
.hero__qualifier.visible { opacity: 1; transform: translateY(0); }
.hero__lines {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            margin: 0 auto 40px;
            opacity: 0;
            transition: opacity 1.2s ease;
        }
.hero__lines.visible { opacity: 1; }
.hero__lines span {
            display: block;
            width: 60px; height: 1px;
            background: var(--gold);
        }

@media (prefers-reduced-motion: reduce) {
  .hero__lines span:not(.hero__lines-mark) { animation: none; }
}

@media (max-width: 1024px) {
  .hero__watch { animation: none !important; }
}

@media (max-width: 1024px) {
  .hero__lines span:not(.hero__lines-mark) { animation: none !important; }
}

.hero__subtitle {
            opacity: 0;
            transition: opacity 1.4s ease;
            font-family: var(--font-body);
            font-weight: 300;
            font-size: clamp(13px, 1.2vw, 16px);
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: var(--gold);
        }
.hero__subtitle.visible { opacity: 1; }
.stats {
            background: var(--black-2);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            padding: clamp(36px, 3.5vw, 80px) 0;
        }
.stats-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
        }

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
}

.stat {
            text-align: center;
            padding: clamp(12px, 1.4vw, 20px) clamp(14px, 1.6vw, 24px);
            position: relative;
        }

@media (min-width: 768px) {
  .stat:not(:last-child)::after {
                  content: '';
                  position: absolute;
                  right: 0; top: 20%;
                  width: 1px; height: 60%;
                  background: var(--line);
              }
}

.stat__number {
            font-family: var(--font-display);
            font-weight: 300;
            font-size: clamp(36px, 4.5vw, 72px);
            line-height: 1;
            color: var(--gold);
            margin-bottom: clamp(8px, 0.9vw, 16px);
            letter-spacing: -0.02em;
        }
.stat__label {
            font-family: var(--font-body);
            font-weight: 400;
            font-size: clamp(9px, 0.75vw, 13px);
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--muted);
            line-height: 1.6;
        }
.brand-statement-text {
            font-family: var(--font-display);
            font-weight: 400;
            font-size: clamp(22px, 2.4vw, 30px);
            line-height: 1.55;
            color: var(--offwhite);
            letter-spacing: -0.005em;
        }
.leadership { background: var(--black); }
.leadership-intro {
            text-align: center;
            margin-bottom: clamp(48px, 4vw, 72px);
        }
.leadership-intro .eyebrow { display: block; margin-bottom: 20px; }
.leadership-intro .h-section { margin-bottom: 20px; }
.leadership-intro .body { max-width: 640px; margin: 0 auto; }
.principals {
            display: grid;
            grid-template-columns: 1fr;
            gap: 56px;
        }

@media (min-width: 768px) {
  .principals { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}

@media (min-width: 1024px) {
  .principals { gap: 80px; }
}

.principal-image {
            position: relative;
            aspect-ratio: 3 / 4;
            background: var(--charcoal);
            border: 1px solid var(--line);
            overflow: hidden;
            margin: 0 auto 28px;
            max-width: 280px;
            width: 100%;
        }
.principal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
        }
.principal {
            text-align: center;
        }
.principal-name {
            font-family: var(--font-display);
            font-weight: 500;
            font-size: clamp(24px, 2.6vw, 32px);
            line-height: 1.1;
            color: var(--offwhite);
            margin-bottom: 6px;
        }
.principal-title {
            font-family: var(--font-body);
            font-size: clamp(11px, 0.9vw, 14px);
            font-weight: 500;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 20px;
        }
.principal-bio {
            font-size: clamp(14px, 1.1vw, 16px);
            line-height: 1.75;
            color: var(--muted);
            margin-bottom: 20px;
            max-width: 380px;
            margin-left: auto;
            margin-right: auto;
        }
.principal-rule {
            width: 36px;
            height: 1px;
            background: var(--line-gold);
            margin: 0 auto 20px;
        }
.leadership-cta {
            text-align: center;
            margin-top: clamp(40px, 3.5vw, 64px);
        }
.leadership-cta a {
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            border-bottom: 1px solid var(--line-gold);
            padding-bottom: 4px;
            transition: border-color 0.3s ease;
        }
.leadership-cta a:hover { border-color: var(--gold); }
.pillars {
            background: var(--black-2);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }
.pillars-intro {
            text-align: center;
            margin-bottom: clamp(50px, 4.5vw, 80px);
        }
.pillars-intro .eyebrow { display: block; margin-bottom: 20px; }
.pillars-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
        }

@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

.pillar {
            background: var(--black);
            border: 1px solid var(--line);
            transition: all 0.4s ease;
        }
.pillar:hover {
            border-color: var(--line-gold);
            transform: translateY(-4px);
        }
.pillar-image {
            aspect-ratio: 4 / 3;
            background: var(--charcoal);
            border-bottom: 1px solid var(--line);
            position: relative;
            overflow: hidden;
        }
.pillar-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: grayscale(10%) brightness(0.92) contrast(1.05);
            transition: transform 0.6s ease, filter 0.6s ease;
        }
.pillar:hover .pillar-image img {
            transform: scale(1.04);
            filter: grayscale(0%) brightness(1) contrast(1.05);
        }
.pillar-image .ph {
            position: absolute; inset: 0;
            display: flex; align-items: center; justify-content: center;
            font-size: 10px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            opacity: 0.5;
        }
.pillar-body {
            padding: clamp(24px, 2.5vw, 40px) clamp(20px, 2vw, 32px);
        }
.pillar-num {
            font-family: var(--font-display);
            font-weight: 400;
            font-size: clamp(22px, 1.8vw, 32px);
            letter-spacing: 0.25em;
            color: var(--gold);
            margin-bottom: clamp(14px, 1.2vw, 20px);
            display: block;
        }
.pillar-title { margin-bottom: clamp(12px, 1vw, 16px); }
.pillar-desc {
            font-size: clamp(14px, 1.1vw, 16px);
            line-height: 1.7;
            color: var(--muted);
            margin-bottom: clamp(16px, 1.5vw, 24px);
        }
.pillar-cta {
            font-family: var(--font-body);
            font-size: clamp(10px, 0.8vw, 12px);
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--gold);
            display: inline-block;
            padding-bottom: 2px;
            border-bottom: 1px solid var(--line-gold);
            transition: border-color 0.3s ease;
        }
.pillar-cta:hover { border-bottom-color: var(--gold); }
.banner-statement {
            padding: clamp(80px, 9vw, 180px) 0 clamp(36px, 4vw, 80px);
            text-align: center;
            background:
                linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
        }
.banner-statement .h-statement {
            max-width: 980px;
            margin: 0 auto;
        }
.all-services { background: var(--black); }
.all-services-intro {
            text-align: center;
            margin-bottom: clamp(50px, 4.5vw, 80px);
        }
.all-services-intro .eyebrow { display: block; margin-bottom: 20px; }
.services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1px;
            background: var(--line);
            border: 1px solid var(--line);
        }

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
            background: var(--black);
            padding: 36px 28px 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 280px;
            position: relative;
        }

@media (min-width: 1024px) {
  .service-card--wide { grid-column: span 2; }
}

.service-card__top { margin-bottom: 24px; }
.service-card__icon {
            width: 48px; height: 48px;
            background: var(--charcoal-2);
            border: 1px solid var(--line-gold);
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-weight: 500;
            font-size: clamp(13px, 1vw, 16px);
            color: var(--gold);
            letter-spacing: 0.1em;
            transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
        }
.service-card:hover .service-card__icon {
            background: var(--gold);
            color: var(--black);
            border-color: var(--gold);
        }
.service-card__title {
            font-family: var(--font-display);
            font-weight: 500;
            font-size: clamp(16px, 1.4vw, 22px);
            line-height: 1.2;
            margin-bottom: clamp(8px, 0.9vw, 12px);
            color: var(--offwhite);
            position: relative;
            display: inline-block;
        }
.service-card__title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            height: 1px;
            width: 100%;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left center;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
.service-card:hover .service-card__title::after {
            transform: scaleX(1);
        }
.service-card__desc {
            font-size: clamp(13px, 1vw, 15px);
            line-height: 1.65;
            color: var(--muted);
        }
.service-card__arrow {
            font-size: clamp(10px, 0.8vw, 12px);
            letter-spacing: 0.3em;
            color: var(--gold);
            text-transform: uppercase;
            display: inline-block;
            transition: transform 0.4s ease, letter-spacing 0.4s ease;
        }
.service-card:hover .service-card__arrow {
            color: var(--gold-light);
        }
.method {
            background: var(--black-2);
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }
.method-intro {
            text-align: center;
            margin-bottom: clamp(50px, 4.5vw, 80px);
        }
.method-intro .eyebrow { display: block; margin-bottom: 20px; }
.method-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            position: relative;
        }

@media (min-width: 900px) {
  .method-grid { grid-template-columns: repeat(3, 1fr); gap: 60px; }
}

.method-step {
            position: relative;
        }
.method-step-num {
            font-family: var(--font-display);
            font-weight: 300;
            font-size: clamp(60px, 7vw, 96px);
            color: var(--gold);
            line-height: 1;
            margin-bottom: 24px;
            display: block;
            letter-spacing: -0.02em;
        }
.method-step-title {
            font-family: var(--font-display);
            font-weight: 500;
            font-size: clamp(18px, 1.6vw, 26px);
            margin-bottom: clamp(12px, 1vw, 16px);
            color: var(--offwhite);
        }
.method-step-desc {
            font-size: clamp(12px, 1vw, 15px);
            line-height: 1.75;
            color: var(--muted);
        }
.method-step-rule {
            width: 40px; height: 1px;
            background: var(--gold);
            margin-bottom: 24px;
        }

.scripture {
            background: var(--black);
            padding: clamp(44px, 5vw, 80px) 0 clamp(48px, 6vw, 88px);
            border-top: 1px solid var(--line);
            text-align: center;
        }
.scripture-mark {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--gold);
            transform: rotate(45deg);
            margin-bottom: 28px;
        }
.scripture-verse {
            font-family: var(--font-display);
            font-weight: 400;
            font-style: italic;
            font-size: clamp(18px, 1.8vw, 26px);
            line-height: 1.55;
            color: var(--offwhite);
            max-width: 720px;
            margin: 0 auto 20px;
            letter-spacing: 0.01em;
        }
.scripture-cite {
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: var(--gold);
        }
.cta {
            background: var(--black-2);
            border-top: 1px solid var(--line);
            padding: clamp(60px, 7vw, 140px) 0;
        }
.cta-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }

@media (min-width: 900px) {
  .cta-grid { grid-template-columns: 7fr 5fr; gap: 80px; }
}

@media (max-width: 899px) {
  .cta-grid { max-width: 800px; }
}

.cta-content .eyebrow { display: block; margin-bottom: 20px; }
.cta-content .h-section { margin-bottom: 24px; }
.cta-content .body { margin-bottom: 0; max-width: 540px; }
.cta-actions {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
.btn-primary,
        .btn-secondary {
            display: inline-block;
            padding: 18px 36px;
            font-family: var(--font-body);
            font-weight: 500;
            font-size: 11px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            text-align: center;
            transition: all 0.3s ease;
        }
.btn-primary {
            background: var(--gold);
            color: var(--black);
            border: 1px solid var(--gold);
        }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-secondary {
            background: transparent;
            color: var(--offwhite);
            border: 1px solid var(--line-gold);
        }
.btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
        }
.footer {
            background: var(--black-2);
            border-top: 1px solid var(--line);
            padding: clamp(50px, 4.5vw, 80px) 0 clamp(20px, 1.8vw, 32px);
        }
.footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 48px;
            margin-bottom: clamp(40px, 3.5vw, 64px);
        }

@media (min-width: 856px) {
  .footer-grid {
                  grid-template-columns: 1fr 2.4fr;
                  grid-template-areas: "brand navs";
                  column-gap: clamp(40px, 4vw, 80px);
                  align-items: center;
                  max-width: 1200px;
                  margin-left: auto;
                  margin-right: auto;
              }
  .footer-col { display: flex; flex-direction: column; }
  .footer-grid > .footer-col {
                  grid-area: brand;
                  align-items: flex-start;
                  align-self: start;
                  text-align: left;
              }
  .footer-navs {
                  grid-area: navs;
                  display: grid;
                  grid-template-columns: 1fr 1fr 1fr;
                  column-gap: clamp(28px, 3vw, 56px);
                  align-items: start;
                  margin-top: 20px;
              }
  .footer-navs .footer-col {
                  align-items: center;
                  text-align: center;
              }
  .footer-navs .footer-col ul {
                  columns: 1;
                  text-align: center;
              }
  .footer {
                  padding-top: clamp(28px, 2.4vw, 40px);
                  padding-bottom: clamp(10px, 1vw, 14px);
              }
  .footer-navs .footer-col li {
                  text-align: center;
              }
  .footer-social-row {
                  margin: clamp(14px, 1.4vw, 22px) 0 0 !important;
                  padding-top: 0 !important;
                  border-top: none !important;
                  justify-content: flex-start !important;
              }
}

.footer-credentials {
            font-family: var(--font-body);
            font-size: clamp(12px, 0.95vw, 14px);
            font-weight: 500;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            color: var(--muted-2);
            margin-top: clamp(8px, 0.8vw, 12px);
            line-height: 1.4;
        }
.footer-license {
            font-family: var(--font-body);
            font-size: clamp(10px, 0.8vw, 12px);
            font-weight: 400;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--muted-2);
            margin-top: 6px;
            line-height: 1.5;
        }
.footer-socials {
            display: flex;
            gap: 10px;
            margin-top: clamp(12px, 1.1vw, 18px);
            align-self: flex-start;
        }
.footer-socials .footer-social-link {
            width: 34px !important;
            height: 34px !important;
            margin-top: 0 !important;
        }
.footer-socials .footer-social-link svg {
            width: 16px;
            height: 16px;
        }
.footer-socials--mobile {
            display: none !important;
            margin-top: clamp(20px, 2vw, 28px);
            align-self: center;
            justify-content: center;
        }

@media (max-width: 855px) {
  .footer-socials--desktop { display: none !important; }
  .footer-socials--mobile { display: flex !important; }
}

@media (max-width: 1024px) {
  .footer-socials .footer-social-link {
                  width: 42px !important;
                  height: 42px !important;
              }
  .footer-socials .footer-social-link svg {
                  width: 20px;
                  height: 20px;
              }
}

.footer-hours-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: clamp(8px, 0.9vw, 14px);
            margin-bottom: clamp(20px, 2vw, 32px);
        }
.footer-hours__primary {
            font-family: var(--font-display);
            font-weight: 400;
            font-size: clamp(28px, 2.8vw, 38px);
            color: var(--gold);
            line-height: 1;
            margin: 0;
            letter-spacing: -0.01em;
        }
.footer-hours__slash {
            font-size: 0.55em;
            opacity: 0.7;
            padding: 0 1px;
        }
.footer-hours__label {
            font-family: var(--font-body);
            font-size: clamp(13px, 1.05vw, 15px);
            color: var(--muted);
            line-height: 1.6;
            margin: 0;
        }
.footer-hours__rule {
            width: 24px;
            height: 1px;
            background: var(--line-gold);
            margin: clamp(4px, 0.6vw, 10px) auto;
        }
.footer-hours__line {
            font-family: var(--font-body);
            font-size: clamp(13px, 1.05vw, 15px);
            color: var(--muted);
            margin: 0;
        }
.footer-navs .footer-col .footer-social-link {
            margin-top: clamp(14px, 1.4vw, 22px);
            align-self: center;
        }
.footer-social-link--mobile {
            display: none !important;
            justify-self: center;
            align-self: center;
            margin-top: clamp(16px, 2vw, 28px);
            margin-left: auto;
            margin-right: auto;
        }

@media (max-width: 768px) {
  .footer-social-link--desktop { display: none !important; }
  .footer-social-link--mobile { display: inline-flex !important; }
}

.footer-legal-inline {
            display: flex;
            list-style: none;
            gap: clamp(14px, 1.4vw, 24px);
            padding: 0;
            margin: 0;
        }
.footer-legal-inline li { margin: 0; }
.footer-legal-inline a {
            font-size: clamp(11px, 0.9vw, 13px);
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--muted-2);
            transition: color 0.3s ease;
        }
.footer-legal-inline a:hover { color: var(--gold); }
.footer-social-row {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: clamp(12px, 1.2vw, 20px);
            margin: clamp(28px, 3vw, 48px) 0 clamp(28px, 3vw, 40px);
            padding-top: clamp(20px, 2vw, 32px);
            border-top: 1px solid var(--line);
        }
.footer-social-label {
            font-family: var(--font-body);
            font-size: clamp(10px, 0.8vw, 12px);
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--muted-2);
        }
.footer-social-link--row {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border: 1px solid var(--line);
            color: var(--muted);
            transition: color 0.25s ease, border-color 0.25s ease;
            flex-shrink: 0;
        }
.footer-social-link--row:hover {
            color: var(--gold);
            border-color: var(--line-gold);
        }
.footer-social-link--row svg { display: block; }
.footer-col h2 {
            font-family: var(--font-body);
            font-weight: 500;
            font-size: clamp(13px, 0.95vw, 15px);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: clamp(14px, 1.3vw, 20px);
        }
.footer-brand {
            font-family: var(--font-display);
            font-size: clamp(18px, 1.6vw, 24px);
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: clamp(14px, 1.2vw, 20px);
        }
.footer-tagline {
            font-size: clamp(13px, 1.05vw, 15px);
            color: var(--muted);
            line-height: 1.7;
            margin-bottom: clamp(16px, 1.5vw, 24px);
            max-width: 320px;
        }
.footer-contact {
            font-size: clamp(13px, 1.05vw, 15px);
            color: var(--muted);
            line-height: 2.2;
        }
.footer-contact a:hover { color: var(--gold); }
.footer-logo-mark {
            display: block;
            width: 60px;
            height: 72px;
            object-fit: contain;
            object-position: left center;
            flex-shrink: 0;
            align-self: flex-start;
            margin-bottom: clamp(10px, 0.9vw, 14px);
        }

@media (max-width: 855px) {
  .footer-logo-mark {
                  width: 56px;
                  height: 66px;
                  object-position: center;
                  align-self: center;
              }
}

.footer-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border: 1px solid var(--line);
            color: var(--muted);
            transition: color 0.25s ease, border-color 0.25s ease;
            flex-shrink: 0;
            align-self: flex-start;
            margin-top: auto;
        }
.footer-social-link:hover {
            color: var(--gold);
            border-color: var(--line-gold);
        }
.footer-social-link svg { display: block; }

@media (max-width: 768px) {
  .footer-social-link {
                  align-self: center;
                  margin-top: 18px;
              }
}

.footer-col ul { list-style: none; }
.footer-col li {
            margin-bottom: 10px;
        }
.footer-col li a {
            font-size: clamp(13px, 1.05vw, 15px);
            color: var(--muted);
            transition: color 0.3s ease;
        }
.footer-col li a:hover { color: var(--gold); }
.footer-bottom {
            padding-top: 32px;
            border-top: 1px solid var(--line);
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }

@media (min-width: 856px) {
  .footer-bottom {
                  flex-direction: row;
                  justify-content: space-between;
                  max-width: 1200px;
                  margin-left: auto;
                  margin-right: auto;
              }
}

.footer-bottom p,
        .footer-bottom a {
            font-size: clamp(11px, 0.9vw, 13px);
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--muted-2);
        }
.footer-bottom a:hover { color: var(--gold); }
.footer-credit a {
            color: var(--muted);
            border-bottom: 1px solid transparent;
            padding-bottom: 1px;
            transition: color 0.3s ease, border-color 0.3s ease;
        }
.footer-credit a:hover {
            color: var(--gold);
            border-bottom-color: rgba(188, 166, 110, 0.4);
        }

@media (max-width: 1024px) {
  .hero::before {
                  content: '';
                  position: absolute;
                  inset: 0;
                  background:
                      radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.20) 55%, transparent 80%),
                      linear-gradient(180deg,
                          rgba(0,0,0,0.35) 0%,
                          rgba(0,0,0,0.25) 50%,
                          rgba(0,0,0,0.70) 100%),
                      linear-gradient(90deg,
                          rgba(0,0,0,0.20) 0%,
                          rgba(0,0,0,0.10) 60%,
                          rgba(0,0,0,0.20) 100%);
                  z-index: 1;
                  pointer-events: none;
              }
  .hero__content { z-index: 2; position: relative; }
}

@media (max-width: 1024px) {
  .nav { padding: 12px 0; }
  .nav.scrolled { padding: 10px 0; }
  .nav-inner { padding: 0 24px; }
  .nav-logo { font-size: 18px; letter-spacing: 0.26em; gap: 10px; }
  .nav-logo-mark { height: 40px; }
  .nav.scrolled .nav-logo-mark { height: 36px; }
  .hero__eyebrow .eyebrow { font-size: 13px; letter-spacing: 0.28em; }
  .hero__eyebrow-pron {
                  font-size: 15px;
                  margin-left: 12px;
                  color: var(--offwhite);
                  font-weight: 400;
              }
  .hero__eyebrow { margin-bottom: 28px; }
  .hero__qualifier { font-size: 22px; margin-bottom: 30px; }
  .hero__subtitle { font-size: 13px; letter-spacing: 0.3em; }
  .hero__eyebrow,
              .hero__display,
              .hero__qualifier,
              .hero__subtitle {
                  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 0.6);
              }
  .hero__eyebrow-pron {
                  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.98), 0 0 6px rgba(0, 0, 0, 0.85), 0 0 2px rgba(0, 0, 0, 0.7);
              }
  .section { padding: clamp(48px, 6vw, 96px) 0; }
  .stats { padding: clamp(36px, 5vw, 64px) 0; }
  .banner-statement { padding: clamp(56px, 7vw, 120px) 0 clamp(28px, 4vw, 56px); }
}

@media (max-width: 1024px) {
  .cta { padding: clamp(48px, 6vw, 96px) 0; }
  .footer { padding: clamp(40px, 5vw, 64px) 0 clamp(20px, 2vw, 28px); }
  .pillar-title { font-size: 22px; }
  .pillar-desc { font-size: 15px; }
  .principal-name { font-size: 24px; }
  .principal-bio { font-size: 15px; }
  .method-step-title { font-size: 20px; }
  .method-step-desc { font-size: 15px; }
}

@media (max-width: 1024px) {
  .service-card__title { font-size: 18px; }
  .service-card__desc { font-size: 14px; }
  .footer-brand { font-size: 20px; }
  .footer-tagline { font-size: 15px; }
  .footer-col h2 { font-size: 13px; }
  .footer-col li a { font-size: 15px; }
  .footer-hours__label,
              .footer-hours__line { font-size: 15px; }
  .footer-contact { font-size: 15px; }
}

@media (max-width: 1024px) {
  .service-card:hover { background: var(--black); }
  .service-card:hover .service-card__icon {
                  background: var(--charcoal-2);
                  color: var(--gold);
                  border-color: var(--line-gold);
              }
  .service-card:hover .service-card__title::after {
                  transform: scaleX(0);
              }
  .service-card:hover .service-card__arrow { color: var(--gold); }
  .pillar:hover { border-color: var(--line); transform: none; }
  .pillar:hover .pillar-image img {
                  transform: none;
                  filter: grayscale(10%) brightness(0.92) contrast(1.05);
              }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero { background-position: calc(100% + 100px) center !important; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--wide { grid-column: span 2; }
}

@media (max-width: 899px) {
  .principals { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

@media (max-width: 768px) {
  .hero__eyebrow .eyebrow { font-size: 12px; }
  .hero__eyebrow-pron { font-size: 14px; margin-left: 10px; }
  .hero__eyebrow { margin-bottom: 24px; }
  .hero__qualifier { font-size: 18px; margin-bottom: 24px; }
  .hero__subtitle { font-size: 12px; letter-spacing: 0.28em; }
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 32px 16px; }
  .stat:not(:last-child)::after { display: none; }
  .stat__number { font-size: clamp(40px, 9vw, 56px) !important; }
  .stat__label { font-size: 10px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 24px; }
  .pillar-image { aspect-ratio: 16 / 9; }
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .service-card--wide { grid-column: span 2; }
  .method-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .pillars-intro,
              .all-services-intro,
              .method-intro,
              .leadership-intro { margin-bottom: 40px; }
}

@media (max-width: 855px) {
  .footer .footer-grid {
                  display: grid;
                  grid-template-columns: 1fr;
                  grid-template-rows: auto;
                  grid-template-areas: none;
                  gap: 32px;
                  text-align: center;
                  justify-content: center;
                  justify-items: center;
                  align-items: start;
                  max-width: none;
              }
  .footer .footer-grid > .footer-col {
                  grid-area: auto;
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  align-self: auto;
                  justify-self: center;
                  text-align: center;
                  width: 100%;
                  max-width: 480px;
              }
  .footer .footer-grid > .footer-col .footer-contact { text-align: center; }
  .footer .footer-grid > .footer-col .footer-credentials { text-align: center; }
  .footer .footer-grid > .footer-col .footer-license { text-align: center; }
  .footer .footer-navs {
                  grid-area: auto;
                  display: flex;
                  flex-direction: column;
                  gap: 32px;
                  align-items: center;
                  width: 100%;
                  max-width: 480px;
                  justify-self: center;
              }
  .footer .footer-navs > .footer-col {
                  grid-area: auto;
                  display: flex;
                  flex-direction: column;
                  align-items: center;
                  align-self: center;
                  text-align: center;
                  width: 100%;
              }
  .footer .footer-navs > .footer-col:nth-child(1) ul { columns: 1; }
  .footer .footer-navs .footer-col h2,
              .footer .footer-navs .footer-col ul,
              .footer .footer-navs .footer-col li,
              .footer .footer-navs .footer-col li a {
                  text-align: center;
              }
  .footer .footer-bottom {
                  flex-direction: column;
                  gap: 8px;
                  text-align: center;
              }
}

@media (max-width: 599px) {
  .container { padding: 0 20px; }
  .nav { padding: 16px 0; }
  .nav.scrolled { padding: 14px 0; }
  .nav-inner { padding: 0 20px; }
  .nav-logo { font-size: 17px; letter-spacing: 0.24em; gap: 10px; }
  .nav-logo-mark { height: 46px; }
  .nav.scrolled .nav-logo-mark { height: 42px; }
  .hero { padding-top: 92px; }
}

@media (max-width: 599px) {
  .hero::before {
                  background:
                      radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.20) 55%, transparent 80%),
                      linear-gradient(180deg,
                          rgba(0,0,0,0.35) 0%,
                          rgba(0,0,0,0.25) 50%,
                          rgba(0,0,0,0.70) 100%),
                      linear-gradient(90deg,
                          rgba(0,0,0,0.20) 0%,
                          rgba(0,0,0,0.10) 60%,
                          rgba(0,0,0,0.20) 100%);
              }
  .cta-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .cta-content { text-align: center; }
  .cta-content .body { margin-left: auto; margin-right: auto; }
  .cta-actions { align-items: center; }
  .display { font-size: clamp(40px, 13vw, 60px) !important; letter-spacing: 0.04em !important; }
  .hero__eyebrow {
                  margin-bottom: 20px;
                  display: block;
                  max-width: 100%;
                  white-space: normal;
                  line-height: 1.4;
              }
  .hero__eyebrow .eyebrow { font-size: 13px; letter-spacing: 0.24em; }
  .hero__eyebrow-pron {
                  display: block;
                  font-size: 14px;
                  margin-left: 0;
                  margin-top: 6px;
                  letter-spacing: 0.08em;
              }
  .hero__qualifier { font-size: 18px; margin-bottom: 20px; letter-spacing: 0.04em; }
  .hero__subtitle { font-size: 11px; letter-spacing: 0.25em; }
  .hero__lines { margin-bottom: 28px; }
  .stats { padding: 36px 0; }
  .stats-grid {
                  grid-template-columns: repeat(2, 1fr) !important;
                  gap: 28px 16px !important;
              }
  .stat { padding: 8px 6px; }
  .stat__number {
                  font-size: clamp(36px, 10vw, 48px) !important;
                  margin-bottom: 10px;
                  letter-spacing: -0.01em;
              }
  .stat__label {
                  font-size: 12px;
                  letter-spacing: 0.2em;
                  line-height: 1.45;
              }
  .stat::after { display: none !important; }
  .stat:nth-child(odd):not(:last-child)::after {
                  content: '' !important;
                  position: absolute !important;
                  right: -8px !important;
                  top: 15% !important;
                  width: 1px !important;
                  height: 70% !important;
                  background: var(--line) !important;
                  display: block !important;
              }
  .services-grid { grid-template-columns: 1fr !important; }
  .service-card--wide { grid-column: span 1; }
  .service-card { padding: 28px 22px 26px; min-height: 220px; }
}

@media (max-width: 599px) {
  .pillar-image { aspect-ratio: 16 / 10; }
  .pillar-body { padding: 24px 22px; }
  .pillar-num { font-size: 20px; margin-bottom: 12px; }
  .pillar-title { font-size: 22px; }
  .pillar-desc { font-size: 15px; }
  .principal-image { max-width: 220px; }
  .principal-name { font-size: 24px; }
  .principal-bio { font-size: 15px; }
  .method-step-num { font-size: 56px; }
  .method-step-title { font-size: 20px; }
  .method-step-desc { font-size: 15px; }
}

@media (max-width: 599px) {
  .btn-primary, .btn-secondary {
                  padding: 14px 24px;
                  font-size: 10px;
                  letter-spacing: 0.24em;
              }
  .cta-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { font-size: 20px; }
  .footer-tagline { font-size: 15px; }
  .footer-col h2 { font-size: 13px; }
  .footer-col li a { font-size: 15px; padding: 10px 0; display: inline-block; }
  .footer-col li { margin-bottom: 0; }
  .footer-hours__label,
              .footer-hours__line { font-size: 15px; }
  .footer-contact { font-size: 15px; }
  .footer-socials--mobile { margin-top: 0 !important; }
  .footer-grid {
                  grid-template-columns: 1fr;
                  grid-template-areas: none;
                  gap: 32px 0;
                  text-align: center;
              }
  .footer-grid > .footer-col {
                  grid-area: auto;
                  align-items: center;
                  text-align: center;
              }
  .footer-grid > .footer-col .footer-contact { text-align: center; }
  .footer-grid > .footer-col .footer-credentials { text-align: center; }
  .footer-navs {
                  grid-area: auto;
                  display: flex;
                  flex-direction: column;
                  gap: 32px;
              }
  .footer-navs > .footer-col {
                  grid-area: auto;
                  align-items: center;
                  text-align: center;
              }
  .footer-navs > .footer-col:nth-child(1) ul { columns: 1; }
  .footer-navs .footer-col h2,
              .footer-navs .footer-col ul,
              .footer-navs .footer-col li,
              .footer-navs .footer-col li a {
                  text-align: center;
              }
  .footer-navs .footer-col .footer-social-link {
                  width: 42px !important;
                  height: 42px !important;
                  margin-top: 14px !important;
              }
  .footer-navs .footer-col .footer-social-link svg {
                  width: 24px !important;
                  height: 24px !important;
              }
}

@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .nav-logo { font-size: 15px; letter-spacing: 0.2em; }
  .nav-logo-mark { height: 30px; }
  .hero { padding: 70px 16px 32px; }
  .display { font-size: 46px !important; letter-spacing: 0.03em !important; }
  .hero__qualifier { font-size: 15px; }
  .hero__eyebrow .eyebrow { font-size: 12px; letter-spacing: 0.22em; }
  .hero__eyebrow-pron { font-size: 13px; margin-left: 0; }
  .hero__subtitle { font-size: 10px; letter-spacing: 0.2em; }
  .stats-grid { gap: 22px 12px !important; }
  .stat { padding: 6px 4px; }
  .stat__number { font-size: 34px !important; margin-bottom: 8px; }
  .stat__label { font-size: 11px; letter-spacing: 0.18em; line-height: 1.4; }
}

.contact-fab {
            position: fixed;
            /* 60px buffer + safe-area-inset gives ~94px clearance on notch devices,
               keeping the FAB above iOS Safari's bottom toolbar (which can be ~80-100px
               tall on iPhone Pro Max when the URL bar is shown) */
            bottom: 60px;
            bottom: calc(60px + env(safe-area-inset-bottom, 0px));
            right: 20px;
            z-index: 9998;
            display: none;
            /* Pin to GPU layer — prevents repaints during scroll from dropping the element */
            transform: translateZ(0);
            -webkit-transform: translateZ(0);
            will-change: transform;
        }
.contact-fab-btn {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: var(--gold);
            color: var(--black);
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(0,0,0,0.55), 0 0 0 1px rgba(188, 166, 110, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, background 0.3s ease;
            padding: 0;
        }
.contact-fab-btn:active {
            background: var(--gold-light);
            transform: scale(1.05);
        }
.contact-fab-btn svg {
            display: block;
            transition: transform 0.3s ease;
        }
.contact-fab.active .contact-fab-btn svg {
            transform: rotate(135deg);
        }
.contact-fab-menu {
            position: absolute;
            bottom: 68px;
            right: 0;
            background: #0a0a0a;
            border: 1px solid var(--line-gold);
            padding: 6px 0;
            min-width: 110px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(8px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
            box-shadow: 0 8px 20px rgba(0,0,0,0.45);
        }
.contact-fab.active .contact-fab-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
        }
.contact-fab-option {
            display: block;
            padding: 12px 18px;
            color: var(--offwhite);
            text-decoration: none;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            text-align: center;
            border-bottom: 2px solid transparent;
            transition: color 0.2s ease, border-bottom-color 0.2s ease, background 0.2s ease;
        }
.contact-fab-option:last-child { border-bottom: none; }
.contact-fab-option:active {
            color: var(--gold);
            background: rgba(188, 166, 110, 0.08);
        }

@media (max-width: 599px) {
  html, body { overflow-x: hidden; }
  .hero, .stats, section { overflow-x: hidden; }
  * { max-width: 100%; }
}

@media (hover: none) {
  .service-card:hover { background: var(--black); }
  .service-card:hover .service-card__icon {
                  background: var(--charcoal-2);
                  color: var(--gold);
                  border-color: var(--line-gold);
              }
  .service-card:hover .service-card__title::after { transform: scaleX(0); }
  .service-card:hover .service-card__arrow { color: var(--gold); }
  .pillar:hover { border-color: var(--line); transform: none; }
  .pillar:hover .pillar-image img {
                  transform: none;
                  filter: grayscale(10%) brightness(0.92) contrast(1.05);
              }
  .nav-services-menu { display: none; }
  .nav-services.nav-services--open .nav-services-menu { display: block; }
}
