/* ============================================================
   READY MAID CLEANING — style.css
   EB Media Project Standards
   ============================================================ */

/* ------------------------------------------------------------
   CUSTOM PROPERTIES
   ------------------------------------------------------------ */
:root {
    /* Brand Colours */
    --rose:          #C4706A;
    --rose-dark:     #A05550;
    --rose-deeper:   #7D3E3A;
    --rose-light:    #DFA09A;
    --rose-pale:     #F5E8E6;
    --rose-tint:     rgba(196, 112, 106, 0.08);

    /* Neutrals */
    --ink:           #1E1A1A;
    --mid:           #5C5050;
    --light:         #8A7D7D;
    --cream:         #FAF8F6;
    --warm-white:    #FFFFFF;
    --divider:       #EDE4E3;

    /* Layout */
    --container:     1360px;
    --gutter:        3rem;
    --radius:        16px;
    --radius-sm:     8px;
    --radius-lg:     24px;

    /* Typography */
    --font-display:  'Cormorant Garamond', Georgia, serif;
    --font-body:     'Jost', system-ui, sans-serif;

    /* Shadows */
    --shadow-sm:     0 2px 12px rgba(30,26,26,.06);
    --shadow-md:     0 8px 32px rgba(30,26,26,.10);
    --shadow-lg:     0 20px 60px rgba(30,26,26,.14);

    /* Transitions */
    --ease:          cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--ink);
    background: var(--warm-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; font-family: var(--font-body); }
p  { font-size: 1rem; line-height: 1.75; color: var(--mid); }

em { font-style: italic; color: var(--rose); }

.lead-text {
    font-size: 1.125rem;
    color: var(--mid);
    font-weight: 300;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rose);
    background: var(--rose-tint);
    padding: 0.35em 1em;
    border-radius: 100px;
    margin-bottom: 1.2rem;
}
.eyebrow.light {
    color: rgba(245,232,230,.9);
    background: rgba(255,255,255,.12);
}

/* ------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------ */
.container {
    max-width: var(--container);
    margin: 0 auto;

}

section { padding: 7rem var(--gutter); }


/* ------------------------------------------------------------
   INTERIOR HERO
   ------------------------------------------------------------ */
.hero-interior {
    position: relative;
    min-height: 420px;
    padding: 180px var(--gutter) 5rem;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
}

.hero-interior-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(20,14,13,.45) 0%,
        rgba(20,14,13,.65) 60%,
        rgba(20,14,13,.82) 100%
    );
}

.hero-interior-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-interior-inner .eyebrow { margin-bottom: 0.75rem; }

.hero-interior-inner h1 {
    color: var(--warm-white);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.hero-interior-sub {
    color: rgba(255,255,255,.72);
    font-size: 1rem;
    font-weight: 300;
    max-width: 520px;
    margin-top: 0.75rem;
}

.hero-interior-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,.45);
    padding-bottom: 0.25rem;
    flex-shrink: 0;
}
.hero-interior-breadcrumb a {
    color: rgba(255,255,255,.45);
    transition: color 0.2s;
}
.hero-interior-breadcrumb a:hover { color: var(--rose-light); }
.hero-interior-breadcrumb span:last-child { color: rgba(255,255,255,.75); }

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--warm-white);
    background: var(--rose);
    padding: 0.9em 2.2em;
    border-radius: 100px;
    border: 2px solid var(--rose);
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.25s var(--ease);
    box-shadow: 0 4px 20px rgba(196,112,106,.30);
}
.btn-primary:hover {
    background: var(--rose-dark);
    border-color: var(--rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,112,106,.40);
}
.btn-primary.large { font-size: 1rem; padding: 1em 2.6em; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--warm-white);
    background: rgba(255,255,255,.12);
    padding: 0.9em 2.2em;
    border-radius: 100px;
    border: 2px solid rgba(255,255,255,.35);
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
    backdrop-filter: blur(6px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.6);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--rose);
    background: transparent;
    padding: 0.85em 2.2em;
    border-radius: 100px;
    border: 2px solid var(--rose);
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-outline:hover {
    background: var(--rose);
    color: var(--warm-white);
}

/* ------------------------------------------------------------
   IMAGE PLACEHOLDERS (dev only)
   ------------------------------------------------------------ */
.img-placeholder {
    background: linear-gradient(135deg, #e8d5d3 0%, #d4b5b1 40%, #c9a8a3 100%);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}
.img-placeholder::after {
    content: 'Image Placeholder';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}
.img-placeholder.tall { height: 520px; }
.img-placeholder.service-img { height: 260px; border-radius: var(--radius) var(--radius) 0 0; }
.hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #c9a8a3 0%, #a67f7a 30%, #7D5E5A 70%, #4a3533 100%);
}
.map-placeholder {
    width: 100%;
    height: 400px;
    background: url('images/brantford-map.jpg') center center / cover no-repeat;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.18);
    border-radius: var(--radius-lg);
}

/* ------------------------------------------------------------
   NAVIGATION — floating pill
   ------------------------------------------------------------ */
