/* ========================================
   THE BREAK LANDING PAGE
   Clean editable stylesheet
======================================== */


/* ========================================
   DESIGN TOKENS
======================================== */

:root {
    --cream: #fbf8f2;
    --white: #ffffff;
    --sand: #f5efe6;

    --ink: #111715;
    --muted: #6d746d;

    --sage: #8f9c83;
    --sage-dark: #5e6d58;

    --gold: #c8a46a;
    --stone: #d8d1c5;

    --line: rgba(17, 23, 21, 0.13);
    --shadow: 0 24px 80px rgba(17, 23, 21, 0.10);

    --font-main: Inter, Helvetica, Arial, sans-serif;

    --header-height: 76px;
}


/* ========================================
   GLOBAL RESET
======================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: var(--font-main);

    background: var(--cream);
    color: var(--ink);

    letter-spacing: 0.02em;
}

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

a {
    color: inherit;
}

p {
    color: var(--muted);

    font-size: 16px;
    line-height: 1.8;
}


/* ========================================
   HEADER
======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

    height: var(--header-height);

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 34px;

    background: rgba(251, 248, 242, 0.86);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--line);

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(251, 248, 242, 0.96);
    box-shadow: 0 10px 40px rgba(17, 23, 21, 0.08);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--ink);
    text-decoration: none;
}

.brand-mark svg {
    width: 34px;
    height: 34px;
}

.brand-mark path {
    fill: none;

    stroke: currentColor;
    stroke-width: 4.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-name {
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.26em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: var(--ink);

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;
    text-transform: uppercase;

    letter-spacing: 0.18em;

    transition: opacity 0.25s ease;
}

.main-nav a:hover {
    opacity: 0.6;
}

.nav-cta {
    padding: 12px 16px;

    border: 1px solid var(--ink);
}

.menu-toggle {
    display: none;

    width: 34px;
    height: 34px;

    background: transparent;
    border: 0;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 28px;
    height: 1px;

    margin: 8px 0;

    background: var(--ink);
}


/* ========================================
   HERO
======================================== */

.hero {
    position: relative;

    width: 100vw;
    height: 100vh;
    min-height: 720px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    inset: 0;

    background-image: url("images/hero-front2.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    animation: heroZoom 22s ease-in-out infinite alternate;
}

.hero-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.48),
            rgba(0, 0, 0, 0.72)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(940px, calc(100% - 40px));

    padding: 28px;

    text-align: center;
    color: var(--white);

    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.30);
}

.hero-eyebrow {
    color: var(--white);
}

.hero-content h1 {
    margin: 14px 0 12px;

    font-size: clamp(54px, 9vw, 124px);
    font-weight: 400;
    line-height: 0.95;

    text-transform: uppercase;

    letter-spacing: 0.16em;
}

.hero-subtitle {
    margin: 0 0 24px;

    color: rgba(255, 255, 255, 0.92);

    font-size: clamp(15px, 2vw, 22px);
    text-transform: uppercase;
    letter-spacing: 0.32em;
}

.hero-line {
    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.95);

    font-size: clamp(22px, 3vw, 34px);
    font-weight: 300;

    letter-spacing: 0.18em;
}

.hero-description {
    max-width: 760px;

    margin: 0 auto 34px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 17px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;

    transform: translateX(-50%);

    width: 22px;
    height: 38px;

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
}

.scroll-cue span {
    position: absolute;
    top: 9px;
    left: 50%;

    width: 4px;
    height: 4px;

    transform: translateX(-50%);

    background: var(--white);
    border-radius: 999px;

    animation: scrollCue 1.5s ease-in-out infinite;
}


/* ========================================
   TYPOGRAPHY
======================================== */

.eyebrow {
    margin: 0 0 14px;

    color: var(--sage-dark);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.26em;
}

