/* ============================================================
   ONE PIECE PROPERTIES — PREMIUM DESIGN SYSTEM
   Palette: deep navy / warm neutrals / restrained gold
   Type:    Outfit (display) · Plus Jakarta Sans (body)
   ============================================================ */

/* ---------- Reset & tokens ---------- */

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

:root {
    /* Brand */
    --navy-900: #0A1320;
    --navy: #0F1A2B;
    --navy-700: #1C2E4A;
    --navy-600: #29405F;
    --gold: #C9973E;
    --gold-bright: #D4AF37;
    --gold-deep: #C4A037;

    /* Neutrals */
    --white: #FFFFFF;
    --bg-soft: #F7F6F2;
    --bg-warm: #FBFAF7;
    --ink: #0F1A2B;
    --body: #46515F;
    --muted: #6E7A8C;
    --line: #E9E6DF;
    --line-strong: #DCD7CB;

    /* Shadows (restrained) */
    --shadow-sm: 0 1px 2px rgba(15, 26, 43, 0.05);
    --shadow-md: 0 1px 2px rgba(15, 26, 43, 0.04), 0 10px 28px -14px rgba(15, 26, 43, 0.14);
    --shadow-lg: 0 1px 2px rgba(15, 26, 43, 0.05), 0 18px 44px -18px rgba(15, 26, 43, 0.22);

    /* Type */
    --font-display: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

    /* Motion */
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --dur: 220ms;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--body);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.015em;
}

a {
    color: inherit;
}

/* Accessible focus */
:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 2px;
    border-radius: 4px;
}

::selection {
    background: rgba(212, 175, 55, 0.28);
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
                color var(--dur) var(--ease), transform var(--dur) var(--ease),
                box-shadow var(--dur) var(--ease);
}

.btn-primary {
    background: var(--gold-bright);
    color: var(--navy);
    box-shadow: 0 1px 2px rgba(15, 26, 43, 0.08);
}

.btn-primary:hover {
    background: var(--gold-deep);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -12px rgba(201, 151, 62, 0.55);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -14px rgba(15, 26, 43, 0.5);
}

/* ---------- Navigation ---------- */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

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

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 76px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.2rem;
}

.mobile-nav-home {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-700);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.4rem 0;
    position: relative;
    transition: color var(--dur) var(--ease);
}

.nav-links a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}

.nav-links a:not(.nav-cta):hover {
    color: var(--navy);
}

.nav-links a:not(.nav-cta):hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--navy-600);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px -10px rgba(15, 26, 43, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 6px;
    border-radius: 6px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

/* ---------- Hero ---------- */

.hero {
    position: relative;
    background: var(--white);
    overflow: hidden;
    min-height: 640px;
    display: flex;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

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

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
        #FFFFFF 0%,
        rgba(255, 255, 255, 0.985) 26%,
        rgba(255, 255, 255, 0.55) 52%,
        rgba(255, 255, 255, 0) 84%
    );
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 84px 24px;
}

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

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--bg-warm);
    border: 1px solid var(--line);
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy-700);
    margin-bottom: 1.8rem;
    box-shadow: var(--shadow-sm);
}

.location-badge svg {
    color: var(--gold);
    flex-shrink: 0;
}

.hero-content h1 {
    font-size: clamp(2.35rem, 4.6vw, 3.9rem);
    font-weight: 650;
    color: var(--navy);
    line-height: 1.06;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--body);
    line-height: 1.75;
    margin-bottom: 2.2rem;
    max-width: 34rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.buyer-link {
    margin: 0;
}

.buyer-link a {
    color: var(--navy-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    border-bottom: 1px solid rgba(201, 151, 62, 0.45);
    padding-bottom: 2px;
    transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.buyer-link a:hover {
    color: var(--gold-deep);
    border-color: var(--gold-deep);
}

/* ---------- Section scaffolding ---------- */

.section-title {
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 0.9rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- How It Works — editorial process ---------- */

.how-it-works {
    padding: 100px 0;
    background: var(--bg-soft);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.steps-grid {
    position: relative;
    display: grid;
    gap: 2.6rem;
}

.process-step {
    position: relative;
}

.step-num {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 650;
    color: var(--navy);
    margin-bottom: 0.7rem;
    letter-spacing: -0.01em;
}

.process-step p {
    color: var(--body);
    line-height: 1.7;
    margin: 0;
    max-width: 30ch;
}

/* Desktop: horizontal connected process */
@media (min-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3.5rem;
    }

    .steps-grid::before {
        content: "";
        position: absolute;
        top: 30px;
        left: 14%;
        right: 14%;
        height: 1px;
        background: linear-gradient(to right, rgba(201, 151, 62, 0.45), rgba(201, 151, 62, 0.45));
        z-index: 0;
    }

    .process-step {
        padding-top: 0.25rem;
        z-index: 1;
    }

    .process-step:nth-child(2) {
        text-align: center;
    }

    .process-step:nth-child(3) {
        text-align: right;
    }

    .process-step:nth-child(2) h3,
    .process-step:nth-child(2) p {
        margin-left: auto;
        margin-right: auto;
    }

    .process-step:nth-child(3) h3,
    .process-step:nth-child(3) p {
        margin-left: auto;
    }

    .step-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 62px;
        height: 62px;
        border-radius: 50%;
        background: var(--bg-soft);
        border: 1px solid rgba(201, 151, 62, 0.5);
        font-size: 1.5rem;
        margin-bottom: 1.6rem;
    }
}

/* Mobile / tablet: clean vertical timeline */
@media (max-width: 899px) {
    .steps-grid {
        padding-left: 0;
        gap: 0;
    }

    .steps-grid::before {
        content: "";
        position: absolute;
        top: 18px;
        bottom: 18px;
        left: 23px;
        width: 1px;
        background: var(--line-strong);
    }

    .process-step {
        padding: 0 0 2.6rem 66px;
    }

    .process-step:last-child {
        padding-bottom: 0;
    }

    .step-num {
        position: absolute;
        left: 0;
        top: 0;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--white);
        border: 1px solid rgba(201, 151, 62, 0.55);
        color: var(--navy);
        font-size: 1.05rem;
        box-shadow: var(--shadow-sm);
    }
}

/* ---------- About / Why Choose Us ---------- */

.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 64px;
    align-items: center;
}

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

