/* ============================================
   HARDAKERS REMOVAL & STORAGE
   Corporate & Polished Design System
   ============================================ */

:root {
    /* Brand */
    --burgundy: #9e2333;
    --burgundy-light: #b92d3f;
    --burgundy-dark: #7a1b28;
    --burgundy-deep: #5c1420;
    --gold: #c8a855;
    --gold-light: #dbc47a;
    --green-dark: #0a1f1c;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f7f7f5;
    --cream: #faf9f6;
    --grey-100: #ebebeb;
    --grey-200: #d4d4d4;
    --grey-300: #b0b0b0;
    --grey-400: #8a8a8a;
    --grey-500: #6b6b6b;
    --grey-600: #4a4a4a;
    --grey-700: #333333;
    --grey-800: #1f1f1f;
    --grey-900: #111111;

    /* Legacy aliases */
    --navy: #1a2332;
    --amber: #c8a855;
    --grey-50: #f5f5f3;

    /* Semantic */
    --green: #1a7a4c;
    --red: #c0392b;

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', 'Helvetica Neue', sans-serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
    --space-4: 1rem;      --space-5: 1.25rem;   --space-6: 1.5rem;
    --space-8: 2rem;      --space-10: 2.5rem;   --space-12: 3rem;
    --space-16: 4rem;     --space-20: 5rem;     --space-24: 6rem;

    /* Layout */
    --container: 1220px;
    --container-narrow: 780px;
    --nav-height: 90px;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --radius: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --duration: 0.25s;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.7; color: var(--grey-700); background: var(--white); }
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color var(--duration); }
a:hover { color: var(--burgundy-dark); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--grey-900);
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p { margin-bottom: 1rem; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--space-20) 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--grey-900); color: var(--white); }
.section--dark h2, .section--dark h3, .section--dark p { color: var(--white); }
.section--dark p { opacity: 0.75; }
.section--burgundy { background: var(--burgundy); color: var(--white); }
.section--burgundy h2, .section--burgundy h3, .section--burgundy p { color: var(--white); }

.section__eyebrow {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--burgundy);
    margin-bottom: var(--space-4);
    display: block;
}
.section--dark .section__eyebrow,
.section--burgundy .section__eyebrow { color: var(--gold); }

.section__header { max-width: 640px; margin-bottom: var(--space-12); }
.section__header--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__header p { font-size: 1.0625rem; color: var(--grey-500); margin-top: var(--space-3); }
.section--dark .section__header p { color: rgba(255,255,255,0.65); }

/* ---- Top Bar ---- */
.top-bar {
    background: var(--grey-900);
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
    padding: 0.5rem 0;
}
.top-bar__inner { display: flex; justify-content: space-between; align-items: center; }
.top-bar__left { display: flex; gap: var(--space-6); align-items: center; }
.top-bar__right { display: none; }
@media(min-width:1024px){ .top-bar__right { display: flex; gap: var(--space-6); align-items: center; } }
.top-bar a, .top-bar span { color: rgba(255,255,255,0.7); display: inline-flex; align-items: center; gap: 6px; transition: color var(--duration); }
.top-bar a:hover { color: var(--gold); }
.top-bar svg { width: 14px; height: 14px; flex-shrink: 0; }
.top-bar__divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
.top-bar.hidden { display: none; }
@media(max-width:639px){ .top-bar__email { display: none; } }

/* ---- Navigation ---- */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--grey-100);
    transition: box-shadow var(--duration), transform var(--duration);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
/* .nav-hidden intentionally disabled — header is sticky and always visible */

.nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-height); }

.nav__logo { display: flex; align-items: center; z-index: 1001; }
.logo-img { height: 54px; width: auto; display: block; }
@media(max-width:639px){ .logo-img { height: 40px; } }
.logo-img--footer { filter: brightness(0) invert(1); height: 36px; }

/* Mobile toggle */
.nav__toggle { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: none; border: none; cursor: pointer; z-index: 1001; }
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger span { height: 2px; background: var(--grey-900); border-radius: 2px; transition: all var(--duration); }
.nav__toggle[aria-expanded="true"] .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
@media(min-width:1024px){ .nav__toggle { display: none; } }

/* Menu */
.nav__menu { display: none; }
.nav__menu.open { display: flex; flex-direction: column; position: fixed; inset: 0; background: var(--white); padding: calc(var(--nav-height) + 2rem) 1.5rem 1.5rem; z-index: 999; overflow-y: auto; }
@media(min-width:1024px){ .nav__menu { display: flex; align-items: center; gap: var(--space-6); } }

.nav__list { display: flex; flex-direction: column; gap: 0; }
@media(min-width:1024px){ .nav__list { flex-direction: row; gap: 0; } }

