:root {
    --ocean-deep: #0B3D5B;
    --ocean-mid: #1A6B8A;
    --ocean-light: #3DA5C9;
    --sand: #F5E6D3;
    --sand-light: #FFF8F0;
    --sand-warm: #FAF1E3;
    --sunset-gold: #E8A838;
    --sunset-amber: #C8861E;
    --text-dark: #1F2937;
    --text-mid: #4B5563;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --border-soft: rgba(11, 61, 91, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    line-height: 1.15;
    color: var(--ocean-deep);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.section-padding { padding: 7rem 0; }
.bg-sand { background-color: var(--sand-light); }

/* ---------- Glass Nav ---------- */
.glass-nav {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 1100px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    z-index: 1000;
    padding: 0.7rem 1.75rem;
    box-shadow: 0 4px 24px rgba(11, 61, 91, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.55rem;
    font-weight: 800;
    text-decoration: none;
}

.logo span {
    color: var(--sunset-gold);
    margin-left: 2px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--ocean-mid); }

.cta-pulse {
    background: var(--ocean-deep);
    color: var(--white) !important;
    padding: 0.65rem 1.4rem;
    border-radius: 25px;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    transition: background 0.2s;
}
.cta-pulse:hover { background: var(--ocean-mid); color: var(--white) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 22px; height: 2px;
    background: var(--ocean-deep);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 61, 91, 0.35) 0%, rgba(11, 61, 91, 0.75) 100%);
}

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

