/* ============================================
   KYNARD'S CHILD DEVELOPMENT CENTER
   Custom Styles
   ============================================ */

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

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: #3a2a28;
    background-color: #FDF8F6;
    -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;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

::selection {
    background: #fce3e8;
    color: #7B2D3B;
}

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

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

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

/* --- Typography --- */
.font-serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #7B2D3B;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
}

.section-title--dark {
    color: #3a2a28;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-title--light {
    color: #FDF8F6;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn--primary {
    background: #7B2D3B;
    color: #FDF8F6;
    border: 1px solid #7B2D3B;
}

.btn--primary:hover {
    background: #5c1f2a;
    border-color: #5c1f2a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.25);
}

.btn--ghost {
    background: transparent;
    color: #7B2D3B;
    border: 1px solid rgba(123, 45, 59, 0.3);
}

.btn--ghost:hover {
    border-color: #7B2D3B;
    background: rgba(123, 45, 59, 0.05);
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(58, 42, 40, 0.06);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .nav-inner {
        padding: 0 48px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    color: #7B2D3B;
    letter-spacing: 0.02em;
}

.nav-logo-icon {
    color: #7B2D3B;
    flex-shrink: 0;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 900px) {
    .nav-links {
        display: flex;
    }
    .menu-toggle {
        display: none;
    }
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3a2a28;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #7B2D3B;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #7B2D3B;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link--accent {
    color: #7B2D3B;
    border: 1px solid rgba(123, 45, 59, 0.25);
    padding: 8px 20px;
    transition: all 0.3s ease;
}

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

.nav-link--accent:hover {
    background: #7B2D3B;
    color: #FDF8F6;
    border-color: #7B2D3B;
}

.menu-toggle {
    color: #7B2D3B;
    padding: 8px;
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(253, 248, 246, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.mobile-menu-link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: #3a2a28;
    padding: 16px 24px;
    transition: color 0.2s ease;
    text-align: center;
}

.mobile-menu-link:hover {
    color: #7B2D3B;
}

.mobile-menu-link--cta {
    margin-top: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7B2D3B;
    border: 1px solid #7B2D3B;
    padding: 14px 32px;
}

.mobile-menu-divider {
    width: 40px;
    height: 1px;
    background: rgba(123, 45, 59, 0.2);
    margin: 8px 0;
}

.mobile-menu-contact {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-contact p {
    font-size: 13px;
    color: #7B2D3B;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    padding: 100px 24px 60px;
    background: #FDF8F6;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: 120px 48px 80px;
    }
}

@media (min-width: 1200px) {
    .hero {
        padding: 120px 64px 80px;
    }
}

.hero-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 64px;
        align-items: start;
    }
}

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7B2D3B;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 32px;
    height: 1px;
    background: #7B2D3B;
    flex-shrink: 0;
}

.hero-headline {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    color: #3a2a28;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-headline-accent {
    font-style: italic;
    color: #7B2D3B;
    font-weight: 300;
}

.hero-subhead {
    font-size: 16px;
    line-height: 1.8;
    color: #5c4a48;
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 24px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat-number {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 400;
    color: #7B2D3B;
    line-height: 1;
}

.hero-stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7B2D3B;
    opacity: 0.6;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(123, 45, 59, 0.15);
    flex-shrink: 0;
}

/* Hero Images */
.hero-image-wrap {
    position: relative;
    padding-top: 40px;
}

.hero-image-main {
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58, 42, 40, 0.1);
}

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

@media (min-width: 900px) {
    .hero-image-main img {
        height: 620px;
    }
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -30px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(58, 42, 40, 0.12);
    border: 4px solid #FDF8F6;
}

@media (min-width: 900px) {
    .hero-image-accent {
        width: 260px;
    }
}

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

.hero-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background: #7B2D3B;
    color: #FDF8F6;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #7B2D3B;
    opacity: 0.5;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@media (min-width: 900px) {
    .hero-scroll {
        left: 64px;
        transform: none;
    }
}

