/* ============================================================
   CHRF Properties — Main Stylesheet
   Color system, typography, components, layout, responsive
   ============================================================ */

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
    --navy:        #1a3a5c;
    --navy-dark:   #0d2440;
    --gold:        #c8992a;
    --gold-dark:   #b8881f;
    --gold-bg:     rgba(200, 153, 42, 0.10);
    --gold-border: rgba(200, 153, 42, 0.35);
    --bg-grey:     #f0f0f0;
    --bg-light:    #f7f7f7;
    --white:       #ffffff;
    --text-dark:   #222222;
    --text-grey:   #555555;
    --text-light:  #777777;
    --shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
    --shadow-md:   0 4px 16px rgba(0,0,0,0.10);
    --radius:      6px;
    --header-h:    68px;
    --transition:  0.2s ease;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-grey);
    background: var(--white);
    overflow-x: hidden; /* prevent horizontal scroll on any viewport */
}

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

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--navy);
}
h1 { font-size: clamp(28px, 5vw, 44px); }
h2 { font-size: clamp(22px, 4vw, 32px); }
h3 { font-size: clamp(16px, 2.5vw, 19px); }

.section-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ── Layout Helpers ──────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.container--narrow { max-width: 760px; }
.container--wide   { max-width: 1280px; }

.text-center { text-align: center; }

section { padding: 64px 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--white) !important;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 34px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 16px var(--gold-border);
    transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
    text-decoration: none !important;
}
.btn-gold:hover {
    background: var(--gold-dark);
    box-shadow: 0 6px 22px rgba(200,153,42,0.50);
    transform: translateY(-1px);
    color: var(--white) !important;
}
.btn-gold:active { transform: translateY(0); }
.btn-full { width: 100%; text-align: center; display: block; }


/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--navy);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    padding: 0 32px;
    max-width: 1280px;
    margin: 0 auto;
}

.header-spacer { height: var(--header-h); }

/* Logo */
.site-logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-name {
    font-size: 17px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.5px;
    line-height: 1.1;
}
.logo-tagline {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Desktop nav */
.site-nav ul {
    display: flex;
    gap: 28px;
}
.site-nav a {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    transition: color var(--transition);
}
.site-nav a:hover { color: var(--white); }

.header-cta { font-size: 13px; padding: 9px 20px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
    background: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav ul {
    display: flex;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
}
.mobile-nav a {
    display: block;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-weight: 500;
}
.mobile-nav li:last-child a {
    margin-top: 12px;
    text-align: center;
    border: none;
}

/* Minimal header (Get an Offer page) */
.site-header--minimal .header-inner { justify-content: center; }


/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
    background: linear-gradient(135deg, var(--navy) 55%, var(--navy-dark) 100%);
    padding: 80px 24px 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Subtle diagonal texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(200,153,42,0.04) 0px,
        rgba(200,153,42,0.04) 1px,
        transparent 1px,
        transparent 60px
    );
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(200,153,42,0.18);
    border: 1px solid rgba(200,153,42,0.40);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.hero h1 {
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 18px;
}
.hero h1 em {
    color: var(--gold);
    font-style: normal;
}

.hero-sub {
    color: rgba(255,255,255,0.78);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 34px;
}

.hero .btn-gold {
    font-size: 17px;
    padding: 17px 38px;
}

.hero-micro {
    display: block;
    color: rgba(255,255,255,0.40);
    font-size: 12px;
    margin-top: 14px;
}

/* Mini hero used on inner pages */
.hero-mini {
    background: linear-gradient(135deg, var(--navy) 55%, var(--navy-dark) 100%);
    padding: 56px 24px;
    text-align: center;
}
.hero-mini h1 { color: var(--white); max-width: 760px; margin: 0 auto 14px; }
.hero-mini p  { color: rgba(255,255,255,0.78); font-size: 16px; max-width: 620px; margin: 0 auto; }


/* ════════════════════════════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════════════════════════════ */
.trust-bar {
    background: var(--white);
    border-bottom: 3px solid var(--gold);
    padding: 28px 24px;
}
.trust-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 40px;
    max-width: 1100px;
    margin: 0 auto;
}
.trust-item {
    text-align: center;
    min-width: 100px;
}
.trust-stat {
    font-size: 30px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}