.nav__link {
    display: flex; align-items: center; gap: 4px;
    padding: 0.75rem 1rem;
    font-family: var(--font-heading); font-weight: 600; font-size: 0.875rem;
    color: var(--grey-700); text-transform: uppercase; letter-spacing: 0.04em;
    transition: color var(--duration);
}
.nav__link:hover, .nav__link.active { color: var(--burgundy); }
.nav__link svg { width: 14px; height: 14px; transition: transform var(--duration); }

/* Dropdown */
.nav__item--dropdown { position: relative; }
.nav__dropdown { display: none; flex-direction: column; padding: 0.25rem 0 0.25rem 1rem; }
.nav__item--dropdown.open .nav__dropdown { display: flex; }
.nav__item--dropdown.open .nav__link svg { transform: rotate(180deg); }
@media(min-width:1024px){
    .nav__dropdown { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--white); border: 1px solid var(--grey-100); box-shadow: var(--shadow-lg); padding: 0.5rem; }
}
.nav__dropdown a { display: block; padding: 0.6rem 1rem; font-size: 0.875rem; color: var(--grey-600); transition: all var(--duration); }
.nav__dropdown a:hover { color: var(--burgundy); background: var(--cream); }

/* Nav actions */
.nav__actions { display: flex; align-items: center; gap: var(--space-4); margin-top: var(--space-6); }
@media(min-width:1024px){ .nav__actions { margin-top: 0; } }
.nav__phone { display: flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-weight: 700; font-size: 0.9375rem; color: var(--grey-900); }
.nav__phone svg { width: 18px; height: 18px; color: var(--burgundy); }
.nav__phone:hover { color: var(--burgundy); }
.nav__cta { white-space: nowrap; }
@media(max-width:1023px){ .nav__phone-number { display: none; } }

/* ---- Buttons ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem;
    text-transform: uppercase; letter-spacing: 0.06em;
    border: 2px solid transparent; cursor: pointer;
    transition: all var(--duration); text-decoration: none; line-height: 1.4;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.btn-primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); color: var(--white); box-shadow: 0 4px 20px rgba(158,35,51,0.35); }

.btn-white { background: var(--white); color: var(--grey-900); border-color: var(--white); }
.btn-white:hover { background: var(--cream); border-color: var(--cream); color: var(--grey-900); }

.btn-outline { background: transparent; color: var(--grey-900); border-color: var(--grey-900); }
.btn-outline:hover { background: var(--grey-900); color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: var(--white); color: var(--grey-900); border-color: var(--white); }

.btn-gold { background: var(--gold); color: var(--grey-900); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--grey-900); }

.btn-lg { padding: 1rem 2.25rem; font-size: 0.9375rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.75rem; }

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--grey-900);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero/hero-bg.jpg') center/cover no-repeat;
    /* fallback gradient when no image */
    background-color: var(--grey-800);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(17,17,17,0.92) 0%,
        rgba(17,17,17,0.75) 40%,
        rgba(17,17,17,0.45) 100%
    );
}

@media(max-width:768px){
    .hero__bg::after {
        background: rgba(17,17,17,0.78);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__content {
    max-width: 620px;
    padding: var(--space-16) 0;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: var(--space-6);
}

.hero__eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-6);
    font-weight: 800;
    line-height: 1.08;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-8);
    line-height: 1.7;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

.hero__phone-text { display: none; }
@media(min-width:640px){ .hero__phone-text { display: inline; } }

/* Trust bar at hero bottom */
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.hero__trust-icon {
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.hero__trust-icon svg { width: 20px; height: 20px; }

.hero__trust-text { font-size: 0.8125rem; color: rgba(255,255,255,0.5); line-height: 1.3; }
.hero__trust-text strong { color: var(--white); display: block; font-weight: 700; font-size: 0.875rem; }

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255,255,255,0.35);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}
@media(min-width:1024px){ .hero__scroll { display: flex; } }

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ---- Services Grid ---- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background: var(--grey-100);
    border: 1px solid var(--grey-100);
}
@media(min-width:640px){ .services-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .services-grid { grid-template-columns: repeat(3,1fr); } }

.service-card {
    background: var(--white);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    transition: all var(--duration);
    text-decoration: none;
    color: inherit;
}
.service-card:hover {
    background: var(--cream);
    color: inherit;
}

.service-card__icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--space-5);
    color: var(--burgundy);
}
.service-card__icon svg { width: 32px; height: 32px; }

.service-card h3 { font-size: 1.125rem; margin-bottom: var(--space-2); }
.service-card p { font-size: 0.9375rem; color: var(--grey-500); flex: 1; margin-bottom: var(--space-4); }

