/* ==========================================================================
   VAROLUŞ - Editorial Minimal Psychiatry Website
   Art Direction: Clean, Sophisticated, Human
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables - The Soul of Design
   -------------------------------------------------------------------------- */
:root {
    /* Colors - Muted, Sophisticated Palette */
    --color-bg: #FAFAF8;
    --color-bg-alt: #F5F4F0;
    --color-bg-dark: #1A1A18;
    --color-text: #1A1A18;
    --color-text-muted: #6B6B65;
    --color-text-light: #9A9A94;
    --color-accent: #8B7355;
    --color-accent-light: #C4B5A0;
    --color-border: #E5E4E0;
    --color-white: #FFFFFF;

    /* Typography - Editorial Hierarchy */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-xxl: 12rem;

    /* BUTTER SMOOTH - Therapeutic Easing Curves */
    --ease-butter: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-therapeutic: cubic-bezier(0.33, 0.01, 0.23, 1);
    --ease-float: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-silk: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-exhale: cubic-bezier(0.16, 1, 0.3, 1);

    /* Transitions - Slower for therapeutic calm */
    --transition-instant: 0.15s var(--ease-butter);
    --transition-fast: 0.35s var(--ease-butter);
    --transition-base: 0.6s var(--ease-therapeutic);
    --transition-slow: 1s var(--ease-silk);
    --transition-slower: 1.6s var(--ease-exhale);
    --transition-glacial: 2.4s var(--ease-exhale);

    /* Layout */
    --container-max: 1400px;
    --container-narrow: 900px;

    /* Border Radius - Consistent Scale */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

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

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

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

::selection {
    background-color: var(--color-accent);
    color: var(--color-white);
}

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

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

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

/* --------------------------------------------------------------------------
   Custom Cursor
   -------------------------------------------------------------------------- */
.cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-accent);
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.3s ease, height 0.3s ease;
}

body:hover .cursor,
body:hover .cursor-follower {
    opacity: 1;
}

.cursor-follower.hovering {
    width: 60px;
    height: 60px;
    border-color: var(--color-accent-light);
}

@media (max-width: 768px) {
    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Typography - EDITORIAL HIERARCHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.95;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
}

p {
    max-width: 65ch;
    line-height: 1.8;
}

.text-muted {
    color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

@media (min-width: 768px) {
    .section {
        padding: var(--space-xxl) 0;
    }
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background-color: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    box-shadow: 0 1px 0 var(--color-border);
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.nav-links {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    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: 1px;
    background-color: var(--color-text);
    transition: width var(--transition-base);
}

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

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

.nav-link-cta {
    color: var(--color-accent);
    font-weight: 500;
}

.nav-link-cta:hover {
    color: var(--color-accent);
}

.nav-link-cta::after {
    background-color: var(--color-accent);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--color-text);
    transition: all var(--transition-fast);
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-text);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-link:nth-child(4) { transition-delay: 0.25s; }

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: var(--space-xxl) var(--space-md);
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(139, 115, 85, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5%, 5%) rotate(5deg); }
}

.hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.hero-overline {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeInUp 1s var(--transition-slower) forwards;
    animation-delay: 0.2s;
}

.hero-overline .line {
    width: 40px;
    height: 1px;
    background-color: var(--color-accent);
}

.hero-overline .text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero-title {
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: slideUp 1s var(--transition-slower) forwards;
}

.title-line:nth-child(1) .word { animation-delay: 0.4s; }
.title-line:nth-child(2) .word { animation-delay: 0.5s; }
.title-line:nth-child(3) .word { animation-delay: 0.6s; }

.title-line-italic {
    font-style: italic;
    color: var(--color-accent);
}

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

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

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-text-muted);
    max-width: 500px;
    margin-bottom: var(--space-lg);
    opacity: 0;
    animation: fadeInUp 1s var(--transition-slower) forwards;
    animation-delay: 0.8s;
}

.hero-subtitle em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-text);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    opacity: 0;
    animation: fadeInUp 1s var(--transition-slower) forwards;
    animation-delay: 1s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.btn-primary {
    background-color: var(--color-text);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px);
}

