/* ============================================
   SELAH BEAUTY CORPORATION — DESIGN SYSTEM
   Bold Editorial | Forest Green + Off-White
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-green-900: #0d1f17;
    --color-green-800: #1a3c2a;
    --color-green-700: #234d36;
    --color-green-600: #2d6a4f;
    --color-green-500: #40916c;
    --color-green-400: #52b788;
    --color-green-300: #74c69d;
    
    --color-cream: #f5f2eb;
    --color-cream-light: #faf8f4;
    --color-cream-dark: #e8e2d6;
    --color-warm-gray: #9e9688;
    --color-text: #1a1a18;
    --color-text-muted: #5c5850;
    --color-white: #ffffff;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.15);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream-light);
    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;
}

ul, ol {
    list-style: none;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-3xl);
    }
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-green-800);
    color: var(--color-cream);
    border: 2px solid var(--color-green-800);
}

.btn--primary:hover {
    background: var(--color-green-700);
    border-color: var(--color-green-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--color-green-800);
    border: 2px solid var(--color-green-800);
}

.btn--ghost:hover {
    background: var(--color-green-800);
    color: var(--color-cream);
    transform: translateY(-2px);
}

.btn--large {
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
}

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

/* --- Section Header --- */
.section-header {
    margin-bottom: var(--space-4xl);
}

.section-header__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-green-600);
    margin-bottom: var(--space-md);
}

.section-header__title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--color-green-900);
    line-height: 1.1;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(245, 242, 235, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 60, 42, 0.08);
    transition: all var(--transition-base);
}

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

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.nav__logo-mark {
    width: 40px;
    height: 40px;
    background: var(--color-green-800);
    color: var(--color-cream);
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-green-900);
    line-height: 1.2;
}

.nav__menu {
    display: none;
    align-items: center;
    gap: var(--space-2xl);
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-green-600);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--color-green-800);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--color-green-800);
    color: var(--color-cream) !important;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--color-green-700);
}

/* Mobile Toggle */
.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav__toggle-line {
    width: 100%;
    height: 2px;
    background: var(--color-green-800);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .nav__menu {
        display: flex;
    }
    
    .nav__toggle {
        display: none;
    }
}

/* Mobile Menu */
@media (max-width: 1023px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-2xl);
        transform: translateX(100%);
        transition: transform var(--transition-slow);
        z-index: 999;
    }
    
    .nav__menu.active {
        transform: translateX(0);
    }
    
    .nav__link {
        font-size: 1.25rem;
        color: var(--color-green-900);
    }
    
    .nav__link--cta {
        font-size: 1.125rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    position: relative;
    z-index: 2;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(45, 106, 79, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(45, 106, 79, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    max-width: 600px;
}

.hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-green-600);
    margin-bottom: var(--space-lg);
}

.hero__headline {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--color-green-900);
    line-height: 1.05;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.03em;
}

.hero__headline--accent {
    color: var(--color-green-600);
    font-style: italic;
    font-weight: 600;
}

.hero__subheadline {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* Floating Stat Cards */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 380px;
}

.stat-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 60, 42, 0.06);
    animation: floatIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }
.stat-card:nth-child(4) { animation-delay: 0.8s; }

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card__number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-green-800);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-card__label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.stat-card--2 { transform: translateY(20px); }
.stat-card--2.animate { animation-delay: 0.4s; }
.stat-card--4 { transform: translateY(15px); }

.hero__image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    max-height: 700px;
}

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

.hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(13, 31, 23, 0.3) 100%
    );
    pointer-events: none;
}

@media (min-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr 420px;
        align-items: center;
        gap: var(--space-4xl);
    }
    
    .hero__stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    padding: var(--space-5xl) 0;
    background: var(--color-cream-light);
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid rgba(26, 60, 42, 0.06);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-card--featured {
    background: var(--color-green-900);
    border-color: transparent;
}

.service-card--featured::before {
    background: var(--color-green-400);
}

.service-card--featured .service-card__title,
.service-card--featured .service-card__description,
.service-card--featured .service-card__list li {
    color: var(--color-cream);
}

.service-card--featured .service-card__title {
    color: var(--color-white);
}

.service-card__badge {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    background: var(--color-green-500);
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(45, 106, 79, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green-700);
    margin-bottom: var(--space-lg);
}

.service-card--featured .service-card__icon {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-green-300);
}

.service-card__title {
    font-size: 1.5rem;
    color: var(--color-green-900);
    margin-bottom: var(--space-md);
}

.service-card__description {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.service-card__list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.service-card__list li {
    font-size: 0.875rem;
    color: var(--color-text);
    padding-left: var(--space-lg);
    position: relative;
}

.service-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--color-green-500);
    border-radius: 50%;
}

.service-card--featured .service-card__list li {
    color: rgba(245, 242, 235, 0.8);
}

