/* ===== CSS Custom Properties ===== */
:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2C;
    --burgundy-light: #9A3D4E;
    --blush: #F5E6D3;
    --blush-light: #FAF3EC;
    --blush-dark: #E8D0BC;
    --cream: #FDF9F5;
    --warm-white: #FEFCF9;
    --charcoal: #2A2424;
    --text-dark: #3D2B2B;
    --text-medium: #6B5555;
    --text-light: #9A8585;
    --gold: #C4A265;
    --gold-light: #D4B87A;
    
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --nav-height: 80px;
    --section-padding: 120px;
    --container-max: 1200px;
    
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.desktop-only {
    display: block;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all 0.4s var(--transition-smooth);
    background: transparent;
}

.nav.scrolled {
    background: rgba(253, 249, 245, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(123, 45, 59, 0.08);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--burgundy);
    letter-spacing: 0.02em;
}

.nav-logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-medium);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav.scrolled .nav-logo-text {
    color: var(--burgundy);
}

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

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-medium);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--burgundy);
    transition: width 0.3s var(--transition-smooth);
}

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

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

.nav-cta {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--burgundy);
    padding: 12px 28px;
    border-radius: 0;
    transition: all 0.3s var(--transition-smooth);
}

.nav-cta:hover {
    background: var(--burgundy-deep);
    color: var(--warm-white);
}

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

.nav-toggle-line {
    width: 24px;
    height: 1.5px;
    background: var(--burgundy);
    transition: all 0.3s var(--transition-smooth);
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-smooth);
}

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

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--burgundy);
    padding: 8px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--burgundy);
}

.mobile-menu-cta {
    margin-top: 20px;
}

.mobile-cta-btn {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--burgundy);
    padding: 16px 40px;
    display: block;
    transition: background 0.3s;
}

.mobile-cta-btn:hover {
    background: var(--burgundy-deep);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--cream);
    padding-top: var(--nav-height);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(123, 45, 59, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(245, 230, 211, 0.6) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 32px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--burgundy);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

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

.hero-subtext {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 44px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--burgundy-deep);
    color: var(--warm-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.25);
}

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

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

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

.btn-outline-light:hover {
    background: var(--warm-white);
    color: var(--burgundy);
    border-color: var(--warm-white);
}

.btn-white {
    background: var(--warm-white);
    color: var(--burgundy);
}

.btn-white:hover {
    background: var(--blush);
    color: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.btn-lg {
    padding: 20px 44px;
    font-size: 0.82rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.hero-trust-item svg {
    color: var(--burgundy);
    opacity: 0.7;
}

.hero-trust-separator {
    width: 1px;
    height: 16px;
    background: var(--blush-dark);
}

/* Hero Image Column */
.hero-image-col {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-main {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-image-main img {
    width: 100%;
    max-width: 520px;
    height: 700px;
    object-fit: cover;
    display: block;
}

.hero-image-accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    z-index: 3;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-image-accent img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    display: block;
}

.hero-accent-circle {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px solid var(--blush-dark);
    z-index: 1;
    opacity: 0.6;
}

.hero-accent-dots {
    position: absolute;
    bottom: 60px;
    right: -40px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--burgundy) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.2;
    z-index: 1;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll-indicator span {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
}

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

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

/* ===== Section Divider ===== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 40px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--blush-dark);
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* ===== Section Shared ===== */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 16px;
}

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

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 540px;
}

/* ===== Services Section ===== */
.services {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
}

.services-header {
    text-align: center;
    margin-bottom: 72px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 72px;
}

.service-card {
    background: var(--cream);
    padding: 48px 40px;
    position: relative;
    border: 1px solid rgba(196, 162, 101, 0.15);
    transition: all 0.4s var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(123, 45, 59, 0.08);
    border-color: rgba(123, 45, 59, 0.15);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--burgundy);
    opacity: 0.85;
}

.service-card-number {
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--blush-dark);
    line-height: 1;
    opacity: 0.6;
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 14px;
    line-height: 1.3;
}

.service-card-desc {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-medium);
    margin-bottom: 24px;
}

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

.service-card-list li {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--text-dark);
    padding-left: 16px;
    position: relative;
}

.service-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 1px;
    background: var(--burgundy);
}

.services-cta {
    text-align: center;
    padding: 48px;
    background: var(--blush-light);
    border: 1px solid var(--blush-dark);
}