.about-content h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 1.4rem;
    position: relative;
    padding-top: 1.4rem;
}

.about-content h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 3px;
    border-radius: 3px;
    background: var(--gold-bright);
}

.about-content p {
    font-size: 1.1rem;
    color: var(--body);
    margin-bottom: 2.2rem;
    line-height: 1.85;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 0;
    font-size: 1.06rem;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list svg {
    color: var(--gold-bright);
    flex-shrink: 0;
    margin-top: 0.28rem;
    stroke-width: 2.5;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: "";
    position: absolute;
    top: 22px;
    left: -22px;
    right: 22px;
    bottom: -22px;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    min-height: 400px;
    max-height: 560px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
}

/* ---------- Investors (navy anchor section) ---------- */

.investors-section {
    padding: 100px 0;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.investors-content h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.investors-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Contact ---------- */

.contact-section {
    padding: 100px 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line);
}

.contact-content h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.contact-content > p {
    font-size: 1.1rem;
    color: var(--muted);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Forms ---------- */

.form-shell {
    max-width: 760px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: clamp(1.5rem, 4.5vw, 3rem);
    box-shadow: var(--shadow-md);
}

.investor-form,
.cash-offer-form {
    background: transparent;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.005em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background: var(--white);
    font-size: 1rem;
    font-family: inherit;
    color: var(--ink);
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%2346515F' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.6rem;
}

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

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #C6C0B2;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-bright);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
    background: var(--white);
}

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

.investor-form .btn,
.cash-offer-form .btn {
    width: 100%;
    margin-top: 0.4rem;
    padding: 1.05rem 2rem;
}

/* ---------- Banners ---------- */

.form-success-banner {
    background: #ECF7EF;
    border: 1px solid #C9E3D1;
    color: #1E5631;
    padding: 1rem 1.3rem;
    border-radius: 10px;
    margin-bottom: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.form-success-banner[hidden] {
    display: none !important;
}

.form-success-banner svg {
    flex-shrink: 0;
    color: #2E7D4F;
}

.form-success-banner p {
    margin: 0;
    font-weight: 600;
    font-size: 0.97rem;
}

.form-error-banner {
    background: #FCF0F0;
    border: 1px solid #F0D3D3;
    color: #8A2B2B;
    padding: 1rem 1.3rem;
    border-radius: 10px;
    margin-bottom: 1.6rem;
}

.form-error-banner[hidden] {
    display: none !important;
}

.form-error-banner p {
    margin: 0;
    font-weight: 600;
    font-size: 0.97rem;
}

.form-error-banner a {
    color: #8A2B2B;
    font-weight: 700;
}

/* ---------- Footer ---------- */

.footer {
    background: var(--white);
    color: var(--ink);
    padding: 72px 0 0;
    border-top: 1px solid var(--line);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-logo {
    height: 76px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.2rem;
}

.footer-section p {
    color: var(--body);
    line-height: 1.7;
    font-size: 0.96rem;
    max-width: 30ch;
}

.footer-section h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--navy-600);
    text-decoration: none;
    font-size: 0.97rem;
    transition: color var(--dur) var(--ease);
}

.footer-section a:hover {
    color: var(--gold-deep);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 1.6rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 0.88rem;
}

/* ============================================================
   LEGAL PAGES — 404 · Privacy · Terms · Maintenance
   (light, premium, logo on white header)
   ============================================================ */

.legal-page {
    min-height: 100vh;
    background: var(--bg-soft);
    display: flex;
    flex-direction: column;
}

.legal-header {
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 20px clamp(20px, 5vw, 48px);
}

.legal-logo {
    height: 76px;
    width: auto;
    object-fit: contain;
    display: block;
}

.legal-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(44px, 7vw, 88px) clamp(20px, 5vw, 48px);
}

