/* ============================================
   Path of Life Counseling — Stylesheet
   Classic & Elegant | Plum + Amber Palette
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Plum Palette */
    --plum-50:  #f9f0f4;
    --plum-100: #f3dce6;
    --plum-200: #e8b8c8;
    --plum-300: #d48aad;
    --plum-400: #c06b8e;
    --plum-500: #a34d72;
    --plum-600: #8a3a5c;
    --plum-700: #722d4b;
    --plum-800: #5c253d;
    --plum-900: #4a1e31;
    --plum-950: #2a0f1a;

    /* Amber Palette */
    --amber-50:  #fdf6e8;
    --amber-100: #faebc4;
    --amber-200: #f5d490;
    --amber-300: #edb855;
    --amber-400: #e5a030;
    --amber-500: #d4881a;
    --amber-600: #b86e12;
    --amber-700: #945210;
    --amber-800: #763f10;
    --amber-900: #5e3210;
    --amber-950: #351a07;

    /* Neutrals */
    --neutral-50:  #faf8f6;
    --neutral-100: #f5f0eb;
    --neutral-200: #ebe4db;
    --neutral-300: #d4c9bc;
    --neutral-400: #b0a08e;
    --neutral-500: #8a7866;
    --neutral-600: #6b5a4a;
    --neutral-700: #524336;
    --neutral-800: #3d3229;
    --neutral-900: #2a2119;
    --neutral-950: #16100b;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lora', 'Palatino Linotype', Palatino, Georgia, serif;
    --font-ui: '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;

    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

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

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

a {
    color: var(--plum-700);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--plum-500);
}

ul {
    list-style: none;
}

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--plum-950);
}

.section-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: var(--space-lg);
    color: var(--plum-950);
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--plum-700);
    color: #fff;
    border: 2px solid var(--plum-700);
}

.btn-primary:hover {
    background-color: var(--plum-800);
    border-color: var(--plum-800);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 45, 75, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--plum-700);
    border: 2px solid var(--plum-300);
}

.btn-secondary:hover {
    background-color: var(--plum-50);
    border-color: var(--plum-500);
    color: var(--plum-700);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--plum-700);
    border: 2px solid var(--plum-300);
}

.btn-outline:hover {
    background-color: var(--plum-50);
    border-color: var(--plum-500);
    color: var(--plum-700);
    transform: translateY(-2px);
}

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

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

/* --- Site Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 248, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(74, 30, 49, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

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

.logo-icon {
    color: var(--plum-700);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: inherit;
}

.logo-light .logo-text {
    color: #fff;
}

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

.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
    text-decoration: none;
    position: relative;
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--plum-600), var(--amber-500));
    border-radius: 2px;
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--plum-700);
}

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

.nav-cta {
    background-color: var(--plum-700);
    color: #fff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius-xl);
    font-weight: 500;
}

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

.nav-cta:hover {
    background-color: var(--plum-800);
    color: #fff !important;
    transform: translateY(-1px);
}

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

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background-color: var(--plum-800);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--plum-50) 50%, var(--amber-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(196, 106, 142, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--neutral-50), transparent);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding-bottom: var(--space-4xl);
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--amber-500), var(--amber-300));
    border-radius: 2px;
}

.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--plum-950);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

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

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

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

.hero-credentials {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--neutral-200);
}

.credential {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.credential-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-700);
    line-height: 1;
}

.credential-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--neutral-500);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.credential-divider {
    width: 1px;
    height: 48px;
    background-color: var(--neutral-300);
    flex-shrink: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 700px;
}

.hero-image-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 85%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(74, 30, 49, 0.15);
}

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

.hero-image-accent {
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 50%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(74, 30, 49, 0.12);
    border: 4px solid var(--neutral-50);
}

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

/* Decorative elements */
.hero-decor {
    position: absolute;
    pointer-events: none;
}

.hero-decor-1 {
    top: 15%;
    left: -40px;
    width: 80px;
    height: 80px;
    border: 2px solid var(--plum-200);
    border-radius: 50%;
    opacity: 0.5;
}

.hero-decor-2 {
    bottom: 20%;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--amber-200);
    border-radius: 50%;
    opacity: 0.4;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-400);
    z-index: 2;
    animation: float 2.5s ease-in-out infinite;
}

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

/* --- Services Section --- */
.services {
    padding: var(--space-4xl) 0;
    background-color: var(--neutral-50);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

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

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

.service-card {
    background-color: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-500), var(--amber-500));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(74, 30, 49, 0.1);
    border-color: var(--plum-200);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plum-50), var(--amber-50));
    border-radius: var(--radius-md);
    color: var(--plum-700);
    margin-bottom: var(--space-lg);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: var(--space-md);
    color: var(--plum-950);
}

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

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

.service-list li {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--neutral-700);
    padding-left: var(--space-lg);
    position: relative;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--plum-500), var(--amber-500));
    border-radius: 50%;
}

/* --- About Section --- */
.about {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--plum-50) 0%, var(--neutral-50) 100%);
}

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

.about-image-col {
    position: relative;
    height: 620px;
}

.about-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(74, 30, 49, 0.12);
}

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

.about-image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(74, 30, 49, 0.1);
    border: 4px solid var(--neutral-50);
}

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