.hero-badge {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 11px;
    color: var(--sunset-gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero h1 span {
    display: block;
    color: var(--sunset-gold);
    font-style: italic;
    font-weight: 500;
}

.hero p {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    opacity: 0.95;
    line-height: 1.55;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary, .btn-secondary {
    padding: 1.05rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    font-size: 1rem;
}

.btn-primary {
    background: var(--sunset-gold);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(232, 168, 56, 0.35);
}
.btn-primary:hover {
    background: var(--sunset-amber);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232, 168, 56, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    backdrop-filter: blur(4px);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.7);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    opacity: 0.92;
}
.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.hero-trust i { width: 16px; height: 16px; color: var(--sunset-gold); }

/* ---------- Trust strip ---------- */
.trust-strip {
    background: var(--ocean-deep);
    color: var(--white);
    padding: 1.75rem 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    text-align: center;
    font-size: 0.95rem;
}
.trust-grid strong { color: var(--sunset-gold); display: block; font-weight: 700; margin-bottom: 0.15rem; }

/* ---------- Section heading shared ---------- */
.eyebrow {
    color: var(--ocean-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    display: block;
    margin-bottom: 0.75rem;
}
.eyebrow-light { color: var(--sunset-gold); }

.section-title {
    font-size: clamp(2rem, 4vw, 2.85rem);
    margin: 0 auto 1rem;
    max-width: 760px;
}

.section-subtitle {
    max-width: 640px;
    margin: 0 auto 1.5rem;
    color: var(--text-mid);
    font-size: 1.05rem;
}

/* ---------- What's inside / Guide TOC ---------- */
.guide-toc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-top: 3.5rem;
    text-align: left;
}

.toc-item {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 1px 3px rgba(11, 61, 91, 0.04);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}
.toc-item.show { opacity: 1; transform: none; }

.toc-num {
    color: var(--sunset-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.toc-item h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.toc-item p { color: var(--text-mid); font-size: 0.96rem; line-height: 1.6; }

/* ---------- Story / two-col ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s, transform 0.6s;
}
.text-content.show { opacity: 1; transform: none; }

.text-content h2 {
    font-size: clamp(1.85rem, 3vw, 2.4rem);
    margin: 0.75rem 0 1.25rem;
}
.body-text { color: var(--text-mid); margin-bottom: 1.25rem; font-size: 1.02rem; }

.accent-block {
    background: var(--white);
    border-left: 4px solid var(--sunset-gold);
    padding: 1.75rem 1.75rem;
    margin-top: 1.75rem;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 12px rgba(11, 61, 91, 0.04);
}
.accent-block p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--ocean-deep);
    margin-bottom: 0.6rem;
}
.accent-block cite {
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.image-feature img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(11, 61, 91, 0.12);
}

/* ---------- Method grid ---------- */
.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
    text-align: left;
}

.step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 1px 3px rgba(11, 61, 91, 0.04);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}
.step-card.show { opacity: 1; transform: none; }

.step-num {
    width: 56px;
    height: 56px;
    background: var(--ocean-deep);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-card:nth-child(2) .step-num { background: var(--ocean-light); }
.step-card:nth-child(3) .step-num { background: var(--sunset-gold); }

.step-card h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.step-card p { color: var(--text-mid); font-size: 0.98rem; }

/* ---------- Team grid ---------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
}

.team-card {
    background: var(--white);
    padding: 2rem 2rem 2.25rem;
    border-radius: 18px;
    text-align: center;
    border: 1px solid var(--border-soft);
    box-shadow: 0 1px 3px rgba(11, 61, 91, 0.04);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}
.team-card.show { opacity: 1; transform: none; }

.team-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(11, 61, 91, 0.15);
    border: 4px solid var(--white);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card h3 { font-size: 1.4rem; margin-bottom: 0.25rem; }
.team-role {
    color: var(--ocean-light);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
}
.team-card p { color: var(--text-mid); font-size: 0.96rem; }
.team-card p + p { margin-top: 1rem; }

/* ---------- Neighborhoods ---------- */
.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.neighborhood-card {
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-soft);
    box-shadow: 0 2px 12px rgba(11, 61, 91, 0.06);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}
.neighborhood-card.show { opacity: 1; transform: none; }

.card-img { height: 280px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.neighborhood-card:hover .card-img img { transform: scale(1.04); }

.card-body { padding: 1.75rem; }
.card-body h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.card-tag {
    color: var(--ocean-light);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.85rem;
}
.card-body p { color: var(--text-mid); font-size: 0.97rem; }

/* ---------- FAQ ---------- */
.faq-container { max-width: 820px; }

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s, transform 0.6s, box-shadow 0.2s;
}
.faq-item.show { opacity: 1; transform: none; }
.faq-item[open] { box-shadow: 0 4px 16px rgba(11, 61, 91, 0.08); }

.faq-item summary {
    cursor: pointer;
    padding: 1.25rem 1.75rem;
    font-weight: 700;
    color: var(--ocean-deep);
    font-size: 1.05rem;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--sunset-gold);
    transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '\2212'; }

.faq-item p {
    padding: 0 1.75rem 1.5rem;
    color: var(--text-mid);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* ---------- CTA / form ---------- */
.cta-section {
    padding: 6.5rem 1.5rem 7rem;
    background: var(--ocean-deep);
    background-image: linear-gradient(135deg, var(--ocean-deep) 0%, #0a3550 100%);
    color: var(--white);
    text-align: center;
}

.glass-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 3rem 2.5rem;
}

.glass-form-container h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--white);
    margin: 0.75rem 0 0.75rem;
}
.glass-form-container > p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.signup-form { text-align: left; }
.form-row { display: flex; gap: 1rem; margin-bottom: 1rem; }

.signup-form input,
.signup-form select {
    flex: 1;
    padding: 1rem 1.1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    width: 100%;
}
.signup-form input::placeholder { color: var(--text-light); }
.signup-form select { cursor: pointer; }
.signup-form input:focus,
.signup-form select:focus {
    outline: 2px solid var(--sunset-gold);
    outline-offset: 1px;
    background: var(--white);
}

.btn-submit {
    width: 100%;
    background: var(--sunset-gold);
    color: var(--white);
    padding: 1.1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    margin-top: 0.75rem;
    transition: background 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-submit:hover:not(:disabled) {
    background: var(--sunset-amber);
    transform: translateY(-1px);
}
.btn-submit:disabled { opacity: 0.7; cursor: wait; }

.form-disclaimer {
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
}

.form-success {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--white);
}
.form-success i {
    width: 56px;
    height: 56px;
    color: var(--sunset-gold);
    margin: 0 auto 1rem;
}
.form-success h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}
.form-success p { color: rgba(255, 255, 255, 0.9); }

