/* ============================================
   Russ Arbon | Raymond James — Style System
   Deep Navy + Warm Gold Editorial Design
   ============================================ */

/* ── Custom Properties ── */
:root {
    --color-navy: #0A1F3F;
    --color-navy-light: #132D54;
    --color-navy-dark: #061529;
    --color-gold: #C8A44E;
    --color-gold-light: #D4B76A;
    --color-gold-dark: #A8872E;
    --color-cream: #FAF8F4;
    --color-warm-white: #F5F0E8;
    --color-text: #1A1A1A;
    --color-text-light: #4A4A4A;
    --color-text-muted: #6B6B6B;
    --color-border: #E0D8C8;
    --color-border-light: #EDE8DD;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: '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;
    --space-5xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    --shadow-sm: 0 1px 3px rgba(10, 31, 63, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 31, 63, 0.1);
    --shadow-lg: 0 8px 32px rgba(10, 31, 63, 0.12);
    --shadow-xl: 0 16px 48px rgba(10, 31, 63, 0.15);
    
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-slower: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

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

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

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

input, select, textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
}

/* ── Skip Link ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-navy);
    color: white;
    border-radius: var(--radius-md);
    z-index: 10000;
    font-weight: 500;
    transition: top var(--transition-fast);
}

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

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

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

/* ── Header ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition-slow), box-shadow var(--transition-slow);
}

.site-header.scrolled {
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

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

/* ── Brand ── */
.brand-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.brand-mark {
    width: 44px;
    height: 44px;
    background: var(--color-gold);
    color: var(--color-navy);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-base), background var(--transition-base);
}

.brand-logo:hover .brand-mark {
    transform: scale(1.05);
    background: var(--color-gold-light);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
}

.brand-sub {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.header:not(.scrolled) .brand-name {
    color: white;
}

.header:not(.scrolled) .brand-sub {
    color: rgba(255, 255, 255, 0.7);
}

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

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    transition: transform var(--transition-base), opacity var(--transition-base);
    display: block;
}

.header:not(.scrolled) .hamburger {
    background: white;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-navy);
    transition: transform var(--transition-base);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.header:not(.scrolled) .hamburger::before,
.header:not(.scrolled) .hamburger::after {
    background: white;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

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

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

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--color-cream);
    padding: calc(80px + var(--space-xl)) var(--space-2xl) var(--space-2xl);
    transform: translateX(100%);
    transition: transform var(--transition-slower);
    box-shadow: var(--shadow-xl);
    z-index: 999;
}

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

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.nav-link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-navy);
    padding: var(--space-sm) 0;
    display: block;
    transition: color var(--transition-fast), padding-left var(--transition-base);
    border-bottom: 1px solid var(--color-border-light);
}

.nav-link:hover {
    color: var(--color-gold-dark);
    padding-left: var(--space-sm);
}

.nav-link.nav-cta {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-bottom: none;
    background: var(--color-navy);
    color: white;
    text-align: center;
    border-radius: var(--radius-md);
    border: none;
}

.nav-link.nav-cta:hover {
    background: var(--color-navy-light);
    padding-left: 0;
}

@media (min-width: 1024px) {
    .main-nav {
        position: static;
        transform: none;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
    
    .nav-list {
        flex-direction: row;
        align-items: center;
        gap: var(--space-xl);
    }
    
    .nav-link {
        font-size: 0.875rem;
        font-family: var(--font-sans);
        font-weight: 500;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        border-bottom: 2px solid transparent;
        padding: var(--space-sm) 0;
    }
    
    .nav-link:hover {
        color: var(--color-gold-dark);
        border-bottom-color: var(--color-gold);
        padding-left: 0;
    }
    
    .nav-link.nav-cta {
        margin-top: 0;
        padding-top: 0;
        background: var(--color-gold);
        color: var(--color-navy);
        border-radius: var(--radius-sm);
        padding: var(--space-sm) var(--space-lg);
        border-bottom: none;
    }
    
    .nav-link.nav-cta:hover {
        background: var(--color-gold-light);
    }
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    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(6, 21, 41, 0.82) 0%,
        rgba(10, 31, 63, 0.70) 50%,
        rgba(19, 45, 84, 0.60) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: calc(80px + var(--space-3xl)) var(--space-xl) var(--space-3xl);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-content {
        margin-left: 0;
        padding: calc(80px + var(--space-4xl)) var(--space-3xl) var(--space-4xl);
    }
}

@media (min-width: 1200px) {
    .hero-content {
        margin-left: 8%;
    }
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.eyebrow-line {
    width: 48px;
    height: 2px;
    background: var(--color-gold);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: white;
    margin-bottom: var(--space-2xl);
}

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

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin-bottom: var(--space-2xl);
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.trust-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-navy);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

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

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

.btn-large {
    padding: var(--space-lg) var(--space-3xl);
    font-size: 1rem;
}

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

/* ── Section Labels ── */
.section-label {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-dark);
    margin-bottom: var(--space-lg);
}

.label-line {
    width: 32px;
    height: 2px;
    background: var(--color-gold);
    flex-shrink: 0;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-navy);
    margin-bottom: var(--space-lg);
}

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

.section-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 560px;
}

