/* AnswersMD - Award-Winning Concierge Medicine Design */
/* Premium healthcare aesthetic with warmth and sophistication */

:root {
    /* Primary Palette - Sophisticated Teal-Gray */
    --primary: #2a3f3b;
    --primary-light: #3d534e;
    --primary-muted: #4a5f5a;

    /* Accent - Refined Antique Gold */
    --accent: #b89b5d;
    --accent-light: #cdb176;
    --accent-soft: rgba(184, 155, 93, 0.15);

    /* Backgrounds - Warm Neutrals */
    --bg-white: #ffffff;
    --bg-cream: #fdfbf8;
    --bg-linen: #f7f4ef;
    --bg-sand: #efe9e0;

    /* Text Colors */
    --text-primary: #1f2928;
    --text-secondary: #4a5654;
    --text-tertiary: #7a8583;
    --text-light: #a3aeac;

    /* Borders & Shadows */
    --border-light: rgba(42, 63, 59, 0.08);
    --border-medium: rgba(42, 63, 59, 0.15);
    --shadow-soft: 0 4px 20px rgba(42, 63, 59, 0.06);
    --shadow-medium: 0 8px 40px rgba(42, 63, 59, 0.1);
    --shadow-strong: 0 20px 60px rgba(42, 63, 59, 0.12);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 140px;
    --container-max: 1320px;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

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

html {
    font-size: 17px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.7;
    background-color: var(--bg-white);
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-primary);
}

h1 {
    font-size: 3.8rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

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

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 60px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 44px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
    position: fixed;
    top: 22px;
    left: 220px;
    right: 60px;
    justify-content: flex-end;
    z-index: 1001;
}

.nav-close {
    display: none;
}

.nav a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    position: relative;
    white-space: nowrap;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--primary);
}

.nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--bg-white) !important;
    padding: 14px 32px;
    font-weight: 500;
    letter-spacing: 1.2px;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--primary-light);
    color: var(--bg-white) !important;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
}

/* Mobile Navigation - kicks in at 992px */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        cursor: pointer;
        z-index: 9999;
        background: #f7f4ef;
        border: 1px solid #e8e4dd;
        border-radius: 4px;
        padding: 0;
        transition: all 0.3s ease;
        position: relative;
    }

    .mobile-menu-toggle:hover {
        background: #fdfbf8;
        border-color: #b89b5d;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        background: #2a3f3b;
        transition: all 0.3s ease;
        border-radius: 1px;
    }

    .mobile-menu-toggle.active {
        background: #2a3f3b;
        border-color: #2a3f3b;
        width: 48px;
        height: 48px;
        overflow: visible;
        position: fixed;
        top: 20px;
        right: 20px;
    }

    .mobile-menu-toggle.active span {
        background: #ffffff;
        width: 22px;
    }

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

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

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

    .nav {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 300px;
        max-width: 80vw;
        height: 100vh;
        background: #ffffff !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        z-index: 9998;
        padding: 100px 0 40px;
        box-sizing: border-box;
        overflow-y: auto;
        box-shadow: -5px 0 40px rgba(0, 0, 0, 0.12);
        transform: translateX(100%);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        isolation: isolate;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav.active {
        transform: translateX(0);
    }

    /* Close button inside menu */
    .nav-close {
        position: absolute;
        top: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
        background: none;
        border: 1px solid #e8e4dd;
        border-radius: 50%;
        font-size: 1.25rem;
        color: #2a3f3b;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
    }

    .nav-close:hover {
        background: #f0ebe4;
        border-color: #2a3f3b;
    }

    /* Dark overlay behind panel - separate element */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(31, 41, 40, 0.7);
        z-index: 9997;
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .nav a {
        font-size: 0.85rem;
        letter-spacing: 2.5px;
        padding: 22px 36px;
        width: 100%;
        text-align: left;
        border: none;
        border-bottom: 1px solid #f0ebe4;
        color: #1f2928;
        background: #ffffff;
        transition: all 0.2s ease;
    }

    .nav a:first-child {
        border-top: 1px solid #f0ebe4;
    }

    .nav a::after {
        display: none;
    }

    .nav a:hover {
        background: #f7f4ef;
        color: #b89b5d;
        padding-left: 44px;
    }

    .nav .nav-cta {
        margin: 30px 36px 0;
        width: auto;
        padding: 16px 28px;
        border: none;
        border-radius: 0;
        font-size: 0.75rem;
        letter-spacing: 2px;
        background: #2a3f3b;
        color: #ffffff !important;
        text-align: center;
    }

    .nav .nav-cta:hover {
        background: #3d534e;
        padding-left: 28px;
    }
}

