/* ===========================================
   HIGH WINDS SUCCESS — styles.css  v2
   Design: Industrial-refined authority
   Palette: Deep navy · warm off-white · amber
   Type: Playfair Display / DM Sans
   =========================================== */


/* -------------------------------------------
   CUSTOM PROPERTIES
------------------------------------------- */
:root {
    --navy: #0f1e3c;
    --navy-mid: #1a2e54;
    --navy-light: #253f70;
    --amber: #c8860a;
    --amber-bright: #e09a10;
    --off-white: #f5f0e8;
    --cream: #faf8f4;
    --warm-gray: #8a8278;
    --light-rule: #e2ddd5;
    --text: #1c1712;
    --text-muted: #6b6560;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

    --sp-1: 0.5rem;
    --sp-2: 1rem;
    --sp-3: 1.5rem;
    --sp-4: 2rem;
    --sp-5: 3rem;
    --sp-6: 4rem;
    --sp-7: 6rem;
    --sp-8: 8rem;

    --max-w: 1140px;
    --gutter: clamp(1.25rem, 5vw, 3rem);
    --radius: 4px;
    --radius-lg: 12px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast: 0.18s;
    --t-mid: 0.35s;
}


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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--cream);
    color: var(--text);
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.1vw, 1.0625rem);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

ul,
ol {
    list-style: none;
}

address {
    font-style: normal;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    font-weight: 800;
}

h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 700;
}

em {
    font-style: italic;
}

details>summary {
    list-style: none;
}

details>summary::-webkit-details-marker {
    display: none;
}


/* -------------------------------------------
   LAYOUT HELPERS
------------------------------------------- */
.container {
    width: min(var(--max-w), 100%);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: var(--sp-2);
    display: block;
}

.eyebrow-light {
    color: var(--amber-bright);
}


/* -------------------------------------------
   BUTTONS
------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.8em 1.75em;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition:
        background var(--t-fast) var(--ease),
        color var(--t-fast) var(--ease),
        border-color var(--t-fast) var(--ease),
        transform var(--t-fast) var(--ease),
        box-shadow var(--t-fast) var(--ease);
    white-space: nowrap;
    text-align: center;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--amber);
    color: #fff;
    border-color: var(--amber);
}

.btn-primary:hover {
    background: var(--amber-bright);
    border-color: var(--amber-bright);
    box-shadow: 0 6px 24px rgba(200, 134, 10, 0.35);
}

/* Ghost on dark bg */
.btn-ghost {
    background: transparent;
    color: var(--off-white);
    border-color: rgba(245, 240, 232, 0.4);
}

.btn-ghost:hover {
    background: rgba(245, 240, 232, 0.1);
    border-color: var(--off-white);
}

.btn-outline {
    background: transparent;
    color: var(--amber);
    border-color: var(--amber);
}

.btn-outline:hover {
    background: var(--amber);
    color: #fff;
}

.btn-sm {
    font-size: 0.875rem;
    padding: 0.6em 1.35em;
}

.btn-lg {
    font-size: 1.0625rem;
    padding: 0.9em 2.2em;
}


/* -------------------------------------------
   HEADER
------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid transparent;
    transition:
        border-color var(--t-mid) var(--ease),
        box-shadow var(--t-mid) var(--ease);
}

.site-header.scrolled {
    border-bottom-color: var(--light-rule);
    box-shadow: 0 2px 20px rgba(15, 30, 60, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding-block: 1rem;
    width: min(var(--max-w), 100%);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Footer logo — invert to work on dark background */
.logo-img-footer {
    height: 44px;
    /* Logo is dark navy on white; invert + hue-rotate to cream-on-navy */
    filter: brightness(0) invert(1) opacity(0.85);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    margin-inline: auto;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy-mid);
    position: relative;
    padding-bottom: 2px;
    white-space: nowrap;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber);
    transition: width var(--t-fast) var(--ease);
}

.main-nav a:hover {
    color: var(--navy);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: transform var(--t-fast) var(--ease), opacity var(--t-fast);
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0 var(--gutter) var(--sp-4);
    border-top: 1px solid var(--light-rule);
    background: var(--cream);
}

