/* ========== CSS CUSTOM PROPERTIES ========== */
:root {
    --plum-50: #faf5ff;
    --plum-100: #f3e8ff;
    --plum-200: #e9d5ff;
    --plum-300: #d8b4fe;
    --plum-400: #c084fc;
    --plum-500: #a855f7;
    --plum-600: #9333ea;
    --plum-700: #7B3F00;
    --plum-800: #581c87;
    --plum-900: #3b0764;
    
    --amber-50: #fffbeb;
    --amber-100: #fef3c7;
    --amber-200: #fde68a;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --amber-700: #b45309;
    
    --warm-white: #FFFAF5;
    --warm-cream: #FFF8F0;
    --warm-beige: #FDF5ED;
    
    --text-primary: #1a0a2e;
    --text-secondary: #4a3060;
    --text-muted: #7c6a8a;
    --text-light: #a898b8;
    
    --surface-white: #ffffff;
    --surface-subtle: #faf8ff;
    --surface-border: #f0e8f8;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(123, 63, 0, 0.06), 0 1px 2px rgba(123, 63, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(123, 63, 0, 0.08), 0 2px 6px rgba(123, 63, 0, 0.05);
    --shadow-lg: 0 12px 40px rgba(123, 63, 0, 0.10), 0 4px 12px rgba(123, 63, 0, 0.06);
    --shadow-xl: 0 24px 60px rgba(123, 63, 0, 0.12), 0 8px 20px rgba(123, 63, 0, 0.07);
    
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== 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-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    background-color: var(--warm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

ul {
    list-style: none;
}

/* ========== SKIP LINK ========== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum-700);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 500;
    transition: top var(--transition-fast);
}

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

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

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 48px;
    }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
    font-weight: 600;
}

/* ========== TEXT GRADIENT ========== */
.text-gradient {
    background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-500) 50%, var(--amber-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--plum-700) 0%, var(--plum-600) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(123, 63, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 63, 0, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--plum-700);
    border: 1.5px solid var(--plum-200);
    backdrop-filter: blur(4px);
}

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

.btn-secondary {
    background: var(--surface-white);
    color: var(--plum-700);
    border: 1.5px solid var(--surface-border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--plum-50);
    border-color: var(--plum-300);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-amber {
    background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-600) 100%);
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

.btn-amber:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

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

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

/* ========== SECTION ========== */
.section {
    padding: 80px 0;
}

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

@media (min-width: 1200px) {
    .section {
        padding: 120px 0;
    }
}

/* ========== SECTION HEADER ========== */
.section-header {
    margin-bottom: 56px;
}

.section-header-center {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--plum-600);
    background: var(--plum-100);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

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

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(240, 232, 248, 0.5);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(255, 250, 245, 0.95);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--plum-700);
}

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

.logo-text {
    font-family: var(--font-serif);
}

.main-nav ul {
    display: none;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.main-nav a:hover {
    color: var(--plum-700);
    background: var(--plum-50);
}

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

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--plum-700);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* Mobile nav */
@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--surface-white);
        padding: 88px 32px 32px;
        box-shadow: var(--shadow-xl);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        z-index: 999;
    }
    
    .main-nav.open {
        transform: translateX(0);
    }
    
    .main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .main-nav a {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: var(--radius-md);
        width: 100%;
    }
    
    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(26, 10, 46, 0.4);
        backdrop-filter: blur(4px);
        z-index: 998;
    }
    
    .mobile-overlay.active {
        display: block;
    }
}

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

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--warm-white) 0%, var(--plum-50) 40%, var(--amber-50) 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: 
        radial-gradient(ellipse 600px 600px at 80% 20%, rgba(123, 63, 0, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 10% 80%, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--plum-600);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--plum-200);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero-badge svg {
    opacity: 0.7;
}

.hero-title {
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

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

/* Hero visual */
.hero-visual {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.hero-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-card-main {
    aspect-ratio: 480/560;
}

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

.hero-card-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(26, 10, 46, 0.85) 0%, transparent 100%);
    color: #fff;
}