.site-header {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: calc(100% - (var(--gutter) * 2));
    max-width: var(--container);
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    border-radius: 100px;
    box-shadow: 0 4px 28px rgba(30,26,26,.10), 0 1px 0 rgba(255,255,255,.8) inset, 0 0 0 1px rgba(255,255,255,.4);
    transition: box-shadow 0.3s var(--ease);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0.55rem 0.55rem 1.75rem;
}

.nav-logo { display: flex; align-items: center; }
.logo-img {
    height: 54px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--mid);
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 100%;
    height: 1.5px;
    background: var(--rose);
    transition: right 0.3s var(--ease);
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { right: 0; }

.nav-links a.nav-cta {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--warm-white) !important;
    background: var(--rose);
    padding: 0.75em 1.75em;
    border-radius: 100px;
    box-shadow: 0 4px 16px rgba(196,112,106,.3);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover {
    background: var(--rose-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(196,112,106,.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    margin-right: 0.25rem;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;

}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-media .hero-placeholder {
    width: 100%;
    height: 100%;
}
.hero-media .hero-img-placeholder {
    width: 100%;
    height: 100%;
}
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(20,14,13,.72) 0%,
        rgba(30,18,17,.50) 50%,
        rgba(196,112,106,.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding-top: 120px;
}
.hero-content .eyebrow { margin-bottom: 1.5rem; }

.hero-headline {
    color: var(--warm-white);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.hero-headline em {
    color: var(--rose-light);
    font-style: italic;
}

.hero-sub {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.hero-scroll-hint span {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    font-family: var(--font-body);
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
    animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ------------------------------------------------------------
   TRUST BAR
   ------------------------------------------------------------ */
.trust-bar {
    background: var(--warm-white);
    border-bottom: 1px solid var(--divider);
    box-shadow: var(--shadow-sm);
}
.trust-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.5rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--mid);
}
.trust-item svg { width: 18px; height: 18px; color: var(--rose); flex-shrink: 0; }
.trust-divider { width: 1px; height: 28px; background: var(--divider); }

/* ------------------------------------------------------------
   INTRO SECTION
   ------------------------------------------------------------ */
.intro-section { padding: 8rem var(--gutter); background: var(--cream); }

.intro-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.intro-img-wrap { position: relative; }
.intro-img-wrap .img-placeholder { border-radius: var(--radius-lg); }

.intro-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--rose);
    color: var(--warm-white);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}
.badge-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    opacity: 0.85;
    margin-top: 0.25rem;
}

.intro-content h2 { margin-bottom: 1.5rem; }
.intro-content .lead-text { margin-bottom: 1rem; }
.intro-content p:not(.lead-text) { margin-bottom: 2rem; }

.intro-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--divider);
    margin-top: 2rem;
}
.stat-block { text-align: left; }
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--rose);
    line-height: 1.1;
}
.stat-lbl {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light);
    margin-top: 0.2rem;
}

/* ------------------------------------------------------------
   SERVICES SECTION
   ------------------------------------------------------------ */
.services-section { padding: 8rem var(--gutter); background: var(--warm-white); }

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}
.section-header h2 { margin-bottom: 0; }
.section-header .eyebrow { margin-bottom: 1rem; }

.services-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-img-wrap { position: relative; }

.service-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--rose);
    padding: 0.35em 1em;
    border-radius: 100px;
}

.service-body { padding: 2rem 2.2rem 2.5rem; }
.service-body h3 { margin-bottom: 1rem; }
.service-body p { margin-bottom: 1.5rem; font-size: 0.95rem; }

.service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    margin-bottom: 2rem;
}
.service-list li {
    font-size: 0.875rem;
    color: var(--mid);
    font-weight: 400;
    padding-left: 1.1em;
    position: relative;
}
.service-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.55em;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--rose-light);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--rose);
    transition: gap 0.2s;
}
.service-link svg { width: 16px; height: 16px; }
.service-link:hover { gap: 0.8rem; }

/* ------------------------------------------------------------
   TESTIMONIALS SECTION
   ------------------------------------------------------------ */
.testimonials-section { padding: 0; }
.process-bg {
    background: linear-gradient(135deg, var(--ink) 0%, #3A2A28 50%, var(--rose-deeper) 100%);
    padding: 8rem var(--gutter);
    position: relative;
    overflow: hidden;
}
.process-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(196,112,106,.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(196,112,106,.10) 0%, transparent 40%);
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}
.process-header h2.light { color: var(--warm-white); }
.process-header h2.light em { color: var(--rose-light); }

.testimonials-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.testimonial-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1.25rem;
    right: 2rem;
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    color: rgba(196,112,106,.18);
    pointer-events: none;
}
.testimonial-card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(196,112,106,.4);
    transform: translateY(-4px);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}
.testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: var(--rose-light);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255,255,255,.88);
    flex: 1;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.testimonial-author-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deeper) 100%);
    flex-shrink: 0;
}
.testimonial-author span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}

/* ------------------------------------------------------------
   WHY CHOOSE US
   ------------------------------------------------------------ */
.why-section { padding: 8rem var(--gutter); background: var(--warm-white); }

.why-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 7rem;
    align-items: center;
}

.why-content h2 { margin-bottom: 1.25rem; }
.why-content p { margin-bottom: 2.5rem; max-width: 360px; }

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.why-feature {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
}
.why-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--rose-tint);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-icon svg { width: 20px; height: 20px; color: var(--rose); }
.why-feature h4 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--ink); }
.why-feature p { font-size: 0.875rem; line-height: 1.65; }

