/* ============================================
   Handle With Care Daycare — Premium Dark Luxury
   Burgundy + Blush + Gold Palette
   ============================================ */

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

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

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #F5E6E0;
    background-color: #1A0A0E;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #C9A84C;
    color: #1A0A0E;
    padding: 0.5rem 1rem;
    z-index: 1000;
    font-weight: 600;
    border-radius: 0 0 4px 4px;
}

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

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

/* --- Section Labels --- */
.section-label {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 1rem;
}

.section-label--light {
    color: #F2D07B;
}

/* --- Section Titles --- */
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #F5E6E0;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.section-title--light {
    color: #F5E6E0;
}

.section-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #D4B8B0;
    max-width: 600px;
}

.section-desc--light {
    color: #E8D0C8;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    border-radius: 4px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--gold {
    background: linear-gradient(135deg, #C9A84C 0%, #F2D07B 50%, #C9A84C 100%);
    background-size: 200% 200%;
    color: #1A0A0E;
    border-color: #C9A84C;
}

.btn--gold:hover {
    background-position: right center;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: #F5E6E0;
    border-color: rgba(201, 168, 76, 0.5);
}

.btn--outline:hover {
    border-color: #C9A84C;
    background: rgba(201, 168, 76, 0.1);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.15);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 10, 14, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(26, 10, 14, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

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

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

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #F5E6E0;
    letter-spacing: 0.02em;
}

.logo-text em {
    color: #C9A84C;
    font-style: italic;
}

/* --- Navigation --- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 110;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #C9A84C;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #C9A84C;
    transition: all 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu li a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4B8B0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #C9A84C;
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: #C9A84C;
}

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1A0A0E;
}

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

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to bottom, rgba(26, 10, 14, 0.7) 0%, rgba(26, 10, 14, 0.4) 40%, rgba(26, 10, 14, 0.6) 70%, rgba(26, 10, 14, 0.95) 100%),
        linear-gradient(135deg, rgba(184, 50, 74, 0.3) 0%, transparent 50%),
        linear-gradient(225deg, rgba(201, 168, 76, 0.1) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    max-width: 800px;
}

.hero-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gold-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #F5E6E0;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-headline em {
    color: #C9A84C;
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: #D4B8B0;
    line-height: 1.8;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #D4B8B0;
    letter-spacing: 0.05em;
}

.trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(201, 168, 76, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.6);
}

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

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

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 8rem 0;
    background: #1A0A0E;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid #1A0A0E;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

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

.about-accent {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    opacity: 0.6;
}

.about-content {
    padding: 1rem 0;
}

.about-content .section-desc {
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C9A84C;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #D4B8B0;
}

.stat-divider {
    width: 1px;
    background: rgba(201, 168, 76, 0.2);
    align-self: stretch;
}

/* ============================================
   PROGRAMS
   ============================================ */
.programs {
    padding: 8rem 0;
    background: linear-gradient(180deg, #1A0A0E 0%, #1F0D12 50%, #1A0A0E 100%);
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header .section-desc {
    margin: 0 auto;
}

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

.program-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201, 168, 76, 0.08);
}

.program-card-img {
    height: 220px;
    overflow: hidden;
}

.program-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.program-card-body {
    padding: 2rem;
}

.program-age {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.75rem;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.program-name {
    font-size: 1.6rem;
    color: #F5E6E0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-card-body > p {
    font-size: 0.95rem;
    color: #D4B8B0;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.program-features li {
    font-size: 0.85rem;
    color: #C4A898;
    padding-left: 1.25rem;
    position: relative;
}

.program-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: #C9A84C;
    border-radius: 50%;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
    padding: 8rem 0;
    background: #1A0A0E;
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-us-content .section-desc {
    margin-bottom: 2.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    background: rgba(201, 168, 76, 0.05);
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #F5E6E0;
    margin-bottom: 0.4rem;
}

.feature-item > div > p {
    font-size: 0.9rem;
    color: #B89890;
    line-height: 1.7;
}

.why-us-visual {
    position: relative;
    padding-top: 2rem;
}

.visual-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.visual-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.visual-quote {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(184, 50, 74, 0.1);
    border-left: 3px solid #B8324A;
    border-radius: 0 8px 8px 0;
}

.visual-quote svg {
    margin-bottom: 1rem;
}

.visual-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #D4B8B0;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.visual-quote cite {
    font-size: 0.8rem;
    font-style: normal;
    color: #C9A84C;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

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

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

.philosophy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 10, 14, 0.92) 0%, rgba(26, 10, 14, 0.85) 50%, rgba(184, 50, 74, 0.3) 100%);
}