.service-card__link {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--burgundy);
}
.service-card__link svg { transition: transform var(--duration); width: 14px; height: 14px; }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ---- Features / Why Us ---- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}
@media(min-width:640px){ .features-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .features-grid { grid-template-columns: repeat(4,1fr); } }

.feature-card { padding: 0; }
.feature-card__icon {
    width: 56px; height: 56px;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--space-5);
    color: var(--burgundy);
}
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1rem; margin-bottom: var(--space-2); }
.feature-card p { font-size: 0.9375rem; color: var(--grey-500); margin: 0; }

/* ---- Steps / How It Works ---- */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    counter-reset: step;
}
@media(min-width:768px){ .steps-grid { grid-template-columns: repeat(3,1fr); } }

.step-card { counter-increment: step; position: relative; padding-left: 4.5rem; }
.step-card::before {
    content: counter(step, decimal-leading-zero);
    position: absolute; left: 0; top: 0;
    font-family: var(--font-heading); font-weight: 800; font-size: 2.5rem;
    color: var(--grey-100); line-height: 1;
}
.step-card h3 { margin-bottom: var(--space-2); }
.step-card p { color: var(--grey-500); margin: 0; }

/* ---- Stats ---- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: var(--space-8);
}
@media(min-width:768px){ .stats-grid { grid-template-columns: repeat(4,1fr); } }

.stat-card { text-align: center; }
.stat-card__number {
    font-family: var(--font-heading); font-weight: 800;
    font-size: clamp(2.5rem,5vw,3.5rem);
    color: var(--gold); line-height: 1; margin-bottom: var(--space-2);
}
.stat-card__label { font-size: 0.875rem; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ---- Testimonials ---- */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s var(--ease); }
.testimonial-card { flex: 0 0 100%; padding: 0 0.75rem; }
@media(min-width:640px){ .testimonial-card { flex: 0 0 50%; } }
@media(min-width:1024px){ .testimonial-card { flex: 0 0 33.333%; } }

.testimonial-card__inner {
    background: var(--white);
    border: 1px solid var(--grey-100);
    padding: var(--space-8);
    height: 100%;
    display: flex; flex-direction: column;
}

.stars { display: flex; gap: 2px; margin-bottom: var(--space-4); }
.star { width: 16px; height: 16px; fill: var(--grey-200); }
.star.filled { fill: var(--gold); }

.testimonial-card__text {
    font-size: 0.9375rem; line-height: 1.7; color: var(--grey-600);
    flex: 1; margin-bottom: var(--space-6); font-style: italic;
}

.testimonial-card__author { display: flex; align-items: center; gap: var(--space-3); border-top: 1px solid var(--grey-100); padding-top: var(--space-4); }
.testimonial-card__avatar {
    width: 40px; height: 40px; background: var(--burgundy); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem;
}
.testimonial-card__name { font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; color: var(--grey-900); }
.testimonial-card__location { font-size: 0.75rem; color: var(--grey-400); }

/* Slider controls */
.slider-controls { display: flex; align-items: center; justify-content: center; gap: var(--space-6); margin-top: var(--space-8); }
.slider-prev, .slider-next {
    width: 44px; height: 44px; border: 1px solid var(--grey-200);
    background: var(--white); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--grey-700); transition: all var(--duration);
}
.slider-prev:hover, .slider-next:hover { border-color: var(--burgundy); color: var(--burgundy); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot { width: 8px; height: 8px; border: none; background: var(--grey-200); cursor: pointer; transition: all var(--duration); padding: 0; }
.slider-dot.active { background: var(--burgundy); width: 24px; }

/* ---- Areas ---- */
.areas-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.area-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0.5rem 1.25rem; background: var(--white); border: 1px solid var(--grey-200);
    font-size: 0.875rem; font-weight: 500; color: var(--grey-600);
    transition: all var(--duration); text-decoration: none;
}
.area-tag:hover { border-color: var(--burgundy); color: var(--burgundy); }
.area-tag svg { width: 14px; height: 14px; }
.area-tag.primary { border-color: var(--grey-700); color: var(--grey-900); font-weight: 700; }
.area-tag.primary:hover { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }

