/* ============================================
   CSS Custom Properties
   ============================================ */
:root {
    --plum-deep: #2D1B33;
    --plum-primary: #4A235A;
    --plum-medium: #6B3A7D;
    --plum-light: #9B6FA0;
    --plum-pale: #E8D5F0;
    --plum-whisper: #F5EFF8;
    
    --amber-deep: #B8770C;
    --amber-primary: #F5A623;
    --amber-light: #F7C066;
    --amber-pale: #FFF3D6;
    
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-50: #F8F8F8;
    --gray-100: #F0F0F0;
    --gray-200: #E5E5E5;
    --gray-300: #CCCCCC;
    --gray-400: #AAAAAA;
    --gray-500: #777777;
    --gray-600: #555555;
    --gray-700: #333333;
    --gray-800: #1A1A1A;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    
    --shadow-sm: 0 1px 3px rgba(45, 27, 51, 0.06);
    --shadow-md: 0 4px 20px rgba(45, 27, 51, 0.08);
    --shadow-lg: 0 8px 40px rgba(45, 27, 51, 0.12);
    --shadow-xl: 0 16px 60px rgba(45, 27, 51, 0.16);
}

/* ============================================
   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(--font-body);
    font-weight: 300;
    color: var(--gray-700);
    background-color: var(--white);
    line-height: 1.7;
    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;
}

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

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--gray-800);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum-primary);
    margin-bottom: 16px;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--gray-800);
    margin-bottom: 24px;
}

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

.text-accent {
    color: var(--plum-primary);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    border-radius: 4px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum-primary);
    color: var(--white);
    border: 1px solid var(--plum-primary);
}

.btn--primary:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn--light {
    background: var(--white);
    color: var(--plum-primary);
    border: 1px solid var(--white);
}

.btn--light:hover {
    background: var(--plum-whisper);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--gray-200);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s ease;
}

.nav.scrolled .nav-logo {
    color: var(--plum-primary);
}

.nav-logo-icon {
    display: flex;
    align-items: center;
}

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

.nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--amber-primary);
    transition: width 0.3s var(--ease-out);
}

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

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

.nav.scrolled .nav-link {
    color: var(--gray-500);
}

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

.nav-link--cta {
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-link--cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.nav.scrolled .nav-link--cta {
    border-color: var(--plum-primary);
    color: var(--plum-primary);
}

.nav.scrolled .nav-link--cta:hover {
    background: var(--plum-primary);
    color: var(--white);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.nav.scrolled .nav-toggle span {
    background: var(--plum-primary);
}

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

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

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 27, 51, 0.85) 0%,
        rgba(74, 35, 90, 0.75) 50%,
        rgba(74, 35, 90, 0.6) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-subheadline {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    max-width: 480px;
}

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

/* Floating Stat Cards */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateX(30px);
    animation: slideInCard 0.6s var(--ease-out) forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.4s; }
.stat-card:nth-child(2) { animation-delay: 0.55s; }
.stat-card:nth-child(3) { animation-delay: 0.7s; }

.stat-card-accent {
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 100px;
    background: var(--amber-primary);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--plum-primary);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    letter-spacing: 0.02em;
    line-height: 1.4;
}

@keyframes slideInCard {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ============================================
   Section Base
   ============================================ */
.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: var(--white);
}

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

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

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--plum-pale);
    border-radius: 8px;
    z-index: -1;
}

.about-content {
    padding: 20px 0;
}

.about-divider {
    width: 48px;
    height: 1px;
    background: var(--amber-primary);
    margin-bottom: 28px;
}

.about-text {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.about-signature {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
}

.signature-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--plum-primary);
    margin-bottom: 4px;
}

.signature-title {
    font-size: 0.8125rem;
    color: var(--gray-400);
    letter-spacing: 0.05em;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: var(--plum-whisper);
}

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

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px 32px;
    border: 1px solid var(--gray-100);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--plum-primary), var(--amber-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

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

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

.service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-whisper);
    border-radius: 8px;
    margin-bottom: 24px;
    color: var(--plum-primary);
    transition: all 0.3s ease;
}

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

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.service-card-text {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 24px;
}

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

.service-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.service-card-features li::before {
    content: '';
    flex-shrink: 0;
    width: 4px;
    height: 4px;
    background: var(--amber-primary);
    border-radius: 50%;
    margin-top: 8px;
}

/* ============================================
   Areas Section
   ============================================ */
.areas {
    background: var(--white);
}

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

.areas-content {
    padding: 20px 0;
}

.areas-divider {
    width: 48px;
    height: 1px;
    background: var(--amber-primary);
    margin-bottom: 28px;
}

.areas-text {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.areas-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.area-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    cursor: default;
}

.area-item:first-child {
    border-top: 1px solid var(--gray-100);
}

.area-item:hover {
    padding-left: 12px;
}

.area-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gray-800);
    font-weight: 400;
}

.area-detail {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.areas-image-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 480px;
}

.areas-image-main {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    border-radius: 8px;
    overflow: hidden;
}

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

.areas-image-secondary {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    border-radius: 8px;
    overflow: hidden;
}

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

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: var(--plum-primary);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

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

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

.testimonials .text-accent {
    color: var(--amber-primary);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 36px 28px;
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--amber-primary);
    opacity: 0.4;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

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

.testimonial-name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 400;
}

.testimonial-detail {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.04em;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    background: var(--gray-50);
    padding: 100px 0;
}

.cta-card {
    position: relative;
    background: var(--plum-deep);
    border-radius: 12px;
    padding: 80px 60px;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 58, 125, 0.3) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.cta-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 36px;
}

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

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: var(--white);
}

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

.contact-info {
    padding: 20px 0;
}

.contact-divider {
    width: 48px;
    height: 1px;
    background: var(--amber-primary);
    margin-bottom: 28px;
}

.contact-text {
    font-size: 0.9375rem;
    line-height: 1.85;
    color: var(--gray-600);
    margin-bottom: 40px;
}

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

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

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

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

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

.contact-detail-value {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--plum-primary);
    transition: color 0.3s ease;
}

.contact-detail-value a:hover {
    color: var(--plum-medium);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--gray-100);
}

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

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

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

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--gray-700);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

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

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

/* Form success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}

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

.success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-whisper);
    border-radius: 50%;
    color: var(--plum-primary);
}

.success-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray-800);
}

.success-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--gray-800);
    padding: 64px 0 32px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--white);
}

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

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

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--gray-500);
    transition: color 0.3s ease;
}

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

.footer-links span {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

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

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--gray-600);
    max-width: 400px;
    line-height: 1.6;
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out);
}

.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; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 200px;
    }
    
    .about-grid,
    .areas-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .areas-image-col {
        height: 320px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    /* Mobile nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s var(--ease-out);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-link {
        color: var(--gray-700);
        font-size: 1rem;
    }
    
    .nav-link:hover {
        color: var(--plum-primary);
    }
    
    .nav-link--cta {
        border-color: var(--plum-primary);
        color: var(--plum-primary);
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    /* Hero mobile */
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-container {
        padding-top: 0;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-card {
        min-width: auto;
    }
    
    .hero-scroll {
        display: none;
    }
    
    /* Services & Testimonials */
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Areas */
    .areas-image-col {
        height: 240px;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
    .areas-image-main {
        grid-column: 1;
        grid-row: 1;
    }
    
    .areas-image-secondary {
        grid-column: 1;
        grid-row: 2;
    }
    
    /* CTA */
    .cta-card {
        padding: 48px 28px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    /* Contact form */
    .contact-form-wrap {
        padding: 28px;
    }
    
    /* Footer */
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}
