/* ============================================
   My First Little School — Stylesheet
   Palette: Plum (#4A235A, #6B3A7A, #8B5FB0)
            Amber (#C8963E, #D4A84B, #E8C97A)
            Neutrals: #1A1A2E, #2D2D44, #F8F6F3, #EDE8E0
*/

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

:root {
    --plum-darkest: #1A1A2E;
    --plum-dark: #2D2D44;
    --plum-deep: #4A235A;
    --plum-mid: #6B3A7A;
    --plum-light: #8B5FB0;
    --plum-pale: #D4C4E8;
    
    --amber-dark: #A07830;
    --amber: #C8963E;
    --amber-light: #D4A84B;
    --amber-pale: #E8C97A;
    --amber-cream: #F5E6C0;
    
    --neutral-darkest: #0F0F1A;
    --neutral-dark: #1A1A2E;
    --neutral-mid: #2D2D44;
    --neutral-light: #EDE8E0;
    --neutral-pale: #F8F6F3;
    --neutral-white: #FDFCFA;
    
    --text-dark: #1A1A2E;
    --text-mid: #4A4A6A;
    --text-light: #7A7A9A;
    --text-on-dark: #F8F6F3;
    --text-on-dark-muted: #B8B8D0;
    
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.10);
    --shadow-lg: 0 8px 40px rgba(26, 26, 46, 0.12);
    --shadow-xl: 0 16px 60px rgba(26, 26, 46, 0.15);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--neutral-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum-deep);
    color: var(--text-on-dark);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
    transition: top var(--transition-fast);
}

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

/* ---------- Page Loader ---------- */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--plum-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    gap: 8px;
    align-items: center;
}

.loader-letter {
    font-family: var(--font-serif);
    font-size: 48px;
    font-weight: 700;
    color: var(--amber-light);
    opacity: 0;
    animation: loaderFade 1.2s ease-in-out infinite;
}

.loader-letter:nth-child(2) { animation-delay: 0.15s; }
.loader-letter:nth-child(3) { animation-delay: 0.3s; }
.loader-letter:nth-child(4) { animation-delay: 0.45s; }

@keyframes loaderFade {
    0%, 100% { opacity: 0.2; transform: translateY(8px); }
    50% { opacity: 1; transform: translateY(0); }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--amber);
    color: var(--neutral-darkest);
    border: 2px solid var(--amber);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--amber-light);
    border-color: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-on-dark);
    border: 2px solid rgba(248, 246, 243, 0.5);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(248, 246, 243, 0.1);
    border-color: var(--text-on-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-on-dark);
    border: 2px solid rgba(248, 246, 243, 0.6);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    background: var(--text-on-dark);
    color: var(--plum-deep);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 0.9375rem;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 35, 90, 0.08);
    transition: all var(--transition-base);
}

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

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

/* ---------- Logo ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--plum-deep);
    letter-spacing: 0.08em;
    padding: 6px 10px;
    border: 1.5px solid var(--plum-deep);
    border-radius: var(--radius-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-line-one {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plum-mid);
}

.logo-line-two {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--plum-deep);
    letter-spacing: 0.01em;
}

/* ---------- Navigation ---------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--plum-deep);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--plum-deep);
    background: rgba(74, 35, 90, 0.06);
}

.nav-cta {
    background: var(--plum-deep);
    color: var(--text-on-dark) !important;
    margin-left: 8px;
    border-radius: var(--radius-sm);
}

.nav-cta:hover,
.nav-cta:focus-visible {
    background: var(--plum-mid);
    color: var(--text-on-dark) !important;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-deep);
    overflow: hidden;
    padding: 120px 24px 80px;
}

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

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(139, 95, 176, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(200, 150, 62, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 40% 50% at 90% 90%, rgba(107, 58, 122, 0.2) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(74, 35, 90, 0.75) 50%,
        rgba(45, 45, 68, 0.80) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.eyebrow-line {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--amber);
}

.eyebrow-text {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-light);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-on-dark);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

.hero-headline em {
    font-style: italic;
    color: var(--amber-pale);
}

.hero-subheadline {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-on-dark-muted);
    max-width: 680px;
    margin: 0 auto 44px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

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

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

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber-light);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-suffix {
    font-size: 1.5rem;
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(248, 246, 243, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(248, 246, 243, 0.4);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* ---------- Section Shared ---------- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: 16px;
}

.section-eyebrow--light {
    color: var(--amber-pale);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-title--light {
    color: var(--text-on-dark);
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-mid);
}

/* ---------- Services ---------- */
.services {
    padding: 120px 0;
    background: var(--neutral-white);
}

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

.service-card {
    position: relative;
    background: var(--neutral-white);
    border: 1px solid rgba(74, 35, 90, 0.10);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(74, 35, 90, 0.18);
}

.service-icon {
    padding: 40px 32px 0;
}

.service-icon svg {
    width: 56px;
    height: 56px;
    color: var(--plum-deep);
}

.service-card-inner {
    padding: 24px 32px 40px;
}

.service-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(74, 35, 90, 0.06);
    line-height: 1;
    margin-bottom: 8px;
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum-deep);
    margin-bottom: 16px;
    line-height: 1.25;
}

.service-description {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.service-features li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    margin-top: 8px;
}

/* ---------- About ---------- */
.about {
    padding: 120px 0;
    background: var(--neutral-pale);
    overflow: hidden;
}

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

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

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

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

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--neutral-pale);
}

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

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--plum-deep);
    color: var(--text-on-dark);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--amber-light);
    line-height: 1;
    margin-bottom: 4px;
}

.badge-text {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
}

.about-content-col {
    max-width: 520px;
}