/* --- About --- */
.about {
    padding: 100px 0;
    background: #FDF8F6;
}

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

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

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

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

.about-image-main {
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58, 42, 40, 0.08);
}

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

@media (min-width: 768px) {
    .about-image-main img {
        height: 600px;
    }
}

.about-image-small {
    position: absolute;
    bottom: -40px;
    right: -20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(58, 42, 40, 0.1);
    border: 4px solid #FDF8F6;
}

@media (min-width: 768px) {
    .about-image-small {
        width: 240px;
    }
}

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

.about-text-col .section-eyebrow {
    margin-bottom: 16px;
}

.about-lead {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.5;
    color: #7B2D3B;
    margin-bottom: 20px;
}

.about-text-col > p {
    font-size: 15px;
    line-height: 1.8;
    color: #5c4a48;
    margin-bottom: 16px;
    font-weight: 300;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(123, 45, 59, 0.1);
}

.about-value {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-value-icon {
    color: #7B2D3B;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.about-value-label {
    font-size: 13px;
    font-weight: 400;
    color: #3a2a28;
    line-height: 1.4;
}

/* --- Divider --- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 24px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: rgba(123, 45, 59, 0.12);
}

.divider-icon {
    color: #7B2D3B;
    opacity: 0.4;
    flex-shrink: 0;
}

/* --- Programs --- */
.programs {
    padding: 100px 0;
    background: #FDF8F6;
}

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

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

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

.programs-header .section-eyebrow::before {
    display: none;
}

.programs-lead {
    font-size: 16px;
    line-height: 1.8;
    color: #5c4a48;
    font-weight: 300;
}

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

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

.program-card {
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(123, 45, 59, 0.06);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(58, 42, 40, 0.08);
}

.program-card-image {
    position: relative;
    overflow: hidden;
}

.program-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.program-card:hover .program-card-image img {
    transform: scale(1.03);
}

.program-card-age {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #7B2D3B;
    color: #FDF8F6;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
}

.program-card-body {
    padding: 28px;
}

.program-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #3a2a28;
    margin-bottom: 12px;
    line-height: 1.2;
}

.program-card-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #5c4a48;
    margin-bottom: 20px;
    font-weight: 300;
}

.program-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.program-card-features li {
    font-size: 13px;
    color: #3a2a28;
    padding-left: 16px;
    position: relative;
    font-weight: 300;
}

.program-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 1px;
    background: #7B2D3B;
}

/* --- Approach --- */
.approach {
    padding: 100px 0;
    background: #7B2D3B;
    position: relative;
    overflow: hidden;
}

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

.approach::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(253, 248, 246, 0.03);
    pointer-events: none;
}

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

@media (min-width: 900px) {
    .approach-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
        align-items: center;
    }
}

.approach-content .section-eyebrow {
    color: rgba(253, 248, 246, 0.6);
}

.approach-content .section-eyebrow::before {
    background: rgba(253, 248, 246, 0.4);
}

.approach-accent {
    font-style: italic;
    color: rgba(253, 248, 246, 0.85);
}

.approach-text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(253, 248, 246, 0.7);
    margin-bottom: 48px;
    max-width: 500px;
    font-weight: 300;
}

.approach-pillars {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.approach-pillar {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
}

.approach-pillar-num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 300;
    color: rgba(253, 248, 246, 0.2);
    line-height: 1;
    padding-top: 4px;
}

.approach-pillar-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #FDF8F6;
    margin-bottom: 8px;
    line-height: 1.2;
}

.approach-pillar-desc {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(253, 248, 246, 0.6);
    font-weight: 300;
}

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

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

.approach-img-main {
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.approach-img-float {
    position: absolute;
    bottom: 0;
    right: -20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid #7B2D3B;
}

@media (min-width: 768px) {
    .approach-img-float {
        width: 220px;
    }
}

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

/* --- Visit --- */
.visit {
    padding: 100px 0;
    background: #FDF8F6;
}

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

.visit .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 900px) {
    .visit .container {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }
}