.trust-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-top: 4px;
}
.trust-divider {
    width: 1px;
    height: 40px;
    background: #e0e0e0;
}


/* ════════════════════════════════════════════════════════════
   HOW IT WORKS — STEP CARDS
   ════════════════════════════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    border-top: 4px solid var(--gold);
    padding: 30px 24px 28px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.step-num {
    width: 46px;
    height: 46px;
    background: var(--navy);
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.step-card h3 { margin-bottom: 10px; font-size: 17px; }
.step-card p  { font-size: 14px; color: var(--text-grey); }


/* ════════════════════════════════════════════════════════════
   BEFORE / AFTER GALLERY
   ════════════════════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* Individual before/after slider */
.ba-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    cursor: ew-resize;
    user-select: none;
    aspect-ratio: 4/3;
    background: var(--bg-light);
}
.ba-slider img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.ba-slider .ba-after {
    clip-path: inset(0 0 0 50%);
    transition: clip-path 0s;
}
.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--white);
    z-index: 10;
    pointer-events: none;
}
.ba-handle::before,
.ba-handle::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.ba-handle::before { top: 50%; transform: translate(-50%, -50%); }
.ba-handle::after  { display: none; }

/* Arrow icons inside the handle circle */
.ba-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    color: var(--navy);
    font-size: 14px;
    pointer-events: none;
    display: flex;
    gap: 2px;
}

/* Labels */
.ba-label {
    position: absolute;
    top: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
}
.ba-label--before {
    left: 10px;
    background: rgba(0,0,0,0.55);
    color: #fff;
}
.ba-label--after {
    right: 10px;
    background: rgba(26,58,92,0.85);
    color: #fff;
}

/* Caption below slider */
.ba-caption {
    background: var(--white);
    padding: 12px 14px;
    border-radius: 0 0 var(--radius) var(--radius);
    font-size: 13px;
    color: var(--text-grey);
}
.ba-caption strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

/* Gallery card wrapper (slider + caption together) */
.gallery-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.gallery-card .ba-slider { border-radius: 0; box-shadow: none; }