.about-lead {
    font-family: var(--font-serif);
    font-size: 1.3125rem;
    font-weight: 500;
    line-height: 1.65;
    color: var(--plum-deep);
    margin-bottom: 24px;
    font-style: italic;
}

.about-content-col > p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 16px;
}

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

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

.value-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--amber);
    margin-top: 2px;
}

.value-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

/* ---------- Approach ---------- */
.approach {
    padding: 120px 0;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 0% 50%, rgba(139, 95, 176, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 100% 100%, rgba(200, 150, 62, 0.1) 0%, transparent 50%);
}

.approach-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.approach-header .section-eyebrow {
    color: var(--amber-pale);
}

.approach-header .section-title {
    color: var(--text-on-dark);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.approach-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(212, 168, 75, 0.15);
    line-height: 1;
    margin-bottom: 20px;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-on-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.step-description {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-on-dark-muted);
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 120px 0;
    background: var(--neutral-white);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.8) 0%, transparent 100%);
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-on-dark);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-base);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-item--large img {
    height: 100%;
    min-height: 500px;
}

.gallery-item:not(.gallery-item--large) img {
    height: 240px;
}

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

.gallery-item--wide img {
    height: 280px;
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 120px 0;
    background: var(--neutral-pale);
}

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

.testimonial-card {
    background: var(--neutral-white);
    border: 1px solid rgba(74, 35, 90, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    position: relative;
    transition: all var(--transition-base);
}

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

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    color: var(--amber);
    opacity: 0.3;
    position: absolute;
    top: 16px;
    left: 24px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-footer {
    border-top: 1px solid rgba(74, 35, 90, 0.08);
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--plum-deep);
}

.author-detail {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    padding: 120px 0;
    background: var(--plum-deep);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 70% 60% at 30% 50%, rgba(139, 95, 176, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(200, 150, 62, 0.15) 0%, transparent 50%);
}

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

.cta-content .section-eyebrow {
    color: var(--amber-pale);
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    color: var(--text-on-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-on-dark-muted);
    margin-bottom: 44px;
}

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

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background: var(--neutral-darkest);
}

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

.contact-info-col {
    max-width: 500px;
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-on-dark-muted);
    margin-bottom: 48px;
}

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

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

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(74, 35, 90, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--amber-light);
}

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

.contact-label {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
}

.contact-value {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-on-dark);
    line-height: 1.6;
}

.contact-link {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-on-dark);
    transition: color var(--transition-fast);
}

.contact-link:hover,
.contact-link:focus-visible {
    color: var(--amber-light);
}

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

/* ---------- Contact Form ---------- */
.contact-form-col {
    width: 100%;
}

.contact-form-wrapper {
    background: var(--neutral-dark);
    border: 1px solid rgba(74, 35, 90, 0.2);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-on-dark);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9375rem;
    color: var(--text-on-dark-muted);
    margin-bottom: 36px;
}

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

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

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
    margin-bottom: 8px;
}

.required {
    color: var(--amber);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-on-dark);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 35, 90, 0.3);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all var(--transition-fast);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
}

.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 24 24' fill='none' stroke='%23D4A84B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--neutral-dark);
    color: var(--text-on-dark);
}

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

.btn-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loading {
    display: none;
}

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

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(200, 150, 62, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 32px;
    height: 32px;
    color: var(--amber-light);
}

.success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-on-dark);
    margin-bottom: 12px;
}

.success-text {
    font-size: 0.9375rem;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--neutral-darkest);
    border-top: 1px solid rgba(74, 35, 90, 0.15);
    padding: 80px 0 0;
}

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

.logo--footer .logo-mark {
    border-color: var(--amber);
    color: var(--amber-light);
}

.logo--footer .logo-line-one {
    color: var(--text-on-dark-muted);
}

.logo--footer .logo-line-two {
    color: var(--text-on-dark);
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-on-dark-muted);
    margin-top: 20px;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 24px;
}

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

.footer-nav a {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
    transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
    color: var(--text-on-dark);
}

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

.footer-contact p {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
    line-height: 1.6;
}

.footer-link {
    color: var(--text-on-dark-muted);
    transition: color var(--transition-fast);
}

.footer-link:hover,
.footer-link:focus-visible {
    color: var(--amber-light);
}

.footer-bottom {
    border-top: 1px solid rgba(74, 35, 90, 0.15);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: var(--text-on-dark-muted);
}

.footer-location {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: var(--text-on-dark-muted);
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition-base);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.back-to-top-btn {
    width: 48px;
    height: 48px;
    background: var(--plum-deep);
    color: var(--text-on-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-fast);
}

.back-to-top-btn:hover,
.back-to-top-btn:focus-visible {
    background: var(--plum-mid);
    transform: translateY(-2px);
}

.back-to-top-btn svg {
    width: 20px;
    height: 20px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    
    .about-grid {
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        inset: 0;
        background: rgba(253, 252, 250, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .main-nav.open {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: 14px 24px;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
    }
    
    .hero {
        padding: 120px 24px 80px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-divider {
        width: 48px;
        height: 1px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image-accent {
        right: -16px;
        bottom: -24px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item--large img {
        min-height: 300px;
    }
    
    .gallery-item--wide {
        grid-column: span 2;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large,
    .gallery-item--wide {
        grid-column: span 1;
    }
    
    .gallery-item:not(.gallery-item--large) img {
        height: 200px;
    }
    
    .gallery-item--wide img {
        height: 200px;
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero-scroll svg {
        animation: none;
    }
    
    .loader-letter {
        animation: none;
        opacity: 1;
    }
    
    .gallery-caption {
        opacity: 1;
        transform: none;
    }
}