/* ------------------------------------------------------------
   AREAS SERVED
   ------------------------------------------------------------ */
.areas-section { padding: 8rem var(--gutter); background: var(--cream); }


.areas-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.areas-text h2 { margin: 0.5rem 0 1.25rem; }
.areas-text p { margin-bottom: 2rem; }

.areas-list { display: flex; flex-direction: column; gap: 0.75rem; }
.areas-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--mid);
}
.areas-list li svg { width: 16px; height: 16px; color: var(--rose); flex-shrink: 0; }

.map-pin-anim {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}
.map-pin-anim svg {
    width: 48px;
    height: 48px;
    color: var(--rose);
    filter: drop-shadow(0 4px 12px rgba(196,112,106,.5));
    animation: pinBounce 2s ease infinite;
}
.map-pin-anim span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--rose-dark);
    background: var(--warm-white);
    padding: 0.3em 1em;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
}
@keyframes pinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ------------------------------------------------------------
   CTA BANNER
   ------------------------------------------------------------ */
.cta-banner {
    padding: 4rem var(--gutter);
    position: relative;
    overflow: hidden;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rose-pale) 0%, #f0d8d5 100%);
    z-index: 0;
}
.cta-banner-bg::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,112,106,.15) 0%, transparent 70%);
}
.cta-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}
.cta-banner-text h2 { margin-bottom: 0.75rem; }
.cta-banner-text p { max-width: 580px; }
.cta-banner-action { text-align: center; flex-shrink: 0; }
.cta-note { font-size: 0.8rem; color: var(--light); margin-top: 0.8rem; }

/* ------------------------------------------------------------
   FAQ SECTION
   ------------------------------------------------------------ */
.faq-section { padding: 8rem var(--gutter); background: var(--warm-white); }

.faq-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 6rem;
    align-items: start;
}

.faq-sidebar h2 { margin: 0.5rem 0 1rem; }
.faq-sidebar p { margin-bottom: 2rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
    border-radius: var(--radius);
    border: 1.5px solid var(--divider);
    background: var(--warm-white);
    overflow: hidden;
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item:hover {
    border-color: var(--rose-light);
    box-shadow: 0 4px 20px rgba(196,112,106,.08);
}
.faq-item[open] {
    border-color: var(--rose);
    box-shadow: 0 6px 28px rgba(196,112,106,.12);
}

.faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.3rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.975rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    gap: 1rem;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

/* Animated SVG chevron icon */
.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--rose-tint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s var(--ease), transform 0.35s var(--ease);
}
.faq-icon svg {
    width: 14px;
    height: 14px;
    color: var(--rose);
    transition: transform 0.35s var(--ease);
    display: block;
}
.faq-item[open] .faq-icon {
    background: var(--rose);
    transform: scale(1.08);
}
.faq-item[open] .faq-icon svg {
    color: var(--warm-white);
    transform: rotate(180deg);
}
.faq-item summary:hover { color: var(--rose); }
.faq-item summary:hover .faq-icon { background: var(--rose-pale); }
.faq-item[open] summary:hover .faq-icon { background: var(--rose-dark); }

/* Animated content panel */
.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.38s var(--ease);
}
.faq-item[open] .faq-body {
    grid-template-rows: 1fr;
}
.faq-body-inner {
    overflow: hidden;
}
.faq-body-inner p {
    padding: 0 1.5rem 1.4rem;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--mid);
    border-top: 1px solid var(--divider);
    padding-top: 1rem;
    margin: 0;
}

/* ------------------------------------------------------------
   FINAL CTA
   ------------------------------------------------------------ */
.final-cta { padding: 9rem var(--gutter); background: var(--cream); }

.final-cta-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.final-cta-pre {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 1rem;
}
.final-cta-inner h2 { margin-bottom: 1.25rem; }
.final-cta-inner p { margin-bottom: 2.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.site-footer { background: var(--ink); }

/* CTA Band */
.footer-cta-band {
    padding: 7rem var(--gutter);
    background: linear-gradient(135deg, #2A1F1E 0%, var(--ink) 60%);
    position: relative;
    overflow: hidden;
}
.footer-cta-band::before {
    content: '';
    position: absolute;
    top: -30%; right: -5%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,112,106,.12) 0%, transparent 70%);
    pointer-events: none;
}
.footer-cta-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.footer-cta-text h2 {
    color: var(--warm-white);
    margin: 0.5rem 0 1.25rem;
}
.footer-cta-text h2 em { color: var(--rose-light); }
.footer-cta-text p {
    color: rgba(255,255,255,.5);
    font-size: 0.95rem;
    max-width: 400px;
    margin-bottom: 2rem;
}
.footer-schedule-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--warm-white);
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.2);
    padding: 0.8em 1.8em;
    border-radius: 100px;
    transition: background 0.25s, border-color 0.25s;
}
.footer-schedule-btn svg { width: 16px; height: 16px; }
.footer-schedule-btn:hover {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.4);
}

/* Form Card */
.footer-form-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.form-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 1.75rem;
}