.btn-primary svg {
    transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
    transform: translate(4px, -4px);
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-ghost:hover {
    border-color: var(--color-text);
}

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

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    opacity: 0;
    animation: fadeInUp 1s var(--transition-slower) forwards;
    animation-delay: 1.2s;
}

.hero-scroll span {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    writing-mode: vertical-rl;
}

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

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

/* Hero Footer Stats */
.hero-footer {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-md);
    display: none;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .hero-footer {
        display: flex;
    }
}

.hero-stat {
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 1s var(--transition-slower) forwards;
}

.hero-stat:nth-child(1) { animation-delay: 1.3s; }
.hero-stat:nth-child(2) { animation-delay: 1.4s; }
.hero-stat:nth-child(3) { animation-delay: 1.5s; }

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
    margin-bottom: var(--space-lg);
}

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

.section-number {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-subtitle {
    margin-top: var(--space-sm);
    color: var(--color-text-muted);
    max-width: 500px;
}

.section-header-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   Philosophy Section
   -------------------------------------------------------------------------- */
.section-philosophy {
    background-color: var(--color-bg-alt);
}

.philosophy-content {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .philosophy-content {
        grid-template-columns: 1.2fr 1fr;
        align-items: start;
    }
}

.philosophy-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
    border-left: 2px solid var(--color-accent);
}

.philosophy-quote em {
    color: var(--color-accent);
}

.philosophy-text {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.philosophy-principles {
    display: grid;
    gap: var(--space-md);
}

.principle {
    padding: var(--space-md);
    background-color: var(--color-white);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.principle:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.principle-icon {
    width: 52px;
    height: 52px;
    margin-bottom: var(--space-md);
    padding: 12px;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.08) 0%, rgba(139, 115, 85, 0.03) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
    stroke-width: 1.5;
}

.principle h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: var(--space-xs);
}

.principle p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Expertise Section
   -------------------------------------------------------------------------- */
.expertise-grid {
    display: grid;
    gap: 1px;
    background-color: var(--color-border);
}

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

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

.expertise-card {
    background-color: var(--color-bg);
    padding: var(--space-lg);
    position: relative;
    transition: background-color var(--transition-base);
}

.expertise-card:hover {
    background-color: var(--color-bg-alt);
}

.card-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-border);
    line-height: 1;
    margin-bottom: var(--space-sm);
    transition: color var(--transition-base);
}

.expertise-card:hover .card-number {
    color: var(--color-accent-light);
}

/* Card Icon - Premium Editorial styling */
.card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-md);
    padding: 16px;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.1) 0%, rgba(139, 115, 85, 0.04) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.card-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
    stroke-width: 1.5;
}

.expertise-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.15) 0%, rgba(139, 115, 85, 0.06) 100%);
    transform: translateY(-3px);
}

.card-title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.card-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.card-line {
    position: absolute;
    bottom: 0;
    left: var(--space-lg);
    right: var(--space-lg);
    height: 1px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.expertise-card:hover .card-line {
    transform: scaleX(1);
}

/* --------------------------------------------------------------------------
   About Section
   -------------------------------------------------------------------------- */
.about-layout {
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .about-layout {
        grid-template-columns: 1fr 1.2fr;
    }
}

.about-image {
    position: relative;
}

.image-frame {
    aspect-ratio: 3/4;
    background-color: var(--color-bg-alt);
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.placeholder-initials {
    font-family: var(--font-serif);
    font-size: 6rem;
    font-weight: 300;
    color: var(--color-accent-light);
    opacity: 0.5;
}

.placeholder-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: var(--space-sm);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--color-accent-light);
    z-index: -1;
}

.about-role {
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
    letter-spacing: 0.05em;
}

.about-bio p {
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.about-bio p:last-child {
    margin-bottom: var(--space-lg);
}

.about-credentials {
    display: grid;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

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

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

.credential-value {
    font-size: 0.9375rem;
    color: var(--color-text);
}

/* --------------------------------------------------------------------------
   Process Section
   -------------------------------------------------------------------------- */
.section-process {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
}

.section-process .section-number {
    color: var(--color-accent-light);
}

.section-process .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.process-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--space-md);
    position: relative;
}

.step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-accent-light);
    transition: all var(--transition-base);
}