/* ---- Blog Cards ---- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
@media(min-width:640px){ .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .blog-grid { grid-template-columns: repeat(3,1fr); } }

.blog-card {
    border: 1px solid var(--grey-100); transition: all var(--duration);
    text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); color: inherit; }

.blog-card__image {
    aspect-ratio: 16/9; background: var(--grey-100);
    display: flex; align-items: center; justify-content: center;
    color: var(--grey-300); overflow: hidden;
}
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; }

.blog-card__body { padding: var(--space-8); flex: 1; display: flex; flex-direction: column; }
.blog-card__category {
    font-family: var(--font-heading); font-weight: 700; font-size: 0.6875rem;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--burgundy); margin-bottom: var(--space-2);
}
.blog-card h3 { font-size: 1.0625rem; margin-bottom: var(--space-2); line-height: 1.35; }
.blog-card p { font-size: 0.875rem; color: var(--grey-500); flex: 1; }
.blog-card__meta { font-size: 0.75rem; color: var(--grey-400); margin-top: var(--space-4); padding-top: var(--space-4); border-top: 1px solid var(--grey-100); }

/* ---- CTA Banner ---- */
.cta-banner { background: var(--burgundy); padding: var(--space-16) 0; }
.cta-banner__inner {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-6);
}
@media(min-width:768px){
    .cta-banner__inner { flex-direction: row; text-align: left; justify-content: space-between; }
}
.cta-banner h2 { color: var(--white); margin-bottom: var(--space-2); }
.cta-banner p { color: rgba(255,255,255,0.75); margin: 0; font-size: 1.0625rem; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; flex-shrink: 0; }

/* ---- Footer ---- */
.site-footer { background: var(--grey-900); color: rgba(255,255,255,0.55); padding: var(--space-16) 0 0; }

.footer-grid {
    display: grid; grid-template-columns: 1fr; gap: var(--space-10); padding-bottom: var(--space-12);
}
@media(min-width:640px){ .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

.footer-logo .logo-name { color: var(--white); font-size: 1.2rem; }
.footer-logo .logo-sub { color: var(--grey-400); }
.footer-desc { margin-top: var(--space-4); font-size: 0.875rem; line-height: 1.7; }

.footer-contact { margin-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }
.footer-contact a, .footer-contact span { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.55); font-size: 0.875rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-social { display: flex; gap: 0.5rem; margin-top: var(--space-5); }
.footer-social a {
    width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); transition: all var(--duration);
}
.footer-social a:hover { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h3 {
    color: var(--white); font-size: 0.8125rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col li a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color var(--duration); }
.footer-col li a:hover { color: var(--white); }

.footer-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; }
.footer-link-more { display: inline-block; margin-top: var(--space-4); color: var(--gold); font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-link-more:hover { color: var(--gold-light); }

.footer-trust {
    display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-8);
    padding: var(--space-8) 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-badge { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.45); font-size: 0.8125rem; font-weight: 500; }
.trust-badge svg { color: var(--gold); width: 18px; height: 18px; }

.footer-bottom {
    display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
    padding: var(--space-6) 0; font-size: 0.75rem; color: rgba(255,255,255,0.3);
}
@media(min-width:768px){ .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-legal { display: flex; gap: var(--space-6); }
.footer-legal a { color: rgba(255,255,255,0.3); }
.footer-legal a:hover { color: var(--gold); }

/* ---- Page Headers ---- */
.page-header {
    background: var(--grey-900); padding: var(--space-16) 0 var(--space-12);
    text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: url('../images/hero/hero-bg.jpg') center/cover no-repeat; opacity: 0.08;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--white); margin-bottom: var(--space-3); }
.page-header p { color: rgba(255,255,255,0.6); font-size: 1.0625rem; max-width: 600px; margin: 0 auto; }

.breadcrumbs {
    display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem;
    margin-bottom: var(--space-6); justify-content: center;
    text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}
.breadcrumbs a { color: rgba(255,255,255,0.4); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: rgba(255,255,255,0.2); }
.breadcrumbs .current { color: var(--gold); }

/* ---- Forms ---- */
.form-group { margin-bottom: var(--space-5); }
.form-label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--grey-700); margin-bottom: 0.4rem; }
.form-label .required { color: var(--burgundy); }

.form-input, .form-select, .form-textarea {
    width: 100%; padding: 0.75rem 1rem;
    font-family: var(--font-body); font-size: 0.9375rem;
    color: var(--grey-900); background: var(--white);
    border: 1px solid var(--grey-200); transition: all var(--duration); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(158,35,51,0.1); }
.form-input::placeholder { color: var(--grey-300); }
.form-input.error { border-color: var(--red); }
.form-error { color: var(--red); font-size: 0.8125rem; margin-top: 0.25rem; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.form-check input[type="checkbox"], .form-check input[type="radio"] { margin-top: 3px; accent-color: var(--burgundy); width: 16px; height: 16px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media(min-width:640px){ .form-row { grid-template-columns: 1fr 1fr; } }

/* ---- Animations ---- */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-animate="fade-up"].animated { opacity: 1; transform: translateY(0); }
[data-animate="fade-left"] { transform: translateX(-24px); }
[data-animate="fade-left"].animated { opacity: 1; transform: translateX(0); }
[data-animate="fade-right"] { transform: translateX(24px); }
[data-animate="fade-right"].animated { opacity: 1; transform: translateX(0); }

/* ---- Blog content ---- */
.blog-content { font-size: 1.0625rem; line-height: 1.8; }
.blog-content h2 { margin-top: var(--space-10); margin-bottom: var(--space-4); }
.blog-content h3 { margin-top: var(--space-8); margin-bottom: var(--space-3); }
.blog-content p { margin-bottom: var(--space-5); color: var(--grey-600); }
.blog-content ul, .blog-content ol { padding-left: 1.5rem; margin-bottom: var(--space-5); }
.blog-content li { margin-bottom: 0.5rem; color: var(--grey-600); list-style: disc; }
.blog-content strong { color: var(--grey-900); }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- Service Page Hero with Image ---- */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--grey-900);
}
@media(min-width:768px){ .page-hero { min-height: 500px; } }

