/* ============================================================
   style.css — landscaping-hampshire.co.uk
   Moore & Son Bricklaying Ltd
   Brand: Gold #C9A84C | Charcoal #2C2C2C | Stone #6B6B6B
   ============================================================ */

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

:root {
    --gold:          #C9A84C;
    --gold-dark:     #A8872E;
    --gold-light:    #E8C96A;
    --gold-pale:     #FDF6E3;
    --charcoal:      #2C2C2C;
    --charcoal-mid:  #3D3D3D;
    --stone:         #6B6B6B;
    --stone-light:   #9A9A9A;
    --off-white:     #F8F8F6;
    --white:         #FFFFFF;
    --border:        #E0D9C8;
    --shadow:        rgba(0,0,0,0.12);
    --shadow-lg:     rgba(0,0,0,0.22);
    --font-main:     'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-heading:  Georgia, 'Times New Roman', serif;
    --radius:        6px;
    --radius-lg:     12px;
    --transition:    0.25s ease;
    --max-width:     1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-main);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--charcoal);
    line-height: 1.25;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p  { margin-bottom: 1rem; color: var(--stone); font-size: 1.05rem; }
p:last-child { margin-bottom: 0; }

.gold-text { color: var(--gold); }
.lead { font-size: 1.15rem; color: var(--charcoal-mid); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-dark { background: var(--charcoal); }
.section-dark h2, .section-dark h3, .section-dark p { color: var(--off-white); }
.section-gold { background: var(--gold-pale); }
.section-stone { background: var(--off-white); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    font-family: var(--font-main);
    line-height: 1;
}
.btn-gold {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
}
.btn-dark {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}
.btn-dark:hover {
    background: var(--charcoal-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }

/* ── Top Bar ──────────────────────────────────────────────── */
.top-bar {
    background: var(--charcoal);
    color: var(--stone-light);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--gold);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--white); }
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.top-bar-item svg { width: 14px; height: 14px; fill: var(--gold); flex-shrink: 0; }

/* ── Header / Navigation ──────────────────────────────────── */
#site-header {
    background: var(--white);
    box-shadow: 0 2px 16px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 1rem;
}
.site-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.site-logo img { height: 64px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
}
.logo-sub {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Main nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
    padding: 0.6rem 0.9rem;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold-dark); }
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0.9rem;
    right: 0.9rem;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::before {
    content: '▾';
    position: absolute;
    right: 0.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--gold);
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--white);
    min-width: 240px;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px var(--shadow-lg);
    border-top: 3px solid var(--gold);
    padding: 0.5rem 0;
    z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: var(--charcoal);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 0;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: var(--gold-pale); color: var(--gold-dark); }

.nav-cta { margin-left: 0.75rem; }

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--charcoal);
    transition: all var(--transition);
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--charcoal);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    transition: transform 8s ease;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(44,44,44,0.85) 0%,
        rgba(44,44,44,0.55) 50%,
        rgba(201,168,76,0.15) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.5);
    color: var(--gold-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero h1 span { color: var(--gold-light); }
.hero p {
    color: rgba(255,255,255,0.88);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    max-width: 580px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}
.hero-trust {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}
.trust-item svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }

/* ── Section Headers ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { max-width: 600px; margin: 0 auto; }
.section-header .gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ── Service Cards ────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--shadow-lg);
}
.service-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.service-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--charcoal-mid), var(--charcoal));
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card-img-placeholder svg { width: 48px; height: 48px; fill: var(--gold); opacity: 0.6; }
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.service-card-body p { font-size: 0.95rem; margin-bottom: 1.25rem; }
.service-card-link {
    font-weight: 700;
    color: var(--gold-dark);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.service-card-link:hover { color: var(--gold); }
.service-card-link::after { content: ' →'; }

/* ── Why Choose Us ────────────────────────────────────────── */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.features-grid .feature-item {
    flex: 0 0 calc(25% - 1.5rem);
    max-width: calc(25% - 1.5rem);
}
.feature-item { text-align: center; }
.feature-icon {
    width: 72px;
    height: 72px;
    background: var(--gold-pale);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.feature-icon svg { width: 32px; height: 32px; fill: var(--gold); }
.feature-item h4 { margin-bottom: 0.5rem; font-size: 1.05rem; }

/* ── Quote CTA Banner ─────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
    padding: 4rem 0;
    text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.cta-banner .btn-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Floating CTA Bar (mobile) ────────────────────────────── */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--charcoal);
    border-top: 3px solid var(--gold);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
}
.floating-cta a {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* ── Gallery Grid ─────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,44,44,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p { color: var(--white); font-size: 0.92rem; margin: 0; }

/* ── Blog Cards ───────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px var(--shadow-lg); }
.blog-card-img { width: 100%; height: 190px; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--stone-light);
    margin-bottom: 0.75rem;
}
.blog-tag {
    background: var(--gold-pale);
    color: var(--gold-dark);
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card-body p { font-size: 0.92rem; }

/* ── Seasonal Section ─────────────────────────────────────── */
.seasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.season-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    transition: transform var(--transition);
}
.season-card:hover { transform: translateY(-4px); }
.season-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.season-spring  .season-card-bg { background-color: #4A7C59; }
.season-summer  .season-card-bg { background-color: #8B7355; }
.season-autumn  .season-card-bg { background-color: #7D4E24; }
.season-winter  .season-card-bg { background-color: #3A4A5C; }
.season-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}
.season-card-body {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    color: var(--white);
}
.season-label {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.season-card-body h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.4rem; }
.season-card-body p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin: 0; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    line-height: 1;
    transition: transform var(--transition);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding-top: 0.75rem;
    color: var(--stone);
    font-size: 0.98rem;
    line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── Quote Form ───────────────────────────────────────────── */
.quote-form-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 40px var(--shadow-lg);
    overflow: hidden;
}
.quote-form-header {
    background: var(--charcoal);
    border-bottom: 4px solid var(--gold);
    padding: 2rem 2.5rem;
    text-align: center;
}
.quote-form-header h2 { color: var(--white); margin-bottom: 0.4rem; }
.quote-form-header p { color: rgba(255,255,255,0.75); margin: 0; }
.quote-form-body { padding: 2.5rem; }

/* Steps */
.quote-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
    counter-reset: step;
}
.quote-step {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    flex: 1;
}
.quote-step::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}
.quote-step:last-child::before { display: none; }
.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--border);
    color: var(--stone);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
    transition: all var(--transition);
}
.quote-step.active .step-num {
    background: var(--gold);
    color: var(--charcoal);
}
.quote-step.done .step-num {
    background: var(--charcoal);
    color: var(--white);
}
.step-label {
    font-size: 0.75rem;
    color: var(--stone-light);
    font-weight: 600;
    text-align: center;
}
.quote-step.active .step-label { color: var(--gold-dark); }