.mobile-nav a {
    font-weight: 500;
    color: var(--navy-mid);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-rule);
    font-size: 1rem;
}

.mobile-nav .btn {
    margin-top: var(--sp-2);
    width: 100%;
    justify-content: center;
}

.mobile-nav.is-open {
    display: flex;
}


/* -------------------------------------------
   HERO
------------------------------------------- */
.hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    padding-top: clamp(3.5rem, 7vw, 6rem);
    padding-bottom: 0;
    /* portrait bleeds to bottom */
}

/* Subtle amber glow top-right */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at 70% 30%, rgba(200, 134, 10, 0.09) 0%, transparent 65%);
    pointer-events: none;
}

/* Bottom separator line */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--amber) 40%, var(--amber) 60%, transparent 100%);
    opacity: 0.3;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: end;
    position: relative;
    z-index: 1;
}

.hero-copy {
    padding-bottom: clamp(3rem, 6vw, 5rem);
    animation: fadeUp 0.65s var(--ease) both;
}

.hero-copy .eyebrow {
    margin-bottom: var(--sp-2);
}

.hero-copy h1 {
    color: var(--off-white);
    margin-bottom: var(--sp-3);
    font-weight: 900;
    letter-spacing: -0.015em;
}

.hero-copy h1 em {
    color: var(--amber);
}

.h1-accent {
    display: block;
    color: rgba(245, 240, 232, 0.45);
    font-size: 0.72em;
    font-weight: 700;
    font-style: normal;
    margin-top: 0.15em;
    letter-spacing: 0.02em;
}

.hero-sub {
    color: rgba(245, 240, 232, 0.72);
    font-size: clamp(1rem, 1.35vw, 1.1rem);
    max-width: 50ch;
    margin-bottom: var(--sp-4);
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: var(--sp-4);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(245, 240, 232, 0.45);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.trust-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---- Portrait ---- */
.hero-portrait {
    position: relative;
    align-self: end;
    animation: fadeUp 0.65s 0.12s var(--ease) both;
}

.portrait-frame {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    background: var(--navy-mid);
    border: 1px solid rgba(200, 134, 10, 0.25);
    border-bottom: none;
}

/* No ::after pseudo-element — it bleeds over the image */

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    display: block;
}

.portrait-badge {
    position: absolute;
    bottom: 1.5rem;
    left: -1.75rem;
    background: var(--amber);
    color: #fff;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.78rem;
    line-height: 1.45;
    max-width: 210px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.portrait-badge .badge-line {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    opacity: 0.85;
    margin-bottom: 0.25rem;
    letter-spacing: 0.03em;
}

.portrait-badge strong {
    font-weight: 700;
    font-size: 0.82rem;
}

/* Scroll hint */
.hero-scroll-hint {
    display: flex;
    justify-content: center;
    padding-top: var(--sp-5);
    padding-bottom: var(--sp-3);
    position: relative;
    z-index: 1;
}

.scroll-line {
    display: block;
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--amber), transparent);
    animation: scrollPulse 2.2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.15);
    }
}


/* -------------------------------------------
   PROOF BAND
------------------------------------------- */
.proof-band {
    background: var(--off-white);
    border-bottom: 1px solid var(--light-rule);
    padding: var(--sp-5) 0;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--sp-2) var(--sp-3);
    position: relative;
}

/* Vertical divider between stats */
.proof-stat+.proof-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--light-rule);
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.4;
    max-width: 16ch;
}


/* -------------------------------------------
   WEDGE SECTION
------------------------------------------- */
.wedge-section {
    padding: var(--sp-7) 0;
    background: var(--cream);
}

.wedge-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.wedge-copy h2 {
    margin-bottom: var(--sp-3);
    color: var(--navy);
}

.wedge-copy h2 em {
    color: var(--amber);
}

.wedge-copy p {
    color: var(--text-muted);
    max-width: 56ch;
    margin-bottom: var(--sp-3);
    line-height: 1.7;
}

