/* ============================================
   KARIN KILDOW — Professional Services
   Classic & Elegant Design System
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Forest Green Palette */
    --forest-950: #0a1f16;
    --forest-900: #0f2d1e;
    --forest-800: #1B4332;
    --forest-700: #2d6a4f;
    --forest-600: #40916c;
    --forest-500: #52b788;
    --forest-400: #74c69d;
    --forest-300: #95d5b2;
    --forest-200: #b7e4c7;
    --forest-100: #d8f3dc;
    --forest-50: #f0faf1;

    /* Off-White Palette */
    --cream-50: #faf9f6;
    --cream-100: #f5f3ee;
    --cream-200: #ede9e0;
    --cream-300: #e2ddd3;
    --cream-400: #d4cfc4;

    /* Gold Accent */
    --gold-500: #D4A843;
    --gold-400: #e0bc5e;
    --gold-300: #ebd080;
    --gold-600: #b8922e;

    /* Neutrals */
    --neutral-900: #1a1a1a;
    --neutral-800: #2d2d2d;
    --neutral-700: #404040;
    --neutral-600: #555555;
    --neutral-500: #6b6b6b;
    --neutral-400: #8a8a8a;
    --neutral-300: #b0b0b0;
    --neutral-200: #d1d1d1;
    --neutral-100: #ebebeb;
    --neutral-50: #f7f7f7;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --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;

    /* Borders & Shadows */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;

    --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.06), 0 1px 2px rgba(27, 67, 50, 0.04);
    --shadow-md: 0 4px 12px rgba(27, 67, 50, 0.08), 0 2px 4px rgba(27, 67, 50, 0.04);
    --shadow-lg: 0 12px 40px rgba(27, 67, 50, 0.12), 0 4px 12px rgba(27, 67, 50, 0.06);
    --shadow-xl: 0 24px 60px rgba(27, 67, 50, 0.15), 0 8px 20px rgba(27, 67, 50, 0.08);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--neutral-800);
    background-color: var(--cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

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

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

input, select, textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
}

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

/* ---------- Section Tags ---------- */
.section-tag {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: var(--space-lg);
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 1.5px;
    background: var(--gold-500);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--forest-800);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.section-title--light {
    color: var(--cream-100);
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--neutral-600);
    max-width: 560px;
}

.section-subtitle--light {
    color: var(--cream-300);
}

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

.section-header--centered {
    text-align: center;
}

.section-header--centered .section-subtitle {
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--forest-800);
    color: var(--cream-50);
    border: 1.5px solid var(--forest-800);
}

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

.btn--ghost {
    background: transparent;
    color: var(--cream-200);
    border: 1.5px solid rgba(250, 249, 246, 0.35);
}

.btn--ghost:hover {
    background: rgba(250, 249, 246, 0.08);
    border-color: rgba(250, 249, 246, 0.6);
}

.btn--gold {
    background: var(--gold-500);
    color: var(--forest-950);
    border: 1.5px solid var(--gold-500);
}

.btn--gold:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold-500);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gold-500);
    border-radius: var(--radius-sm);
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--forest-800);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--neutral-600);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-500);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--forest-800);
}

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

.nav-link--cta {
    background: var(--forest-800);
    color: var(--cream-50) !important;
    padding: 0.55rem 1.25rem;
    border-radius: var(--radius-sm);
    text-transform: none;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
}

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

.nav-link--cta:hover {
    background: var(--forest-700);
    color: var(--cream-50) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.nav-toggle-line {
    width: 22px;
    height: 1.5px;
    background: var(--forest-800);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 31, 22, 0.97);
    z-index: 999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.nav-overlay.active {
    display: flex;
    opacity: 1;
}

.nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xl);
}

.nav-overlay-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--cream-200);
    transition: color var(--transition-fast);
}

.nav-overlay-link:hover {
    color: var(--gold-500);
}

.nav-overlay-link--cta {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-top: var(--space-lg);
    padding: 0.75rem 2rem;
    border: 1px solid var(--gold-500);
    border-radius: var(--radius-sm);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--forest-800);
    position: relative;
    overflow: hidden;
    padding: calc(80px + var(--space-3xl)) var(--space-xl) var(--space-3xl);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45, 106, 79, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--space-3xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Main Hero Card */
.hero-card {
    background: rgba(250, 249, 246, 0.06);
    border: 1px solid rgba(250, 249, 246, 0.1);
    border-radius: var(--radius-xl);
    padding: clamp(2rem, 4vw, 3.5rem);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.hero-card--main {
    background: rgba(250, 249, 246, 0.97);
    border: none;
    box-shadow: var(--shadow-xl);
}

.hero-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-500), var(--forest-400), var(--gold-500));
}

.hero-greeting {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold-600);
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--forest-900);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.01em;
}

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

.hero-subheadline {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: var(--space-2xl);
    max-width: 520px;
}

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

/* Floating Stat Cards */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
}

.stat-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: rgba(250, 249, 246, 0.08);
    border: 1px solid rgba(250, 249, 246, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(250, 249, 246, 0.12);
    transform: translateY(-2px);
}

.stat-card--1 {
    animation: floatCard1 6s ease-in-out infinite;
}

.stat-card--2 {
    animation: floatCard2 7s ease-in-out infinite;
    animation-delay: -2s;
}

