/* ========================================
   Ann's Antiques — Custom Styles
   Deep Navy (#0a1628) + Warm Gold (#d4a843)
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --navy-950: #050d18;
    --navy-900: #0a1628;
    --navy-800: #0f2136;
    --navy-700: #162d47;
    --navy-600: #1e3a5c;
    --navy-500: #264673;
    
    --gold-500: #d4a843;
    --gold-400: #e0b95e;
    --gold-300: #ecc97a;
    --gold-200: #f5dfa0;
    --gold-100: #faf3d4;
    
    --cream-50: #faf8f5;
    --cream-100: #f5f0e8;
    --cream-200: #ebe3d5;
    
    --white: #ffffff;
    --text-dark: #0a1628;
    --text-light: #f5f0e8;
    --text-muted: #8a9ab5;
    
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.15);
    --shadow-gold: 0 4px 20px rgba(212, 168, 67, 0.25);
}

/* --- 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-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-50);
    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 {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-2xl);
    }
}

/* --- Geometric Background Shapes --- */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.geo-circle-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-500);
    top: -150px;
    right: -100px;
    opacity: 0.12;
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gold-500);
    opacity: 0.04;
    bottom: 20%;
    left: -80px;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--gold-500);
    opacity: 0.05;
    top: 40%;
    right: 5%;
    transform: rotate(15deg);
}

.geo-rect {
    width: 120px;
    height: 120px;
    border: 1.5px solid var(--gold-500);
    top: 60%;
    left: 3%;
    transform: rotate(45deg);
    opacity: 0.08;
}

@media (max-width: 767px) {
    .geo-shape { display: none; }
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.nav-logo-text {
    color: var(--gold-500);
}

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

.nav-link {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--cream-200);
    border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--gold-400);
    background: rgba(212, 168, 67, 0.08);
}

.nav-link--cta {
    background: var(--gold-500);
    color: var(--navy-900);
    font-weight: 600;
    margin-left: var(--space-sm);
}

.nav-link--cta:hover {
    background: var(--gold-400);
    color: var(--navy-900);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream-200);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
        padding: 90px var(--space-lg) var(--space-2xl);
        background: var(--navy-900);
        border-left: 1px solid rgba(212, 168, 67, 0.15);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-links.open {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1rem;
        padding: var(--space-md) 0;
        width: 100%;
        border-bottom: 1px solid rgba(212, 168, 67, 0.08);
    }
    
    .nav-link--cta {
        margin-left: 0;
        margin-top: var(--space-md);
        text-align: center;
        border-bottom: none;
        border-top: 1px solid rgba(212, 168, 67, 0.15);
        padding-top: var(--space-lg);
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.btn--primary {
    background: var(--gold-500);
    color: var(--navy-900);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    background: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(212, 168, 67, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--cream-200);
    border: 1.5px solid rgba(245, 243, 212, 0.3);
}

.btn--ghost:hover {
    border-color: var(--gold-500);
    color: var(--gold-400);
    background: rgba(212, 168, 67, 0.06);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: var(--space-3xl);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-md);
}

.section-eyebrow-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-500);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.section-title em {
    font-style: italic;
    color: var(--gold-500);
}

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

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

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    background: var(--navy-900);
    overflow: hidden;
    padding: var(--space-4xl) 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.1fr 1fr;
        gap: var(--space-3xl);
    }
}

/* Hero Content */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-xl);
}

.hero-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--gold-500);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: var(--space-xl);
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--gold-500);
}

.hero-title em {
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--cream-200);
    max-width: 480px;
    margin-bottom: var(--space-2xl);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(212, 168, 67, 0.15);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 168, 67, 0.2);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-stack {
    position: relative;
    padding-right: var(--space-lg);
}

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

.hero-img--main {
    width: 100%;
    aspect-ratio: 6/7.5;
}

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

.hero-img--accent {
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 50%;
    aspect-ratio: 3/3.8;
    border: 4px solid var(--navy-900);
    z-index: 2;
}

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

.hero-img-accent-badge {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    background: var(--navy-900);
    color: var(--gold-500);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    text-align: center;
}

.hero-geo-accent {
    position: absolute;
    top: -30px;
    right: 0;
    z-index: 0;
    opacity: 0.5;
}

.hero-accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-300) 50%, var(--navy-900) 100%);
}

@media (max-width: 1023px) {
    .hero {
        padding-top: var(--space-3xl);
    }
    
    .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image-stack {
        padding-right: 0;
    }
    
    .hero-img--accent {
        left: -10px;
        bottom: -20px;
    }
}

/* --- Collection Section --- */
.collection {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--cream-50);
    overflow: hidden;
}

.collection-geo {
    position: absolute;
    top: 10%;
    right: -40px;
    opacity: 0.5;
    pointer-events: none;
}

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

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-xl);
    }
}

.category-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: block;
    group: true;
}

.category-card--large {
    min-height: 420px;
}

.category-card-bg {
    position: absolute;
    inset: 0;
}

