/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
    --plum-dark: #2D0A2E;
    --plum-deep: #4A1942;
    --plum-mid: #6B2158;
    --plum-light: #9B4D8A;
    --plum-pale: #E8D5E0;
    --plum-bg: #FDF5F8;
    
    --amber-dark: #B8860B;
    --amber: #D4A017;
    --amber-light: #E8C547;
    --amber-pale: #FFF8E7;
    
    --cream: #FFFAF5;
    --warm-white: #FFF9F0;
    --off-white: #F9F3EE;
    
    --text-dark: #1A0A18;
    --text-mid: #3D2040;
    --text-light: #6B4D68;
    --text-muted: #9A8098;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 2px 8px rgba(74, 25, 66, 0.06);
    --shadow-md: 0 4px 20px rgba(74, 25, 66, 0.1);
    --shadow-lg: 0 8px 40px rgba(74, 25, 66, 0.12);
    --shadow-xl: 0 16px 64px rgba(74, 25, 66, 0.15);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

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

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

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

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--plum-deep);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
    font-weight: 500;
}

.skip-link:focus {
    top: var(--space-sm);
}

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

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
}

em {
    font-style: italic;
    color: var(--plum-mid);
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-dark);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: var(--space-lg);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    white-space: nowrap;
    text-align: center;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-amber {
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
    color: var(--plum-dark);
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.35);
}

.btn-amber:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 160, 23, 0.45);
}

.btn-plum {
    background: var(--plum-deep);
    color: white;
    box-shadow: 0 4px 16px rgba(74, 25, 66, 0.25);
}

.btn-plum:hover {
    background: var(--plum-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(74, 25, 66, 0.35);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

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

.btn-outline-plum {
    background: transparent;
    color: var(--plum-deep);
    border: 1.5px solid var(--plum-deep);
}

.btn-outline-plum:hover {
    background: var(--plum-deep);
    color: white;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.625rem 1.375rem;
    font-size: 0.875rem;
}

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

/* ========================================
   Header / Navigation
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(253, 245, 248, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.625rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    z-index: 101;
}

.logo-mark {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 800;
    color: var(--amber);
    background: var(--plum-deep);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    letter-spacing: -0.02em;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}

.site-header.scrolled .logo-mark {
    color: var(--amber);
}

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

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--plum-deep);
}

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 101;
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger::before { top: 0; }
.hamburger span { top: 8px; }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 8px;
}

.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 8px;
}

/* ========================================
   Hero
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-3xl) var(--space-md);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(107, 33, 88, 0.85) 0%, rgba(74, 25, 66, 0.95) 40%, rgba(45, 10, 46, 1) 75%),
        linear-gradient(160deg, #6B2158 0%, #4A1942 30%, #2D0A2E 60%, #1A0520 100%);
    z-index: 0;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 197, 71, 0.1) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

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

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.08;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

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

.hero-sub {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto var(--space-lg);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amber-light);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 48px;
    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.4; transform: scaleY(0.7); }
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-xl);
}

/* ========================================
   Services
   ======================================== */
.services {
    background: var(--cream);
}

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

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid rgba(74, 25, 66, 0.06);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 160, 23, 0.2);
}

.service-icon {
    width: 56px;
    height: 56px;
    color: var(--plum-mid);
    margin-bottom: var(--space-md);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.service-desc {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--text-mid);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    flex-shrink: 0;
}

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

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

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 60%;
    height: 40%;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.about-content {
    padding: var(--space-md) 0;
}

.about-title {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    margin-bottom: var(--space-md);
}

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

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

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    color: var(--text-dark);
}

.value-icon {
    width: 24px;
    height: 24px;
    color: var(--amber-dark);
    flex-shrink: 0;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

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

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.area-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.area-card:hover img {
    transform: scale(1.08);
}

.area-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 10, 46, 0.85) 0%, rgba(45, 10, 46, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-md);
    transition: background var(--transition-base);
}

.area-card:hover .area-overlay {
    background: linear-gradient(to top, rgba(45, 10, 46, 0.92) 0%, rgba(45, 10, 46, 0.3) 60%, transparent 100%);
}

.area-name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: white;
    margin-bottom: 0.25rem;
}

.area-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
    background: linear-gradient(160deg, var(--plum-deep) 0%, var(--plum-dark) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

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

.testimonials .section-title {
    color: white;
}

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

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

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

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--amber);
    opacity: 0.4;
    margin-bottom: -0.5rem;
}

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

.testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.testimonial-name {
    font-weight: 600;
    color: white;
    font-size: 0.9375rem;
}

.testimonial-location {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Process
   ======================================== */
.process {
    background: var(--off-white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.process-step {
    text-align: center;
    padding: var(--space-lg);
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 2.5rem;
    right: -0.75rem;
    width: 1.5rem;
    height: 2px;
    background: linear-gradient(to right, var(--amber), transparent);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 800;
    color: var(--plum-pale);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.step-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   CTA
   ======================================== */
.cta {
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

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

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: var(--space-md);
}

.cta-title em {
    color: var(--amber-light);
}

.cta-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

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

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

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

.contact-title {
    font-size: clamp(1.75rem, 3vw, 2.75rem);
    margin-bottom: var(--space-md);
}

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

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

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

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

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-item a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--plum-mid);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 2/1;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(74, 25, 66, 0.06);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8125rem 1rem;
    border: 1.5px solid var(--plum-pale);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--warm-white);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-mid);
    background: white;
    box-shadow: 0 0 0 3px rgba(107, 33, 88, 0.1);
}

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

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

.form-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-sm);
}

/* Form Success */
.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-dark);
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.success-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.success-text {
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.btn-send-again {
    margin-top: var(--space-sm);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--plum-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-2xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo-text {
    color: white;
}

.footer-tagline {
    font-size: 0.9375rem;
    margin-top: var(--space-sm);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

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

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

.footer-contact p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.25rem;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

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

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

/* ========================================
   Reveal Animation
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

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

@media (max-width: 768px) {
    :root {
        --space-3xl: 5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: var(--space-xl);
        gap: var(--space-md);
        transform: translateX(100%);
        transition: transform var(--transition-base);
        box-shadow: var(--shadow-xl);
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu a {
        font-size: 1.125rem;
        color: var(--text-dark);
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(26, 10, 24, 0.5);
        z-index: 99;
    }

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

    .hero {
        min-height: 100svh;
        padding: var(--space-2xl) var(--space-md);
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        max-height: 400px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }

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

    .contact-form-wrap {
        padding: var(--space-md);
    }
}