.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--grey-800);
}
.page-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17,17,17,0.88) 0%,
        rgba(17,17,17,0.7) 35%,
        rgba(17,17,17,0.35) 100%
    );
}

.page-hero .container {
    position: relative;
    z-index: 2;
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}
.page-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-4);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    max-width: 680px;
}
.page-hero h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: var(--space-5);
}
.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.125rem;
    max-width: 560px;
    margin: 0;
    line-height: 1.7;
}
.page-hero .breadcrumbs { margin-bottom: var(--space-6); }

/* ---- Split Layout (Image + Text) ---- */
.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    align-items: center;
}
@media(min-width:768px){
    .split { grid-template-columns: 1fr 1fr; gap: var(--space-16); }
}
.split--reverse .split__image { order: 0; }
@media(min-width:768px){ .split--reverse .split__image { order: 2; } }

.split__image {
    position: relative;
    overflow: hidden;
}
.split__image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
@media(min-width:768px){ .split__image img { height: 440px; } }
.split__image:hover img { transform: scale(1.03); }
.split__image::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 60px; height: 3px;
    background: var(--burgundy);
}

.split__content { }
.split__content .section__eyebrow { margin-bottom: var(--space-3); }
.split__content h2 { margin-bottom: var(--space-5); }
.split__content p { color: var(--grey-500); font-size: 1.0625rem; line-height: 1.75; }

/* ---- Checklist ---- */
.checklist {
    list-style: none;
    padding: 0;
    display: grid;
    gap: var(--space-3);
}
.checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: 0.9375rem;
    line-height: 1.6;
}
.checklist__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.checklist__icon svg { width: 14px; height: 14px; }

/* ---- Info Cards (Packing options, Storage types) ---- */
.info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}
@media(min-width:640px){ .info-cards { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .info-cards { grid-template-columns: repeat(3,1fr); } }
@media(min-width:640px){ .info-cards--2col { grid-template-columns: repeat(2,1fr) !important; } }
@media(min-width:1024px){ .info-cards--2col { grid-template-columns: repeat(2,1fr) !important; } }

/* ---- Company Facts (credentials panel) ---- */
.company-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-top: var(--space-10);
}
@media(min-width:640px){ .company-facts { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .company-facts { grid-template-columns: repeat(3,1fr); } }
.company-facts__item {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform var(--duration), box-shadow var(--duration), border-color var(--duration);
}
.company-facts__item::before {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.company-facts__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--grey-200);
}
.company-facts__item:hover::before { transform: scaleX(1); }
@media(min-width:1024px){
    .company-facts__item--wide { grid-column: span 3; }
}
.company-facts__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-5);
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(158,35,51,0.25);
}
.company-facts__icon svg { width: 24px; height: 24px; }
.company-facts__label {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: var(--space-3);
}
.company-facts__value {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--grey-900);
    font-weight: 700;
    line-height: 1.35;
}
.company-facts__value--xl {
    font-size: 2.5rem;
    color: var(--burgundy);
    letter-spacing: 0.02em;
}
.company-facts__value--mono {
    font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
    font-size: 1rem;
    letter-spacing: 0.05em;
}
.company-facts__sub {
    font-size: 0.8125rem;
    color: var(--grey-500);
    margin-top: var(--space-2);
    font-style: italic;
}

/* ---- Testimonials listing & single ---- */
.testimonials-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
}
@media(min-width:900px){ .testimonials-list { grid-template-columns: repeat(2, 1fr); } }

/* ---- Pagination ---- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-top: var(--space-10);
}
.pagination__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-3);
    border-radius: var(--radius-md);
    border: 1px solid var(--grey-200);
    background: var(--white);
    color: var(--grey-700);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    justify-content: center;
    transition: all var(--duration);
}
.pagination__link:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
    background: var(--white);
}
.pagination__link--active {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: var(--white);
}
.pagination__link--active:hover { background: var(--burgundy-dark); color: var(--white); }
.pagination__ellipsis { padding: 0 var(--space-2); color: var(--grey-400); }

/* ---- News cards (used on /news/ listing) ---- */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: var(--space-8);
    row-gap: var(--space-12);
}
@media (min-width: 720px)  { .news-grid { grid-template-columns: repeat(2, 1fr); column-gap: var(--space-10); row-gap: var(--space-16); } }
@media (min-width: 1100px) { .news-grid { grid-template-columns: repeat(3, 1fr); column-gap: var(--space-12); row-gap: var(--space-16); } }