/* ServiceTitan feature card */
.st-feature-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: var(--sp-4);
    border: 1px solid rgba(200, 134, 10, 0.22);
    position: relative;
    overflow: hidden;
}

.st-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--amber);
}

.st-feature-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.4);
    margin-bottom: 0.75rem;
    display: block;
}

.st-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-3);
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.st-logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--off-white);
    letter-spacing: -0.01em;
}

.st-arrow {
    color: var(--amber);
    font-size: 1.2rem;
    transition: transform var(--t-fast) var(--ease);
}

.st-link:hover .st-arrow {
    transform: translateX(4px);
}

/* Clearly marked as paraphrase, not direct quote */
.st-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 0.5rem;
    opacity: 0.88;
}

.st-quote-note {
    font-size: 0.72rem;
    color: rgba(245, 240, 232, 0.35);
    margin-bottom: var(--sp-3);
    display: block;
}

.st-read-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 0.03em;
    transition: color var(--t-fast);
}

.st-read-link:hover {
    color: var(--amber-bright);
}


/* -------------------------------------------
   PROBLEM → REFRAME
------------------------------------------- */
.problem-section {
    background: var(--navy);
    padding: var(--sp-7) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200, 134, 10, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.problem-section h2 {
    color: var(--off-white);
    margin-bottom: 0.4rem;
    position: relative;
}

.problem-sub {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    color: var(--amber);
    margin-bottom: var(--sp-6);
    position: relative;
}

/* Two-column comparison */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 0;
    text-align: left;
    max-width: 940px;
    margin-inline: auto;
    margin-bottom: var(--sp-5);
    position: relative;
    align-items: start;
}

.problem-col h3 {
    font-size: 0.72rem;
    font-weight: 700;
    font-family: var(--font-body);
    letter-spacing: 0.13em;
    text-transform: uppercase;
    margin-bottom: var(--sp-3);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid;
}

.problem-col-left {
    padding-right: var(--sp-3);
}

.problem-col-left h3 {
    color: rgba(245, 240, 232, 0.35);
    border-bottom-color: rgba(245, 240, 232, 0.1);
}

.problem-col-right {
    padding-left: var(--sp-3);
}

.problem-col-right h3 {
    color: var(--amber);
    border-bottom-color: rgba(200, 134, 10, 0.3);
}

.problem-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.problem-list li {
    padding-left: 1.35rem;
    position: relative;
    color: rgba(245, 240, 232, 0.45);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.problem-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(245, 240, 232, 0.2);
}

.solution-list li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--off-white);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-weight: 700;
}

/* Center VS divider */
.problem-col-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    position: relative;
}

.problem-col-divider::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(245, 240, 232, 0.08);
}

.vs-label {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.7rem;
    color: rgba(245, 240, 232, 0.18);
    letter-spacing: 0.12em;
    background: var(--navy);
    padding: 0.4rem 0;
    position: relative;
    z-index: 1;
}

.problem-close {
    color: rgba(245, 240, 232, 0.75);
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 60ch;
    margin-inline: auto;
    position: relative;
    font-style: italic;
    font-family: var(--font-display);
}


/* -------------------------------------------
   SERVICE CARDS
------------------------------------------- */
.services-section {
    padding: var(--sp-7) 0;
    background: var(--cream);
}

.services-section h2 {
    color: var(--navy);
    margin-bottom: var(--sp-5);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
}

.service-card {
    background: var(--off-white);
    border: 1px solid var(--light-rule);
    border-radius: var(--radius-lg);
    padding: var(--sp-4);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform var(--t-mid) var(--ease), box-shadow var(--t-mid) var(--ease);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 30, 60, 0.09);
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: var(--sp-2);
}

.service-card>p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--sp-3);
    line-height: 1.65;
}

.card-outcomes {
    margin-bottom: var(--sp-4);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex-grow: 1;
}

.card-outcomes li {
    font-size: 0.875rem;
    color: var(--text);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.45;
}

.card-outcomes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-weight: 700;
}