.form-row { display: flex; flex-direction: column; gap: 0; margin-bottom: 1rem; }
.form-row.two-col { flex-direction: row; gap: 1rem; }
.form-row.two-col .form-group { flex: 1; }

.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--mid);
}
.form-group input,
.form-group select {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--cream);
    border: 1.5px solid var(--divider);
    border-radius: var(--radius-sm);
    padding: 0.7em 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    width: 100%;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A7D7D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1em center;
    padding-right: 2.5em;
    cursor: pointer;
}
.form-group input::placeholder { color: var(--light); }
.form-group input:focus,
.form-group select:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 3px rgba(196,112,106,.12);
    background: var(--warm-white);
}

.form-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--warm-white);
    background: var(--rose);
    border: none;
    border-radius: 100px;
    padding: 0.95em 2em;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(196,112,106,.3);
}
.form-submit-btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.form-submit-btn:hover {
    background: var(--rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(196,112,106,.4);
}
.form-submit-btn:hover svg { transform: translateX(3px); }

.form-note {
    font-size: 0.78rem;
    color: var(--light);
    text-align: center;
    margin-top: 0.75rem;
}

.form-success {
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.form-success svg {
    width: 48px; height: 48px;
    color: var(--rose);
}
.form-success h4 { color: var(--ink); font-size: 1.2rem; }
.form-success p { font-size: 0.9rem; color: var(--mid); }

/* Footer Bar */
.footer-bar {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 2rem var(--gutter);
}
.footer-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-bar-logo img { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-bar-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-bar-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,.4);
    transition: color 0.2s;
}
.footer-bar-links a:hover { color: var(--rose-light); }
.footer-bar-social { display: flex; gap: 0.6rem; }
.footer-bar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.footer-phone {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    transition: color 0.2s;
    white-space: nowrap;
}
.footer-phone:hover { color: var(--rose-light); }
.footer-legal-links { display: flex; gap: 0.5rem; align-items: center; }
.social-link {
    width: 34px; height: 34px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.4);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-link svg { width: 14px; height: 14px; }
.social-link:hover {
    background: var(--rose);
    color: var(--warm-white);
    border-color: var(--rose);
}
.footer-bar-bottom {
    max-width: var(--container);
    margin: 1.25rem auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bar-bottom p { font-size: 0.78rem; color: rgba(255,255,255,.22); }
.footer-bar-bottom a { color: rgba(255,255,255,.3); transition: color 0.2s; }
.footer-bar-bottom a:hover { color: var(--rose-light); }

/* ------------------------------------------------------------
   REVEAL ANIMATIONS
   ------------------------------------------------------------ */
.reveal, .reveal-l {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal-l { transform: translateX(-32px); }

.reveal.in-view, .reveal-l.in-view {
    opacity: 1;
    transform: none;
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.process-step:nth-child(1) { transition-delay: 0s; }
.process-step:nth-child(3) { transition-delay: 0.15s; }
.process-step:nth-child(5) { transition-delay: 0.3s; }
.process-step:nth-child(7) { transition-delay: 0.45s; }

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1100px) {
    :root { --gutter: 2rem; }
    .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
    .intro-img-wrap { max-width: 560px; }
    .intro-badge { right: 1rem; }
    .why-grid { grid-template-columns: 1fr; gap: 4rem; }
    .why-content p { max-width: 100%; }
    .footer-cta-inner { grid-template-columns: 1fr; gap: 3.5rem; }
    .footer-cta-text p { max-width: 100%; }
}

@media (max-width: 900px) {
    :root { --gutter: 1.5rem; }
    section { padding: 5rem var(--gutter); }
    .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .areas-inner { grid-template-columns: 1fr; gap: 3rem; }
    .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
    .cta-banner-inner { flex-direction: column; text-align: center; gap: 2.5rem; }
    .cta-banner-text p { margin: 0 auto; }
    .why-features { grid-template-columns: 1fr; }
    .form-row.two-col { flex-direction: column; gap: 1rem; }
    .footer-bar-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}

@media (max-width: 720px) {
    .site-header {
        width: calc(100% - 2rem);
        top: 0.75rem;
    }
    .nav-links {
        display: none;
    }
    @keyframes navSlideUp {
        from { opacity: 1; transform: translateY(0) scale(1); }
        to   { opacity: 0; transform: translateY(-6px) scale(0.98); }
    }
    @keyframes navSlideDown {
        from { opacity: 0; transform: translateY(-6px) scale(0.98); }
        to   { opacity: 1; transform: translateY(0) scale(1); }
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 0.6rem);
        left: 0;
        right: 0;
        background: rgba(255,255,255,.99);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius: var(--radius-lg);
        box-shadow: 0 16px 48px rgba(20,14,13,.13);
        padding: 0.75rem 1.25rem 1.25rem;
        gap: 0;
        z-index: 99;
        align-items: stretch;
        animation: navSlideDown 0.22s var(--ease) both;
        transform-origin: top center;
    }
    .nav-links.closing {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 0.6rem);
        left: 0;
        right: 0;
        align-items: stretch;
        padding: 0.75rem 1.25rem 1.25rem;
        border-radius: var(--radius-lg);
        animation: navSlideUp 0.18s var(--ease) both;
        transform-origin: top center;
    }
    .nav-links.open a {
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        color: var(--ink) !important;
        padding: 0.85rem 0.25rem !important;
        border-bottom: 1px solid var(--divider) !important;
        letter-spacing: 0.02em;
        background: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    .nav-links.open a:last-child { border-bottom: none !important; }
    .nav-links.open a::after { display: none !important; }
    .nav-links.open a.nav-cta {
        margin-top: 0.75rem !important;
        padding: 0.85rem 1.5rem !important;
        background: var(--rose) !important;
        color: var(--warm-white) !important;
        text-align: center !important;
        border-radius: 100px !important;
        border-bottom: none !important;
        font-weight: 600 !important;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(196,112,106,.3) !important;
    }
    .nav-toggle { display: flex; z-index: 101; }
    .hero-headline { font-size: clamp(2.5rem, 10vw, 4rem); }
    .trust-bar-inner { gap: 0.5rem; }
    .trust-divider { display: none; }
    .trust-item { padding: 0.5rem 0.75rem; font-size: 0.8rem; }
    .service-list { grid-template-columns: 1fr; }
    .intro-stats { flex-wrap: wrap; gap: 1.5rem; }
    h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
    h2 { font-size: clamp(1.8rem, 5vw, 2.4rem); }
    .footer-bar-bottom { flex-direction: column; text-align: center; }
    .footer-bar-links { gap: 1.25rem; }
}

@media (max-width: 480px) {
    :root { --gutter: 1.25rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn-ghost { align-self: auto; }
}

@keyframes formShake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

/* ============================================================
   INTERIOR PAGES
   ============================================================ */

/* ── Shared interior section spacing ── */
.interior-section   { padding: 6rem var(--gutter); }
.interior-section.cream { background: var(--cream); }
.interior-section.white { background: var(--warm-white); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}
.section-header h2 { margin: 0.4rem 0 0; }
.section-header .section-sub {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.7;
}

/* ── Interior intro ── */
.interior-intro { padding: 6rem var(--gutter); background: var(--warm-white); }
.interior-intro-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.interior-intro-text .eyebrow { margin-bottom: 0.6rem; }
.interior-intro-text h2 { margin: 0.4rem 0 1.5rem; }
.interior-intro-text .lead-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--mid);
    margin-bottom: 1.25rem;
}
.interior-intro-text p {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 2rem;
}
.interior-intro-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--rose-dark);
    background: var(--rose-pale);
    border: 1px solid rgba(196,112,106,.2);
    padding: 0.45em 1em;
    border-radius: 100px;
}
.badge-pill svg { width: 14px; height: 14px; }

