/* =========================================================
   AVIDITY CAPITAL — Main Stylesheet (Brand Refresh)
   Brand Color Palette:
     Navy Primary:    #0D3B5E  (exact brand — CMYK 97/75/36/23)
     Navy Dark:       #071E33  (darkest navy — footer/hero)
     Navy Mid:        #1A527A  (mid navy — hover/secondary)
     Gold:            #C9A84C  (warm gold — primary accent)
     Gold Light:      #E8C97A  (lighter gold — hover/light accents)
     Off-White:       #F8F6F1  (warm off-white — page bg)
     White:           #FFFFFF  (pure white — card bg)
     Light Gray:      #EEF0F4  (section bg)
     Body Text:       #0A1628  (near-black for max readability)
     Muted Text:      #4A5568  (readable gray for body copy)
     Light Text:      #6B7280  (secondary/caption text)
   ========================================================= */

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

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 400;
    color: #0A1628;
    background-color: #F8F6F1;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

ul {
    list-style: none;
}

/* === TYPOGRAPHY === */
.section-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 0.75rem;
}

.section-eyebrow.light {
    color: #E8C97A;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: #0D3B5E;
    margin-bottom: 1.5rem;
}

.section-title.light {
    color: #F8F6F1;
}

.section-title em {
    font-style: italic;
    color: #C9A84C;
}

.section-title.light em {
    color: #E8C97A;
}