/* ---------- Footer ---------- */
footer { padding: 3rem 0 2.5rem; background: var(--sand-light); }
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-brand p { color: var(--text-light); font-size: 0.92rem; margin-top: 0.25rem; }
.footer-meta {
    text-align: right;
    font-size: 0.88rem;
    color: var(--text-light);
}
.footer-links { margin-top: 0.75rem; display: flex; gap: 1.25rem; justify-content: flex-end; flex-wrap: wrap; }
.footer-links a { color: var(--ocean-mid); text-decoration: none; font-weight: 600; }
.footer-links a:hover { color: var(--ocean-deep); }

/* ---------- Fade-in helper ---------- */
.fade-in { opacity: 0; transform: translateY(15px); animation: fadeUp 0.8s 0.15s ease-out forwards; }
.fade-in:nth-child(2) { animation-delay: 0.3s; }
.fade-in:nth-child(3) { animation-delay: 0.45s; }
.fade-in:nth-child(4) { animation-delay: 0.6s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 1.25rem 1.5rem;
        border-radius: 18px;
        box-shadow: 0 8px 32px rgba(11, 61, 91, 0.12);
        gap: 1rem;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.5rem 0; }
    .cta-pulse { text-align: center; }

    .guide-toc, .method-grid, .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-grid { grid-template-columns: 1fr; gap: 1rem; }
    .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .image-feature { order: -1; }
}

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

    .guide-toc, .method-grid, .team-grid, .neighborhood-grid {
        grid-template-columns: 1fr;
    }

    .form-row { flex-direction: column; gap: 0.75rem; }

    .glass-form-container { padding: 2rem 1.5rem; }

    .hero { padding-top: 7rem; }
    .hero h1 { font-size: 2.4rem; }
    .hero p { font-size: 1.2rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons a { justify-content: center; }
    .hero-trust { gap: 1rem; font-size: 0.78rem; }

    .footer-content { flex-direction: column; text-align: center; }
    .footer-meta { text-align: center; }
    .footer-links { justify-content: center; }
}

/* ---------- Big Beach AL shared soft visual system ---------- */
:root {
    --ocean-deep: #164637;
    --ocean-mid: #228564;
    --ocean-light: #30a57e;
    --sand: #fff5e8;
    --sand-light: #fffbf5;
    --sand-warm: #fff5e8;
    --sunset-gold: #30a57e;
    --sunset-amber: #228564;
    --text-dark: #1f2937;
    --text-mid: #5f6b7a;
    --text-light: #8a94a3;
    --white: #ffffff;
    --border-soft: rgba(31, 41, 55, 0.08);
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--sand-light);
    overflow-x: hidden;
}

h1, h2, h3, .logo,
.toc-num, .step-num,
.accent-block p {
    font-family: 'Cormorant Garamond', serif;
}

.glass-nav {
    top: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid #f3f4f6;
    box-shadow: none;
}

.nav-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.05rem 1.5rem;
}

.logo {
    color: var(--text-dark);
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.logo span { color: var(--ocean-light); }

.nav-links {
    gap: 2.25rem;
    color: var(--text-mid);
}

.nav-links a {
    color: var(--text-mid);
    font-family: 'Nunito Sans', sans-serif;
    letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--ocean-mid); }

.cta-pulse {
    background: transparent;
    color: var(--ocean-mid) !important;
    border: 2px solid var(--ocean-light);
    padding: 0.65rem 1.45rem;
    border-radius: 999px;
    box-shadow: none;
}
.cta-pulse:hover {
    background: var(--ocean-light);
    color: var(--white) !important;
}

.hero {
    display: block;
    min-height: 0;
    padding: 5.4rem 0 0;
    color: var(--text-dark);
    background: var(--sand-light);
}