.process-step:hover .step-number {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.step-line {
    width: 1px;
    flex: 1;
    background-color: rgba(139, 115, 85, 0.3);
    margin: var(--space-xs) 0;
}

.step-content {
    padding-bottom: var(--space-lg);
}

.step-content h3 {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.step-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials-header {
    margin-bottom: var(--space-lg);
}

.testimonials-grid {
    display: grid;
    gap: var(--space-md);
}

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

.testimonial {
    padding: var(--space-lg);
    background-color: var(--color-bg-alt);
    position: relative;
    transition: all 0.5s var(--ease-therapeutic);
}

.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-accent-light);
    opacity: 0.3;
    position: absolute;
    top: var(--space-sm);
    left: var(--space-md);
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

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

.author-name {
    font-weight: 500;
    font-size: 0.875rem;
}

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

/* --------------------------------------------------------------------------
   Contact Section
   -------------------------------------------------------------------------- */
.contact-layout {
    display: grid;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-intro {
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.contact-details {
    display: grid;
    gap: var(--space-md);
}

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

.contact-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.contact-value {
    font-size: 1rem;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

a.contact-value:hover {
    color: var(--color-accent);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--color-bg-alt);
    padding: var(--space-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--space-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--color-text);
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

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

/* --------------------------------------------------------------------------
   Map Section
   -------------------------------------------------------------------------- */
.section-map {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    filter: grayscale(100%) contrast(1.1);
    transition: filter var(--transition-base);
}

.map-container:hover {
    filter: grayscale(0%) contrast(1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    padding: var(--space-xl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr auto auto;
        align-items: center;
    }
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-top: var(--space-xs);
}

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

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

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

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
}

.footer-social svg {
    stroke: rgba(255, 255, 255, 0.6);
    transition: stroke var(--transition-fast);
}

.footer-social a:hover svg {
    stroke: var(--color-white);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-note {
    font-style: italic;
}

/* --------------------------------------------------------------------------
   Animations & Scroll Reveal
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Stagger children animations */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.6s; }

.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --------------------------------------------------------------------------
   Responsive Adjustments - MOBILE FIRST THERAPEUTIC
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 5rem;
        --space-xxl: 7rem;
    }

    /* Touch targets minimum 48px - CRITICAL for mobile UX */
    .btn {
        min-height: 48px;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .nav-toggle {
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-link {
        padding: 12px 0;
        font-size: 2rem;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: var(--space-lg);
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }

    .hero-scroll {
        display: none;
    }

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

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

    .philosophy-quote {
        padding-left: var(--space-sm);
        font-size: 1.25rem;
    }

    /* Expertise cards - single column, more padding */
    .expertise-card {
        padding: var(--space-md);
    }

    .card-number {
        font-size: 2rem;
    }

    /* Form inputs - larger touch targets */
    .form-group input,
    .form-group textarea {
        padding: 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Testimonials - stack on mobile */
    .testimonials-grid {
        gap: var(--space-sm);
    }

    .testimonial {
        padding: var(--space-md);
    }

    /* About section - image smaller */
    .about-image {
        max-width: 280px;
        margin: 0 auto;
    }

    /* Contact layout adjustments */
    .contact-form-wrapper {
        padding: var(--space-md);
    }

    /* Footer mobile */
    .footer-content {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

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

/* --------------------------------------------------------------------------
   FLOATING WHATSAPP BUTTON - Turkish market essential
   -------------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-base);
    animation: whatsappPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

/* Hide on larger screens where it's less needed */
@media (min-width: 1024px) {
    .whatsapp-float {
        bottom: 32px;
        right: 32px;
    }
}

/* --------------------------------------------------------------------------
   FOCUS STATES - Accessibility is therapeutic
   -------------------------------------------------------------------------- */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.2);
}

.nav-link:focus-visible,
.mobile-link:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.15);
}

/* Skip to content link for screen readers */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-text);
    color: var(--color-white);
    padding: 12px 24px;
    z-index: 10000;
    transition: top var(--transition-fast);
}

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

/* --------------------------------------------------------------------------
   THERAPEUTIC MICRO-INTERACTIONS
   -------------------------------------------------------------------------- */

/* Smooth hover states - not jarring */
.principle {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.expertise-card {
    transition: background-color 0.5s ease;
}

/* Process step - gentle interaction */
.process-step:hover .step-number {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   BREATHING ROOM - Extra whitespace for calm
   -------------------------------------------------------------------------- */
.section-philosophy .philosophy-quote {
    margin-bottom: var(--space-lg);
}

.about-bio {
    line-height: 1.9;
}

.about-bio p {
    margin-bottom: var(--space-md);
}

/* More space between sections on desktop */
@media (min-width: 1024px) {
    .section {
        padding: calc(var(--space-xxl) * 1.2) 0;
    }
}

/* --------------------------------------------------------------------------
   REDUCED MOTION - Respect user preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-gradient {
        animation: none;
    }

    .scroll-line {
        animation: none;
        opacity: 1;
        transform: scaleY(1);
    }

    .whatsapp-float {
        animation: none;
    }
}

/* --------------------------------------------------------------------------
   SAFE AREA INSETS - For notched phones
   -------------------------------------------------------------------------- */
@supports (padding: max(0px)) {
    .nav {
        padding-top: max(var(--space-md), env(safe-area-inset-top));
    }

    .footer {
        padding-bottom: max(var(--space-lg), env(safe-area-inset-bottom));
    }

    .whatsapp-float {
        bottom: max(24px, calc(env(safe-area-inset-bottom) + 16px));
        right: max(24px, env(safe-area-inset-right));
    }
}

/* --------------------------------------------------------------------------
   MOBILE EDITORIAL ENHANCEMENTS - Premium Typography on Small Screens
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    /* Editorial line-height for mobile reading */
    body {
        line-height: 1.8;
    }

    /* Section titles - maintain hierarchy */
    h2 {
        font-size: clamp(2rem, 8vw, 2.75rem);
        line-height: 1.15;
        margin-bottom: var(--space-md);
    }

    h3 {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        line-height: 1.3;
    }

    /* Section numbers - more prominent on mobile */
    .section-number {
        font-size: 0.875rem;
        letter-spacing: 0.15em;
    }

    /* Body text - optimized for mobile reading */
    p, .card-desc, .philosophy-text {
        font-size: 1.0625rem;
        line-height: 1.85;
        color: var(--color-text-muted);
    }

    /* Pull quotes - editorial feel */
    .philosophy-quote {
        font-size: clamp(1.375rem, 6vw, 1.75rem);
        line-height: 1.6;
        padding-left: var(--space-md);
        border-left-width: 3px;
    }

    /* Testimonials - editorial treatment */
    .testimonial-text {
        font-size: 1.0625rem;
        line-height: 1.75;
        font-style: italic;
    }

    /* Card titles - readable hierarchy */
    .card-title {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: var(--space-sm);
    }

    /* Vertical rhythm - storytelling flow */
    .section {
        padding: var(--space-xl) 0;
    }

    .section + .section {
        margin-top: var(--space-md);
    }

    /* Hero subtitle - premium mobile typography */
    .hero-subtitle {
        font-size: clamp(1.125rem, 4.5vw, 1.25rem);
        line-height: 1.7;
        margin-bottom: var(--space-lg);
    }

    /* Contact info - clean stacking */
    .contact-item {
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--color-border);
    }

    .contact-item:last-child {
        border-bottom: none;
    }

    /* Stats footer - mobile alternative display */
    .hero-footer {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        position: static;
        margin-top: var(--space-lg);
        gap: var(--space-sm);
        text-align: center;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }
}

/* --------------------------------------------------------------------------
   SCROLL PERFORMANCE - Smooth Mobile Experience
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    /* Optimize touch scrolling */
    body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: contain;
    }

    /* Hardware acceleration for smooth scrolling */
    .section {
        will-change: transform;
        transform: translateZ(0);
    }

    /* Reduce motion on scroll for performance */
    .reveal {
        transform: translateY(30px) scale(0.99);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Simplify animations on mobile for performance */
    .principle:hover,
    .expertise-card:hover,
    .testimonial:hover {
        transform: none;
    }

    /* Touch-friendly hover states (tap feedback) */
    .btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .nav-toggle:active {
        opacity: 0.7;
    }

    /* Disable cursor effects on touch */
    .cursor,
    .cursor-follower {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   MOBILE SECTION ICONS - Editorial Visual Hierarchy
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .section-icon {
        width: 28px;
        height: 28px;
        margin-right: 12px;
        stroke-width: 1.5;
    }

    .section-title {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* Principle icons - larger for mobile */
    .principle-icon {
        width: 56px;
        height: 56px;
    }

    /* Card icons - optimized sizing */
    .card-icon {
        width: 48px;
        height: 48px;
    }
}

/* --------------------------------------------------------------------------
   MAP MOBILE OPTIMIZATION
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .map-container {
        height: 300px;
    }

    /* Remove hover effects on mobile */
    .map-container:hover {
        filter: grayscale(100%) contrast(1.1);
    }
}

/* --------------------------------------------------------------------------
   PROCESS TIMELINE - MOBILE VERTICAL STORYTELLING
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
    .process-step {
        gap: var(--space-sm);
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
        flex-shrink: 0;
    }

    .step-content h3 {
        font-size: 1.125rem;
        margin-bottom: var(--space-xs);
    }

    .step-content p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .step-line {
        margin: 8px 0;
    }
}

/* --------------------------------------------------------------------------
   PAGE LOADER - Butter Smooth Entrance
   -------------------------------------------------------------------------- */
.page-loader {
    position: fixed;
    inset: 0;
    background-color: var(--color-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s var(--ease-therapeutic);
    pointer-events: none;
}

body.loaded .page-loader {
    opacity: 0;
}

.loader-logo {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 1;
}

@keyframes loaderFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* --------------------------------------------------------------------------
   SCROLL PROGRESS - Therapeutic feedback
   -------------------------------------------------------------------------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    z-index: 9999;
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: width;
}

/* --------------------------------------------------------------------------
   LANGUAGE SWITCHER - Dropdown Style
   -------------------------------------------------------------------------- */
.lang-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002; /* Above nav */
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-sans);
}