.form-step { display: none; }
.form-step.active { display: block; }

/* Form fields */
.form-group { margin-bottom: 1.4rem; }
.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}
.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--charcoal);
    transition: border-color var(--transition);
    background: var(--white);
}
.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-control::placeholder { color: var(--stone-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Service selector */
.service-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}
.service-option { display: none; }
.service-option-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--stone);
}
.service-option-label svg { width: 28px; height: 28px; fill: var(--stone-light); transition: fill var(--transition); }
.service-option:checked + .service-option-label {
    border-color: var(--gold);
    background: var(--gold-pale);
    color: var(--charcoal);
}
.service-option:checked + .service-option-label svg { fill: var(--gold); }

/* Estimate result */
.estimate-result {
    background: var(--gold-pale);
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    text-align: center;
    margin: 1.5rem 0;
}
.estimate-range {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    font-family: var(--font-heading);
}
.estimate-range span { color: var(--gold-dark); }
.estimate-note {
    font-size: 0.85rem;
    color: var(--stone);
    margin-top: 0.5rem;
}
.form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

/* ── Testimonials ─────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: 0 4px 20px var(--shadow);
    border-left: 4px solid var(--gold);
}
.testimonial-stars { color: #FFB800; font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial-text {
    font-style: italic;
    color: var(--stone);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 0.98rem;
}
.testimonial-author {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--charcoal);
}
.testimonial-location { font-size: 0.82rem; color: var(--stone-light); }

/* ── Coverage Area Map Strip ──────────────────────────────── */
.coverage-strip {
    background: var(--charcoal);
    padding: 2rem 0;
    text-align: center;
    border-top: 3px solid var(--gold);
}
.coverage-strip h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.1rem; }
.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}
.coverage-tag {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* ── Footer ───────────────────────────────────────────────── */
#site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.75);
    padding-top: 4rem;
    border-top: 4px solid var(--gold);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.footer-logo { margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.footer-logo img { height: 56px; width: auto; }
.footer-logo-text .logo-name { color: var(--white); }
.footer-logo-text .logo-sub { color: var(--gold); }
.footer-about p { font-size: 0.92rem; line-height: 1.7; color: rgba(255,255,255,0.65); }
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.social-btn svg { width: 16px; height: 16px; fill: var(--gold-light); }
.social-btn:hover { background: var(--gold); border-color: var(--gold); }
.social-btn:hover svg { fill: var(--charcoal); }

.footer-col h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
}
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: var(--gold-light); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    font-size: 0.85rem;
}
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}
.breadcrumb li { display: flex; align-items: center; gap: 0.3rem; color: var(--stone-light); }
.breadcrumb li::after { content: '/'; color: var(--border); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--gold-dark); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-mid) 100%);
    border-bottom: 4px solid var(--gold);
    padding: 4rem 0;
    text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }

/* ── Utility ──────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Back to top ──────────────────────────────────────────── */
#back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 800;
    box-shadow: 0 4px 16px var(--shadow-lg);
    transition: all var(--transition);
}
#back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }
#back-to-top.visible { display: flex; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
}

@media (max-width: 768px) {
    .top-bar-right { display: none; }
    .top-bar .container { padding: 0.4rem 1.25rem; }
    .top-bar-left { gap: 1rem; flex-wrap: wrap; }
    .top-bar-left .top-bar-item:last-child { display: none; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); flex-direction: column; padding: 1rem;
        box-shadow: 0 8px 20px var(--shadow); gap: 0; }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); width: 100%; }
    .main-nav a::after { display: none; }
    .dropdown-menu { position: static; box-shadow: none; border: none;
        border-left: 3px solid var(--gold); margin-left: 1rem; display: block; }
    .menu-toggle { display: flex; }
    .nav-cta { display: none; }
    #site-header { position: sticky; }
    .hero { min-height: 70vh; }
    .hero-trust { gap: 1rem; }
    .about-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .floating-cta { display: flex; }
    body { padding-bottom: 80px; }
    .form-row { grid-template-columns: 1fr; }
    #back-to-top { bottom: 5.5rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .features-grid .feature-item:nth-child(5),
    .features-grid .feature-item:nth-child(6) { grid-column: auto !important; }
    .features-grid .feature-item { flex: 0 0 calc(50% - 1rem); max-width: calc(50% - 1rem); }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.4rem; }
    .btn-lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
    .service-selector { grid-template-columns: 1fr 1fr; }
    .quote-form-body { padding: 1.5rem; }
}