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

:root {
    --coral-50: #FFF0EE;
    --coral-100: #FFE0DA;
    --coral-200: #FFC4B8;
    --coral-300: #FFA08E;
    --coral-400: #FF7A66;
    --coral-500: #E8634A;
    --coral-600: #D44E35;
    --coral-700: #B03A28;
    --coral-800: #8A2E21;
    --coral-900: #6B251C;
    
    --charcoal-50: #F7F7F8;
    --charcoal-100: #EEEEE F;
    --charcoal-200: #D6D6D9;
    --charcoal-300: #B0B0B7;
    --charcoal-400: #888890;
    --charcoal-500: #6B6B73;
    --charcoal-600: #525259;
    --charcoal-700: #3E3E45;
    --charcoal-800: #2D2D33;
    --charcoal-900: #1E1E24;
    --charcoal-950: #131318;
    
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(30,30,36,0.06), 0 1px 2px rgba(30,30,36,0.04);
    --shadow-md: 0 4px 16px rgba(30,30,36,0.08), 0 2px 4px rgba(30,30,36,0.04);
    --shadow-lg: 0 12px 40px rgba(30,30,36,0.12), 0 4px 12px rgba(30,30,36,0.06);
    --shadow-xl: 0 24px 60px rgba(30,30,36,0.16);
    
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--charcoal-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===== Skip Link ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--coral-500);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 16px;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 48px;
    }
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal-900);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
}

.btn:focus-visible {
    outline: 3px solid var(--coral-400);
    outline-offset: 2px;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    padding: 16px 32px;
}

.btn-coral {
    background: var(--coral-500);
    color: var(--white);
    border-color: var(--coral-500);
}

.btn-coral:hover {
    background: var(--coral-600);
    border-color: var(--coral-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 99, 74, 0.35);
}

.btn-coral:active {
    transform: translateY(0);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--charcoal-900);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-coral {
    background: transparent;
    color: var(--coral-500);
    border-color: var(--coral-500);
}

.btn-outline-coral:hover {
    background: var(--coral-500);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.0);
    padding: 20px 0;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    padding: 14px 0;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: var(--coral-500);
    border-radius: 10px;
    transform: rotate(45deg);
    position: relative;
    flex-shrink: 0;
}

.logo-mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--charcoal-900);
    border-radius: 50%;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--charcoal-900);
}

.logo-accent {
    color: var(--coral-500);
}

.header.scrolled .logo-text,
.header.scrolled .logo-accent {
    color: var(--charcoal-900);
}

.primary-nav ul {
    display: none;
    align-items: center;
    gap: 8px;
}

.primary-nav a {
    display: block;
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal-700);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.primary-nav a:hover {
    color: var(--coral-500);
    background: var(--coral-50);
}

/* Mobile nav toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal-800);
    border-radius: 2px;
    transition: all var(--transition);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
@media (max-width: 767px) {
    .primary-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    
    .primary-nav.open {
        opacity: 1;
        visibility: visible;
    }
    
    .primary-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .primary-nav a {
        font-size: 1.25rem;
        padding: 12px 24px;
    }
    
    .nav-toggle {
        display: flex;
    }
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .primary-nav ul {
        display: flex;
    }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--charcoal-900);
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 30, 36, 0.88) 0%,
        rgba(30, 30, 36, 0.72) 50%,
        rgba(232, 99, 74, 0.35) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 140px 0 100px;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ===== Section Shared ===== */
.section-header {
    max-width: 680px;
    margin-bottom: 56px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--coral-500);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--charcoal-500);
    line-height: 1.75;
}

/* ===== Services ===== */
.services {
    padding: 100px 0;
    background: var(--off-white);
}

@media (min-width: 768px) {
    .services {
        padding: 120px 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--coral-50);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--coral-500);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--charcoal-900);
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--charcoal-500);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--coral-500);
    transition: gap var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* ===== About ===== */
.about {
    padding: 100px 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .about {
        padding: 120px 0;
    }
}

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

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (min-width: 640px) {
    .about-img-main img {
        height: 500px;
    }
}

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

@media (min-width: 640px) {
    .about-img-secondary {
        right: -32px;
        bottom: -48px;
    }
    
    .about-img-secondary img {
        height: 220px;
    }
}

.about-stat {
    position: absolute;
    top: -20px;
    left: -16px;
    background: var(--coral-500);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8125rem;
    opacity: 0.9;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 1.0625rem;
    color: var(--charcoal-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal-800);
}

.value-check {
    width: 24px;
    height: 24px;
    background: var(--coral-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
    flex-shrink: 0;
}

/* ===== Why Us ===== */
.why-us {
    padding: 100px 0;
    background: var(--charcoal-900);
}

@media (min-width: 768px) {
    .why-us {
        padding: 120px 0;
    }
}

.why-us .section-tag {
    color: var(--coral-300);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-desc {
    color: var(--charcoal-300);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(232, 99, 74, 0.3);
    transform: translateY(-4px);
}

.why-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--coral-500);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 20px;
}

.why-card h3 {
    font-family: var(--font-body);
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9375rem;
    color: var(--charcoal-300);
    line-height: 1.75;
}

/* ===== Process ===== */
.process {
    padding: 100px 0;
    background: var(--off-white);
}

@media (min-width: 768px) {
    .process {
        padding: 120px 0;
    }
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

.step-circle {
    width: 56px;
    height: 56px;
    background: var(--coral-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
}

.step-content h3 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal-900);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.9375rem;
    color: var(--charcoal-500);
    line-height: 1.75;
}

/* ===== CTA Banner ===== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 30, 36, 0.9) 0%,
        rgba(232, 99, 74, 0.7) 100%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .contact {
        padding: 120px 0;
    }
}

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

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 1.0625rem;
    color: var(--charcoal-500);
    line-height: 1.75;
    margin-bottom: 40px;
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--coral-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-500);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal-400);
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-size: 1rem;
    color: var(--charcoal-800);
    font-weight: 500;
}

.contact-link {
    display: block;
    font-size: 1rem;
    color: var(--coral-500);
    font-weight: 500;
    transition: color var(--transition);
}

.contact-link:hover {
    color: var(--coral-600);
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.contact-map img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: var(--charcoal-900);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    position: absolute;
    bottom: 16px;
    left: 16px;
}

.map-link:hover {
    background: var(--coral-500);
}

/* Form */
.contact-form-wrap {
    background: var(--off-white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 700;
}

.form-note {
    font-size: 0.875rem;
    color: var(--charcoal-400);
    margin-bottom: 32px;
}

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

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--charcoal-800);
    background: var(--white);
    border: 1.5px solid var(--charcoal-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--coral-500);
    box-shadow: 0 0 0 3px rgba(232, 99, 74, 0.12);
}

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%236B6B73' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.btn-loading {
    display: none;
}

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

.form-success h4 {
    font-size: 1.5rem;
    margin: 16px 0 8px;
    color: var(--charcoal-900);
}

.form-success p {
    color: var(--charcoal-500);
    font-size: 0.9375rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal-950);
    color: var(--charcoal-300);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text,
.footer-brand .logo-accent {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--charcoal-400);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--charcoal-400);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--coral-400);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--charcoal-400);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--coral-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--charcoal-500);
}

/* ===== Reveal Animations ===== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal[data-reveal-delay="1"] { transition-delay: 0.1s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.2s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.3s; }
.reveal[data-reveal-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Focus Styles ===== */
:focus-visible {
    outline: 3px solid var(--coral-400);
    outline-offset: 2px;
}

/* ===== Selection ===== */
::selection {
    background: var(--coral-200);
    color: var(--charcoal-900);
}