h2 {
    margin: 14px 0 24px;

    font-size: clamp(34px, 5vw, 68px);
    font-weight: 400;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h3 {
    margin: 0 0 14px;

    font-size: 18px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.16em;
}


/* ========================================
   BUTTONS + LINKS
======================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;
    text-transform: uppercase;

    letter-spacing: 0.18em;

    border: 1px solid currentColor;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-dark {
    background: var(--ink);
    color: var(--white);

    border-color: var(--ink);
}

.button-light {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);

    border-color: rgba(255, 255, 255, 0.75);
}

.button-outline-dark {
    background: transparent;
    color: var(--ink);

    border-color: var(--ink);
}

.text-link {
    display: inline-block;

    margin-top: 24px;

    color: var(--ink);

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
    text-transform: uppercase;

    letter-spacing: 0.18em;
}

.text-link::after {
    content: " →";
}


/* ========================================
   SHARED SECTIONS
======================================== */

.section {
    padding: 110px 7vw;
}

.section-heading {
    max-width: 860px;

    margin: 0 auto 54px;

    text-align: center;
}


/* ========================================
   SPLIT SECTION
======================================== */

.split-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.split-copy {
    max-width: 620px;
}

.split-image {
    overflow: hidden;

    box-shadow: var(--shadow);
}

.split-image img {
    width: 100%;
    height: 540px;

    object-fit: cover;
}


/* ========================================
   EXPERIENCE CARDS
======================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    padding: 42px;

    background: var(--white);
    border: 1px solid var(--line);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    margin-bottom: 28px;

    background: var(--ink);
    color: var(--white);

    border-radius: 999px;

    font-size: 23px;
}


/* ========================================
   PLAN SECTION
======================================== */

.plan-section {
    background: var(--white);
}

.plan-copy {
    max-width: 760px;

    margin-bottom: 40px;
}

.plan-image {
    overflow: hidden;

    box-shadow: var(--shadow);
}

.plan-image img {
    width: 100%;
    max-height: 1200px;

    object-fit: cover;
}


/* ========================================
   MEMBERSHIP PRICING
======================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pricing-card {
    position: relative;

    padding: 42px;

    background: var(--white);
    border: 1px solid var(--line);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.featured-card {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.tier-label,
.limited-label {
    font-size: 11px;
    font-weight: 700;

    color: var(--sage-dark);

    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.limited-label {
    position: absolute;
    top: 0;
    right: 0;

    margin: 0;

    padding: 9px 14px;

    color: var(--white);
    background: var(--gold);
}

.pricing-card h3 {
    margin: 16px 0 24px;

    font-size: 42px;
    letter-spacing: 0.02em;
}

.pricing-card h3 span {
    color: var(--muted);

    font-size: 13px;
    font-weight: 400;
}

.pricing-card ul {
    margin: 0 0 32px;
    padding: 0;

    list-style: none;
}

.pricing-card li {
    padding: 12px 0;

    color: var(--muted);

    border-bottom: 1px solid var(--line);
}


/* ========================================
   INVESTOR SECTION
======================================== */

.investor-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;

    background: var(--sand);
}

.investor-copy {
    max-width: 620px;
}

.revenue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.revenue-card {
    padding: 26px;

    background: var(--white);
    border: 1px solid var(--line);
}