.interior-intro-img { position: relative; }
.interior-intro-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}
.interior-intro-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: var(--warm-white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
    max-width: 220px;
}
.interior-intro-card .card-headline {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.4;
    margin: 0;
}

/* ── What makes us different ── */
.difference-section {
    padding: 6rem var(--gutter);
    background: var(--cream);
}
.difference-section .container {
    max-width: var(--container);
    margin: 0 auto;
}
.difference-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.difference-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--divider);
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.difference-item:hover {
    border-color: var(--rose-light);
    box-shadow: 0 8px 32px rgba(196,112,106,.1);
    transform: translateY(-4px);
}
.diff-icon {
    width: 52px; height: 52px;
    background: var(--rose-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--rose);
}
.diff-icon svg { width: 22px; height: 22px; }
.difference-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--ink);
}
.difference-item p {
    font-size: 0.875rem;
    color: var(--mid);
    line-height: 1.65;
    margin: 0;
}

/* ── Breakdown cards ── */
/* ── Residential checklist (tabbed) ── */
.res-checklist-section {
    padding: 6rem var(--gutter);
    background: var(--cream);
}
.res-checklist-section .container {
    max-width: var(--container);
    margin: 0 auto;
}

/* Tab nav */
.res-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    background: var(--warm-white);
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--divider);
}
.res-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    border: none;
    background: none;
    border-radius: calc(var(--radius-lg) - 4px);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--mid);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.res-tab svg { width: 16px; height: 16px; flex-shrink: 0; }
.res-tab:hover { background: var(--rose-pale); color: var(--rose-dark); }
.res-tab.active {
    background: var(--rose);
    color: var(--warm-white);
    box-shadow: 0 2px 12px rgba(196,112,106,.3);
}

/* Panels */
.res-tab-panels { margin-bottom: 3rem; }
.res-tab-panel {
    display: none;
    grid-template-columns: 420px 1fr;
    gap: 3rem;
    align-items: start;
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--divider);
    overflow: hidden;
}
.res-tab-panel.active { display: grid; }

.res-panel-img {
    position: relative;
    height: 100%;
    min-height: 480px;
}
.res-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.res-panel-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    background: var(--rose);
    color: var(--warm-white);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4em 1.1em;
    border-radius: 100px;
}
.res-panel-body {
    padding: 2.5rem 2.5rem 2.5rem 0;
}
.res-panel-intro {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--divider);
}
.res-checklist {
    list-style: none;
    padding: 0; margin: 0;
    columns: 2;
    column-gap: 2rem;
}
.res-checklist li {
    font-size: 0.875rem;
    color: var(--mid);
    line-height: 1.55;
    padding: 0.35rem 0 0.35rem 1.4rem;
    position: relative;
    break-inside: avoid;
    border-bottom: 1px solid var(--divider);
}
.res-checklist li:last-child { border-bottom: none; }
.res-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 7px;
    height: 7px;
    background: var(--rose);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Safety strip */
