/* ============================================
   WALLPAPER INSTALLATION BY ALEX
   Design System v2 — Editorial Warmth
   Palette: Cream / Charcoal / Terracotta / Sage
   Fonts: Libre Baskerville + DM Sans
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --cream: #FAF7F2;
    --cream-dark: #F0EBE3;
    --charcoal: #2D2D2D;
    --charcoal-light: #4A4A4A;
    --terracotta: #C4704B;
    --terracotta-hover: #A85A38;
    --sage: #7A9E7E;
    --sage-light: #E8F0E9;
    --warm-gray: #8C8478;
    --border: #E4DFD8;
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1280px;
    --section-pad: clamp(60px, 8vw, 120px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--terracotta-hover); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
    background: var(--charcoal);
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.03em;
    padding: 10px 0;
}
.announce-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.announce-bar a { color: #fff; font-weight: 500; }
.announce-bar a:hover { color: var(--terracotta); }

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2vw, 22px);
    color: var(--charcoal);
    font-weight: 700;
    letter-spacing: -0.02em;
}
.logo em { font-style: italic; font-weight: 400; color: var(--terracotta); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal-light);
    letter-spacing: 0.01em;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--terracotta);
    transition: width 0.3s;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--charcoal); }

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--terracotta);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
}
.header-cta:hover { background: var(--terracotta-hover); transform: translateY(-1px); }
.header-cta::after { display: none !important; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
}
.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--charcoal);
    position: absolute;
    left: 0;
    transition: 0.3s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 18px; }
.nav-toggle.open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* ===== HERO — SPLIT SCREEN ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 120px);
    overflow: hidden;
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 100px);
    padding-right: clamp(30px, 4vw, 80px);
}
.hero-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 20px;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.15;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero-desc {
    font-size: clamp(16px, 1.3vw, 19px);
    color: var(--charcoal-light);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--terracotta);
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--terracotta-hover); color: #fff; transform: translateY(-1px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--charcoal);
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: 2px solid var(--charcoal);
    cursor: pointer;
    transition: 0.2s;
}
.btn-outline:hover { background: var(--charcoal); color: #fff; }

.hero-visual { position: relative; overflow: hidden; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--charcoal); padding: 28px 0; }
.trust-strip .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 5vw, 64px);
    flex-wrap: wrap;
}
.trust-item {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.trust-item .num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--terracotta);
}

/* ===== SECTION DEFAULTS ===== */
.section { padding: var(--section-pad) 0; }
.section-cream { background: var(--cream); }
.section-white { background: #fff; }
.section-dark { background: var(--charcoal); color: #fff; }
.section-sage { background: var(--sage-light); }

.section-header { max-width: 640px; margin-bottom: 56px; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }

.section-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-dark .section-title { color: #fff; }
.section-subtitle {
    font-size: 17px;
    color: var(--charcoal-light);
    line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* ===== BEFORE/AFTER SLIDER ===== */
.ba-section { padding: var(--section-pad) 0; background: #fff; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.ba-slider {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: ew-resize;
    aspect-ratio: 16/9;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}
.ba-slider img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
}
.ba-slider .ba-after { clip-path: inset(0 50% 0 0); }
.ba-slider .ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}
.ba-slider .ba-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232D2D2D'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3Cpath d='M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z' transform='rotate(180 12 12)'/%3E%3C/svg%3E");
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
}
.ba-label {
    position: absolute;
    bottom: 16px;
    padding: 6px 14px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 5;
    pointer-events: none;
}
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }

/* ===== SERVICES EDITORIAL ===== */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
}
.service-block:nth-child(even) .service-img { order: -1; }
.service-img { overflow: hidden; min-height: 360px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.service-block:hover .service-img img { transform: scale(1.03); }
.service-text {
    padding: clamp(32px, 4vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.service-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2vw, 30px);
    margin-bottom: 16px;
    font-weight: 700;
}
.service-text p { color: var(--charcoal-light); margin-bottom: 20px; line-height: 1.8; }
.service-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--terracotta);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.service-link::after { content: '\2192'; transition: transform 0.2s; }
.service-link:hover::after { transform: translateX(4px); }

/* ===== PORTFOLIO SCROLL ===== */
.portfolio-scroll {
    overflow-x: auto;
    padding-bottom: 20px;
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
}
.portfolio-scroll::-webkit-scrollbar { height: 6px; }
.portfolio-scroll::-webkit-scrollbar-track { background: var(--border); border-radius: 3px; }
.portfolio-scroll::-webkit-scrollbar-thumb { background: var(--warm-gray); border-radius: 3px; }
.portfolio-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.portfolio-card img { width: 100%; height: 220px; object-fit: cover; }
.portfolio-card-body { padding: 20px; }
.portfolio-card-body h4 { font-family: var(--font-heading); font-size: 16px; margin-bottom: 6px; }
.portfolio-card-body p { font-size: 14px; color: var(--warm-gray); }