.about-experience-badge {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--plum-700), var(--plum-900));
    color: #fff;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 15px 40px rgba(74, 30, 49, 0.25);
    z-index: 2;
}

.about-experience-badge .experience-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--amber-300);
    margin-bottom: var(--space-xs);
}

.about-experience-badge .experience-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

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

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

.about-text em {
    color: var(--plum-700);
    font-style: italic;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

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

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

.value-item h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: var(--space-xs);
    color: var(--plum-900);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

/* --- Approach Section --- */
.approach {
    padding: var(--space-4xl) 0;
    background-color: var(--neutral-50);
}

.approach-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

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

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
}

.approach-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--plum-200), var(--amber-300), var(--plum-200));
    z-index: 0;
}

.approach-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid var(--plum-200);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum-700);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.approach-step:hover .step-number {
    background: linear-gradient(135deg, var(--plum-700), var(--plum-900));
    border-color: var(--plum-700);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(74, 30, 49, 0.2);
}

.step-title {
    font-size: 1.15rem;
    margin-bottom: var(--space-md);
    color: var(--plum-950);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.7;
    max-width: 240px;
    margin: 0 auto;
}

/* --- Testimonials Section --- */
.testimonials {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-950) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.03'%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;
}

.testimonials .section-header {
    position: relative;
    z-index: 1;
}

.testimonials .section-eyebrow {
    color: var(--amber-400);
}

.testimonials .section-title {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    backdrop-filter: blur(8px);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--amber-400);
    opacity: 0.5;
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--amber-300);
    letter-spacing: 0.05em;
}

/* --- CTA Section --- */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--amber-50) 0%, var(--plum-50) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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='%237B3F6E' fill-opacity='0.04' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.cta-eyebrow {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: var(--space-md);
}

.cta-headline {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--space-lg);
    color: var(--plum-950);
}

.cta-body {
    font-size: 1.05rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

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

/* --- Contact Section --- */
.contact {
    padding: var(--space-4xl) 0;
    background-color: var(--neutral-50);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info-col {
    padding-right: var(--space-xl);
}

.contact-intro {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

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

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--plum-50), var(--amber-50));
    border-radius: var(--radius-sm);
    color: var(--plum-700);
    flex-shrink: 0;
}

.contact-detail h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--plum-900);
}

.contact-detail p {
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

.contact-detail a {
    color: var(--plum-700);
}

.contact-detail a:hover {
    color: var(--plum-500);
    text-decoration: underline;
}

.contact-map {
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(74, 30, 49, 0.08);
    border-radius: var(--radius-md);
}

/* Contact Form */
.contact-form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--neutral-200);
    box-shadow: 0 10px 40px rgba(74, 30, 49, 0.06);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--plum-950);
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--neutral-500);
    margin-bottom: var(--space-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

.form-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--neutral-700);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-400);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(163, 77, 114, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-400);
}

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

.form-success {
    text-align: center;
    padding: var(--space-2xl);
}

.form-success svg {
    color: var(--plum-600);
    margin: 0 auto var(--space-md);
}

.form-success h4 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--plum-900);
}

.form-success p {
    font-size: 0.9rem;
    color: var(--neutral-600);
}

/* --- Footer --- */
.site-footer {
    background: linear-gradient(135deg, var(--plum-950) 0%, var(--neutral-950) 100%);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-4xl) 0 var(--space-xl);
}

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

.footer-brand .logo-text {
    color: #fff;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: var(--space-md) 0 var(--space-lg);
    color: rgba(255,255,255,0.6);
}

.footer-address {
    font-size: 0.85rem;
    line-height: 1.8;
}

.footer-address a {
    color: rgba(255,255,255,0.6);
}

.footer-address a:hover {
    color: var(--amber-400);
}

.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--amber-300);
}

.footer-hours p {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}

.footer-bottom {
    padding-top: var(--space-xl);
}

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

.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-credit {
    font-size: 0.75rem !important;
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.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) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-image {
        height: 450px;
        order: -1;
    }

    .hero-image-frame {
        width: 100%;
        height: 100%;
    }

    .hero-image-accent {
        display: none;
    }

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

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-sub {
        margin: 0 auto var(--space-2xl);
    }

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

    .hero-credentials {
        justify-content: center;
    }

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

    .about-image-col {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content-col {
        padding-left: 0;
    }

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

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

    .approach-steps::before {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .contact-info-col {
        padding-right: 0;
    }

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

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background-color: rgba(250, 248, 246, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: var(--space-xl);
        gap: var(--space-md);
        border-bottom: 1px solid var(--neutral-200);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        box-shadow: 0 10px 30px rgba(74, 30, 49, 0.1);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1rem;
        padding: var(--space-sm) 0;
    }

    .nav-cta {
        margin-top: var(--space-sm);
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--space-2xl));
        padding-bottom: var(--space-2xl);
    }

    .hero-image {
        height: 320px;
    }

    .hero-credentials {
        flex-direction: column;
        gap: var(--space-md);
        align-items: center;
    }

    .credential-divider {
        width: 48px;
        height: 1px;
    }

    .approach-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }

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

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

    .about-image-col {
        height: 300px;
    }

    .about-experience-badge {
        padding: var(--space-md);
    }

    .about-experience-badge .experience-number {
        font-size: 2rem;
    }

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

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

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

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-scroll-indicator {
        animation: none;
    }
}