.res-safety-strip {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    background: var(--ink);
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
}
.res-safety-icon svg {
    width: 48px; height: 48px;
    color: var(--rose-light);
}
.res-safety-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--warm-white);
    margin-bottom: 0.4rem;
}
.res-safety-text p {
    font-size: 0.875rem;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
    margin: 0;
}
.res-safety-list {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}
.res-safety-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,.75);
    font-weight: 500;
}
.res-safety-list svg {
    width: 16px; height: 16px;
    color: var(--rose-light);
    flex-shrink: 0;
}

/* ── Estimate section (ZenMaid) ── */
.res-estimate-section {
    background: var(--ink);
    padding: 0;
}
.res-estimate-inner {
    display: grid;
    grid-template-columns: 420px 1fr;
    min-height: 100vh;
}
.res-estimate-sidebar {
    padding: 5rem 3.5rem;
    padding-top: calc(1.25rem + 70px + 3rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--ink);
    position: sticky;
    top: 0;
    align-self: start;
}
.res-estimate-sidebar .eyebrow { margin-bottom: 0.6rem; }
.res-estimate-sidebar h2 {
    color: var(--warm-white);
    margin: 0.4rem 0 1.25rem;
}
.res-estimate-sidebar p {
    color: rgba(255,255,255,.55);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.estimate-perks {
    list-style: none;
    padding: 0; margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.estimate-perks li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,.7);
}
.estimate-perks svg { width: 18px; height: 18px; color: var(--rose-light); flex-shrink: 0; }
.res-estimate-trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.res-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,.45);
}
.res-trust-item svg { width: 16px; height: 16px; color: var(--rose-light); flex-shrink: 0; }
.res-trust-phone {
    color: rgba(255,255,255,.7);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}
.res-trust-phone:hover { color: var(--rose-light); }
.res-estimate-form {
    background: var(--cream);
    padding: 4rem 4rem 4rem 4rem;
    padding-top: calc(1.25rem + 70px + 3rem);
    display: flex;
    flex-direction: column;
}
.res-zenmaid-wrap {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(30,26,26,.08);
    border: 1.5px solid var(--divider);
}

/* ── Values grid (About) ── */
.values-section {
    padding: 6rem var(--gutter);
    background: var(--warm-white);
}
.values-section .container {
    max-width: var(--container);
    margin: 0 auto;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.value-card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--cream);
    border: 1.5px solid var(--divider);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.value-card:hover {
    border-color: var(--rose-light);
    box-shadow: 0 8px 32px rgba(196,112,106,.1);
}
.value-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--rose-pale);
    line-height: 1;
    margin-bottom: 1rem;
    -webkit-text-stroke: 1.5px var(--rose-light);
}
.value-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.value-card p {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.7;
    margin: 0;
}

/* ── About owner ── */
.owner-section {
    padding: 6rem var(--gutter);
    background: var(--cream);
}
.owner-section .container {
    max-width: var(--container);
    margin: 0 auto;
}
.owner-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: center;
}
.owner-img-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.owner-img-wrap { position: relative; }
.owner-quote-chip {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    background: var(--rose);
    color: var(--warm-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    max-width: 200px;
    box-shadow: 0 8px 32px rgba(196,112,106,.35);
}
.owner-quote-chip p {
    font-family: var(--font-display);
    font-size: 1rem;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}
.owner-text .eyebrow { margin-bottom: 0.6rem; }
.owner-text h2 { margin: 0.4rem 0 2rem; }
.owner-text p {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.owner-text p strong { color: var(--ink); font-weight: 600; }
.owner-text .owner-sig {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--rose);
    margin-top: 2rem;
    margin-bottom: 0;
}

/* ── Serving area strip ── */
.serving-strip {
    padding: 4.5rem var(--gutter);
    background: var(--ink);
    text-align: center;
}
.serving-strip .container {
    max-width: var(--container);
    margin: 0 auto;
}
.serving-strip h3 {
    color: var(--warm-white);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin: 0.4rem 0 2rem;
}
.serving-strip .eyebrow { margin-bottom: 0.4rem; }
.serving-areas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.serving-area-tag {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    padding: 0.55em 1.3em;
    border-radius: 100px;
}

/* ── Interior page CTA band ── */
.interior-cta {
    padding: 6rem var(--gutter);
    background: linear-gradient(135deg, var(--rose-pale) 0%, #f0d8d4 100%);
    text-align: center;
}
.interior-cta .container {
    max-width: 640px;
    margin: 0 auto;
}
.interior-cta h2 { margin: 0.4rem 0 1.25rem; }
.interior-cta p {
    font-size: 0.95rem;
    color: var(--mid);
    margin-bottom: 2rem;
    line-height: 1.75;
}
.interior-cta .btn-primary { font-size: 1rem; padding: 0.9em 2.2em; }

/* ── Commercial specific: service type grid ── */
.commercial-services {
    padding: 6rem var(--gutter);
    background: var(--warm-white);
}
.commercial-services .container {
    max-width: var(--container);
    margin: 0 auto;
}
.commercial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.commercial-card {
    border-radius: var(--radius-lg);
    background: var(--cream);
    border: 1.5px solid var(--divider);
    overflow: hidden;
    display: flex;
    transition: box-shadow 0.25s, transform 0.25s;
}
.commercial-card:hover {
    box-shadow: 0 8px 36px rgba(0,0,0,.09);
    transform: translateY(-3px);
}
.commercial-card-accent {
    width: 5px;
    background: var(--rose);
    flex-shrink: 0;
}
.commercial-card-body { padding: 2rem 2rem 2rem 1.75rem; }
.commercial-card-body h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1rem;
}
.commercial-card-body ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.commercial-card-body li {
    font-size: 0.875rem;
    color: var(--mid);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}
.commercial-card-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 6px;
    height: 6px;
    background: var(--rose);
    border-radius: 50%;
}