/* ── Intro / About ── */
.intro {
    padding: var(--space-5xl) 0;
    background: var(--color-cream);
}

.intro-grid {
    display: grid;
    gap: var(--space-3xl);
    align-items: center;
}

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

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

.intro-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background: var(--color-gold);
    border-radius: var(--radius-md);
    z-index: -1;
}

@media (min-width: 768px) {
    .image-accent {
        width: 160px;
        height: 160px;
        bottom: -24px;
        right: -24px;
    }
}

.intro-content .section-heading {
    margin-bottom: var(--space-xl);
}

.intro-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.intro-content p em {
    font-style: italic;
    color: var(--color-navy);
}

.intro-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    flex: 1;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
}

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

.stat-divider {
    width: 1px;
    background: var(--color-border);
    align-self: stretch;
    margin: var(--space-xs) 0;
}

/* ── Services ── */
.services {
    padding: var(--space-5xl) 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-header .section-label {
    justify-content: center;
}

.section-header .section-sub {
    margin: 0 auto;
}

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

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

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

.service-card {
    padding: var(--space-2xl);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

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

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

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--color-navy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
    transition: background var(--transition-base);
}

.service-card:hover .card-icon {
    background: var(--color-navy-light);
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.3125rem;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--space-md);
}

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

.card-body p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* ── Approach ── */
.approach {
    padding: var(--space-5xl) 0;
    background: var(--color-navy);
    color: white;
}

.approach-layout {
    display: grid;
    gap: var(--space-4xl);
    align-items: start;
}

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

.approach .section-label {
    color: var(--color-gold);
}

.approach .section-heading {
    color: white;
}

.approach .section-heading em {
    color: var(--color-gold);
}

.approach-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-2xl);
}

.steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.step {
    display: flex;
    gap: var(--space-xl);
}

.step-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-gold);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.7;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.step-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

.approach-image {
    position: relative;
}

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

.approach-quote {
    position: absolute;
    bottom: -24px;
    left: -12px;
    right: -12px;
    background: var(--color-gold);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .approach-quote {
        left: -24px;
        right: auto;
        width: min(320px, 80%);
    }
}

.approach-quote svg {
    margin-bottom: var(--space-md);
}

.approach-quote blockquote {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-navy);
    margin-bottom: var(--space-md);
}

.approach-quote cite {
    font-style: normal;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-navy-dark);
    letter-spacing: 0.04em;
}

/* ── Community ── */
.community {
    padding: var(--space-5xl) 0;
    background: var(--color-cream);
}

.community-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.community .section-label {
    justify-content: center;
}

.community .section-heading {
    margin-bottom: var(--space-xl);
}

.community-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.community-text em {
    font-style: italic;
    color: var(--color-navy);
}

.community-map {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: var(--space-3xl);
    box-shadow: var(--shadow-lg);
}

.community-map img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: var(--space-2xl);
    background: linear-gradient(90deg, rgba(10, 31, 63, 0.6) 0%, transparent 60%);
}

.map-pin {
    flex-shrink: 0;
}

.map-label {
    margin-left: var(--space-md);
    color: white;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.map-label strong {
    display: block;
    font-size: 1.0625rem;
}

/* ── CTA ── */
.cta {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 21, 41, 0.88) 0%,
        rgba(10, 31, 63, 0.78) 100%
    );
}

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

.cta-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: white;
    margin-bottom: var(--space-xl);
}

.cta-heading em {
    font-style: italic;
    color: var(--color-gold);
}

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

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

/* ── Contact ── */
.contact {
    padding: var(--space-5xl) 0;
    background: white;
}

.contact-grid {
    display: grid;
    gap: var(--space-4xl);
}

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

.contact-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-navy);
    margin-bottom: var(--space-lg);
}

.contact-heading em {
    font-style: italic;
    color: var(--color-gold-dark);
}

.contact-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--space-2xl);
}

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

.contact-item {
    display: flex;
    gap: var(--space-lg);
}

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

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.contact-item p,
.contact-item a {
    font-size: 1rem;
    color: var(--color-navy);
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--color-gold-dark);
}

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

.contact-note svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

/* ── Form ── */
.contact-form-wrap {
    background: var(--color-cream);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

@media (min-width: 480px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    background: white;
    color: var(--color-text);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(200, 164, 78, 0.15);
}

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

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

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

.success-icon {
    margin: 0 auto var(--space-lg);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: var(--space-md);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-form.hidden {
    display: none;
}

/* ── Footer ── */
.site-footer {
    background: var(--color-navy-dark);
    color: white;
    padding: var(--space-4xl) 0 var(--space-xl);
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-mark {
    width: 40px;
    height: 40px;
    background: var(--color-gold);
    color: var(--color-navy);
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.footer-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-sub {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.footer-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
}

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

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

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

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

.footer-col address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col address a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col address a:hover {
    color: var(--color-gold);
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-xl);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
    font-size: 0.75rem;
    line-height: 1.5;
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--transition-slower), transform var(--transition-slower);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
.reveal-delay-6 { transition-delay: 600ms; }

/* ── Mobile overlay backdrop ── */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.nav-backdrop.active {
    opacity: 1;
    pointer-events: all;
}