.visit-content .section-eyebrow {
    margin-bottom: 16px;
}

.visit-text {
    font-size: 15px;
    line-height: 1.85;
    color: #5c4a48;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 480px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.visit-detail-icon {
    color: #7B2D3B;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

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

.visit-detail-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7B2D3B;
    opacity: 0.6;
}

.visit-detail-value {
    font-size: 15px;
    color: #3a2a28;
    line-height: 1.6;
    font-weight: 300;
}

.visit-detail-link {
    font-size: 15px;
    color: #7B2D3B;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.visit-detail-link:hover {
    opacity: 0.7;
}

.visit-map {
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(58, 42, 40, 0.08);
}

.visit-map-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    filter: saturate(0.6) brightness(1.05);
    transition: filter 0.3s ease;
}

.visit-map:hover .visit-map-img {
    filter: saturate(0.8) brightness(1.02);
}

.visit-map-link {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    color: #3a2a28;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.visit-map-link:hover {
    background: #7B2D3B;
    color: #FDF8F6;
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background: #EDE4DF;
}

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

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

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

.contact-info .section-eyebrow {
    color: rgba(253, 248, 246, 0.6);
}

.contact-info .section-eyebrow::before {
    background: rgba(253, 248, 246, 0.4);
}

.contact-text {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(253, 248, 246, 0.7);
    margin-bottom: 36px;
    font-weight: 300;
    max-width: 420px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-direct-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #FDF8F6;
    font-weight: 300;
    transition: opacity 0.2s ease;
    padding: 4px 0;
}

.contact-direct-item:hover {
    opacity: 0.7;
}

.contact-direct-item svg {
    color: rgba(253, 248, 246, 0.5);
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrap {
    background: white;
    padding: 40px;
    box-shadow: 0 12px 40px rgba(58, 42, 40, 0.06);
}

@media (min-width: 768px) {
    .contact-form-wrap {
        padding: 48px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7B2D3B;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #3a2a28;
    background: #FDF8F6;
    border: 1px solid rgba(123, 45, 59, 0.15);
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #7B2D3B;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0a09e;
}

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

.form-group select {
    cursor: pointer;
    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' stroke='%237B2D3B' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M3 5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

/* Form Success */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

.form-success-icon {
    color: #7B2D3B;
}

.form-success-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: #3a2a28;
}

.form-success-text {
    font-size: 14px;
    line-height: 1.75;
    color: #5c4a48;
    font-weight: 300;
    max-width: 320px;
}

.form-success-text a {
    color: #7B2D3B;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* --- Footer --- */
.footer {
    background: #3a2a28;
    color: rgba(253, 248, 246, 0.6);
    padding: 64px 0 0;
}

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

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr auto;
        gap: 48px;
        padding-bottom: 48px;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    color: #FDF8F6;
    margin-bottom: 16px;
}

.footer-logo svg {
    color: rgba(253, 248, 246, 0.6);
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(253, 248, 246, 0.5);
    font-weight: 300;
}

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

@media (min-width: 768px) {
    .footer-links {
        align-items: flex-start;
    }
}

.footer-link {
    font-size: 13px;
    color: rgba(253, 248, 246, 0.5);
    transition: color 0.2s ease;
    font-weight: 300;
}

.footer-link:hover {
    color: #FDF8F6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact p {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 300;
}

.footer-contact svg {
    color: rgba(253, 248, 246, 0.4);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 248, 246, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(253, 248, 246, 0.3);
    font-weight: 300;
}

.footer-locale {
    font-size: 12px;
    color: rgba(253, 248, 246, 0.3) !important;
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal:not(.revealed) {
    opacity: 0;
    transform: translateY(24px);
}

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

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --- Focus Styles --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #7B2D3B;
    outline-offset: 2px;
}

/* --- Mobile specific adjustments --- */
@media (max-width: 480px) {
    .hero-stats {
        gap: 16px;
    }
    .hero-stat {
        padding: 0 16px;
    }
    .contact-form-wrap {
        padding: 28px;
    }
}