.card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.02em;
    transition: color var(--t-fast);
    margin-top: auto;
}

.card-link:hover {
    color: var(--amber);
}

/* Flagship card */
.service-card-flagship {
    border-color: var(--amber);
    border-top-width: 3px;
}

/* PE card — dark treatment */
.service-card-pe {
    background: var(--navy);
    border-color: var(--navy);
}

.service-card-pe h3 {
    color: var(--off-white);
}

.service-card-pe>p {
    color: rgba(245, 240, 232, 0.6);
}

.service-card-pe .card-outcomes li {
    color: var(--off-white);
}

.service-card-pe .card-link {
    color: var(--amber);
}

.service-card-pe .card-tag {
    background: rgba(200, 134, 10, 0.15);
    border-color: rgba(200, 134, 10, 0.35);
}

/* Card tags */
.card-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--amber);
    background: rgba(200, 134, 10, 0.08);
    border: 1px solid rgba(200, 134, 10, 0.25);
    padding: 0.22em 0.65em;
    border-radius: 3px;
    margin-bottom: var(--sp-2);
    width: fit-content;
}


/* -------------------------------------------
   HOW WE WORK
------------------------------------------- */
.how-section {
    background: var(--off-white);
    padding: var(--sp-7) 0;
    border-top: 1px solid var(--light-rule);
    border-bottom: 1px solid var(--light-rule);
    text-align: center;
}

.how-section h2 {
    color: var(--navy);
    margin-bottom: var(--sp-5);
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    text-align: left;
    margin-bottom: var(--sp-5);
}

.how-card {
    background: var(--cream);
    border: 1px solid var(--light-rule);
    border-radius: var(--radius-lg);
    padding: var(--sp-4) var(--sp-4) var(--sp-4) calc(var(--sp-4) + 3px);
    position: relative;
    overflow: hidden;
}

/* Amber left stripe — wider for visibility */
.how-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--amber);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.how-icon {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 3.5rem;
    color: var(--light-rule);
    line-height: 1;
    margin-bottom: var(--sp-2);
    user-select: none;
}

.how-card h3 {
    color: var(--navy);
    margin-bottom: var(--sp-2);
}

.how-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--sp-2);
    line-height: 1.7;
}

.how-ideal {
    font-size: 0.875rem !important;
    color: var(--amber) !important;
    font-weight: 500;
    background: rgba(200, 134, 10, 0.06);
    border-radius: var(--radius);
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(200, 134, 10, 0.15);
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
}

.how-cta-note {
    color: var(--text-muted);
    margin-bottom: var(--sp-3);
    font-style: italic;
}


/* -------------------------------------------
   TESTIMONIALS
------------------------------------------- */
.testimonials-section {
    background: var(--navy);
    padding: var(--sp-7) 0;
    position: relative;
    overflow: hidden;
}

/* Large decorative open-quote */
.testimonials-section::before {
    content: '\201C';
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 22rem;
    color: rgba(245, 240, 232, 0.025);
    line-height: 1;
    pointer-events: none;
}

.testimonials-section h2 {
    color: var(--off-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
    margin-top: var(--sp-5);
    margin-bottom: var(--sp-3);
}

.testimonial-card {
    background: rgba(245, 240, 232, 0.05);
    border: 1px solid rgba(245, 240, 232, 0.09);
    border-radius: var(--radius-lg);
    padding: var(--sp-4);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--amber);
    opacity: 0.55;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.testimonial-card blockquote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--off-white);
    line-height: 1.75;
    margin-bottom: var(--sp-3);
    opacity: 0.88;
}

.testimonial-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: var(--sp-2);
    border-top: 1px solid rgba(245, 240, 232, 0.08);
}

.testimonial-card figcaption strong {
    color: var(--off-white);
    font-size: 0.875rem;
    font-weight: 600;
}

.testimonial-card figcaption span {
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.8rem;
}

.testimonials-note {
    color: rgba(245, 240, 232, 0.25);
    font-size: 0.8rem;
    font-style: italic;
    text-align: center;
}