.stat-card--3 {
    animation: floatCard3 6.5s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.stat-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 168, 67, 0.4);
    border-radius: var(--radius-sm);
    color: var(--gold-400);
}

.stat-card-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-card-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream-200);
}

.stat-card-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--cream-300);
}

/* Hero Image */
.hero-image {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 560px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    z-index: 0;
    opacity: 0.18;
}

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

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--forest-800), transparent 40%, transparent 60%, var(--forest-800));
}

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

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

.service-card {
    background: var(--cream-100);
    border: 1px solid var(--cream-300);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--gold-500), var(--forest-500));
    transition: height var(--transition-base);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--forest-200);
}

.service-card:hover::before {
    height: 100%;
}

.service-card-number {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--gold-600);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.service-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--forest-200);
    border-radius: var(--radius-md);
    color: var(--forest-700);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
    background: var(--forest-800);
    border-color: var(--forest-800);
    color: var(--cream-50);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--forest-800);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

.service-card-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: var(--space-lg);
}

.service-card-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--forest-700);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: gap var(--transition-base);
}

.service-card-link:hover {
    gap: var(--space-md);
    color: var(--forest-800);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--space-4xl) 0;
    background: var(--forest-800);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.about-layout {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.about-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

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

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold-500);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    z-index: -1;
}

.about-content {
    padding: var(--space-xl) 0;
}

.about-text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--cream-300);
    margin-bottom: var(--space-lg);
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md) 0;
    margin-top: var(--space-2xl);
}

.about-value {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.about-value-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-500);
}

.about-value span {
    font-size: 0.88rem;
    color: var(--cream-200);
    line-height: 1.4;
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach {
    padding: var(--space-4xl) 0;
    background: var(--cream-100);
}

.approach-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
    padding: var(--space-xl);
}

.approach-step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--forest-200);
    line-height: 1;
    margin-bottom: var(--space-md);
}

.approach-step-number span {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-600);
    display: block;
    margin-top: var(--space-sm);
}

.approach-step-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--forest-800);
    margin-bottom: var(--space-md);
}

.approach-step-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--neutral-600);
}

.approach-step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) var(--space-md);
    color: var(--forest-300);
    flex-shrink: 0;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial {
    padding: var(--space-4xl) 0;
    background: var(--cream-50);
}

.testimonial-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-quote-mark {
    color: var(--forest-800);
    margin-bottom: var(--space-lg);
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.65;
    color: var(--neutral-800);
    margin-bottom: var(--space-2xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.testimonial-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--cream-300);
}

.testimonial-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--forest-800);
}

.testimonial-author-location {
    font-size: 0.82rem;
    color: var(--neutral-500);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--forest-800);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cream-300);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

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

.contact-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: var(--radius-sm);
    color: var(--gold-400);
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream-400);
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--cream-100);
}

.contact-detail-value a {
    color: var(--cream-100);
    transition: color var(--transition-fast);
}

.contact-detail-value a:hover {
    color: var(--gold-400);
}

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

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

.contact-form-card {
    background: rgba(250, 249, 246, 0.06);
    border: 1px solid rgba(250, 249, 246, 0.1);
    border-radius: var(--radius-xl);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--cream-100);
    margin-bottom: var(--space-sm);
}

.contact-form-subtitle {
    font-size: 0.88rem;
    color: var(--cream-400);
    margin-bottom: var(--space-2xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream-400);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(250, 249, 246, 0.06);
    border: 1px solid rgba(250, 249, 246, 0.15);
    border-radius: var(--radius-sm);
    color: var(--cream-100);
    font-size: 0.92rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--neutral-500);
}

.form-input:focus {
    border-color: var(--gold-500);
    background: rgba(250, 249, 246, 0.08);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.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='%23D4A843' 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;
    cursor: pointer;
}

.form-select option {
    background: var(--forest-800);
    color: var(--cream-100);
}

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

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.form-success.active {
    display: flex;
}

.form-success-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--forest-400);
    border-radius: 50%;
    color: var(--forest-400);
    margin-bottom: var(--space-lg);
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--cream-100);
    margin-bottom: var(--space-sm);
}

.form-success-text {
    font-size: 0.9rem;
    color: var(--cream-300);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--forest-950);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

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

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

.footer-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold-500);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gold-500);
    border-radius: var(--radius-sm);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--cream-200);
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--neutral-500);
}

.footer-nav {
    display: flex;
    gap: var(--space-2xl);
}

.footer-nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neutral-400);
    transition: color var(--transition-fast);
}

.footer-nav-link:hover {
    color: var(--gold-500);
}

.footer-divider {
    height: 1px;
    background: rgba(250, 249, 246, 0.08);
    margin-bottom: var(--space-lg);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--neutral-500);
}

.footer-address {
    font-size: 0.8rem;
    color: var(--neutral-600);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding-top: 0;
    }

    .hero-image {
        display: none;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-image-wrapper {
        max-width: 420px;
    }

    .about-image-frame img {
        height: 480px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: calc(70px + var(--space-2xl)) var(--space-md) var(--space-3xl);
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .about-values {
        grid-template-columns: 1fr;
    }

    .approach-steps {
        flex-direction: column;
        align-items: center;
    }

    .approach-step-connector {
        transform: rotate(90deg);
        padding: var(--space-sm) 0;
    }

    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-card {
        padding: var(--space-xl);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .contact-form-card {
        padding: var(--space-lg);
    }
}
