/* ============================================
   BOWDEN AGENCY — CSS
   Bold Editorial | Plum + Amber
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --plum-deep: #2D1B30;
    --plum-dark: #3D2242;
    --plum-mid: #4A235A;
    --plum-light: #6B3A75;
    --plum-pale: #F5EEF7;
    --plum-ghost: #FAF6FC;
    
    --amber-deep: #A07828;
    --amber: #D4A843;
    --amber-light: #E8C96A;
    --amber-pale: #FFF8E7;
    
    --neutral-900: #1A1A1A;
    --neutral-800: #2D2D2D;
    --neutral-700: #404040;
    --neutral-600: #555555;
    --neutral-500: #6E6E6E;
    --neutral-400: #999999;
    --neutral-300: #C4C4C4;
    --neutral-200: #E2E2E2;
    --neutral-100: #F0F0F0;
    --neutral-50: #F8F8F8;
    --white: #FFFFFF;
    
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(45, 27, 48, 0.08);
    --shadow-md: 0 4px 20px rgba(45, 27, 48, 0.10);
    --shadow-lg: 0 8px 40px rgba(45, 27, 48, 0.14);
    --shadow-xl: 0 16px 60px rgba(45, 27, 48, 0.18);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 35, 90, 0.08);
    transition: var(--transition-base);
}

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

.nav.scrolled .nav-logo-mark {
    background: var(--plum-mid);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--plum-mid);
    color: var(--amber);
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-logo-text {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

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

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

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

.nav-link-cta {
    background: var(--plum-mid);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

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

.nav-link-cta:hover {
    background: var(--plum-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

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

.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--neutral-800);
    transition: var(--transition-base);
    transform-origin: center;
}

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

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

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

/* --- Hero --- */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--plum-deep) 0%, var(--plum-mid) 50%, var(--plum-light) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212, 168, 67, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(107, 58, 117, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-bg-pattern::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.02'%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;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--amber);
    display: block;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-headline-accent {
    color: var(--amber);
    font-style: italic;
    font-weight: 500;
}

.hero-subheadline {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Stats */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 380px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    transition: var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.stat-card--1 { transform: translateY(0); }
.stat-card--2 { transform: translateY(16px); }
.stat-card--3 { transform: translateY(-8px); }
.stat-card--4 { transform: translateY(8px); }

.stat-card:hover.stat-card--1 { transform: translateY(-4px); }
.stat-card:hover.stat-card--2 { transform: translateY(12px); }
.stat-card:hover.stat-card--3 { transform: translateY(-12px); }
.stat-card:hover.stat-card--4 { transform: translateY(4px); }

.stat-card-number {
    display: block;
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 700;
    color: var(--amber);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

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

.btn-primary {
    background: var(--amber);
    color: var(--plum-deep);
}

.btn-primary:hover {
    background: var(--amber-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-full {
    width: 100%;
}

/* --- Section Shared --- */
.section-header {
    max-width: 680px;
    margin-bottom: 64px;
}

.section-header--centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plum-mid);
    margin-bottom: 16px;
}

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

.section-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--neutral-900);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.section-title-accent {
    color: var(--plum-mid);
    font-style: italic;
    font-weight: 500;
}

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

.section-title--light .section-title-accent {
    color: var(--amber);
}

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

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

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

.service-card {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    border-color: rgba(74, 35, 90, 0.15);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    background: var(--white);
}

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

.service-card--featured {
    background: var(--plum-deep);
    border-color: var(--plum-mid);
}

.service-card--featured::before {
    background: var(--amber);
}

.service-card--featured .service-card-title,
.service-card--featured .service-card-description,
.service-card--featured .service-card-list li {
    color: var(--white);
}

.service-card--featured .service-card-list li {
    color: rgba(255, 255, 255, 0.65);
}

.service-card--featured .service-card-list li::before {
    color: var(--amber);
}

.service-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--amber);
    color: var(--plum-deep);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}

.service-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(74, 35, 90, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-mid);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.service-card--featured .service-card-icon {
    background: rgba(212, 168, 67, 0.15);
    color: var(--amber);
}

.service-card:hover .service-card-icon {
    background: var(--plum-mid);
    color: var(--white);
}

.service-card--featured:hover .service-card-icon {
    background: var(--amber);
    color: var(--plum-deep);
}

.service-card-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.service-card-description {
    font-size: 15px;
    line-height: 1.65;
    color: var(--neutral-600);
    margin-bottom: 18px;
}