/* -------------------------------------------
   FAQ
------------------------------------------- */
.faq-section {
    padding: var(--sp-7) 0;
    background: var(--cream);
}

.faq-inner {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 7rem;
}

.faq-header h2 {
    color: var(--navy);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.2;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--light-rule);
}

.faq-item {
    border-bottom: 1px solid var(--light-rule);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-2);
    padding: 1.1rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--navy);
    transition: color var(--t-fast);
    line-height: 1.45;
}

.faq-q:hover {
    color: var(--amber);
}

.faq-icon {
    flex-shrink: 0;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    border: 1.5px solid var(--light-rule);
    position: relative;
    transition: background var(--t-fast), border-color var(--t-fast);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--navy);
    transition: transform var(--t-fast) var(--ease), opacity var(--t-fast);
}

.faq-icon::before {
    width: 9px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.5px;
    height: 9px;
    transform: translate(-50%, -50%);
}

details[open] .faq-icon {
    background: var(--amber);
    border-color: var(--amber);
}

details[open] .faq-icon::before {
    background: #fff;
}

details[open] .faq-icon::after {
    background: #fff;
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

details[open] .faq-q {
    color: var(--amber);
}

.faq-a {
    padding-bottom: 1.1rem;
}

.faq-a p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 58ch;
}


/* -------------------------------------------
   CERTIFICATIONS BAND
------------------------------------------- */
.certs-section {
    background: var(--off-white);
    border-top: 1px solid var(--light-rule);
    border-bottom: 1px solid var(--light-rule);
    padding: var(--sp-5) 0;
    text-align: center;
}

.certs-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--sp-4);
    display: block;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: var(--sp-3);
    margin-bottom: var(--sp-3);
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 0.75rem;
    padding: var(--sp-3) var(--sp-2);
    border: 1.5px solid var(--light-rule);
    border-radius: var(--radius-lg);
    background: var(--cream);
    width: 160px;
    text-decoration: none;
    transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}

.cert-badge:hover {
    border-color: rgba(200, 134, 10, 0.4);
    box-shadow: 0 6px 20px rgba(15, 30, 60, 0.08);
    transform: translateY(-2px);
}

/* Fixed container for all badge images — same box every time */
.cert-badge-img-wrap {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.cert-badge span {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.cert-badge strong {
    color: var(--navy);
    font-size: 0.75rem;
    display: block;
    margin-top: 0.15rem;
}

.cert-badge-maxwell {
    border-color: rgba(200, 134, 10, 0.2);
}

.certs-verify {
    font-size: 0.8125rem;
}

.certs-verify a {
    color: var(--amber);
    font-weight: 600;
    transition: color var(--t-fast);
}

.certs-verify a:hover {
    color: var(--amber-bright);
}


/* -------------------------------------------
   FINAL CTA BAND
------------------------------------------- */
.final-cta {
    background: var(--navy);
    padding: var(--sp-7) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 40% 50%, rgba(200, 134, 10, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta h2 {
    color: var(--off-white);
    margin-bottom: var(--sp-3);
    position: relative;
}

.final-cta h2 em {
    color: var(--amber);
}

.final-cta>.container>p {
    color: rgba(245, 240, 232, 0.62);
    max-width: 52ch;
    margin-inline: auto;
    margin-bottom: var(--sp-5);
    position: relative;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--sp-3);
    position: relative;
}

.cta-or-email {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.45);
    transition: color var(--t-fast);
}

.cta-or-email:hover {
    color: var(--amber);
}


/* -------------------------------------------
   FOOTER
------------------------------------------- */
.site-footer {
    background: var(--navy);
    border-top: 1px solid rgba(245, 240, 232, 0.07);
}

.footer-inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    padding-top: var(--sp-6);
    padding-bottom: var(--sp-6);
}

.footer-tagline {
    color: rgba(245, 240, 232, 0.4);
    font-size: 0.875rem;
    margin-top: var(--sp-2);
    margin-bottom: var(--sp-3);
    line-height: 1.55;
}

.footer-social {
    display: flex;
    gap: var(--sp-3);
}

.footer-social a {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(245, 240, 232, 0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color var(--t-fast);
}

.footer-social a:hover {
    color: var(--amber);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-nav-col h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.3);
    margin-bottom: 0.3rem;
}

.footer-nav-col a,
.footer-nav-col address {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.55;
    transition: color var(--t-fast);
}

.footer-nav-col a:hover {
    color: var(--amber);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 232, 0.07);
    padding: var(--sp-3) 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-2);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.28);
}