.hero-bg {
    position: relative;
    z-index: 0;
    height: 60vh;
    min-height: 430px;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(255,251,245,0) 0%, rgba(255,251,245,0.36) 42%, rgba(255,251,245,1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: -9.5rem auto 0;
    padding: 0 1.5rem 4rem;
}

.hero-badge {
    color: var(--ocean-light);
    letter-spacing: 0.3em;
    font-size: 0.78rem;
    margin-bottom: 1.35rem;
}

.hero h1 {
    color: var(--text-dark);
    font-size: clamp(3.5rem, 7vw, 5.8rem);
    line-height: 0.96;
    margin-bottom: 1.4rem;
}

.hero h1 span {
    color: var(--text-dark);
    display: inline;
    font-style: normal;
    font-weight: 700;
}

.mobile-break { display: none; }

.hero p {
    font-family: 'Nunito Sans', sans-serif;
    font-style: normal;
    color: var(--text-mid);
    opacity: 1;
    font-size: 1.15rem;
    max-width: 690px;
    margin-bottom: 2rem;
}

.btn-primary,
.btn-submit {
    background: var(--ocean-light);
    border-radius: 999px;
    box-shadow: 0 18px 32px rgba(48, 165, 126, 0.18);
}

.btn-primary:hover,
.btn-submit:hover:not(:disabled) {
    background: var(--ocean-mid);
    box-shadow: 0 18px 36px rgba(48, 165, 126, 0.24);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.82);
    border: 2px solid var(--ocean-light);
    color: var(--ocean-mid);
    border-radius: 999px;
}
.btn-secondary:hover {
    background: var(--ocean-light);
    border-color: var(--ocean-light);
    color: var(--white);
}

.hero-trust {
    color: var(--text-mid);
    opacity: 1;
}
.hero-trust i { color: var(--ocean-light); }

.trust-strip {
    background: var(--white);
    color: var(--text-mid);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.trust-grid strong { color: var(--ocean-mid); }

.section-padding { padding: 6rem 0; }
.bg-sand { background: var(--sand-light); }
.eyebrow { color: var(--ocean-light); letter-spacing: 0.26em; }
.section-title { color: var(--text-dark); font-size: clamp(2.5rem, 4.2vw, 3.8rem); }

.toc-item,
.step-card,
.team-card,
.neighborhood-card,
.faq-item,
.accent-block {
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(31, 41, 55, 0.05);
}

.step-num {
    background: var(--ocean-light);
}
.step-card:nth-child(2) .step-num,
.step-card:nth-child(3) .step-num {
    background: var(--ocean-light);
}

.team-role,
.card-tag,
.footer-links a {
    color: var(--ocean-mid);
}

.cta-section {
    background: #111827;
    background-image: none;
}

.glass-form-container {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 24px;
}

.signup-form input,
.signup-form select {
    border-radius: 14px;
    font-family: 'Nunito Sans', sans-serif;
}

footer {
    background: #111827;
    color: #9ca3af;
    padding: 4rem 0 3rem;
}

.footer-content {
    max-width: 1100px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 2rem;
}

.footer-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
}

.footer-brand .logo {
    color: var(--white);
    font-size: 1.65rem;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-social a,
.footer-links a {
    color: #d1d5db;
    transition: color 180ms ease;
}

.footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    fill: currentColor;
}

.footer-details {
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-details img {
    height: 2.5rem;
    width: auto;
    opacity: 0.7;
}

.footer-details p {
    color: #9ca3af;
    max-width: 680px;
    text-align: center;
    margin: 0 auto;
    line-height: 1.55;
    font-size: 0.78rem;
}

.footer-disclaimer {
    color: #6b7280 !important;
    max-width: 620px !important;
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin: 0;
    font-size: 0.9rem;
}

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

@media (max-width: 960px) {
    .glass-nav { padding: 0; }
    .nav-links {
        left: 1rem;
        right: 1rem;
        background: var(--white);
    }
    .footer-top {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 640px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
    }
    .nav-content { padding: 1rem 1.5rem; }
    .logo { font-size: 1.35rem; }
    .nav-toggle {
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
    }
    .hero,
    .hero-bg {
        width: 100vw;
        max-width: 100vw;
    }
    .hero { padding-top: 4.9rem; }
    .hero-bg {
        height: 52vh;
        min-height: 360px;
    }
    .hero-content {
        margin-top: -7rem;
        padding-bottom: 3.25rem;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .hero-badge {
        font-size: 0.72rem;
        letter-spacing: 0.2em;
        line-height: 1.6;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero h1 { font-size: 2.85rem; }
    .mobile-break { display: block; }
    .hero p {
        font-size: 1rem;
        max-width: 290px;
        overflow-wrap: break-word;
    }
    .hero-buttons {
        width: 100%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons a {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }
}