.news-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: 0;            /* square — matches brand */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 1px 2px rgba(17, 17, 17, 0.05), 0 8px 20px rgba(17, 17, 17, 0.06);
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 12px rgba(17, 17, 17, 0.08), 0 24px 40px rgba(17, 17, 17, 0.16);
    border-color: var(--grey-200);
}

/* Image at top — fixed 16:9 ratio, full-width of card */
.news-card__image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--grey-100);
    text-decoration: none;
}
.news-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-card__image img {
    transform: scale(1.05);
}
/* Subtle dark gradient on bottom of image so the category badge stays legible */
.news-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(17, 17, 17, 0.55) 100%);
    pointer-events: none;
}

/* Category badge overlaid on bottom-left of image */
.news-card__category {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 1;
    display: inline-block;
    padding: 6px 14px;
    background: var(--burgundy);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 0.6875rem;
    line-height: 1.4;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Card body: title + excerpt + read more */
.news-card__body {
    padding: var(--space-8);
    flex: 1;
    display: flex;
    flex-direction: column;
}
@media (min-width: 720px) {
    .news-card__body { padding: var(--space-10); }
}
.news-card__title {
    font-size: 1.25rem;
    line-height: 1.35;
    margin: 0 0 var(--space-4);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--grey-900);
}
.news-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}
.news-card__title a:hover { color: var(--burgundy); }

.news-card__excerpt {
    color: var(--grey-700);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin: 0 0 var(--space-6);
    flex: 1;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--burgundy);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: auto;
    padding-top: var(--space-5);
    border-top: 2px solid var(--grey-100);
    transition: gap 0.2s ease, color 0.2s ease;
    align-self: flex-start;
}
.news-card__link:hover { color: var(--burgundy-dark); gap: var(--space-4); }
.news-card__link svg { transition: transform 0.2s ease; }
.news-card:hover .news-card__link svg { transform: translateX(3px); }

/* ---- Article body (single news / testimonial content) ---- */
.article-content { font-size: 1rem; line-height: 1.75; color: var(--grey-800); }
.article-content h2 { margin-top: var(--space-8); margin-bottom: var(--space-4); color: var(--grey-900); }
.article-content h3 { margin-top: var(--space-6); margin-bottom: var(--space-3); color: var(--burgundy); }
.article-content p { margin: 0 0 var(--space-5); }
.article-content ul, .article-content ol { margin: 0 0 var(--space-5); padding-left: var(--space-6); }
.article-content li { margin-bottom: var(--space-2); }
.article-content strong { color: var(--grey-900); }
.article-content img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: var(--space-4) 0; }
.article-content blockquote { border-left: 4px solid var(--burgundy); padding: var(--space-4) var(--space-6); margin: var(--space-6) 0; background: var(--cream); color: var(--grey-700); font-style: italic; }
.article-content a { color: var(--burgundy); text-decoration: underline; }

/* ---- Heritage stats (prominent white cards on burgundy section) ---- */
.heritage-stats {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--space-5) !important;
    text-align: center !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    list-style: none;
    padding: 0;
}
@media(min-width:900px){
    .heritage-stats { grid-template-columns: repeat(4, 1fr) !important; gap: var(--space-6) !important; }
}
.heritage-stat {
    padding: var(--space-8) var(--space-4) !important;
    background: var(--white) !important;
    border-radius: var(--radius-lg) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    min-height: 180px;
}
.heritage-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
}
.heritage-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.heritage-stat__value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--burgundy) !important;
    line-height: 1;
    letter-spacing: 0.01em;
    margin: 0;
    display: block;
}
@media(min-width:768px){ .heritage-stat__value { font-size: 3.5rem; } }
.heritage-stat__label {
    color: var(--grey-600) !important;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    line-height: 1.3;
    margin: 0;
    display: block;
}

/* Section--burgundy uses white color on inline content but our stat cards need their own colors */
.section--burgundy .heritage-stat,
.section--burgundy .heritage-stat * { color: inherit; }
.section--burgundy .heritage-stat__value { color: var(--burgundy) !important; }
.section--burgundy .heritage-stat__label { color: var(--grey-600) !important; }