.footer-bottom a {
    color: rgba(245, 240, 232, 0.38);
    font-size: 0.8rem;
    transition: color var(--t-fast);
}

.footer-bottom a:hover {
    color: var(--amber);
}


/* -------------------------------------------
   ANIMATIONS
------------------------------------------- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* -------------------------------------------
   RESPONSIVE — Tablet (≤ 960px)
------------------------------------------- */
@media (max-width: 960px) {

    /* Header */
    .main-nav,
    .header-inner>.btn-primary {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero — stack vertically, copy first */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--sp-4);
    }

    .hero-portrait {
        order: -1;
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: var(--sp-3);
    }

    .portrait-frame {
        width: min(220px, 48vw);
        aspect-ratio: 3 / 4;
        border-radius: var(--radius-lg);
        /* full radius since badge is beside, not overlapping */
    }

    .portrait-badge {
        position: static;
        box-shadow: none;
        border: 1px solid rgba(200, 134, 10, 0.4);
        max-width: none;
    }

    /* Proof — 2×2 */
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-stat+.proof-stat::before {
        display: none;
    }

    .proof-stat {
        border: 1px solid var(--light-rule);
        border-radius: var(--radius);
    }

    /* Wedge */
    .wedge-inner {
        grid-template-columns: 1fr;
    }

    /* Services — 2 col on tablet */
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* How We Work */
    .how-grid {
        grid-template-columns: 1fr;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ */
    .faq-inner {
        grid-template-columns: 1fr;
    }

    .faq-header {
        position: static;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }
}


/* -------------------------------------------
   RESPONSIVE — Mobile (≤ 600px)
------------------------------------------- */
@media (max-width: 600px) {
    :root {
        --sp-7: 4rem;
        --sp-6: 3rem;
    }

    body {
        font-size: 1rem;
    }

    /* Hero — portrait compact grid on mobile too */
    .hero-portrait {
        grid-template-columns: auto 1fr;
        gap: var(--sp-2);
        align-items: center;
    }

    .portrait-frame {
        width: min(160px, 42vw);
        aspect-ratio: 3 / 4;
        border-radius: var(--radius-lg);
    }

    .portrait-badge {
        font-size: 0.75rem;
        padding: 0.85rem 1rem;
    }

    /* Hero copy left-aligned on mobile (easier to read) */
    .hero-copy h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    /* Proof — keep 2×2 */
    .proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .proof-stat {
        border-radius: var(--radius);
    }

    /* Problem section — stack columns */
    .problem-grid {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .problem-col-divider {
        display: none;
    }

    .problem-col-left {
        padding-right: 0;
        padding-bottom: var(--sp-4);
        margin-bottom: var(--sp-4);
        border-bottom: 1px solid rgba(245, 240, 232, 0.1);
    }

    .problem-col-right {
        padding-left: 0;
    }

    /* Services — single column */
    .service-cards {
        grid-template-columns: 1fr;
    }

    /* Cert badges — 3 per row on mobile */
    .cert-badge {
        width: calc(33.33% - 0.75rem);
        min-width: 100px;
        padding: var(--sp-2) var(--sp-1);
    }

    .cert-badge-img-wrap {
        width: 64px;
        height: 64px;
    }

    /* Footer */
    .footer-nav {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }
}


/* -------------------------------------------
   PRINT
------------------------------------------- */
@media print {

    .site-header,
    .hero-scroll-hint,
    .final-cta,
    .mobile-menu-toggle {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        background: #fff;
    }

    .hero-copy h1,
    .hero-sub,
    .hero-trust {
        color: #000;
    }
}