.lang-current:hover {
    border-color: var(--color-accent);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.lang-flag {
    font-size: 1.25rem;
    line-height: 1;
}

.lang-code {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text);
}

.lang-arrow {
    transition: transform var(--transition-fast);
    color: var(--color-text-muted);
}

.lang-switcher.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition-fast);
    overflow: hidden;
    min-width: 140px;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-sans);
}

.lang-option:hover {
    background-color: var(--color-bg-alt);
}

.lang-option.active {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.lang-option.active .lang-code {
    color: var(--color-white);
}

.lang-option .lang-flag {
    font-size: 1.5rem;
}

.lang-option .lang-code {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

/* Mobile language switcher */
@media (max-width: 767px) {
    .lang-switcher {
        top: auto;
        bottom: 168px;
        right: 20px;
    }

    .lang-current {
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .lang-code,
    .lang-arrow {
        display: none;
    }

    .lang-flag {
        font-size: 1.5rem;
    }

    .lang-dropdown {
        right: 0;
        bottom: calc(100% + 8px);
        top: auto;
        transform: translateY(8px);
    }

    .lang-switcher.open .lang-dropdown {
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   EDITORIAL QUOTE STYLING - Drop Cap & Typography
   -------------------------------------------------------------------------- */
.philosophy-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
    position: relative;
}

.philosophy-quote::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 8rem;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    top: -3rem;
    left: -2rem;
    color: var(--color-accent);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
}

/* Card numbers - ghosted editorial style */
.card-number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--color-border);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: var(--space-xs);
    transition: all var(--transition-base);
}

.expertise-card:hover .card-number {
    color: var(--color-accent);
    opacity: 0.6;
}

/* Stats - oversized editorial */
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

/* Testimonial quote marks - large watermark */
.testimonial-quote {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 300;
    line-height: 1;
    color: var(--color-accent-light);
    opacity: 0.15;
}

/* --------------------------------------------------------------------------
   BUTTER SMOOTH MICRO-INTERACTIONS - Enhanced
   -------------------------------------------------------------------------- */

/* Form input focus - Breathing animation */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(139, 115, 85, 0.08);
    transform: scale(1.005);
}