/* ---- Family quote block (used on The Family & Quality Policy) ---- */
.family-quote {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8) var(--space-8);
    margin: 0;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.family-quote__mark {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 1;
    padding-top: 16px;
    box-shadow: 0 8px 20px rgba(158,35,51,0.25);
}
.family-quote__text {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    line-height: 1.55;
    color: var(--grey-900);
    margin: 0 0 var(--space-6);
    font-weight: 500;
    font-style: italic;
}
@media(min-width:768px){ .family-quote__text { font-size: 1.625rem; } }
.family-quote__attrib {
    color: var(--burgundy);
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
}

/* ---- Specialty grid (used on /specialist-removals/) ---- */
.specialty-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    margin-top: var(--space-10);
}
@media(min-width:640px){ .specialty-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px){ .specialty-grid { grid-template-columns: repeat(3, 1fr); } }
.specialty-card {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.specialty-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--burgundy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--grey-200);
}
.specialty-card:hover::before { transform: scaleX(1); }
.specialty-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-2);
    box-shadow: 0 4px 12px rgba(158,35,51,0.2);
}
.specialty-card__icon svg { width: 24px; height: 24px; }
.specialty-card__icon--gold { background: linear-gradient(135deg, var(--gold), #a9872a); box-shadow: 0 4px 12px rgba(200,168,85,0.3); }
.specialty-card__title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--grey-900);
    margin: 0;
    line-height: 1.3;
}
.specialty-card__body {
    color: var(--grey-600);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.specialty-card__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--burgundy);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    margin-top: var(--space-2);
    transition: gap 0.2s ease;
}
.specialty-card__link:hover { color: var(--burgundy-dark); gap: var(--space-3); }
.specialty-card--cta {
    background: linear-gradient(135deg, var(--cream), var(--white));
    border-color: var(--gold);
    border-width: 1.5px;
}
.testimonial-item {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-left: 4px solid var(--burgundy);
    border-radius: var(--radius-md);
    padding: var(--space-8) var(--space-10);
    transition: box-shadow var(--duration), transform var(--duration);
}
.testimonial-item:hover { box-shadow: var(--shadow-md); transform: translateX(2px); }
.testimonial-item__stars { color: var(--gold); display: flex; gap: 2px; margin-bottom: var(--space-3); }
.testimonial-item__title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--grey-900);
    margin: 0 0 var(--space-3);
    line-height: 1.3;
}
.testimonial-item__body {
    color: var(--grey-700);
    line-height: 1.7;
    margin-bottom: var(--space-4);
    font-size: 0.9375rem;
}
.testimonial-item__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--grey-100);
    font-size: 0.875rem;
    color: var(--grey-500);
}
.testimonial-item__author { font-weight: 600; color: var(--burgundy); }

.testimonial-single {
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: var(--radius-lg);
    padding: var(--space-10) var(--space-8);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.testimonial-single::before {
    content: '“';
    position: absolute;
    top: -10px; left: 20px;
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
}
.testimonial-single__stars { color: var(--gold); display: flex; gap: 3px; margin-bottom: var(--space-5); }
.testimonial-single__body {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--grey-800);
    margin: 0 0 var(--space-6);
    border: 0;
    padding: 0;
}
.testimonial-single__meta {
    padding-top: var(--space-5);
    border-top: 1px solid var(--grey-100);
    font-size: 0.9375rem;
    color: var(--grey-600);
}
.testimonial-single__author { color: var(--burgundy); font-size: 1rem; }
.testimonial-single__date { margin-left: var(--space-2); color: var(--grey-500); }

.info-card {
    padding: var(--space-8);
    background: var(--white);
    border: 1px solid var(--grey-100);
    position: relative;
    transition: all var(--duration);
}
.info-card:hover { box-shadow: var(--shadow-md); border-color: var(--grey-200); }
.info-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--burgundy);
}
.info-card h3 {
    font-size: 1.125rem;
    color: var(--burgundy);
    margin-bottom: var(--space-3);
}
.info-card p { color: var(--grey-500); margin: 0; font-size: 0.9375rem; }