.service-card--featured .service-card__list li::before {
    background: var(--color-green-400);
}

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

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--space-5xl) 0;
    background: var(--color-cream);
}

.about__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about__image-group {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 5/6;
    box-shadow: var(--shadow-lg);
}

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

.about__image-accent {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-cream);
}

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

.about__experience-badge {
    position: absolute;
    top: -20px;
    right: -10px;
    background: var(--color-green-800);
    color: var(--color-cream);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__experience-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--color-green-300);
}

.about__experience-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-cream-dark);
    margin-top: var(--space-xs);
}

.about__content {
    max-width: 520px;
}

.about__body {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.9375rem;
    color: var(--color-text);
    font-weight: 500;
}

.value-item__mark {
    width: 24px;
    height: 24px;
    background: var(--color-green-100, rgba(45, 106, 79, 0.1));
    color: var(--color-green-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .about__layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
    }
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: var(--space-5xl) 0;
    background: var(--color-green-900);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 10% 90%, rgba(82, 183, 136, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(82, 183, 136, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.why-us__inner {
    position: relative;
    z-index: 2;
}

.why-us__content {
    margin-bottom: var(--space-4xl);
}

.why-us__content .section-header__eyebrow {
    color: var(--color-green-400);
}

.why-us__content .section-header__title {
    color: var(--color-cream);
}

.why-us__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
}

.why-card__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(82, 183, 136, 0.25);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.why-card__title {
    font-size: 1.375rem;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
    line-height: 1.25;
}

.why-card__text {
    font-size: 0.9375rem;
    color: rgba(245, 242, 235, 0.65);
    line-height: 1.7;
}

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

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--space-5xl) 0;
    background: var(--color-cream-light);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid rgba(26, 60, 42, 0.06);
    transition: all var(--transition-base);
}

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

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    color: var(--color-green-500);
    margin-bottom: var(--space-lg);
}

.testimonial-card__quote {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.testimonial-card__author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-green-800);
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: var(--space-5xl) 0;
    background: var(--color-green-800);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-green-400);
    margin-bottom: var(--space-lg);
}

.cta__headline {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    color: var(--color-cream);
    margin-bottom: var(--space-xl);
    line-height: 1.1;
}

.cta__body {
    font-size: 1.0625rem;
    color: rgba(245, 242, 235, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.cta__actions .btn--ghost {
    border-color: var(--color-cream);
    color: var(--color-cream);
}

.cta__actions .btn--ghost:hover {
    background: var(--color-cream);
    color: var(--color-green-800);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--space-5xl) 0;
    background: var(--color-cream);
}

.contact__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
}

.contact__body {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: var(--space-2xl);
    max-width: 440px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
}

.contact-detail__icon {
    width: 44px;
    height: 44px;
    background: rgba(45, 106, 79, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-green-700);
    flex-shrink: 0;
}

.contact-detail__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-warm-gray);
    margin-bottom: var(--space-xs);
}

.contact-detail__value {
    font-size: 0.9375rem;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.6;
}

.contact-detail__value a {
    color: var(--color-green-700);
    transition: color var(--transition-fast);
}

.contact-detail__value a:hover {
    color: var(--color-green-500);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 60, 42, 0.06);
}

.contact-form__title {
    font-size: 1.5rem;
    color: var(--color-green-900);
    margin-bottom: var(--space-2xl);
}

.contact-form__group {
    margin-bottom: var(--space-lg);
}

.contact-form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.contact-form__input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-text);
    background: var(--color-cream-light);
    border: 1.5px solid var(--color-cream-dark);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.contact-form__input:focus {
    border-color: var(--color-green-500);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.contact-form__input::placeholder {
    color: var(--color-warm-gray);
}

.contact-form__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='%239e9688' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-md);
}

.contact-form__success.show {
    display: flex;
}

.contact-form__success svg {
    color: var(--color-green-500);
}

.contact-form__success p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .contact__layout {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
        align-items: start;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--color-green-900);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer__logo-mark {
    width: 36px;
    height: 36px;
    background: var(--color-green-600);
    color: var(--color-cream);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-cream);
    line-height: 1.2;
}

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(245, 242, 235, 0.55);
    line-height: 1.7;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

.footer__link-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__link-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-green-400);
    margin-bottom: var(--space-sm);
}

.footer__link-group a {
    font-size: 0.875rem;
    color: rgba(245, 242, 235, 0.6);
    transition: color var(--transition-fast);
}

.footer__link-group a:hover {
    color: var(--color-cream);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding-top: var(--space-xl);
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 242, 235, 0.4);
    text-align: center;
}

.footer__bottom a {
    color: rgba(245, 242, 235, 0.5);
    transition: color var(--transition-fast);
}

.footer__bottom a:hover {
    color: var(--color-cream);
}

@media (min-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
    
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    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; }