/* Button press feedback - Therapeutic compression */
.btn-primary:active {
    transform: scale(0.97);
    transition-duration: 0.1s;
}

/* Enhanced card hover with butter float */
.expertise-card {
    transition: all 0.5s var(--ease-float);
}

.expertise-card:hover {
    background-color: var(--color-bg-alt);
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

/* WhatsApp butter hover */
.whatsapp-float {
    transition: all 0.5s var(--ease-therapeutic);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.5);
}

/* Navigation underline butter smooth */
.nav-link::after {
    transition: width 0.5s var(--ease-silk);
}

/* Section icon styling */
.section-icon {
    width: 32px;
    height: 32px;
    margin-right: 16px;
    stroke: var(--color-accent);
    stroke-width: 1;
    vertical-align: middle;
}

.section-title {
    display: inline-flex;
    align-items: center;
}

/* ==========================================================================
   EDITORIAL MAGIC - SANAT ESERI ENHANCEMENTS
   ========================================================================== */

/* Drop Cap - Philosophy section first letter */
.philosophy-text p:first-of-type::first-letter {
    float: left;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 500;
    line-height: 0.8;
    color: var(--color-accent);
    margin-right: 0.15em;
    margin-top: 0.1em;
}

/* Section Numbers - Stronger presence */
.section-number {
    opacity: 0.35;
    color: var(--color-accent);
}

