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

:root {
    --navy: #1e3a5f;
    --navy-light: #2a4f7a;
    --navy-dark: #152d4a;
    --gold: #d4a843;
    --gold-light: #e8c46a;
    --gold-pale: #fdf3dc;
    --cream: #faf8f4;
    --cream-dark: #f5f0e8;
    --white: #ffffff;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(30, 58, 95, 0.06);
    --shadow-md: 0 8px 30px rgba(30, 58, 95, 0.1);
    --shadow-lg: 0 20px 60px rgba(30, 58, 95, 0.12);
    --shadow-gold: 0 8px 30px rgba(212, 168, 67, 0.2);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Lora', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--navy);
}

em {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.938rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 168, 67, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── EYEBROW ── */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    flex-shrink: 0;
}

.section-eyebrow span {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

/* ── HEADER ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(30, 58, 95, 0.06);
    transition: all var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.logo-light .logo-text {
    color: var(--white);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-list a {
    padding: 8px 16px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.938rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all var(--transition);
}

.nav-list a:hover {
    color: var(--navy);
    background: rgba(30, 58, 95, 0.06);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy-dark) !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-line {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ── MOBILE NAV ── */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(30, 58, 95, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--cream);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(30, 58, 95, 0.08);
    transition: color var(--transition);
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-nav-cta {
    border-bottom: none;
    margin-top: 16px;
    text-align: center;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: var(--radius-md);
    padding: 16px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
}

.mobile-contact-info {
    margin-top: auto;
    padding-top: 24px;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.8;
}

.mobile-contact-info a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
}

/* ── HERO ── */
.hero {
    padding-top: 76px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--gold-pale) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-eyebrow .eyebrow-line {
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.hero-eyebrow span {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-headline {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    line-height: 1.08;
    margin-bottom: 24px;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    font-size: 0.813rem;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.04em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(30, 58, 95, 0.15);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-main {
    border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 580/720;
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-accent-card {
    position: absolute;
    bottom: 80px;
    left: -40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 280px;
    z-index: 3;
}

.hero-accent-card svg {
    flex-shrink: 0;
}

.accent-card-text {
    font-family: var(--font-accent);
    font-size: 0.938rem;
    line-height: 1.5;
    color: var(--text-light);
}

.hero-floating-badge {
    position: absolute;
    top: 40px;
    right: -20px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ── ABOUT ── */
.about {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-wrapper {
    border-radius: var(--radius-xl) 8px var(--radius-xl) var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 560/640;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--gold-pale);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content-col {
    padding: 20px 0;
}

.about-body {
    font-size: 1.063rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.value-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-item span:last-child {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    padding-top: 8px;
}

/* ── SERVICES ── */
.services {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.services-pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse at bottom left, rgba(30, 58, 95, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.services-header .section-eyebrow {
    justify-content: center;
}

.services-intro {
    font-size: 1.063rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    border: 1px solid rgba(30, 58, 95, 0.04);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition);
}

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

.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg circle,
.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg line {
    stroke: var(--navy-dark);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--navy);
}

.service-card p {
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ── APPROACH ── */
.approach {
    padding: 120px 0;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
}

.approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.approach-content .section-eyebrow .eyebrow-line {
    background: var(--gold);
}

.approach-content .section-eyebrow span {
    color: var(--gold);
}

.approach-content .section-title {
    color: var(--white);
}

.approach-content .section-title em {
    color: var(--gold);
}

.approach-body {
    font-size: 1.063rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.approach-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.6;
}

.step-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.938rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.approach-visual {
    position: relative;
}

.approach-image-stack {
    position: relative;
    height: 600px;
}

.approach-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--radius-xl) 8px var(--radius-xl) var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.approach-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 8px var(--radius-xl) var(--radius-xl) var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--navy);
}

.approach-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.approach-accent::after {
    content: '+';
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--navy-dark);
    line-height: 1;
}

/* ── COMMUNITY ── */
.community {
    padding: 120px 0;
    background: var(--cream);
}

.community-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.community-body {
    font-size: 1.063rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-card {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-icon {
    width: 72px;
    height: 72px;
    background: rgba(212, 168, 67, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.cta-card h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-card .btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}

/* ── CONTACT ── */
.contact {
    padding: 120px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-intro {
    font-size: 1.063rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-text strong {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.detail-text span,
.detail-text a {
    font-size: 1rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
}

.detail-text a:hover {
    color: var(--gold);
}

/* Form */
.contact-form {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid rgba(30, 58, 95, 0.06);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(30, 58, 95, 0.12);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.938rem;
    color: var(--text);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1);
}

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

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

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

.form-success {
    text-align: center;
    padding: 48px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin: 20px 0 12px;
}

.form-success p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.938rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}

.footer-links,
.footer-hours,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links strong,
.footer-hours strong,
.footer-contact strong {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-links ul,
.footer-hours ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.938rem;
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.65);
    padding: 4px 0;
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.813rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
    max-width: 500px;
    text-align: right;
}

/* ── ANIMATIONS ── */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-aos].aos-visible:nth-child(2) { transition-delay: 0.1s; }
[data-aos].aos-visible:nth-child(3) { transition-delay: 0.2s; }
[data-aos].aos-visible:nth-child(4) { transition-delay: 0.3s; }
[data-aos].aos-visible:nth-child(5) { transition-delay: 0.4s; }
[data-aos].aos-visible:nth-child(6) { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .approach-layout,
    .community-inner,
    .contact-grid {
        gap: 48px;
    }

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

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

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

    .main-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 40px 0 60px;
    }

    .hero-visual {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-accent-card {
        left: 10px;
        bottom: 40px;
        padding: 16px 20px;
    }

    .hero-floating-badge {
        right: 10px;
        top: 20px;
    }

    .hero-stats {
        gap: 20px;
    }

    .about-grid,
    .approach-layout,
    .community-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-col {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

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

    .approach-image-stack {
        height: 400px;
    }

    .approach-img-1 {
        width: 75%;
    }

    .approach-img-2 {
        width: 60%;
    }

    .cta-card {
        padding: 40px 28px;
    }

    .contact-form {
        padding: 32px 24px;
    }

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

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

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

    .footer-disclaimer {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .approach-image-stack {
        height: 320px;
    }
}