/* ── Interior responsive ── */
@media (max-width: 1100px) {
    .difference-grid { grid-template-columns: repeat(2, 1fr); }
    .owner-grid { gap: 3.5rem; }
    .owner-quote-chip { right: 1rem; }
    .res-tab-panel.active { grid-template-columns: 320px 1fr; }
    .res-estimate-inner { grid-template-columns: 360px 1fr; }
}
@media (max-width: 900px) {
    .interior-intro-grid  { grid-template-columns: 1fr; gap: 3rem; }
    .interior-intro-card  { left: 1rem; }
    .interior-intro-img img { height: 380px; }
    .owner-grid { grid-template-columns: 1fr; gap: 3rem; }
    .owner-img-wrap img { height: 360px; }
    .commercial-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .hero-interior { min-height: 320px; padding-top: 140px; }
    .hero-interior-content { flex-direction: column; align-items: flex-start; }
    .hero-interior-breadcrumb { display: none; }
    .hero-sub { display: none; }
    /* checklist */
    .res-tab-panel.active { grid-template-columns: 1fr; }
    .res-panel-img { min-height: 280px; height: 280px; }
    .res-panel-body { padding: 2rem; }
    .res-checklist { columns: 1; }
    /* safety strip */
    .res-safety-strip { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; text-align: center; }
    .res-safety-icon { display: none; }
    .res-safety-list { grid-template-columns: 1fr; }
    /* estimate */
    .res-estimate-inner { grid-template-columns: 1fr; }
    .res-estimate-sidebar { position: static; padding: 3.5rem 2rem; padding-top: calc(1.25rem + 70px + 2.5rem); }
    .res-estimate-form { padding: 2rem; overflow: hidden; }
    .res-estimate-trust { display: none; }
    .res-zenmaid-wrap { overflow: hidden; }
    .zenmaid-container .booking-form-body-wrapper { width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; }
}
@media (max-width: 720px) {
    .difference-grid { grid-template-columns: 1fr 1fr; }
    .res-tabs { gap: 0.35rem; }
    .res-tab { font-size: 0.8rem; padding: 0.65rem 0.75rem; flex: none; }
    .res-tab svg { display: none; }
}
@media (max-width: 480px) {
    .difference-grid { grid-template-columns: 1fr; }
    .res-tabs { flex-wrap: wrap; }
    .res-tab { flex: 1 1 calc(50% - 0.35rem); justify-content: center; }
}

/* Footer bar standalone (no CTA band above) */
.footer-bar--standalone { border-top: 1px solid rgba(255,255,255,.08); }

/* ── Full-page FAQ ── */
.faq-full-page {
    padding: 5rem var(--gutter);
    background: var(--warm-white);
}
.faq-full-page .container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.faq-category-header {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--divider);
}
.faq-category-header .eyebrow { flex-shrink: 0; }
.faq-category-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 0;
}

/* ============================================================
   BLOG
   ============================================================ */

/* ── Index page ── */
.blog-index {
    padding: 5rem var(--gutter);
    background: var(--warm-white);
}
.blog-index .container {
    max-width: var(--container);
    margin: 0 auto;
}

/* Featured post */
.blog-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1.5px solid var(--divider);
}
.blog-featured-img-wrap {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
}
.blog-featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.blog-featured-img-wrap:hover img { transform: scale(1.04); }

.blog-cat-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--rose);
    color: var(--warm-white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3em 0.9em;
    border-radius: 100px;
    pointer-events: none;
}
.blog-cat-tag--inline {
    position: static;
    display: inline-block;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.85rem;
}
.blog-meta time {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--light);
    text-transform: uppercase;
}
.blog-featured-body h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.blog-featured-body h2 a,
.blog-card-body h3 a {
    color: var(--ink);
    transition: color 0.2s;
}
.blog-featured-body h2 a:hover,
.blog-card-body h3 a:hover { color: var(--rose); }

.blog-excerpt {
    font-size: 0.93rem;
    color: var(--mid);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--rose);
    transition: gap 0.2s, color 0.2s;
}
.blog-read-more svg { width: 16px; height: 16px; transition: transform 0.2s; }
.blog-read-more:hover { color: var(--rose-dark); }
.blog-read-more:hover svg { transform: translateX(3px); }

.blog-read-more--back svg { transition: transform 0.2s; }
.blog-read-more--back:hover svg { transform: translateX(-3px); }