/* ===== QUOTE FORM ===== */
.quote-section { position: relative; }
.quote-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    z-index: 0;
}
.quote-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: var(--section-pad) 0;
}
.quote-text { color: #fff; }
.quote-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 40px);
    margin-bottom: 20px;
    line-height: 1.2;
}
.quote-text p { color: rgba(255,255,255,0.7); font-size: 17px; line-height: 1.8; margin-bottom: 24px; }
.quote-text ul { list-style: none; }
.quote-text ul li {
    padding: 8px 0;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.quote-text ul li::before { content: '\2713'; color: var(--sage); font-weight: 700; }

.quote-card {
    background: #fff;
    border-radius: 12px;
    padding: clamp(28px, 3vw, 48px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.quote-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 24px;
    text-align: center;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--charcoal);
    background: var(--cream);
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--terracotta); }
.form-group textarea { min-height: 100px; resize: vertical; }

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--terracotta);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 14px;
}
.submit-btn:hover { background: var(--terracotta-hover); }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.faq-question {
    padding: 22px 24px;
    font-family: var(--font-heading);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--terracotta);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--charcoal-light);
    font-size: 15px;
    line-height: 1.8;
}

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px;
}
.review-stars { color: #E8A838; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.7; color: var(--charcoal-light); margin-bottom: 16px; font-style: italic; }
.review-author { font-size: 13px; font-weight: 700; color: var(--charcoal); }

/* ===== AREAS MARQUEE ===== */
.areas-strip {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.areas-marquee {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}
.areas-marquee span {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--warm-gray);
    font-style: italic;
}
.areas-marquee span::after { content: '\00B7'; margin-left: 48px; color: var(--terracotta); }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.value-card { text-align: center; padding: 32px 20px; }
.value-icon {
    width: 56px; height: 56px;
    margin: 0 auto 20px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--sage); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-card h4 { font-family: var(--font-heading); font-size: 16px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--warm-gray); line-height: 1.6; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.8);
    padding: 72px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; line-height: 1.8; margin-top: 16px; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer-brand .logo { color: #fff; }
.footer-brand .logo em { color: var(--terracotta); }
.footer-col h4 { font-family: var(--font-heading); font-size: 15px; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 14px; }
.footer-col ul li a:hover { color: var(--terracotta); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 12px;
}

/* ===== PAGE HERO (INNER) ===== */
.page-hero-inner {
    padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 80px);
    border-bottom: 1px solid var(--border);
}
.page-hero-inner h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.page-hero-inner p { font-size: 18px; color: var(--charcoal-light); max-width: 600px; }

/* ===== CONTENT PAGES ===== */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    padding: var(--section-pad) 0;
}
.content-grid.reverse { grid-template-columns: 1fr 2fr; }
.content-main h2 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.5vw, 32px);
    margin-bottom: 16px;
    margin-top: 40px;
}
.content-main h2:first-child { margin-top: 0; }
.content-main p { color: var(--charcoal-light); margin-bottom: 16px; line-height: 1.8; font-size: 16px; }
.content-main img { border-radius: 8px; margin: 24px 0; }

.sidebar-card {
    background: var(--sage-light);
    border-radius: 8px;
    padding: 28px;
    position: sticky;
    top: 100px;
}
.sidebar-card h4 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 16px; }
.sidebar-card ul { list-style: none; }
.sidebar-card ul li { padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.sidebar-card ul li:last-child { border: none; }
.sidebar-card ul li a { color: var(--charcoal); font-size: 14px; font-weight: 500; }

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: var(--section-pad) 0;
}
.contact-info h3 { font-family: var(--font-heading); font-size: 20px; margin-bottom: 20px; }
.contact-info-item { margin-bottom: 20px; }
.contact-info-item strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--warm-gray); margin-bottom: 4px; }
.contact-info-item a, .contact-info-item p { font-size: 16px; color: var(--charcoal); }

/* ===== AREA CARDS ===== */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.area-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: block;
    color: var(--charcoal);
}
.area-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); color: var(--charcoal); }
.area-card img { width: 100%; height: 180px; object-fit: cover; }
.area-card-body { padding: 20px; }
.area-card-body h3 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 6px; }
.area-card-body p { font-size: 14px; color: var(--warm-gray); }

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    background: var(--terracotta);
    color: #fff;
    border: none;
    padding: 16px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(196,112,75,0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    display: none;
}
.sticky-cta.visible { display: block; }
.sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(196,112,75,0.5); }

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.modal-overlay.active { display: flex; }
.modal-card {
    background: #fff;
    border-radius: 12px;
    padding: clamp(28px, 4vw, 48px);
    max-width: 520px;
    width: 100%;
    position: relative;
    animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--warm-gray);
    line-height: 1;
}
.modal-card h3 { font-family: var(--font-heading); font-size: 22px; margin-bottom: 24px; text-align: center; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-visual { height: 50vh; }
    .service-block { grid-template-columns: 1fr; }
    .service-block:nth-child(even) .service-img { order: 0; }
    .quote-inner { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .content-grid, .content-grid.reverse { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .announce-bar .container { justify-content: center; }
    .nav-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 20px;
        transition: right 0.3s;
        box-shadow: -4px 0 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .main-nav.open { right: 0; }
    .main-nav a { font-size: 16px; }
    .hero-content { padding: 40px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .values-grid { grid-template-columns: 1fr; }
    .portfolio-card { flex: 0 0 260px; }
    .form-row { grid-template-columns: 1fr; }
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