.revenue-card span {
    display: block;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.revenue-card strong {
    display: block;

    margin-top: 30px;

    color: var(--sage-dark);

    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: 0.18em;
}


/* ========================================
   PROOF SECTION
======================================== */

.proof-section {
    padding: 82px 7vw;

    background:
        linear-gradient(
            rgba(17, 23, 21, 0.86),
            rgba(17, 23, 21, 0.86)
        ),
        url("assets/hero-front.png");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: var(--white);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;

    text-align: center;
}

.proof-item strong {
    display: block;

    font-size: 24px;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.proof-item span {
    display: block;

    margin-top: 8px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
}


/* ========================================
   EXPANSION SECTION
======================================== */

.expansion-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expansion-copy {
    max-width: 620px;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.market-grid span {
    padding: 30px;

    background: var(--white);
    border: 1px solid var(--line);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.18em;
}


/* ========================================
   CTA SECTION
======================================== */

.cta-section {
    padding: 110px 7vw;

    background: var(--ink);
    color: var(--white);

    text-align: center;
}

.cta-section .eyebrow {
    color: var(--gold);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.72);
}

.cta-inner {
    max-width: 820px;

    margin: 0 auto;
}

.signup-form {
    display: flex;

    max-width: 560px;

    margin: 34px auto 0;
}

.signup-form input {
    flex: 1;

    min-height: 56px;

    padding: 0 18px;

    font-size: 15px;

    border: 0;
    outline: 0;
}

.signup-form button {
    min-height: 56px;

    padding: 0 24px;

    color: var(--white);
    background: var(--gold);

    border: 0;

    font-weight: 700;
    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 0.16em;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.signup-form button:hover {
    transform: translateY(-2px);
    background: #b89254;
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 34px 7vw;

    background: #0c0f0e;
    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: 0.16em;
}


/* ========================================
   ANIMATIONS
======================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

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

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.04);
    }
}

@keyframes scrollCue {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 12px);
        opacity: 0;
    }
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1100px) {
    .split-section,
    .investor-section,
    .expansion-section {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 760px) {
    :root {
        --header-height: 70px;
    }

    .site-header {
        padding: 0 20px;
    }

    .brand-name {
        font-size: 12px;
        letter-spacing: 0.18em;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        padding: 26px;

        background: var(--cream);
        border-bottom: 1px solid var(--line);

        transform: translateY(-140%);

        transition: transform 0.35s ease;
    }

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

    .hero {
        min-height: 680px;
    }

    .hero-background {
        background-position: center center;
    }

    .hero-content {
        padding: 24px;
    }

    .hero-content h1 {
        font-size: clamp(46px, 14vw, 76px);
        letter-spacing: 0.10em;
    }

    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 0.22em;
    }

    .hero-line {
        font-size: 22px;
        letter-spacing: 0.12em;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: min(320px, 100%);
    }

    .section {
        padding: 76px 22px;
    }

    .section-heading {
        text-align: left;
    }

    h2 {
        font-size: clamp(34px, 11vw, 52px);
    }

    .split-image img {
        height: 420px;
    }

    .revenue-grid,
    .market-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .signup-form {
        flex-direction: column;
    }

    .signup-form button {
        margin-top: 10px;
    }

    .site-footer {
        flex-direction: column;

        text-align: center;
    }
}


/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* ========================================
   INTERACTIVE MASTERPLAN HOTSPOTS
======================================== */

.interactive-plan {
    position: relative;
}

.plan-hotspot {
    position: absolute;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 96px;
    min-height: 34px;

    padding: 9px 14px;

    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(17, 23, 21, 0.18);
    border-radius: 999px;

    box-shadow: 0 12px 34px rgba(17, 23, 21, 0.15);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.15em;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

    z-index: 3;
}

.plan-hotspot::before {
    content: "";

    width: 8px;
    height: 8px;

    margin-right: 8px;

    background: var(--sage);
    border-radius: 999px;
}

.plan-hotspot:hover,
.plan-hotspot:focus {
    transform: translateY(-4px);

    background: var(--white);

    box-shadow: 0 18px 48px rgba(17, 23, 21, 0.24);

    outline: none;
}

.plan-hotspot small {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);

    width: 270px;

    padding: 16px;

    color: var(--muted);
    background: var(--white);

    border: 1px solid var(--line);
    border-radius: 2px;

    box-shadow: var(--shadow);

    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;

    text-align: left;
    text-transform: none;
    letter-spacing: 0.01em;

    opacity: 0;
    pointer-events: none;

    transform: translate(-50%, 10px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;

    z-index: 20;
}

.plan-hotspot:hover small,
.plan-hotspot:focus small {
    opacity: 1;

    transform: translate(-50%, 0);
}

.hotspot-wave {
    left: 48.5%;
    top: 50%;
}

.hotspot-lobby {
    left: 48%;
    top: 75%;
}

.hotspot-coffee {
    left: 18%;
    top: 80%;
}

.hotspot-surfshop {
    right: 18%;
    top: 80%;
}

.hotspot-lockers {
    left: 19%;
    top: 46%;
}

.hotspot-bar {
    right: 19%;
    top: 45%;
}

.hotspot-lawn {
    left: 48%;
    top: 28%;
}

.hotspot-stage {
    left: 48%;
    top: 15%;
}

.hotspot-vip {
    right: 22%;
    top: 17%;
}


/* ========================================
   FLORIDA EXPANSION MAP
======================================== */

.florida-map-wrap {
    position: relative;

    min-height: 620px;

    display: grid;
    place-items: center;

    overflow: hidden;

    background:
        radial-gradient(circle at 45% 40%, rgba(143, 156, 131, 0.18), transparent 34%),
        linear-gradient(135deg, #f7f2ea, #ffffff);

    border: 1px solid var(--line);

    box-shadow: var(--shadow);
}

.florida-map {
    width: min(430px, 82%);
    height: auto;

    opacity: 0.92;
}

.florida-shape {
    fill: #eef1e9;

    stroke: rgba(17, 23, 21, 0.18);
    stroke-width: 3;
}

.map-pin {
    position: absolute;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 14px;

    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(17, 23, 21, 0.16);
    border-radius: 999px;

    box-shadow: 0 14px 38px rgba(17, 23, 21, 0.14);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.15em;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;

    z-index: 5;
}

.map-pin::before {
    content: "";

    width: 12px;
    height: 12px;

    background: var(--gold);

    border: 3px solid var(--white);
    border-radius: 999px;

    box-shadow: 0 0 0 1px rgba(17, 23, 21, 0.18);
}

.map-pin:hover,
.map-pin:focus {
    transform: translateY(-4px);

    background: var(--white);

    box-shadow: 0 22px 56px rgba(17, 23, 21, 0.22);

    outline: none;
}

.map-pin small {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);

    width: 280px;

    padding: 16px;

    color: var(--muted);
    background: var(--white);

    border: 1px solid var(--line);
    border-radius: 2px;

    box-shadow: var(--shadow);

    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;

    text-align: left;
    text-transform: none;
    letter-spacing: 0.01em;

    opacity: 0;
    pointer-events: none;

    transform: translate(-50%, 10px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;

    z-index: 20;
}

.map-pin:hover small,
.map-pin:focus small {
    opacity: 1;

    transform: translate(-50%, 0);
}

.pin-fort-myers {
    left: 34%;
    top: 66%;
}

.pin-sarasota {
    left: 36%;
    top: 52%;
}

.pin-tampa {
    left: 38%;
    top: 43%;
}

.pin-jupiter {
    right: 26%;
    top: 70%;
}


/* ========================================
   MOBILE HOTSPOT FALLBACK
======================================== */

@media (max-width: 760px) {
    .interactive-plan {
        overflow: visible;
    }

    .plan-hotspot {
        position: relative;
        left: auto;
        right: auto;
        top: auto;

        display: flex;
        justify-content: flex-start;

        width: 100%;

        margin-top: 10px;

        border-radius: 2px;
    }

    .plan-hotspot small {
        position: static;

        width: auto;

        margin-left: 10px;
        padding: 0;

        background: transparent;
        border: 0;
        box-shadow: none;

        opacity: 1;
        transform: none;

        pointer-events: auto;
    }

    .florida-map-wrap {
        min-height: auto;

        padding: 60px 18px;

        align-items: start;
    }

    .florida-map {
        width: 88%;
        margin-bottom: 24px;
    }

    .map-pin {
        position: relative;
        left: auto;
        right: auto;
        top: auto;

        width: 100%;

        justify-content: flex-start;

        margin-top: 10px;

        border-radius: 2px;
    }

    .map-pin small {
        position: static;

        width: auto;

        margin-left: 10px;
        padding: 0;

        background: transparent;
        border: 0;
        box-shadow: none;

        opacity: 1;
        transform: none;

        pointer-events: auto;
    }
}