/* ==================== HERO ==================== */
.hero-fullbleed {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% top;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.1) 0%,
        transparent 25%,
        transparent 45%,
        rgba(42,63,59,0.35) 70%,
        rgba(42,63,59,0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 80px 120px;
    max-width: 720px;
    color: var(--bg-white);
}

.hero-tagline {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-light);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 4.2rem;
    color: var(--bg-white);
    margin-bottom: 28px;
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.85;
    margin-bottom: 48px;
    opacity: 0.92;
    max-width: 520px;
    font-weight: 300;
    color: var(--bg-white);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-white);
    color: var(--primary);
    padding: 20px 42px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.hero-cta:hover {
    background: var(--accent);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    right: 80px;
    z-index: 3;
    color: var(--bg-white);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
    writing-mode: vertical-rl;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: var(--section-padding) 0;
}

.section-primary {
    background: var(--primary);
    color: var(--bg-cream);
}

.section-primary h2,
.section-primary h4 {
    color: var(--bg-white);
}

.section-primary p {
    color: rgba(255,255,255,0.8);
}

.section-cream {
    background: var(--bg-linen);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.tagline {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-primary .tagline {
    color: var(--accent-light);
}

.section-header h2 {
    margin-bottom: 24px;
}

.section-header p {
    font-size: 1.1rem;
}

/* ==================== HIGHLIGHT BANNER ==================== */
.highlight-banner {
    background: linear-gradient(135deg, rgba(184, 155, 93, 0.1) 0%, rgba(184, 155, 93, 0.15) 100%);
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(184, 155, 93, 0.2);
    border-bottom: 1px solid rgba(184, 155, 93, 0.2);
}

.highlight-tagline {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary);
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.highlight-locations {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

/* ==================== INTRO ==================== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.intro-content h2 {
    margin-bottom: 32px;
}

.intro-content p {
    font-size: 1.08rem;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-strong);
    display: block;
}

.intro-image-link {
    display: block;
    position: relative;
    text-decoration: none;
}

.intro-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 63, 59, 0.85) 0%, transparent 50%);
    border-radius: 4px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
    opacity: 1;
    transition: all 0.3s ease;
}

.intro-image-caption {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.caption-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
}

.caption-credential {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    font-style: italic;
}

.caption-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-light);
}

.intro-image-link:hover .intro-image-overlay {
    background: linear-gradient(to top, rgba(42, 63, 59, 0.95) 0%, rgba(42, 63, 59, 0.3) 60%);
}

/* ==================== SERVICES ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    padding: 55px 45px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.service-card:hover {
    border-color: var(--border-medium);
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-linen);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--accent-soft);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.service-card h4 {
    margin-bottom: 16px;
    color: var(--text-primary);
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    line-height: 1.75;
    margin-bottom: 0;
}

/* ==================== STEPS ==================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.step {
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -25px;
    width: 50px;
    height: 1px;
    background: rgba(255,255,255,0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid var(--accent-light);
    color: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0 auto 28px;
    font-family: var(--font-heading);
}

.step h4 {
    margin-bottom: 14px;
    font-size: 1.15rem;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==================== FEATURES ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 80px;
}

.feature {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.feature-content h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-content p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial {
    background: var(--bg-white);
    padding: 48px 42px;
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 42px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-quote {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 32px;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-linen);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.testimonial-info .testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.testimonial-info .testimonial-title {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 2px;
}

/* ==================== LOCATIONS ==================== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.location-card {
    background: var(--bg-white);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.location-card:hover {
    box-shadow: var(--shadow-medium);
}

.location-map {
    height: 180px;
    background: var(--bg-linen);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%);
}

.location-info {
    padding: 32px 35px;
}

.location-status {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.status-open {
    background: rgba(46, 125, 50, 0.5);
    color: #ffffff;
}

.status-coming {
    background: rgba(230, 81, 0, 0.5);
    color: #ffffff;
}

.location-info h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.location-address {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Location Photo Cards */
.locations-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.location-photo-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 4px;
    text-decoration: none;
    aspect-ratio: 3/4;
}

.location-photo {
    position: absolute;
    inset: 0;
}

.location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-photo-card:hover .location-photo img {
    transform: scale(1.05);
}

.location-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
}

.location-photo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    color: #fff;
}

.location-photo-content .location-status {
    margin-bottom: 16px;
}

.location-photo-content h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 8px;
}

.location-photo-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-size: 1rem;
}

.location-photo-content .location-subtitle {
    font-size: 0.8rem;
    white-space: nowrap;
}

.view-location {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-light);
    transition: color 0.3s ease;
}