.legal-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: clamp(30px, 5vw, 56px);
    max-width: 820px;
    width: 100%;
}

.legal-card.legal-prose {
    align-self: flex-start;
    margin-inline: auto;
}

.legal-eyebrow {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.legal-body {
    font-size: clamp(0.92rem, 1.4vw, 1rem);
    color: var(--body);
    line-height: 1.85;
}

.legal-body h2 {
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--navy);
    margin: 34px 0 12px;
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body p {
    margin-bottom: 14px;
}

.legal-body ul {
    padding-left: 22px;
    margin-bottom: 14px;
}

.legal-body ul li {
    margin-bottom: 6px;
}

.legal-body a {
    color: var(--navy-700);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(201, 151, 62, 0.6);
    font-weight: 500;
    transition: color var(--dur) var(--ease), text-decoration-color var(--dur) var(--ease);
}

.legal-body a:hover {
    color: var(--gold-deep);
    text-decoration-color: var(--gold-deep);
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
}

.legal-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    background: var(--gold-bright);
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.legal-btn-primary:hover {
    background: var(--gold-deep);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -12px rgba(201, 151, 62, 0.55);
}

.legal-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.legal-btn-ghost:hover {
    background: var(--navy);
    color: var(--white);
}

.legal-footer {
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 22px clamp(20px, 5vw, 48px);
    text-align: center;
}

.legal-footer p {
    font-size: 0.82rem;
    color: var(--muted);
}

.legal-footer a {
    color: var(--navy-700);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

.legal-footer a:hover {
    color: var(--gold-deep);
}

/* 404 big number (light background) */
.error-code {
    font-family: var(--font-display);
    font-size: clamp(5rem, 18vw, 10rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #C9973E 0%, #0F1A2B 120%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

/* Maintenance icon pulse */
@keyframes pulse-ring {
    0%   { transform: scale(0.9); opacity: 0.6; }
    50%  { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.maintenance-icon {
    font-size: 3rem;
    animation: pulse-ring 2.5s ease-in-out infinite;
    display: inline-block;
    margin-bottom: 20px;
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .maintenance-icon {
        animation: none;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
    .hero-image-bg {
        width: 55%;
    }

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

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image-bg {
        position: relative;
        width: 100%;
        height: 400px;
        order: 2;
    }

    .hero-image-overlay {
        background: linear-gradient(to bottom,
            #FFFFFF 0%,
            rgba(255, 255, 255, 0.14) 34%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .hero-container {
        padding: 64px 24px 40px;
        order: 1;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 7vw, 3.1rem);
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .about-content {
        max-width: 640px;
    }

    .about-image-wrapper::before {
        top: 16px;
        left: -14px;
        right: 14px;
        bottom: -14px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        min-height: 80px;
    }

    .logo-img {
        height: 68px;
    }

    .footer-logo,
    .legal-logo {
        height: 68px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        min-height: 76px;
    }

    .logo-img {
        height: 62px;
    }

    .footer-logo,
    .legal-logo {
        height: 62px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 2rem 1.5rem;
        gap: 0.4rem;
        transition: left 260ms var(--ease);
        box-shadow: 0 24px 40px -20px rgba(15, 26, 43, 0.25);
        border-top: 1px solid var(--line);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-nav-home {
        display: list-item;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a:not(.nav-cta) {
        display: block;
        padding: 0.85rem 0.25rem;
        font-size: 1.12rem;
        color: var(--navy);
    }

    .nav-links a:not(.nav-cta)::after {
        bottom: 0.45rem;
    }

    .nav-cta {
        margin-top: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 1rem 1.4rem;
        font-size: 1.02rem;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-image-bg {
        height: 340px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .how-it-works,
    .about-section,
    .investors-section,
    .contact-section {
        padding: 72px 0;
    }

    .section-subtitle {
        margin-bottom: 2.75rem;
    }

    .about-image {
        min-height: 300px;
        max-height: 420px;
    }

    .about-content h2 {
        font-size: 1.9rem;
    }

    .about-content p,
    .benefits-list li {
        font-size: 1.02rem;
    }

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

    .form-shell {
        padding: 1.5rem;
    }

    .footer {
        padding: 56px 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-image-bg {
        height: 300px;
    }

    .hero-container {
        padding: 48px 20px 32px;
    }

    .hero-description {
        font-size: 1.06rem;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .about-image {
        min-height: 250px;
        max-height: 360px;
    }

    .about-image-wrapper::before {
        display: none;
    }

    .footer-container {
        gap: 2rem;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 18px;
    }

    .hero-content h1 {
        font-size: 1.95rem;
    }

    .location-badge {
        font-size: 0.84rem;
        padding: 0.45rem 0.95rem;
    }
}

@media (min-width: 1600px) {
    .hero-image-bg {
        width: 60%;
    }

    .hero-content h1 {
        font-size: 4.1rem;
    }
}