.philosophy-content {
    position: relative;
    z-index: 1;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.philosophy-text .section-desc {
    margin-bottom: 1.25rem;
}

.philosophy-pillars {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pillar {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pillar:hover {
    border-color: rgba(201, 168, 76, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.pillar-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pillar h4 {
    font-size: 1.2rem;
    color: #F5E6E0;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pillar p {
    font-size: 0.9rem;
    color: #B89890;
    line-height: 1.7;
}

/* ============================================
   DAY IN LIFE
   ============================================ */
.day-in-life {
    padding: 8rem 0;
    background: linear-gradient(180deg, #1A0A0E 0%, #1F0D12 50%, #1A0A0E 100%);
    position: relative;
}

.day-in-life::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-time {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #C9A84C;
    margin-bottom: 0.4rem;
    letter-spacing: 0.05em;
}

.timeline-dot {
    position: absolute;
    left: -3rem;
    top: 0.3rem;
    width: 17px;
    height: 17px;
    background: #1A0A0E;
    border: 2px solid #C9A84C;
    border-radius: 50%;
    transform: translateX(calc(-50% + 8px));
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: #F5E6E0;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #B89890;
    line-height: 1.7;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 8rem 0;
    background: #1A0A0E;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 14, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item--wide {
    grid-column: span 6;
}

.gallery-item:not(.gallery-item--wide) {
    grid-column: span 3;
}

/* ============================================
   VISIT / CONTACT
   ============================================ */
.visit {
    padding: 8rem 0;
    background: linear-gradient(180deg, #1A0A0E 0%, #1F0D12 100%);
    position: relative;
}

.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-info .section-desc {
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    background: rgba(201, 168, 76, 0.05);
}

.contact-item strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F5E6E0;
    margin-bottom: 0.2rem;
}

.contact-item span,
.contact-item a {
    font-size: 0.9rem;
    color: #B89890;
    line-height: 1.6;
}

.contact-item a:hover {
    color: #C9A84C;
}

/* --- Form --- */
.visit-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    padding: 2.5rem;
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #F5E6E0;
    margin-bottom: 0.5rem;
}

.form-desc {
    font-size: 0.9rem;
    color: #B89890;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 6px;
    color: #F5E6E0;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #C9A84C;
    background: rgba(201, 168, 76, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.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'%3E%3Cpath d='M6 8L1 3h10z' fill='%23C9A84C'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: #2A1520;
    color: #F5E6E0;
}

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

.form-privacy {
    font-size: 0.75rem;
    color: #7A5A52;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #C9A84C;
    margin-bottom: 0.75rem;
}

.form-success p {
    font-size: 0.95rem;
    color: #D4B8B0;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    padding: 5rem 0 2rem;
    background: #0F0608;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
}

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

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

.footer-brand p {
    font-size: 0.9rem;
    color: #8A6A62;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F5E6E0;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: #8A6A62;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C9A84C;
}

.footer-contact p {
    font-size: 0.88rem;
    color: #8A6A62;
    line-height: 1.8;
}

.footer-contact a {
    color: #8A6A62;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #C9A84C;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: #5A3A32;
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid,
    .why-us-layout,
    .philosophy-grid,
    .visit-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        max-width: 500px;
    }

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

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

    .gallery-grid {
        grid-template-rows: repeat(3, 180px);
    }

    .gallery-item--wide {
        grid-column: span 6;
    }

    .gallery-item:not(.gallery-item--wide) {
        grid-column: span 3;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(26, 10, 14, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(201, 168, 76, 0.15);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu li a {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 7rem 1.5rem 3rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
    }

    .trust-divider {
        display: none;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .gallery-item:not(.gallery-item--wide) {
        grid-column: span 1;
    }

    .gallery-item {
        height: 200px;
    }

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

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

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .stat {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-align: left;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .visit-form-wrapper {
        padding: 1.5rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-dot {
        left: -2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

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

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

    .gallery-item--wide {
        grid-column: span 1;
    }
}