/* ---- Image Gallery Row ---- */
.image-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}
@media(min-width:640px){ .image-row { grid-template-columns: repeat(3,1fr); } }
.image-row img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* ---- Services Grid with Images (Homepage) ---- */
.services-grid--image {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}
@media(min-width:640px){ .services-grid--image { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .services-grid--image { grid-template-columns: repeat(3,1fr); } }

/* ---- Service Cards with Images (Homepage) ---- */
.service-card--image {
    background: var(--white);
    border: 1px solid var(--grey-100);
    transition: all var(--duration);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.service-card--image:hover { box-shadow: var(--shadow-md); color: inherit; transform: translateY(-2px); }
.service-card--image .service-card__img {
    height: 200px;
    overflow: hidden;
}
.service-card--image .service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.service-card--image:hover .service-card__img img { transform: scale(1.05); }
.service-card--image .service-card__body {
    padding: var(--space-8);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card--image h3 { font-size: 1.0625rem; margin-bottom: var(--space-2); }
.service-card--image p { font-size: 0.875rem; color: var(--grey-500); flex: 1; margin-bottom: var(--space-4); }

/* ---- About page ---- */
.timeline {
    position: relative;
    padding-left: var(--space-10);
}
.timeline::before {
    content: '';
    position: absolute;
    left: 12px; top: 0; bottom: 0;
    width: 2px;
    background: var(--grey-200);
}
.timeline__item {
    position: relative;
    padding-bottom: var(--space-10);
}
.timeline__item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-10) + 6px);
    top: 6px;
    width: 14px; height: 14px;
    background: var(--burgundy);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--burgundy);
}
.timeline__year {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8125rem;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}
.timeline__item h3 { font-size: 1.125rem; margin-bottom: var(--space-2); }
.timeline__item p { color: var(--grey-500); margin: 0; }

/* ---- Team Grid ---- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: var(--space-8);
}
@media(min-width:640px){ .team-grid { grid-template-columns: repeat(4,1fr); } }
@media(min-width:640px){
    .team-grid--leadership { grid-template-columns: repeat(3,1fr); max-width: 780px; margin-left: auto; margin-right: auto; }
}

.team-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--white);
    border: 1px solid var(--grey-100);
}
.team-card__avatar {
    width: 64px; height: 64px;
    background: var(--burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-3);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
}
.team-card__name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--grey-900);
}
.team-card__role {
    font-size: 0.75rem;
    color: var(--grey-400);
    margin-top: 2px;
}

/* ---- Contact Cards ---- */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
}
@media(min-width:768px){ .contact-cards { grid-template-columns: repeat(3,1fr); } }

.contact-card {
    text-align: center;
    padding: var(--space-8);
    background: var(--white);
    border: 1px solid var(--grey-100);
    transition: all var(--duration);
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card__icon {
    width: 56px; height: 56px;
    background: var(--burgundy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 1rem; margin-bottom: var(--space-2); }
.contact-card p { color: var(--grey-500); margin: 0; font-size: 0.9375rem; }
.contact-card a { color: var(--burgundy); font-weight: 600; }

/* ---- FAQ Accordion ---- */
.faq-item {
    border: 1px solid var(--grey-100);
    margin-bottom: -1px;
    transition: all var(--duration);
}
.faq-item.active { border-color: var(--burgundy); z-index: 1; }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    background: var(--white);
    border: none;
    width: 100%;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--grey-900);
    text-align: left;
    gap: var(--space-4);
    transition: all var(--duration);
}
.faq-question:hover { background: var(--cream); }
.faq-item.active .faq-question { background: var(--burgundy); color: var(--white); }

.faq-question svg {
    width: 20px; height: 20px;
    flex-shrink: 0;
    transition: transform var(--duration);
}
.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--white); }

.faq-answer {
    display: none;
    padding: var(--space-8);
    background: var(--cream);
    font-size: 0.9375rem;
    color: var(--grey-600);
    line-height: 1.7;
}
.faq-item.active .faq-answer { display: block; }

/* ---- CTA Section (reusable) ---- */
.cta-section {
    background: var(--burgundy);
    padding: var(--space-16) 0;
    text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: var(--space-3); }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto var(--space-8); font-size: 1.0625rem; }
.cta-section .btn-group { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ---- Blog Post ---- */
.post-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--grey-900);
}
@media(min-width:768px){ .post-hero { height: 500px; } }
.post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.post-hero__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to top, rgba(17,17,17,0.9) 0%, transparent 60%);
}
.post-hero__overlay .container { padding-bottom: var(--space-12); }
.post-hero__category {
    display: inline-block;
    background: var(--burgundy);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}
.post-hero h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: var(--space-3); }
.post-hero__meta { color: rgba(255,255,255,0.5); font-size: 0.875rem; }

/* ---- Highlight Box ---- */
.highlight-box {
    padding: var(--space-8);
    border-left: 4px solid var(--gold);
    background: var(--cream);
    margin: var(--space-8) 0;
}
.highlight-box h3 {
    color: var(--burgundy);
    font-size: 1rem;
    margin-bottom: var(--space-2);
}
.highlight-box p { color: var(--grey-600); margin: 0; }

/* ---- Areas Page ---- */
.areas-section { }
.areas-region { margin-bottom: var(--space-10); }
.areas-region h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--burgundy);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--burgundy);
    margin-bottom: var(--space-4);
}

/* ---- Utility additions ---- */
.mb-12 { margin-bottom: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }
.gap-4 { gap: var(--space-4); }
.gap-8 { gap: var(--space-8); }
