/* ========================= 
   ALEKSANDRE LAW - STYLES
   Version 7.3 - January 2026
   "Marble Lobby" Design
   Grey Purge + Mobile Readability
   ========================= */

:root {
    --black: #000000;
    --white: #FFFFFF;
    --off-white: #fafafa;
    --font-headline: "Cormorant Garamond", Georgia, serif;
    --font-body: "Lora", Georgia, serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Text selection styling */
::selection {
    background: var(--black);
    color: var(--white);
}

a {
    color: inherit;
}

/* Global focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

/* =========================
   HEADER
   ========================= */

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-logo a {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
}

.header-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    font-family: var(--font-headline);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1.25rem;
    right: 1.25rem;
    height: 1px;
    background: var(--black);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.header-cta {
    font-family: var(--font-headline);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 1.75rem;
    transition: all 0.2s ease;
}

.header-cta:hover {
    background: #222;
}

.header-cta:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 4px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 2rem;
    flex-direction: column;
    gap: 0;
    z-index: 99;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 1.15rem;
    font-weight: 600;
}

.mobile-nav .nav-link::after {
    display: none;
}

/* =========================
   HERO - HOMEPAGE
   ========================= */

.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.hero-content {
    max-width: 1000px;
}

.hero-tagline-big {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-location {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    opacity: 0;
    animation: heroFadeIn 0.8s ease forwards;
    animation-delay: 3.5s;
}

/* Hero Word Stagger Animation */
.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: heroWordReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-word-1 { animation-delay: 0.3s; }
.hero-word-2 { animation-delay: 0.9s; }
.hero-word-3 { animation-delay: 1.5s; }
.hero-word-4 { animation-delay: 2.4s; }

@keyframes heroWordReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    0% { opacity: 0; }
    100% { opacity: 0.5; }
}

/* =========================
   HERO - SERVICE PAGES
   ========================= */