/* "See all" link */
.gallery-more {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
}
.gallery-more a {
    color: var(--navy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.gallery-more a:hover { color: var(--gold); }


/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    border-left: 4px solid var(--gold);
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-style: italic;
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }

.testimonial-author {
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.testimonial-city {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
}


/* ════════════════════════════════════════════════════════════
   OFFER FORM
   ════════════════════════════════════════════════════════════ */
.offer-section {
    background: var(--navy);
    padding: 64px 24px;
}
.offer-section .section-label { color: var(--gold); }
.offer-section h2 { color: var(--white); }
.offer-section .section-sub {
    color: rgba(255,255,255,0.70);
    font-size: 15px;
    max-width: 540px;
    margin: 10px auto 36px;
}

.offer-form { max-width: 600px; margin: 0 auto; }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.offer-form--dark label { color: rgba(255,255,255,0.75); }
.offer-form--light label { color: var(--navy); }

.req { color: var(--gold); }

.offer-form--dark input,
.offer-form--dark select {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    color: var(--white);
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color var(--transition);
    -webkit-appearance: none;
    appearance: none;
}
.offer-form--dark input::placeholder { color: rgba(255,255,255,0.38); }
.offer-form--dark select option      { background: var(--navy-dark); color: var(--white); }
.offer-form--dark input:focus,
.offer-form--dark select:focus {
    outline: none;
    border-color: var(--gold);
}

.offer-form--light input,
.offer-form--light select {
    background: var(--white);
    border: 1px solid #ddd;
    color: var(--text-dark);
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color var(--transition);
    -webkit-appearance: none;
    appearance: none;
}
.offer-form--light input:focus,
.offer-form--light select:focus { outline: none; border-color: var(--gold); }

/* Form messages (success / error) */
.form-messages {
    min-height: 0;
    font-size: 14px;
    margin-bottom: 12px;
    padding: 0;
    transition: all 0.3s ease;
    border-radius: 4px;
}
.form-messages.success {
    background: rgba(45,160,100,0.15);
    border: 1px solid rgba(45,160,100,0.40);
    color: #1a8a50;
    padding: 14px 16px;
}
.form-messages.error {
    background: rgba(200,50,50,0.15);
    border: 1px solid rgba(200,50,50,0.35);
    color: #c03030;
    padding: 14px 16px;
}
.offer-form--dark .form-messages.success { color: #5de89a; }
.offer-form--dark .form-messages.error   { color: #ff8a8a; }

.form-privacy {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.38);
    margin-top: 12px;
}
.offer-form--light .form-privacy { color: var(--text-light); }


/* ════════════════════════════════════════════════════════════
   CTA SECTION (navy band with button)
   ════════════════════════════════════════════════════════════ */
.cta-section {
    background: var(--navy);
    padding: 64px 24px;
    text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 28px; }


/* ════════════════════════════════════════════════════════════
   HOW IT WORKS PAGE — TIMELINE STRIP
   ════════════════════════════════════════════════════════════ */
.timeline {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 40px 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.timeline-step {
    flex: 1;
    background: var(--navy);
    padding: 22px 18px;
    text-align: center;
    position: relative;
}
.timeline-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 18px;
    z-index: 1;
}
.timeline-day {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.timeline-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

/* Path 2 — Retail Listing section */
.path-section {
    background: var(--bg-light);
    padding: 56px 24px;
}
.path-section h2 { margin-bottom: 16px; }
.path-section p  { max-width: 680px; font-size: 15px; line-height: 1.75; }
.path-who {
    display: inline-block;
    margin-top: 20px;
    background: var(--gold-bg);
    border: 1px solid rgba(200,153,42,0.25);
    border-radius: var(--radius);
    padding: 14px 20px;
    font-size: 14px;
    color: var(--navy);
    font-weight: 600;
}

/* FAQ accordion */
.faq-list { margin-top: 36px; }
.faq-item {
    border-bottom: 1px solid #e8e8e8;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: inherit;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item.is-open .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-grey);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.is-open .faq-answer {
    max-height: 400px;
    padding-bottom: 18px;
}


/* ════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════ */
.about-story {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: start;
}
.about-story p { margin-bottom: 14px; line-height: 1.75; }

.about-photo {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: var(--bg-light);
}
.about-photo-placeholder {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    aspect-ratio: 3/4;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 13px;
    text-align: center;
    border: 2px dashed #ddd;
}

.credentials-section { background: var(--bg-light); }

.credentials-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.credentials-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}
.credentials-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.credentials-quote {
    margin-top: 28px;
    padding: 20px 24px;
    background: var(--white);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.7;
}

.service-area-section h2 { margin-bottom: 28px; }
.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.service-area-box {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 24px;
}
.service-area-box h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 12px;
}
.service-area-box ul { display: flex; flex-direction: column; gap: 6px; }
.service-area-box li {
    font-size: 14px;
    color: var(--text-grey);
    padding-left: 14px;
    position: relative;
}
.service-area-box li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.service-area-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-grey);
    font-style: italic;
}


/* ════════════════════════════════════════════════════════════
   GET AN OFFER PAGE
   ════════════════════════════════════════════════════════════ */
.offer-page-body {
    padding: 64px 24px;
    background: var(--bg-grey);
}
.offer-page-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}
.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-grey);
    line-height: 1.5;
}
.trust-list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
}

.offer-page-contact {
    margin-top: 28px;
    padding: 16px 18px;
    background: var(--navy);
    border-radius: var(--radius);
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}
.offer-page-contact a {
    color: var(--gold);
    font-weight: 700;
}

/* White card for the form on the light page */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-md);
}
.form-card h2 { margin-bottom: 6px; }
.form-card .form-card-sub {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 28px;
    line-height: 1.6;
}


/* ════════════════════════════════════════════════════════════
   REASSURANCE BANNER (Our Work page)
   ════════════════════════════════════════════════════════════ */
.reassurance-banner {
    background: rgba(200,153,42,0.09);
    border-left: 4px solid var(--gold);
    padding: 18px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    font-size: 15px;
    color: var(--navy);
    line-height: 1.7;
    margin: 32px 0;
}


