/* ============================================================
   Custom Wallcovering With Leo — Master Stylesheet
   Design System: Confident, Minimal, Premium
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:ital,wght@0,400;0,500;0,700&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- CSS Variables --- */
:root {
    --bg-primary: #1D2B29;
    --bg-secondary: #0D1615;
    --bg-light: #EEE8DE;
    --text-light: #F8F3EA;
    --text-dark: #232928;
    --accent: #A8925C;
    --accent-hover: #c4ab6e;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 10px;
    --transition: 0.25s ease;
    --max-width: 1200px;
    --section-padding: 80px 0;
}

/* --- 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);
    color: var(--text-light);
    background: var(--bg-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-light);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 0.5em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 0.4em; }
p { margin-bottom: 1em; }
.mono-accent { font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.05em; color: var(--accent); text-transform: uppercase; }

/* --- Container --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 32px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
}
.btn-primary {
    background: var(--accent);
    color: var(--bg-secondary);
}
.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: var(--bg-secondary);
}
.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
}
.btn-secondary:hover {
    background: rgba(168, 146, 92, 0.1);
    transform: translateY(-2px);
    color: var(--accent);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
    background: var(--bg-secondary);
    padding: 10px 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(168,146,92,0.15);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar a { color: var(--accent); }
.top-bar a:hover { color: var(--accent-hover); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 16px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
    background: var(--bg-primary);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(168,146,92,0.12);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    white-space: nowrap;
}
.logo span { color: var(--accent); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }
.main-nav a:hover { color: var(--accent); }
.header-cta { margin-left: 12px; }

/* Mobile hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,22,21,0.88) 0%, rgba(29,43,41,0.75) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
}
.hero-text h1 { color: var(--text-light); }
.hero-text h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: rgba(248,243,234,0.8);
    margin-bottom: 1.5em;
}
.trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}
.trust-badge svg { width: 20px; height: 20px; fill: var(--accent); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--section-padding); }
.section-dark { background: var(--bg-secondary); }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-light h2, .section-light h3 { color: var(--text-dark); }
.section-light p { color: var(--text-dark); }
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}
.section-header .mono-accent { margin-bottom: 12px; display: block; }

/* ============================================================
   B2B / COMMERCIAL BLOCK
   ============================================================ */
.b2b-block { padding: var(--section-padding); background: var(--bg-secondary); }
.b2b-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.b2b-features { display: grid; gap: 20px; margin: 24px 0; }
.b2b-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.b2b-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(168,146,92,0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.b2b-feature-icon svg { width: 24px; height: 24px; fill: var(--accent); }
.b2b-feature h3 { font-size: 1.1rem; margin-bottom: 4px; }
.b2b-feature p { font-size: 0.9rem; margin-bottom: 0; opacity: 0.85; }
.b2b-image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(168,146,92,0.25);
}
.b2b-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.service-card {
    background: rgba(168,146,92,0.06);
    border: 1px solid rgba(168,146,92,0.15);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    background: rgba(168,146,92,0.1);
}
.service-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(168,146,92,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card-icon svg { width: 28px; height: 28px; fill: var(--accent); }
.service-card h3 { font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 0; }

/* ============================================================
   VALUE PROPS
   ============================================================ */
.value-props {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.value-prop {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--accent);
}
.value-prop svg { width: 18px; height: 18px; fill: var(--accent); }

/* ============================================================
   PORTFOLIO / GALLERY
   ============================================================ */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(168,146,92,0.3);
    background: transparent;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
    background: var(--accent);
    color: var(--bg-secondary);
    border-color: var(--accent);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(168,146,92,0.2);
    aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-section { padding: 60px 0; }
.ba-sliders { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ba-slider-wrapper {
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 8px;
    background: rgba(168,146,92,0.05);
}
.ba-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    cursor: ew-resize;
    border-radius: 6px;
    aspect-ratio: 16/9;
}
.ba-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.ba-slider .ba-after {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}
.ba-slider .ba-before { z-index: 1; }
.ba-slider .ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--accent);
    z-index: 3;
    transform: translateX(-50%);
    cursor: ew-resize;
}
.ba-slider .ba-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ba-slider .ba-handle::after {
    content: '\2194';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-secondary);
    font-size: 18px;
    font-weight: 700;
    z-index: 4;
}
.ba-label {
    text-align: center;
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent);
}

/* ============================================================
   PROCESS / HOW WE WORK
   ============================================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}
.process-step {
    text-align: center;
    padding: 32px 16px;
    position: relative;
}
.process-step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { padding: var(--section-padding); }

/* ============================================================
   SEO CONTENT BLOCK
   ============================================================ */
.seo-block {
    padding: 60px 0;
    background: var(--bg-secondary);
}
.seo-block p { font-size: 0.95rem; line-height: 1.8; opacity: 0.9; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.feedback-form-container {
    background: rgba(13,22,21,0.6);
    border: 1px solid rgba(168,146,92,0.2);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 520px;
}
.feedback-form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}
.feedback-form-container .quote-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.4vw, 1.6rem);
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: center;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}
.form-group { margin-bottom: 0; }
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(248,243,234,0.06);
    border: 1px solid rgba(168,146,92,0.25);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(248,243,234,0.4); }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}