.service-hero {
    padding: 8rem 4rem 6rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.service-hero h1 {
    font-family: var(--font-headline);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.service-hero .service-lead {
    font-family: var(--font-headline);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    font-style: italic;
    color: rgba(0,0,0,0.6);
    max-width: 700px;
    margin: 0 auto;
}

/* =========================
   SERVICES GRID - HOMEPAGE
   ========================= */

.services {
    padding: 6rem 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
}

.services-header span {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(0,0,0,0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.service-card {
    text-decoration: none;
    color: var(--black);
    display: block;
}

.service-card h3 {
    font-family: var(--font-headline);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--black);
    transition: all 0.2s ease;
}

.service-card:hover h3 {
    padding-left: 0.5rem;
}

.service-card:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 4px;
}

.service-card:focus-visible h3 {
    padding-left: 0.5rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.5rem 0;
    color: rgba(0,0,0,0.7);
}

.service-list li:last-child {
    padding-bottom: 0;
}

/* =========================
   APPROACH SECTION
   ========================= */

.approach {
    background: var(--black);
    color: var(--white);
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.approach-label {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 1;
}

.approach-content h2 {
    font-family: var(--font-headline);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    line-height: 1.35;
    font-style: italic;
}

.approach-content h2 strong {
    font-style: normal;
    font-weight: 700;
}

.approach-cta {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    padding: 1.25rem 3rem;
    margin-top: 2.5rem;
    transition: all 0.2s ease;
}

.approach-cta:hover {
    background: var(--off-white);
}

.approach-cta:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* =========================
   FAQ SECTION - HOMEPAGE STYLE
   ========================= */

.faq-section {
    padding: 6rem 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.faq-grid .faq-item {
    padding-right: 2rem;
}

.faq-grid .faq-question {
    font-family: var(--font-headline);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.faq-grid .faq-answer {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.65);
}

/* =========================
   FAQ ACCORDION - SERVICE PAGES
   ========================= */

.faq-accordion-section {
    padding: 6rem 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-accordion-header {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-accordion-header h2 {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category h3 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0,0,0,0.15);
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item button.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-family: var(--font-headline);
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    line-height: 1.4;
    color: var(--black);
}

.faq-item button.faq-question:hover {
    color: rgba(0,0,0,0.6);
}

.faq-item button.faq-question:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: -2px;
}

.faq-icon {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 2rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    padding-bottom: 1.5rem;
}

.faq-item .faq-answer p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

/* =========================
   CTA SECTION
   ========================= */

.cta-section {
    padding: 8rem 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.cta-section h2 {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.cta-section p {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(0,0,0,0.5);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 1.25rem 3rem;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #222;
}

.cta-button:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

/* =========================
   SERVICE PAGE CONTENT
   ========================= */

.service-content {
    padding: 6rem 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.service-description h2 {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.service-description p {
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(0,0,0,0.75);
    margin-bottom: 1.5rem;
}

.service-description p:last-child {
    margin-bottom: 0;
}

.service-includes h2 {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    color: rgba(0,0,0,0.75);
}

.service-includes li:last-child {
    border-bottom: none;
}

/* =========================
   PROCESS SECTION
   ========================= */

.process-section {
    padding: 6rem 4rem;
    background: var(--off-white);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.process-header {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.process-header h2 {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.process-step {
    position: relative;
}

.process-step .step-number {
    font-family: var(--font-headline);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(0,0,0,0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-family: var(--font-headline);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(0,0,0,0.65);
}

/* =========================
   ABOUT PAGE
   ========================= */

.about-content {
    padding: 6rem 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
}

.about-main p {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(0,0,0,0.8);
    margin-bottom: 1.5rem;
}

.about-main p:last-child {
    margin-bottom: 0;
}

.about-sidebar h3 {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1rem;
}

.about-sidebar p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.about-sidebar .credential-group {
    margin-bottom: 2.5rem;
}

.about-sidebar .credential-group:last-child {
    margin-bottom: 0;
}

/* =========================
   CONTACT PAGE
   ========================= */

.contact-content {
    padding: 6rem 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid rgba(0,0,0,0.2);
    background: var(--white);
    transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--black);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 1.25rem 3rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-button:hover {
    background: #222;
}

.submit-button:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

.contact-info h3 {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1rem;
}

.contact-info p,
.contact-info a {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--black);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-method {
    margin-bottom: 2.5rem;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-map {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
    padding: 3.5rem 4rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    font-family: var(--font-headline);
}

.footer-brand strong {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 500;
    color: var(--black);
    max-width: 280px;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-headline);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
    color: var(--black);
}

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--black);
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.footer-legal {
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.15);
    font-size: 0.8rem;
    color: rgba(0,0,0,0.55);
    line-height: 1.7;
}

/* =========================
   ANIMATIONS
   ========================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0ms; }
.stagger-2 { transition-delay: 80ms; }
.stagger-3 { transition-delay: 160ms; }
.stagger-4 { transition-delay: 240ms; }

/* Hero animations moved to hero section above */

@media (prefers-reduced-motion: reduce) {
    .reveal, .hero-word, .hero-location {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
}

/* =========================
   RESPONSIVE - TABLET
   ========================= */

@media (max-width: 1024px) {
    .site-header {
        padding: 1.25rem 2rem;
    }

    .hero {
        padding: 4rem 2rem;
    }

    .services {
        padding: 4rem 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .approach {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
        gap: 1.5rem;
    }

    .faq-section {
        padding: 4rem 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-grid .faq-item {
        padding-right: 0;
        padding-bottom: 3rem;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    .faq-grid .faq-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .cta-section {
        padding: 5rem 2rem;
    }

    .service-hero {
        padding: 6rem 2rem 4rem;
    }

    .service-content {
        padding: 4rem 2rem;
    }

    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-section {
        padding: 4rem 2rem;
    }

    .faq-accordion-section {
        padding: 4rem 2rem;
    }

    .about-content {
        padding: 4rem 2rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .contact-content {
        padding: 4rem 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .site-footer {
        padding: 3rem 2rem 1.5rem;
    }
}

/* =========================
   RESPONSIVE - MOBILE
   ========================= */

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 90vh;
        padding: 3rem 2rem;
    }

    .hero-location {
        display: none;
    }

    .hero-tagline-big {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .services-header {
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-hero {
        padding: 4rem 2rem 3rem;
        min-height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .service-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: 1rem;
    }

    .service-hero .service-lead {
        font-size: 1rem;
    }

    .approach {
        text-align: center;
    }

    .approach-label {
        margin-bottom: 1rem;
    }

    .approach-cta {
        display: block;
        text-align: center;
    }

    .cta-section {
        padding: 4rem 2rem;
    }

    .cta-section h2 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    .cta-button {
        display: block;
        text-align: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .faq-accordion-section {
        padding: 3rem 2rem;
    }

    .faq-item button.faq-question {
        font-size: 1rem;
        padding: 1.25rem 0;
    }

    .contact-form {
        margin-bottom: 2rem;
    }

    .submit-button {
        width: 100%;
    }

    .contact-map iframe {
        height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        margin-bottom: 1rem;
    }

    .footer-brand strong {
        font-size: 1.4rem;
    }

    .footer-brand p {
        font-size: 1.05rem;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .footer-col p,
    .footer-col a {
        font-size: 1.1rem;
    }

    .footer-legal {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Mobile nav - bigger and bolder */
    .mobile-nav .nav-link {
        font-size: 1.25rem;
        font-weight: 600;
        padding: 1.25rem 0;
    }

    /* Section labels - bigger on mobile */
    .services-header h2,
    .service-description h2,
    .service-includes h2,
    .process-header h2,
    .faq-accordion-header h2,
    .about-sidebar h3,
    .contact-info h3 {
        font-size: 1rem;
    }

    /* Approach label on mobile */
    .approach-label {
        font-size: 1rem;
    }

    /* Contact form labels */
    .contact-form label {
        font-size: 1rem;
    }

    /* CTA buttons - bigger on mobile */
    .header-cta,
    .approach-cta,
    .cta-button,
    .submit-button {
        font-size: 1rem;
        padding: 1.25rem 2rem;
    }
}

/* =========================
   CENTERED CONTACT FORM
   (No sidebar variant)
   ========================= */

.contact-form-centered {
    max-width: 600px;
    margin: 0 auto;
}