.category-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-card-bg img {
    transform: scale(1.05);
}

.category-card-content {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl);
    background: linear-gradient(to top, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.4) 60%, transparent 100%);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: background 0.3s ease;
}

.category-card:hover .category-card-content {
    background: linear-gradient(to top, rgba(10, 22, 40, 0.96) 0%, rgba(10, 22, 40, 0.5) 60%, rgba(10, 22, 40, 0.2) 100%);
}

.category-card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold-500);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.category-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.category-card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--cream-200);
}

.category-card-arrow {
    margin-top: var(--space-md);
    color: var(--gold-500);
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-arrow {
    transform: translate(4px, -4px);
}

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

@media (min-width: 768px) {
    .category-card-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

.category-card {
    min-height: 260px;
}

/* --- About Section --- */
.about {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--navy-900);
    overflow: hidden;
}

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: var(--space-4xl);
    }
}

.about-visual {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 5/6.5;
}

.about-img-float {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 65%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--navy-900);
    box-shadow: var(--shadow-lg);
}

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

.about-float-badge {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    right: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--navy-900);
    color: var(--gold-500);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
}

.about-geo-dots {
    position: absolute;
    top: -20px;
    left: -20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.about-geo-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-500);
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-500);
    border-radius: 2px;
    margin: var(--space-lg) 0;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--cream-200);
    margin-bottom: var(--space-lg);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.about-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: var(--radius-sm);
}

.about-feature-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.about-feature-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Quote Section --- */
.quote-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--navy-800);
    overflow: hidden;
}

.quote-card {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-geo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.3;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-mark {
    margin: 0 auto var(--space-lg);
    opacity: 0.5;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--cream-200);
    margin-bottom: var(--space-2xl);
}

.quote-attribution {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.quote-attribution-line {
    width: 40px;
    height: 2px;
    background: var(--gold-500);
    margin-bottom: var(--space-sm);
}

.quote-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-500);
}

.quote-context {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* --- Visit Section --- */
.visit {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--cream-100);
    overflow: hidden;
}

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

@media (min-width: 1024px) {
    .visit-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3xl);
    }
}

.visit-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-500);
    border-radius: 2px;
    margin: var(--space-lg) 0;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.visit-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-sm);
}

.visit-detail-label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 4px;
}

.visit-detail-value {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.visit-link {
    color: var(--navy-600);
    font-weight: 500;
    transition: color 0.2s;
}

.visit-link:hover {
    color: var(--gold-500);
}

.visit-cta {
    margin-top: var(--space-xl);
}

/* Map */
.visit-map {
    position: relative;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.map-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    opacity: 0.5;
    pointer-events: none;
}

/* --- Contact Section --- */
.contact {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--navy-900);
    overflow: hidden;
}

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

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4xl);
    }
}

.contact-subtitle {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--cream-200);
    max-width: 440px;
    margin-bottom: var(--space-2xl);
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.contact-direct-item {
    display: flex;
    flex-direction: column;
    padding: var(--space-lg) var(--space-xl);
    transition: background 0.2s;
}

.contact-direct-item:hover {
    background: rgba(212, 168, 67, 0.08);
}

.contact-direct-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 4px;
}

.contact-direct-value {
    font-size: 1.0625rem;
    color: var(--white);
    font-weight: 500;
}

.contact-direct-divider {
    height: 1px;
    background: rgba(212, 168, 67, 0.12);
    margin: 0 var(--space-xl);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form-bg {
    position: absolute;
    inset: 0;
    background: var(--navy-800);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: var(--radius-lg);
}

.contact-form {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl);
}

@media (min-width: 768px) {
    .contact-form {
        padding: var(--space-3xl);
    }
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-2xl);
}

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

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 0.8125rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(212, 168, 67, 0.2);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

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

.form-input:focus {
    border-color: var(--gold-500);
    background: rgba(212, 168, 67, 0.06);
}

.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 12 12' fill='none'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%23d4a843' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select option {
    background: var(--navy-800);
    color: var(--white);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-radius: var(--radius-sm);
    color: var(--gold-400);
    font-size: 0.9375rem;
    font-weight: 500;
    margin-top: var(--space-lg);
}

/* --- Footer --- */
.footer {
    background: var(--navy-950);
    padding: var(--space-3xl) 0 var(--space-lg);
    border-top: 1px solid rgba(212, 168, 67, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(212, 168, 67, 0.08);
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 2fr;
        gap: var(--space-3xl);
    }
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-logo-text {
    color: var(--gold-500);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

@media (max-width: 767px) {
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-link-col h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-md);
}

.footer-link {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-muted);
    padding: var(--space-xs) 0;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--gold-400);
}

.footer-link--static {
    cursor: default;
}

.footer-link--static:hover {
    color: var(--text-muted);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

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

.footer-geo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .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.revealed {
        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; }
}

/* --- Focus styles for accessibility --- */
:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 2px;
}

/* --- 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;
    }
}