/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--navy-dark);
    padding: 32px 24px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-logo .logo-name {
    font-size: 15px;
    font-weight: 900;
    color: var(--gold);
}
.footer-contact {
    font-size: 13px;
    color: rgba(255,255,255,0.60);
    text-align: center;
}
.footer-contact a { color: rgba(255,255,255,0.70); }
.footer-contact a:hover { color: var(--gold); }
.footer-sep { margin: 0 8px; }
.footer-service {
    margin-top: 5px;
    font-size: 12px;
    color: rgba(255,255,255,0.40);
}
.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */

/* ── Tablet / Large Mobile  ≤ 900px ──────────────────────── */
@media (max-width: 900px) {
    .steps-grid        { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
    .gallery-grid      { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .about-story       { grid-template-columns: 1fr; }
    /* Photo appears below bio on single column; keep face in frame */
    .about-photo {
        max-width: 280px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: center top;
    }
    .about-photo-placeholder { max-width: 280px; aspect-ratio: 1/1; }
    .service-area-grid { grid-template-columns: 1fr; }
    .offer-page-grid   { grid-template-columns: 1fr; }
    /* Timeline stacks vertically */
    .timeline          { flex-direction: column; }
    .timeline-step:not(:last-child)::after {
        content: '↓';
        right: auto; top: auto;
        bottom: -14px; left: 50%;
        transform: translateX(-50%);
    }
}

/* ── Narrow tablet / header CTA  ≤ 820px ─────────────────── */
@media (max-width: 820px) {
    /* Drop the header CTA button before the nav gets too tight */
    .header-cta { display: none; }
}

/* ── Mobile  ≤ 680px ─────────────────────────────────────── */
@media (max-width: 680px) {

    :root { --header-h: 60px; }

    body    { font-size: 14px; }
    section { padding: 48px 0; }

    /* Tighter container padding on phones */
    .container { padding: 0 16px; }

    .header-inner { padding: 0 16px; }

    /* Hide desktop nav & CTA; show hamburger */
    .site-nav, .header-cta { display: none; }
    .hamburger              { display: flex; }

    /* Hero */
    .hero        { padding: 48px 16px 56px; }
    .hero-sub    { font-size: 15px; }
    /* Full-width CTA tap target on mobile */
    .hero .btn-gold {
        display: block;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        font-size: 15px;
        padding: 15px 20px;
        text-align: center;
    }

    /* Trust bar — tighter, no dividers */
    .trust-bar-inner { gap: 6px 20px; }
    .trust-stat      { font-size: 22px; }
    .trust-divider   { display: none; }

    /* Gallery — single column */
    .gallery-grid { grid-template-columns: 1fr; }

    /* "Path Two" info box — allow text to wrap instead of overflow */
    .path-who {
        display: block;
        font-size: 13px;
        line-height: 1.7;
    }

    /* Offer form — single column */
    .form-grid           { grid-template-columns: 1fr; }
    .form-field--full    { grid-column: 1; }
    /* Ensure inputs stretch full width */
    .offer-form input,
    .offer-form select   { width: 100%; }

    /* Form card on Get an Offer page */
    .form-card { padding: 24px 16px; }

    /* Hero mini padding */
    .hero-mini { padding: 40px 16px; }

    /* Footer stacks */
    .footer-inner       { flex-direction: column; text-align: center; }
    .footer-sep         { display: none; }
    .footer-contact a   { display: block; margin: 4px 0; }
}

/* ── Small phones  ≤ 420px ───────────────────────────────── */
@media (max-width: 420px) {
    :root { --header-h: 56px; }

    section     { padding: 40px 0; }
    .container  { padding: 0 12px; }

    .trust-stat  { font-size: 20px; }
    .trust-item  { min-width: 72px; }
    .trust-label { font-size: 10px; }

    .hero-mini   { padding: 32px 12px; }
    .form-card   { padding: 20px 12px; }
    .reassurance-banner { padding: 14px 16px; font-size: 14px; }

    .step-card   { padding: 22px 16px; }
    .credentials-quote { padding: 16px 16px; }
}