.services-cta-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 24px;
}

/* ===== About Section ===== */
.about {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

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

.about-images {
    position: relative;
}

.about-image-main {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

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

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 3;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image-secondary img {
    width: 380px;
    height: 280px;
    object-fit: cover;
    display: block;
}

.about-accent-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--blush-dark);
    z-index: 1;
    pointer-events: none;
}

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

.about-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-medium);
    margin-bottom: 20px;
}

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

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

.about-value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--burgundy);
    border: 1px solid var(--blush-dark);
    border-radius: 50%;
}

.about-value strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.about-value span {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: var(--section-padding) 0;
    background: var(--warm-white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 72px;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(123, 45, 59, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--warm-white);
    letter-spacing: 0.05em;
    font-style: italic;
}

.gallery-item:nth-child(1) { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 5 / 9; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 5 / 7; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 7 / 11; grid-row: 2; }
.gallery-item:nth-child(6) { grid-column: 1 / 5; grid-row: 3; }

.gallery-item-tall { min-height: 400px; }
.gallery-item-wide { min-height: 200px; }

/* ===== CTA Banner ===== */
.cta-banner {
    padding: 120px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(196, 162, 101, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--warm-white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.cta-text {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 44px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.contact-text {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-medium);
    margin-bottom: 44px;
    max-width: 440px;
}

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

.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;
    flex-shrink: 0;
    color: var(--burgundy);
    border: 1px solid var(--blush-dark);
}

.contact-detail strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 4px;
}

.contact-detail a {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.6;
    transition: color 0.3s;
}

.contact-detail a:hover {
    color: var(--burgundy);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--warm-white);
    border: 1px solid var(--blush-dark);
    padding: 48px;
}

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

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

.form-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-medium);
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--cream);
    border: 1px solid var(--blush-dark);
    padding: 14px 16px;
    outline: none;
    transition: all 0.3s var(--transition-smooth);
    -webkit-appearance: none;
    border-radius: 0;
}

.form-input:focus {
    border-color: var(--burgundy);
    background: var(--warm-white);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.06);
}

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

.form-select {
    cursor: pointer;
}

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

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

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

.form-success-icon {
    color: var(--burgundy);
    margin-bottom: 8px;
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-success-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
}

.footer-logo-main {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--warm-white);
}

.footer-logo-sub {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 2px;
}

.footer-tagline {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer-nav-title,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

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

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

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

.footer-location {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== Reveal Animations ===== */
[data-reveal] {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}

@media (prefers-reduced-motion: no-preference) {
    [data-reveal] {
        opacity: 0;
        transform: translateY(24px);
    }
    
    [data-reveal].revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-container {
        gap: 40px;
    }
    
    .hero-image-accent img {
        width: 300px;
        height: 220px;
    }
    
    .services-grid {
        gap: 24px;
    }
    
    .about-layout {
        gap: 60px;
    }
    
    .about-image-secondary img {
        width: 280px;
        height: 210px;
    }
    
    .contact-layout {
        gap: 60px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-top > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image-col {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-image-secondary {
        right: 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item:nth-child(1) { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item:nth-child(2) { grid-column: 2 / 3; grid-row: auto; }
    .gallery-item:nth-child(3) { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item:nth-child(4) { grid-column: 2 / 3; grid-row: auto; }
    .gallery-item:nth-child(5) { grid-column: 1 / 2; grid-row: auto; }
    .gallery-item:nth-child(6) { grid-column: 2 / 3; grid-row: auto; }
    
    .gallery-item-tall { min-height: 280px; }
    .gallery-item-wide { min-height: 200px; }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 72px;
        --nav-height: 70px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 40px);
        padding-bottom: 80px;
    }
    
    .hero-headline {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .hero-trust {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .service-card {
        padding: 36px 28px;
    }
    
    .service-card-number {
        font-size: 2.2rem;
        top: 18px;
        right: 24px;
    }
    
    .services-cta {
        padding: 36px 24px;
    }
    
    .about-image-main img {
        height: 400px;
    }
    
    .about-image-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -60px;
        margin-left: 20px;
    }
    
    .about-image-secondary img {
        width: 100%;
        height: 220px;
    }
    
    .about-accent-frame {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        min-height: 240px !important;
    }
    
    .cta-banner {
        padding: 80px 24px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .desktop-only {
        display: none;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }
}