/* Post grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.blog-card {
    border-radius: var(--radius-lg);
    background: var(--cream);
    border: 1.5px solid var(--divider);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}
.blog-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,.09);
    transform: translateY(-3px);
}
.blog-card-img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.blog-card-img-wrap:hover img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; }
.blog-card-body h3 {
    font-size: 1.05rem;
    line-height: 1.35;
    margin-bottom: 0.65rem;
}
.blog-card-body .blog-excerpt { margin-bottom: 1rem; font-size: 0.875rem; }
.blog-card-body .blog-meta { margin-bottom: 0.65rem; }

.blog-empty {
    text-align: center;
    padding: 5rem 0;
    color: var(--light);
    font-size: 1rem;
}

/* ── Single post ── */
.blog-post-page {
    padding: 5rem var(--gutter);
    background: var(--warm-white);
}
.blog-post-page .container {
    max-width: var(--container);
    margin: 0 auto;
}
.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 5rem;
    align-items: start;
}
.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.blog-post-meta time {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--light);
    text-transform: uppercase;
}
.blog-body-blocks h2 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 500;
    margin: 2.5rem 0 0.85rem;
    color: var(--ink);
}
.blog-body-blocks h2:first-child { margin-top: 0; }
.blog-body-blocks p {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.blog-section-text {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.blog-section-text p { margin-bottom: 1rem; }
.blog-section-text ul,
.blog-section-text ol {
    padding-left: 1.5rem;
    margin: 0.5rem 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.blog-section-text ul { list-style: disc; }
.blog-section-text ol { list-style: decimal; }
.blog-section-text li { line-height: 1.75; }
.blog-section-text a {
    color: var(--rose);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}
.blog-section-text a:hover { color: var(--rose-dark); }
.blog-section-text strong { font-weight: 600; color: var(--ink); }
.blog-section-text em { font-style: italic; }
.blog-post-back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1.5px solid var(--divider);
}

/* Sidebar */
.blog-post-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.blog-sidebar-card {
    background: var(--cream);
    border: 1.5px solid var(--divider);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}
.blog-sidebar-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.75rem;
}
.blog-sidebar-card p {
    font-size: 0.875rem;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.blog-sidebar-card .btn-primary { width: 100%; justify-content: center; }
.blog-sidebar-services ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.blog-sidebar-services li::before { content: none; }
.blog-sidebar-services a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--rose);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.2s;
}
.blog-sidebar-services a::before {
    content: '→';
    font-size: 0.8rem;
}
.blog-sidebar-services a:hover { color: var(--rose-dark); }

/* ── Blog responsive ── */
@media (max-width: 1100px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-post-layout { grid-template-columns: 1fr; gap: 3rem; }
    .blog-post-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .blog-sidebar-card { flex: 1; min-width: 240px; }
}
@media (max-width: 800px) {
    .blog-featured { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ── Form error message ── */
.form-error-msg {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    font-size: 0.82rem;
    padding: 0.65rem 0.9rem;
    border-radius: 8px;
    margin-bottom: 0.85rem;
    line-height: 1.5;
}

/* ── ZenMaid overrides ── */
.booking-summary-aside.hide-phablet,
.booking-summary-aside { display: none !important; }

/* Neutralise grey backgrounds — our .res-zenmaid-wrap card handles containment */
.zenmaid-container,
.zenmaid-container form.zm-payment-form { background: transparent !important; }

/* Remove float + negative margin that assumed sidebar was present */
.zenmaid-container .zenmaid-widget-container {
    float: none !important;
    margin-right: 0 !important;
    max-width: none !important;
    background: transparent !important;
}

/* Remove max-width and excessive bottom padding from inner container */
.zenmaid-container .zm-booking-form-container {
    max-width: none !important;
    background: transparent !important;
    padding-bottom: 2em !important;
}

/* Expand the form body wrapper to fill the full card width */
.zenmaid-container .booking-form-body-wrapper {
    width: 96% !important;
    margin-left: 2% !important;
    margin-right: 2% !important;
    margin-top: 20px !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Pull powered-by out of absolute positioning so it doesn't clip */
.zenmaid-container small.powered-by {
    position: static !important;
    display: block !important;
    text-align: center !important;
    padding: 1em 0 0.5em !important;
    opacity: 0.6 !important;
}

/* ── Legal pages (Terms / Privacy) ── */
.legal-page {
    padding: 5rem var(--gutter) 6rem;
    background: var(--warm-white);
}
.legal-content {
    max-width: 780px;
    margin: 0 auto;
}
.legal-meta {
    font-size: 0.82rem;
    color: var(--mid);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--divider);
}
.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--ink);
    margin: 2.5rem 0 0.75rem;
}
.legal-content p, .legal-content li {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.8;
}
.legal-content ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0 1rem;
}
.legal-content ul li { margin-bottom: 0.35rem; }
.legal-content address {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 2;
    margin-top: 0.5rem;
}
.legal-content address a { color: var(--rose); }
.legal-content address a:hover { color: var(--rose-dark); }

@media (max-width: 720px) {
    .footer-bar-right { flex-direction: column; align-items: flex-end; gap: 0.6rem; }
    .footer-phone { font-size: 0.8rem; }
}