.section-intro {
    font-size: 1.05rem;
    color: #4A5568;
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.body-text {
    font-size: 1rem;
    color: #4A5568;
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.body-text.light {
    color: rgba(248, 246, 241, 0.88);
}

/* === LAYOUT === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.centered .section-intro {
    margin: 0 auto 1rem;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #0D3B5E;
    color: #F8F6F1;
}

.btn-primary:hover {
    background: #1A527A;
    color: #F8F6F1;
}

.btn-ghost {
    background: transparent;
    color: #F8F6F1;
    border: 1.5px solid rgba(248, 246, 241, 0.6);
}

.btn-ghost:hover {
    background: rgba(248, 246, 241, 0.1);
    border-color: #F8F6F1;
    color: #F8F6F1;
}

.btn-outline {
    background: transparent;
    color: #0D3B5E;
    border: 1.5px solid #0D3B5E;
}

.btn-outline:hover {
    background: #0D3B5E;
    color: #F8F6F1;
}

.btn-land {
    background: #C9A84C;
    color: #071E33;
}

.btn-land:hover {
    background: #b5923c;
    color: #071E33;
}

.btn-journey {
    background: #1A527A;
    color: #F8F6F1;
}

.btn-journey:hover {
    background: #0D3B5E;
    color: #F8F6F1;
}

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

/* ==========================================
   NAVIGATION
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

/* logo swap — remove old text-based rule */
.site-header.scrolled .nav-logo-white {
    display: none;
}

.site-header.scrolled .nav-logo-blue {
    display: block;
}

.site-header.scrolled .nav-links a {
    color: #0A1628;
}

.site-header.scrolled .nav-links a:hover {
    color: #0D3B5E;
}

.site-header.scrolled .nav-links .nav-cta {
    background: #0D3B5E;
    color: #F8F6F1;
    border-color: #0D3B5E;
}

.site-header.scrolled .nav-toggle span {
    background: #0D3B5E;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 56px;
    width: auto;
    display: block;
    transition: height 0.3s ease, opacity 0.3s ease;
}

/* Shrink to standard size once the white bar appears on scroll */
.site-header.scrolled .nav-logo-img {
    height: 36px;
}

/* Blue logo hidden by default (over photo); shown when scrolled */
.nav-logo-blue {
    display: none;
}

.nav-logo-white {
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(248, 246, 241, 0.9);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #E8C97A;
}

.site-header.scrolled .nav-links a:hover {
    color: #C9A84C;
}

.nav-links .nav-cta {
    background: rgba(201, 168, 76, 0.9);
    color: #071E33;
    padding: 0.55rem 1.25rem;
    border-radius: 2px;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.nav-links .nav-cta:hover {
    background: #C9A84C;
    color: #071E33;
}

.site-header.scrolled .nav-links .nav-cta:hover {
    color: #071E33;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #F8F6F1;
    transition: background 0.3s;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
            rgba(7, 30, 51, 0.85) 0%,
        rgba(7, 30, 51, 0.65) 55%,
        rgba(7, 30, 51, 0.25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
    width: 100%;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #E8C97A;
    margin-bottom: 1rem;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.hero-headline em {
    font-style: italic;
    color: #E8C97A;
    font-weight: 400;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

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

/* ==========================================
   TRUST BAR
   ========================================== */
.trust-bar {
    background: #0D3B5E;
    padding: 1.5rem 0;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 2rem;
    color: rgba(248, 246, 241, 0.9);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.trust-item i {
    color: #C9A84C;
    font-size: 0.95rem;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(248, 246, 241, 0.2);
}

/* ==========================================
   ABOUT
   ========================================== */
.about {
    background: #FFFFFF;
}

.about-content--full {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.about-content--full .about-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    text-align: left;
}

.about-pillars {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pillar-icon {
    width: 44px;
    height: 44px;
    background: #EEF0F4;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0D3B5E;
    font-size: 1rem;
    flex-shrink: 0;
}

.pillar h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0D3B5E;
    margin-bottom: 0.25rem;
}

.pillar p {
    font-size: 0.9rem;
    color: #4A5568;
    line-height: 1.65;
}

/* ==========================================
   SERVICES
   ========================================== */
.services {
    background: #EEF0F4;
}

.services .section-title {
    color: #0D3B5E;
}

.services-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-card {
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card--land {
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card--journey {
    background: #0D3B5E;
    box-shadow: 0 4px 20px rgba(13,59,94,0.25);
}

.service-card-inner {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.service-card-top {
    flex: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.service-card--land .service-icon {
    background: #EEF0F4;
    color: #0D3B5E;
}

.service-card--journey .service-icon {
    background: rgba(201, 168, 76, 0.2);
    color: #C9A84C;
}

.service-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.service-card--land .service-tag {
    color: #C9A84C;
}

.service-card--journey .service-tag {
    color: rgba(232, 201, 122, 0.75);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.service-card--land h3 {
    color: #0D3B5E;
}

.service-card--journey h3 {
    color: #F8F6F1;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.75;
}

.service-card--land .service-desc {
    color: #4A5568;
}

.service-card--journey .service-desc {
    color: rgba(248, 246, 241, 0.82);
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
}

.service-card--land .service-features li {
    color: #2D3748;
}

.service-card--journey .service-features li {
    color: rgba(248, 246, 241, 0.88);
}

.service-features li i {
    font-size: 0.65rem;
    flex-shrink: 0;
}

.service-card--land .service-features li i {
    color: #C9A84C;
}

.service-card--journey .service-features li i {
    color: #C9A84C;
}

/* ==========================================
   LEGACY LAND
   ========================================== */
.legacy {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

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

.legacy-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.legacy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 30, 51, 0.96) 0%, rgba(7, 30, 51, 0.82) 60%, rgba(7, 30, 51, 0.92) 100%);
}

.legacy-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.legacy-text .btn {
    margin-top: 1rem;
}

.legacy-process {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 4px;
    padding: 2.5rem;
    backdrop-filter: blur(4px);
}

.process-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #E8C97A;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.process-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: rgba(201, 168, 76, 0.5);
    line-height: 1;
    width: 42px;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.35rem;
}

.step-content p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
}

/* ==========================================
   AVIDITY JOURNEY
   ========================================== */
.journey-callout {
    background: #F8F6F1;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.journey-pillars-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.75rem 0 2rem;
}

.journey-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 1rem;
    background: #EEF0F4;
    color: #0D3B5E;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    border: 1px solid transparent;
}

.journey-pill:hover {
    background: #0D3B5E;
    color: #F8F6F1;
}

.journey-pill i {
    font-size: 0.7rem;
    color: #C9A84C;
}

.journey-pill:hover i {
    color: #E8C97A;
}

.journey-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.journey-card-stack {
    position: relative;
    width: 100%;
    max-width: 340px;
    height: 340px;
    margin: 0 auto;
}

.jcard {
    position: absolute;
    border-radius: 6px;
    padding: 1.75rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
    width: 85%;
}

.jcard i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.jcard p {
    font-size: 0.88rem;
    line-height: 1.5;
    font-weight: 500;
}

.jcard-1 {
    top: 0;
    left: 0;
    background: #0D3B5E;
    z-index: 3;
    transform: rotate(-2deg);
}

.jcard-1 i { color: #C9A84C; }
.jcard-1 p { color: rgba(248,246,241,0.92); }

.jcard-2 {
    top: 80px;
    left: 40px;
    background: #1A527A;
    z-index: 2;
    transform: rotate(1.5deg);
}

.jcard-2 i { color: #E8C97A; }
.jcard-2 p { color: rgba(248,246,241,0.9); }

.jcard-3 {
    top: 165px;
    left: 20px;
    background: #C9A84C;
    z-index: 1;
    transform: rotate(-1deg);
}

.jcard-3 i { color: #071E33; }
.jcard-3 p { color: rgba(7, 30, 51, 0.9); }

.journey-card-stack:hover .jcard-1 { transform: rotate(-5deg) translate(-5px, -5px); }
.journey-card-stack:hover .jcard-2 { transform: rotate(3deg) translate(8px, 0); }
.journey-card-stack:hover .jcard-3 { transform: rotate(-2deg) translate(3px, 8px); }

.journey-badge {
    background: #0D3B5E;
    color: #F8F6F1;
    padding: 1.25rem 2rem;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(13,59,94,0.3);
}

.journey-badge span {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(248, 246, 241, 0.6);
}

.journey-badge strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #C9A84C;
}

/* ==========================================
   VALUES
   ========================================== */
.values {
    background: #0D3B5E;
}

.values .section-title {
    color: #F8F6F1;
}

.values .section-eyebrow {
    color: #E8C97A;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    padding: 2rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(201, 168, 76, 0.45);
}

.value-icon {
    width: 46px;
    height: 46px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A84C;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.value-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #F8F6F1;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.88rem;
    color: rgba(248, 246, 241, 0.72);
    line-height: 1.75;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact {
    background: #FFFFFF;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.contact-details {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #4A5568;
}

.contact-detail i {
    color: #C9A84C;
    width: 16px;
}

.contact-detail a:hover {
    color: #0D3B5E;
    text-decoration: underline;
}

.contact-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-form-wrap {
    background: #F8F6F1;
    border-radius: 4px;
    padding: 2.5rem;
    border: 1px solid #E2E8F0;
}

.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #0D3B5E;
    margin-bottom: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0D3B5E;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #CBD5E0;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #0A1628;
    background: #FFFFFF;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #0D3B5E;
    box-shadow: 0 0 0 3px rgba(13, 59, 94, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A0AEC0;
}

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

.form-disclaimer {
    font-size: 0.72rem;
    color: #718096;
    margin-top: 1rem;
    line-height: 1.6;
    text-align: center;
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    background: #EBF4FF;
    border: 1px solid #0D3B5E;
    border-radius: 2px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    color: #0D3B5E;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.form-success i {
    font-size: 1.25rem;
    color: #C9A84C;
    flex-shrink: 0;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: #0D3B5E;
    color: #F8F6F1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 2fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(248, 246, 241, 0.55);
    margin-bottom: 0.5rem;
}

.footer-location {
    font-size: 0.8rem;
    color: rgba(248, 246, 241, 0.45);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-location i {
    color: #C9A84C;
    font-size: 0.7rem;
}

.footer-links h5 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 1.25rem;
}

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

.footer-links a,
.footer-modal-trigger {
    font-size: 0.88rem;
    color: rgba(248, 246, 241, 0.65);
    transition: color 0.2s;
}

.footer-modal-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.footer-links a:hover,
.footer-modal-trigger:hover {
    color: #F8F6F1;
}

/* About modal — list & quote */
.about-modal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding-left: 0.25rem;
}

.about-modal-list li {
    font-size: 0.88rem;
    color: #4A5568;
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
}

.about-modal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C9A84C;
}

.about-modal-quote {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-left: 3px solid #C9A84C;
    background: #F8F6F1;
    border-radius: 0 4px 4px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: #0D3B5E;
    line-height: 1.65;
}

/* ==========================================
   LEGACY LAND ADVISORY MODAL
   ========================================== */

/* Wider panel for long-form content */
.modal-panel--wide {
    max-width: 820px;
}

/* Hero intro block */
.lla-hero-block p + p {
    margin-top: 0.85rem;
}

.lla-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #0D3B5E;
    margin-bottom: 1rem !important;
    font-weight: 500;
}

.lla-emphasis {
    font-weight: 600;
    color: #0D3B5E;
    border-left: 3px solid #C9A84C;
    padding-left: 1rem;
    margin-top: 1.25rem !important;
}

.lla-list-label {
    font-size: 0.88rem;
    color: #4A5568;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Four numbered strategy steps */
.lla-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
}

.lla-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: #F8F6F1;
    border-radius: 4px;
    padding: 1.1rem 1.25rem;
    border: 1px solid #EEF0F4;
}

.lla-step-number {
    width: 34px;
    height: 34px;
    background: #0D3B5E;
    color: #F8F6F1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.lla-step-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0D3B5E;
    margin-bottom: 0.3rem;
}

.lla-step-content p {
    font-size: 0.86rem;
    color: #4A5568;
    line-height: 1.7;
}

/* CTA block at bottom */
.lla-cta-block .about-modal-quote {
    margin-bottom: 1.5rem;
}

.lla-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 600px) {
    .lla-cta-buttons {
        flex-direction: column;
    }

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

.footer-disclaimer h5 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C9A84C;
    margin-bottom: 1.25rem;
}

.footer-disclaimer p {
    font-size: 0.75rem;
    color: rgba(248, 246, 241, 0.38);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.disclosure-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.55rem 1.1rem;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 2px;
    color: #C9A84C;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.disclosure-trigger:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: #C9A84C;
    color: #E8C97A;
}

/* ==========================================
   DISCLOSURES MODAL
   ========================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(7, 30, 51, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal-panel {
    background: #FFFFFF;
    border-radius: 6px;
    width: 100%;
    max-width: 720px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 80px rgba(7, 30, 51, 0.35);
    transform: translateY(16px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal-backdrop.open .modal-panel {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem 2.25rem 1.5rem;
    border-bottom: 1px solid #EEF0F4;
    flex-shrink: 0;
}

.modal-header-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.modal-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C9A84C;
}

.modal-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #0D3B5E;
    line-height: 1.1;
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.modal-close:hover {
    background: #EEF0F4;
    color: #0D3B5E;
}

.modal-body {
    overflow-y: auto;
    padding: 1.75rem 2.25rem;
    flex: 1;
    scroll-behavior: smooth;
}

.modal-body::-webkit-scrollbar {
    width: 5px;
}

.modal-body::-webkit-scrollbar-track {
    background: #F8F6F1;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #CBD5E0;
    border-radius: 10px;
}

.disclosure-block {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #EEF0F4;
}

.disclosure-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.disclosure-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0D3B5E;
    margin-bottom: 0.6rem;
}

.disclosure-block p {
    font-size: 0.88rem;
    color: #4A5568;
    line-height: 1.85;
}

.disclosure-block p a {
    color: #0D3B5E;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.disclosure-block p a:hover {
    color: #C9A84C;
}

.modal-footer {
    padding: 1.25rem 2.25rem;
    border-top: 1px solid #EEF0F4;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
    background: #F8F6F1;
}

/* lock body scroll when modal open */
body.modal-open {
    overflow: hidden;
}

@media (max-width: 600px) {
    .modal-panel {
        max-height: 94vh;
        border-radius: 4px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 1.25rem 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(248, 246, 241, 0.3);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: rgba(248, 246, 241, 0.3);
}

.footer-bottom-links a {
    color: rgba(248, 246, 241, 0.45);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #C9A84C;
}

/* Button-style link in footer bottom bar (Terms of Service trigger) */
.footer-bottom-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.75rem;
    color: rgba(248, 246, 241, 0.45);
    padding: 0;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-bottom-trigger:hover {
    color: #C9A84C;
}

/* Contact block inside Terms of Service modal */
.tos-contact {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.85rem 1.25rem;
    background: #EEF0F4;
    border-left: 3px solid #C9A84C;
    border-radius: 0 4px 4px 0;
    font-size: 0.9rem;
    color: #0D3B5E;
    line-height: 1.7;
}

.tos-contact a {
    color: #0D3B5E;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.tos-contact a:hover {
    color: #C9A84C;
}

/* Privacy Policy sub-headings inside modal */
.privacy-subhead {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0D3B5E;
    margin: 1.25rem 0 0.4rem;
}

/* Inline qualifier label e.g. "(For Advisory Clients)" */
.privacy-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #6B7280;
    margin-left: 0.35rem;
}

/* ==========================================
   LAND INQUIRY MODAL FORM
   ========================================== */
.land-inquiry-intro {
    font-size: 0.95rem;
    color: #4A5568;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.land-inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.land-inquiry-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0;
}

.land-inquiry-form label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0D3B5E;
}

.land-inquiry-form .req {
    color: #C9A84C;
}

.land-inquiry-form input,
.land-inquiry-form textarea {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid #D1D5DB;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #1A1A2E;
    background: #FAFAFA;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.land-inquiry-form input:focus,
.land-inquiry-form textarea:focus,
.land-inquiry-form select:focus {
    outline: none;
    border-color: #0D3B5E;
    box-shadow: 0 0 0 3px rgba(13, 59, 94, 0.1);
    background: #fff;
}

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

/* Custom select wrapper */
.select-wrap {
    position: relative;
}

.select-wrap select {
    width: 100%;
    padding: 0.65rem 2.25rem 0.65rem 0.85rem;
    border: 1.5px solid #D1D5DB;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #1A1A2E;
    background: #FAFAFA;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.select-wrap select:invalid,
.select-wrap select option[value=""] {
    color: #9CA3AF;
}

.select-icon {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: #6B7280;
    pointer-events: none;
}

.land-inquiry-actions {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.btn-ghost-dark {
    background: transparent;
    border: 1.5px solid #D1D5DB;
    color: #6B7280;
    padding: 0.7rem 1.5rem;
    border-radius: 3px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

.btn-ghost-dark:hover {
    border-color: #0D3B5E;
    color: #0D3B5E;
}

.land-inquiry-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.85rem 1.1rem;
    background: #EEF0F4;
    border-left: 3px solid #C9A84C;
    border-radius: 0 4px 4px 0;
    color: #0D3B5E;
    font-size: 0.9rem;
}

.land-inquiry-success.visible {
    display: flex;
}

.land-inquiry-success i {
    font-size: 1.3rem;
    color: #C9A84C;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .land-inquiry-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1100px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 900px) {
    .legacy-content,
    .journey-grid,
    .contact-grid,
    .services-cards {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .journey-visual {
        order: -1;
    }

    .journey-card-stack {
        height: 280px;
    }

    .hero-headline {
        font-size: clamp(2.4rem, 7vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(7, 30, 51, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        color: rgba(248, 246, 241, 0.88);
    }

    .nav-links a:hover {
        color: #C9A84C;
    }

    .nav-links .nav-cta {
        background: #C9A84C;
        color: #071E33;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .trust-items {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
        padding: 0 1.5rem;
    }

    .trust-divider {
        display: none;
    }

    .hero-content {
        padding-bottom: 4rem;
    }

    .section {
        padding: 4rem 0;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .contact-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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



/* ==========================================
   VALUES
   ========================================== */
.values {
    background: #071E33;
}


/* ==========================================
   RESPONSIVE — New Components
   ========================================== */
@media (max-width: 900px) {

    .legacy-content {
        grid-template-columns: 1fr !important;
    }
}