.card-number {
    opacity: 0.4;
    font-size: clamp(4rem, 8vw, 6rem);
    color: var(--color-accent-light);
}

/* Principle Cards - Editorial depth */
.principle {
    background: var(--color-bg);
    border-left: 3px solid transparent;
    transition: all 0.5s var(--ease-float);
}

.principle:hover {
    border-left-color: var(--color-accent);
    background: linear-gradient(135deg, var(--color-bg) 0%, rgba(139, 115, 85, 0.03) 100%);
}

/* Expertise Cards - Left accent border */
.expertise-card {
    border-left: 4px solid transparent;
}

.expertise-card:hover {
    border-left-color: var(--color-accent);
}

/* Testimonials - Large decorative quotes */
.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 400;
    color: var(--color-accent);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
}

/* Section backgrounds - Subtle gradients */
.section-philosophy {
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(139, 115, 85, 0.02) 100%);
}

.section-about {
    background: linear-gradient(180deg, rgba(139, 115, 85, 0.02) 0%, var(--color-bg) 100%);
}

/* Contact section - Warm gradient */
.section-contact {
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(139, 115, 85, 0.04) 100%);
}

/* Enhanced Philosophy Quote - Editorial prominence */
.philosophy-quote {
    position: relative;
    padding-left: var(--space-lg);
    border-left: 3px solid var(--color-accent);
}

.philosophy-quote::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: var(--space-md);
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 400;
    color: var(--color-accent);
    opacity: 0.15;
    line-height: 1;
}

/* Hero gradient - Enhanced warmth */
.hero-gradient {
    background: radial-gradient(ellipse at 70% 30%, rgba(139, 115, 85, 0.1) 0%, transparent 60%);
}

/* Form inputs - Editorial styling */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

/* Button - Editorial accent */
.btn-primary {
    background: linear-gradient(135deg, var(--color-text) 0%, #2a2a2a 100%);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent) 0%, #9a7d5c 100%);
}

/* Credential labels - Editorial caps */
.credential-label {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.6875rem;
    color: var(--color-accent);
}

/* Process step numbers - Editorial presence */
.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-accent-light);
    opacity: 0.5;
}

/* ==========================================================================
   FINAL POLISH - Typography Harmony & Finishing Touches
   ========================================================================== */

/* Consistent body text across all sections */
.about-bio,
.contact-intro,
.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
}

/* Subtle text balance for better reading */
h1, h2, h3 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

/* Enhanced selection */
::selection {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* Smooth image loading */
img {
    opacity: 1;
    transition: opacity 0.5s var(--ease-therapeutic);
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Link underline animation */
.philosophy-text a,
.about-bio a {
    text-decoration: underline;
    text-decoration-color: var(--color-accent-light);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease;
}

.philosophy-text a:hover,
.about-bio a:hover {
    text-decoration-color: var(--color-accent);
}

/* Section number consistent styling */
.section-number {
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    opacity: 0.7;
    margin-bottom: var(--space-sm);
}

/* Final breathing room adjustments */
.section-header {
    margin-bottom: var(--space-lg);
}

.section-header h2 {
    margin-bottom: var(--space-xs);
}

/* Footer polish */
.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
}