.service-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card-list li {
    font-size: 13px;
    color: var(--neutral-600);
    padding-left: 16px;
    position: relative;
}

.service-card-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-weight: 600;
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--plum-ghost);
}

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

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

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

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

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--amber);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.about-image-stat {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
}

.about-image-stat-number {
    display: block;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--plum-mid);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}

.about-image-stat-label {
    font-size: 12px;
    color: var(--neutral-500);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}

.about-content {
    max-width: 480px;
}

.about-text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--neutral-600);
    margin-bottom: 18px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-value-icon {
    width: 36px;
    height: 36px;
    background: var(--plum-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}

.about-value-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--neutral-800);
}

/* --- Approach --- */
.approach {
    padding: 120px 0;
    background: var(--white);
}

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

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

.approach-step-number {
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 700;
    color: var(--plum-pale);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.approach-step-content {
    text-align: left;
}

.approach-step-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.approach-step-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--neutral-600);
}

.approach-step-connector {
    position: absolute;
    top: 40px;
    right: -12px;
    width: 24px;
    height: 2px;
    background: linear-gradient(to right, var(--plum-pale), var(--amber));
    z-index: 1;
}

/* --- Quote Section --- */
.quote-section {
    padding: 100px 0;
    background: var(--plum-mid);
    position: relative;
    overflow: hidden;
}

.quote-section::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='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.quote-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    margin-bottom: 24px;
    color: var(--amber);
}

.quote-text {
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.55;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 28px;
}

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

.quote-attribution-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--amber);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.quote-attribution-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* --- CTA Section --- */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(160deg, var(--plum-deep) 0%, var(--plum-mid) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212, 168, 67, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.contact-info {
    max-width: 440px;
}

.contact-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-600);
    margin-bottom: 40px;
}

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

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--plum-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-mid);
    flex-shrink: 0;
}

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

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

.contact-detail-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--neutral-800);
}

.contact-detail-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--plum-mid);
    transition: color var(--transition-fast);
}

.contact-detail-link:hover {
    color: var(--amber-deep);
    text-decoration: underline;
}

.contact-hours {
    padding: 20px 24px;
    background: var(--neutral-50);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--amber);
}

.contact-hours-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-bottom: 8px;
}

.contact-hours-value {
    display: block;
    font-size: 14px;
    color: var(--neutral-700);
    line-height: 1.6;
}

/* Form */
.contact-form-wrapper {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neutral-600);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    font-family: var(--sans);
    font-size: 15px;
    color: var(--neutral-800);
    background: var(--white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--plum-mid);
    box-shadow: 0 0 0 3px rgba(74, 35, 90, 0.1);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: var(--radius-sm);
    color: #2E7D32;
    font-size: 14px;
    font-weight: 500;
}

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

.form-success svg {
    flex-shrink: 0;
    color: #4CAF50;
}

/* --- Map --- */
.map-section {
    border-top: 1px solid var(--neutral-200);
}

.map-container {
    filter: saturate(0.6) contrast(1.1);
    transition: filter var(--transition-base);
}

.map-container:hover {
    filter: saturate(1) contrast(1);
}

/* --- Footer --- */
.footer {
    background: var(--neutral-900);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--plum-mid);
    color: var(--amber);
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.footer-logo-text {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-link-group-title {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 18px;
}

.footer-link-group a,
.footer-link-group span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.footer-link-group a:hover,
.footer-link-group span:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    max-width: 480px;
    text-align: right;
    line-height: 1.5;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-stats {
        max-width: 100%;
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-card {
        text-align: center;
    }
    
    .stat-card--1, .stat-card--2, .stat-card--3, .stat-card--4 {
        transform: none;
    }
    
    .stat-card:hover {
        transform: translateY(-4px);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .approach-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .approach-step-connector {
        display: none;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-link {
        font-size: 16px;
    }
    
    .nav-link-cta {
        text-align: center;
        width: 100%;
    }
    
    .hero {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card--featured {
        order: -1;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-image-accent {
        width: 120px;
        height: 120px;
        bottom: -12px;
        right: -12px;
    }
    
    .about-image-stat {
        left: 12px;
        bottom: 12px;
    }
    
    .approach {
        padding: 80px 0;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .approach-step-number {
        font-size: 48px;
    }
    
    .quote-section {
        padding: 80px 0;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .footer-disclaimer {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .stat-card {
        padding: 18px 14px;
    }
    
    .stat-card-number {
        font-size: 28px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}