.location-photo-card:hover .view-location {
    color: #fff;
}

@media (max-width: 992px) {
    .locations-photo-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ==================== PAGE HERO ==================== */
.page-hero {
    padding: 180px 0 100px;
    background: var(--primary);
    text-align: center;
}

.page-hero .tagline {
    color: var(--accent-light);
}

.page-hero h1 {
    margin-bottom: 20px;
    font-size: 3rem;
    color: white;
}

.page-hero .lead {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.95);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== TEAM ==================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.team-member {
    display: flex;
    gap: 45px;
    align-items: flex-start;
}

.team-photo {
    width: 300px;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-strong);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 1.9rem;
}

.team-credentials {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.team-title {
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.85;
}

/* ==================== STAFF ==================== */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.staff-member {
    text-align: center;
}

.staff-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 28px;
    box-shadow: var(--shadow-soft);
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff-member h4 {
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 1.35rem;
}

.staff-member .staff-title {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ==================== CONTACT FORM ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.contact-item-content h5 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-tertiary);
    margin-bottom: 6px;
}

.contact-item-content p {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 0;
}

.contact-form {
    background: var(--bg-white);
    padding: 55px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    margin-bottom: 32px;
    font-size: 1.6rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-medium);
    background: var(--bg-white);
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--text-primary);
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5654' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 42px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-white);
    width: 100%;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary);
    border: 1px solid var(--border-medium);
}

.btn-secondary:hover {
    background: var(--bg-linen);
    border-color: var(--primary);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    text-align: center;
    padding: 120px 60px;
}

.cta-section h2 {
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 560px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
}

.cta-section .hero-cta {
    background: var(--bg-white);
    color: var(--primary);
}

.cta-section .hero-cta:hover {
    background: var(--accent);
    color: var(--bg-white);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text-primary);
    padding: 100px 0 50px;
    color: var(--bg-cream);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 70px;
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    margin-top: 24px;
    font-size: 0.95rem;
    line-height: 1.75;
}

.footer-brand .logo img {
    height: 40px;
}

.footer h5 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    color: var(--accent-light);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 14px;
}

.footer ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer ul a:hover {
    color: var(--bg-white);
}

.footer-city-label {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.footer-fax {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 24px;
}

.footer-social a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-light);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }

    .container {
        padding: 0 40px;
    }

    .header-inner {
        padding: 18px 40px;
    }

    .hero-content {
        padding: 0 60px 100px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .intro-grid {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 16px;
    }

    h1 { font-size: 3rem; }
    h2 { font-size: 2.4rem; }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .testimonials-grid,
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    html {
        font-size: 15px;
    }

    .container {
        padding: 0 24px;
    }

    .header-inner {
        padding: 14px 24px;
    }

    .logo {
        margin-right: 20px;
    }

    .logo img {
        height: 36px;
    }

    /* Mobile hero */
    .hero-fullbleed {
        min-height: 100svh;
        align-items: flex-end;
    }

    .hero-background img {
        object-position: 55% top;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
            rgba(255,255,255,0.15) 0%,
            transparent 20%,
            transparent 45%,
            rgba(42,63,59,0.5) 65%,
            rgba(42,63,59,0.94) 100%);
    }

    .hero-content {
        position: relative;
        padding: 0 24px 50px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
        line-height: 1.7;
    }

    .hero-tagline {
        font-size: 0.65rem;
        margin-bottom: 14px;
        letter-spacing: 3px;
    }

    .hero-cta {
        padding: 16px 32px;
        font-size: 0.8rem;
    }

    .hero-scroll {
        display: none;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .testimonials-grid,
    .locations-grid,
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .team-photo {
        width: 260px;
        height: 330px;
    }

    .team-bio {
        text-align: left;
    }

    .page-hero {
        padding: 140px 0 70px;
    }

    .page-hero h1 {
        font-size: 2.4rem;
    }

    .page-hero .lead {
        font-size: 1.05rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-form {
        padding: 36px 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .hero-background img {
        object-position: 60% top;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
            rgba(255,255,255,0.1) 0%,
            transparent 15%,
            transparent 40%,
            rgba(42,63,59,0.55) 58%,
            rgba(42,63,59,0.96) 100%);
    }

    .hero-content {
        padding: 0 20px 40px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .hero-tagline {
        font-size: 0.6rem;
        letter-spacing: 2.5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 0.75rem;
    }

    .team-photo {
        width: 220px;
        height: 280px;
    }

    .staff-photo {
        width: 160px;
        height: 160px;
    }

    .contact-form {
        padding: 30px 22px;
    }
}