.hero-card-quote svg {
    opacity: 0.6;
    margin-bottom: 12px;
}

.hero-card-quote p {
    font-family: var(--font-serif);
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
}

/* Floating stat cards */
.float-card {
    position: absolute;
    background: var(--surface-white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.float-card-icon {
    color: var(--plum-600);
    flex-shrink: 0;
}

.float-card-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.float-card-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.float-card-1 {
    top: 8%;
    right: -16px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 28%;
    left: -20px;
    animation-delay: 1.3s;
}

.float-card-3 {
    bottom: 8%;
    right: -8px;
    animation-delay: 2.6s;
}

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

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
    
    .hero-visual {
        margin: 0;
    }
}

/* ========== SERVICES ========== */
.services {
    background: var(--surface-subtle);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--surface-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--surface-border);
    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-700), var(--amber-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

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

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--plum-100);
    color: var(--plum-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
    background: var(--plum-700);
    color: #fff;
    transform: scale(1.05);
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.service-card-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--plum-600);
    transition: all var(--transition-fast);
}

.service-card-link:hover {
    color: var(--plum-700);
    gap: 10px;
}

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

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

/* ========== ABOUT ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 520/620;
}

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

.about-img-secondary {
    position: absolute;
    bottom: -24px;
    right: -16px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--warm-white);
    aspect-ratio: 300/340;
}

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

.about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    color: var(--plum-300);
    opacity: 0.5;
    z-index: -1;
}

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

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--amber-100);
    color: var(--amber-700);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-item strong {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.value-item span {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (min-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* ========== APPROACH ========== */
.approach {
    background: linear-gradient(160deg, var(--plum-900) 0%, var(--plum-800) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 500px 500px at 90% 10%, rgba(245, 158, 11, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 10% 90%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.approach .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--amber-300);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.approach .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.approach-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    z-index: 1;
}

.approach-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 28px 0;
    position: relative;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--amber-400);
    opacity: 0.6;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 22px;
    margin-bottom: 8px;
    color: #fff;
}

.step-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 480px;
}

.step-connector {
    grid-column: 1;
    grid-row: 2;
    width: 2px;
    height: 28px;
    background: linear-gradient(to bottom, var(--plum-400), transparent);
    margin-left: 28px;
    align-self: end;
}

@media (min-width: 768px) {
    .approach-steps {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .approach-step {
        grid-template-columns: 60px 1fr;
    }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--warm-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.testimonial-card {
    background: var(--surface-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--surface-border);
    transition: all var(--transition-base);
    position: relative;
}

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

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--amber-400);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-footer {
    border-top: 1px solid var(--surface-border);
    padding-top: 16px;
}

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

.author-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary);
}

.author-location {
    font-size: 13px;
    color: var(--text-muted);
}

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

/* ========== CTA BANNER ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--plum-800) 0%, var(--plum-700) 50%, #8B4513 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse 400px 400px at 80% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(24px, 4vw, 42px);
    color: #fff;
    max-width: 600px;
}

.cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    line-height: 1.7;
}

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

@media (min-width: 600px) {
    .cta-inner {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
    
    .cta-content {
        flex: 1;
    }
    
    .cta-actions {
        flex-shrink: 0;
    }
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

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

.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--plum-100);
    color: var(--plum-700);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-item a {
    color: var(--plum-600);
    transition: color var(--transition-fast);
}

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

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

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

.contact-form-card {
    background: var(--surface-white);
    border-radius: var(--radius-xl);
    padding: 36px;
    border: 1px solid var(--surface-border);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.form-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.required {
    color: var(--amber-600);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--surface-border);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--surface-subtle);
    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: var(--surface-white);
    box-shadow: 0 0 0 3px rgba(123, 63, 0, 0.1);
}

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

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    color: var(--plum-500);
    margin: 0 auto 16px;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 15px;
    color: var(--text-secondary);
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--plum-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.logo-light {
    color: #fff;
}

.logo-light .logo-icon {
    color: var(--amber-400);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s 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; }

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal {
        opacity: 1;
        transform: none;
    }
    
    .float-card {
        animation: none;
    }
}