.form-group textarea {
    min-height: 100px;
    resize: vertical;
    margin-top: 12px;
}
.form-submit { margin-top: 16px; }
.submit-btn {
    width: 100%;
    height: 54px;
    background: var(--accent);
    color: var(--bg-secondary);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}
#form-success p {
    color: var(--accent);
    font-size: 1.05rem;
    text-align: center;
    padding: 20px;
}

/* ============================================================
   STICKY QUOTE BUTTON
   ============================================================ */
.sticky-quote-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    height: 54px;
    padding: 0 28px;
    background: var(--accent);
    color: var(--bg-secondary);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all var(--transition);
}
.sticky-quote-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: var(--bg-primary);
    border: 1px solid rgba(168,146,92,0.25);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 560px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
    transition: color var(--transition);
}
.modal-close:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg-secondary);
    padding: 60px 0 24px;
    border-top: 1px solid rgba(168,146,92,0.12);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: 0.9rem; opacity: 0.75; max-width: 300px; }
.footer-col h2,
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--accent);
}
.footer-col .footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 0 0 16px;
    color: var(--accent);
}
.footer-col a {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 4px 0;
    opacity: 0.75;
    transition: all var(--transition);
}
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(168,146,92,0.12);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid rgba(168,146,92,0.25);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}
.stat-label { font-size: 0.9rem; opacity: 0.75; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { padding: 80px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}
.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(168,146,92,0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-icon svg { width: 22px; height: 22px; fill: var(--accent); }
.contact-info-text h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-text p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 0; }
.contact-info-text a { color: var(--accent); }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { padding: var(--section-padding); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid rgba(168,146,92,0.15);
    padding: 20px 0;
}
.faq-question {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq-item.active .faq-question::after {
    content: '\2212';
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}
.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 12px;
}

/* ============================================================
   SERVICE PAGES
   ============================================================ */
.service-hero {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.service-content { padding: var(--section-padding); }
.service-content p { max-width: 800px; }
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}
.service-feature-card {
    background: rgba(168,146,92,0.06);
    border: 1px solid rgba(168,146,92,0.15);
    border-radius: var(--radius);
    padding: 28px 24px;
}
.service-feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.service-feature-card p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 0; }

/* Service cards grid for services index */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-link-card {
    display: block;
    background: rgba(168,146,92,0.06);
    border: 1px solid rgba(168,146,92,0.15);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
    color: var(--text-light);
}
.service-link-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    background: rgba(168,146,92,0.1);
    color: var(--text-light);
}
.service-link-card h3 { margin-bottom: 8px; }
.service-link-card p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 0; }

/* ============================================================
   SERVICE AREA PAGES
   ============================================================ */
.area-hero {
    padding: 80px 0;
    background: var(--bg-secondary);
    background-size: cover;
    background-position: center;
    position: relative;
}
.area-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13,22,21,0.85);
}
.area-hero .container { position: relative; z-index: 2; }
.area-content { padding: var(--section-padding); }
.area-content p { max-width: 800px; line-height: 1.8; }
.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    margin: 24px 0;
}
.areas-list a {
    display: block;
    padding: 14px 20px;
    background: rgba(168,146,92,0.06);
    border: 1px solid rgba(168,146,92,0.15);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all var(--transition);
}
.areas-list a:hover {
    border-color: var(--accent);
    background: rgba(168,146,92,0.1);
    color: var(--accent);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
    padding: 16px 0;
    font-size: 0.85rem;
}
.breadcrumbs a { color: var(--accent); }
.breadcrumbs span { color: rgba(248,243,234,0.5); margin: 0 8px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; }
    .feedback-form-container { max-width: 100%; }
    .b2b-grid { grid-template-columns: 1fr; }
    .ba-sliders { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .site-header { padding: 10px 0; }
    .header-inner { gap: 12px; }
    .logo {
        font-size: 1.1rem;
        line-height: 1.15;
        white-space: normal;
        max-width: calc(100% - 56px);
    }
    .logo span {
        display: block;
        font-size: 0.95em;
    }
    .main-nav { 
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(168,146,92,0.12);
    }
    .main-nav.active { display: flex; }
    .mobile-toggle {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
    }
    .header-cta { display: none; }
    .hero { min-height: 70vh; }
    .hero-content { padding: 40px 0; }
    .form-row { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .stats-row { grid-template-columns: 1fr; gap: 16px; }
    .sticky-quote-btn {
        right: 50%;
        transform: translateX(50%);
        bottom: 16px;
    }
    .sticky-quote-btn:hover {
        transform: translateX(50%) translateY(-2px);
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .trust-badges { gap: 12px; }
    .feedback-form-container { padding: 20px; }
    .modal-content { padding: 24px; }
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.5s ease forwards; }

/* --- Page-specific light section overrides --- */
.section-light .feedback-form-container {
    background: rgba(29,43,41,0.95);
}
.section-light .feedback-form-container h3 { color: var(--text-light); }
