/* ─────────────────────────────────────────────────────────────────────
   landing.css — paid-landing-page-only styles
   Loaded on top of style.css. Reuses tokens defined in :root.
   All classes prefixed .lp-* to avoid collisions with the main site.
   ───────────────────────────────────────────────────────────────────── */

body.lp { background: #fff; }

/* ── Header ─────────────────────────────────────────────────────────── */
.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(17,24,39,0.06);
}
.lp-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.lp-logo { display: inline-flex; align-items: center; }
.lp-logo img { height: 28px; width: auto; display: block; }
.lp-logo-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: var(--charcoal);
}
.lp-header-actions {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
}
.lp-header-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--charcoal);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}
.lp-header-phone:hover { color: var(--orange); }
.lp-header-cta { padding: 10px 18px; font-size: 0.9rem; }
@media (max-width: 720px) {
    .lp-header-phone span { display: none; }
    .lp-header-cta { display: none; }
}


/* ── Hero ───────────────────────────────────────────────────────────── */
.lp-hero {
    padding: var(--sp-3xl) 0 var(--sp-2xl);
    background:
      radial-gradient(1100px 500px at 85% -20%, rgba(247,127,0,0.10), transparent 60%),
      radial-gradient(900px 600px at -10% 110%, rgba(31,41,55,0.06), transparent 60%),
      #fff;
    overflow: hidden;
}
.lp-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: var(--sp-3xl);
    align-items: center;
}
.lp-hero-copy { min-width: 0; }
.lp-eyebrow {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(31,41,55,0.06);
    color: var(--slate);
    border: 1px solid rgba(31,41,55,0.10);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.lp-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.2vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: var(--sp-md) 0 var(--sp-md);
    color: var(--charcoal);
    font-weight: 800;
}
.lp-subhead {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    line-height: 1.55;
    color: var(--slate);
    max-width: 36em;
    margin: 0 0 var(--sp-xl);
}
.lp-hero-ctas {
    display: flex;
    gap: var(--sp-md);
    flex-wrap: wrap;
    margin-bottom: var(--sp-md);
}
.lp-hero-ctas .btn { padding: 14px 26px; }
.lp-call-cta {
    background: #fff;
    color: var(--charcoal);
    border: 1px solid #d1d5db;
    transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.lp-call-cta:hover {
    background: #fff;
    color: var(--orange-dark);
    border-color: var(--orange);
}
.lp-trust-line {
    margin-top: var(--sp-md);
    font-size: 0.875rem;
    color: var(--grey, #6b7280);
    line-height: 1.5;
}
.lp-availability {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 var(--sp-md);
    padding: 6px 12px;
    background: rgba(247,127,0,0.08);
    border: 1px solid rgba(247,127,0,0.20);
    border-radius: var(--radius-sm);
    color: var(--charcoal);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
}
.lp-availability svg {
    color: var(--orange-dark);
    flex-shrink: 0;
}

/* Hero visual */
.lp-hero-visual {
    position: relative;
    aspect-ratio: 4 / 3;
}
.lp-hero-img,
.lp-hero-visual picture,
.lp-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    background: #f3f4f6;
    display: block;
}
.lp-hero-visual picture { overflow: hidden; border-radius: var(--radius-lg); display: block; }
.lp-hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey, #6b7280);
    font-weight: 600;
}
@media (max-width: 960px) {
    .lp-hero { padding-top: var(--sp-2xl); }
    .lp-hero-grid { grid-template-columns: 1fr; gap: var(--sp-2xl); }
    .lp-hero-visual { aspect-ratio: 16 / 11; max-width: 560px; margin: 0 auto; }
    .lp-hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
}

/* Hero price badge — anchored bottom-right of hero image */
.lp-hero-price-wrap {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    transform: rotate(-3deg);
    transform-origin: bottom right;
}
.lp-hero-price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 12px 18px;
    background: var(--orange);
    color: #fff;
    border-radius: var(--radius);
    box-shadow: 0 14px 30px -10px rgba(247,127,0,0.55), 0 4px 10px -2px rgba(17,24,39,0.25);
    font-family: var(--font-display);
    line-height: 1;
}
.lp-hero-price-note {
    background: rgba(17,24,39,0.88);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.3;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    max-width: 240px;
    text-align: right;
    box-shadow: 0 6px 14px -4px rgba(17,24,39,0.35);
}
.lp-hero-price-value {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}
.lp-hero-price-currency {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.92;
}
.lp-hero-price-unit {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.92;
}
@media (max-width: 600px) {
    .lp-hero-price-wrap { right: 10px; bottom: 10px; }
    .lp-hero-price { padding: 9px 14px; }
    .lp-hero-price-note { font-size: 0.68rem; max-width: 200px; }
}

/* ── Stats strip ────────────────────────────────────────────────────── */
.lp-stats {
    background: var(--charcoal);
    color: #fff;
    padding: var(--sp-2xl) 0;
}
.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-2xl);
}
.lp-stat {
    border-left: 3px solid var(--orange);
    padding-left: var(--sp-lg);
}
.lp-stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 800;
    color: var(--orange-light);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 4px;
}
.lp-stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}
.lp-stat-note {
    margin-top: 4px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
}
@media (max-width: 760px) {
    .lp-stats-grid { grid-template-columns: 1fr; gap: var(--sp-lg); }
}

/* ── Section heads ──────────────────────────────────────────────────── */
.lp-section { padding-top: var(--sp-3xl); padding-bottom: var(--sp-3xl); }
.lp-section-head { text-align: center; max-width: 720px; margin: 0 auto var(--sp-2xl); }
.lp-section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.25rem);
    line-height: 1.15;
    color: var(--charcoal);
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-md);
    font-weight: 800;
}
.lp-section-sub {
    color: var(--slate);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Lots ───────────────────────────────────────────────────────────── */
.lp-lots { display: grid; gap: var(--sp-xl); }
.lp-lots-double { grid-template-columns: repeat(2, 1fr); }
.lp-lots-single { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
@media (max-width: 880px) {
    .lp-lots-double { grid-template-columns: 1fr; }
}

.lp-lot {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    padding: var(--sp-xl);
    display: flex;
    flex-direction: column;
    transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.lp-lot:hover {
    border-color: rgba(247,127,0,0.4);
    box-shadow: 0 14px 36px -16px rgba(17,24,39,0.18);
    transform: translateY(-2px);
}
.lp-lot-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--charcoal);
    margin: 0 0 var(--sp-sm);
    font-weight: 700;
    letter-spacing: -0.015em;
}
.lp-lot-summary {
    color: var(--slate);
    font-size: 0.96rem;
    line-height: 1.6;
    margin: 0 0 var(--sp-lg);
}
.lp-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--sp-lg);
    font-size: 0.9rem;
}
.lp-spec-table th,
.lp-spec-table td {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f6;
}
.lp-spec-table th {
    color: var(--grey, #6b7280);
    font-weight: 500;
    width: 42%;
    padding-right: var(--sp-md);
}
.lp-spec-table td {
    color: var(--charcoal);
    font-weight: 600;
}
.lp-spec-table tr:last-child th,
.lp-spec-table tr:last-child td { border-bottom: none; }
.lp-lot-cta { align-self: flex-start; margin-top: auto; }

/* ── Why ────────────────────────────────────────────────────────────── */
.lp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-xl);
}
@media (max-width: 1000px) { .lp-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .lp-why-grid { grid-template-columns: 1fr; } }
.lp-why { text-align: left; }
.lp-why-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: rgba(247,127,0,0.10);
    color: var(--orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-md);
}
.lp-why-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 var(--sp-sm);
    line-height: 1.3;
}
.lp-why-desc {
    color: var(--slate);
    font-size: 0.94rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Industries ─────────────────────────────────────────────────────── */
.lp-industries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-md);
}
@media (max-width: 880px) { .lp-industries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lp-industries { grid-template-columns: 1fr; } }
.lp-industry {
    padding: var(--sp-lg);
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: var(--radius);
    transition: border-color 180ms ease, transform 180ms ease;
}
.lp-industry:hover {
    border-color: rgba(247,127,0,0.35);
    transform: translateY(-1px);
}
.lp-industry-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 4px;
}
.lp-industry-desc {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.5;
    margin: 0;
}

/* ── FAQ ────────────────────────────────────────────────────────────── */
.lp-faqs { display: flex; flex-direction: column; gap: var(--sp-sm); }
.lp-faq {
    border: 1px solid #e5e7eb;
    border-radius: var(--radius);
    background: #fff;
    overflow: hidden;
}
.lp-faq[open] { border-color: rgba(247,127,0,0.35); }
.lp-faq-q {
    list-style: none;
    cursor: pointer;
    padding: var(--sp-md) var(--sp-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-md);
    font-weight: 600;
    color: var(--charcoal);
    font-size: 1rem;
    user-select: none;
}
.lp-faq-q::-webkit-details-marker { display: none; }
.lp-faq-chev { transition: transform 200ms ease; flex-shrink: 0; color: var(--orange); }
.lp-faq[open] .lp-faq-chev { transform: rotate(180deg); }
.lp-faq-a {
    padding: 0 var(--sp-lg) var(--sp-lg);
    color: var(--slate);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ── Reservation form ───────────────────────────────────────────────── */
.lp-form-section {
    background:
      radial-gradient(800px 400px at 50% -10%, rgba(247,127,0,0.08), transparent 70%),
      #fafbfc;
    border-top: 1px solid #eef0f3;
    border-bottom: 1px solid #eef0f3;
}
.lp-form {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-lg);
    padding: var(--sp-2xl);
    box-shadow: 0 30px 60px -25px rgba(17,24,39,0.18);
}
.lp-form .form-group-full { grid-column: 1 / -1; }
.lp-form-submit {
    margin-top: var(--sp-lg);
    text-align: center;
}
.lp-form-submit .btn { padding: 16px 36px; font-size: 1.05rem; min-width: 260px; }
.lp-form-microcopy {
    margin-top: var(--sp-md);
    color: var(--grey, #6b7280);
    font-size: 0.85rem;
}
.lp-form-or {
    text-align: center;
    margin-top: var(--sp-lg);
    color: var(--slate);
    font-size: 0.92rem;
}
.lp-form-or a {
    color: var(--orange-dark);
    text-decoration: none;
    font-weight: 600;
}
.lp-form-or a:hover { text-decoration: underline; }

@media (max-width: 600px) {
    .lp-form { padding: var(--sp-lg); }
    .lp-form-submit .btn { width: 100%; min-width: 0; }
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.lp-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: var(--sp-xl) 0;
    font-size: 0.85rem;
}
.lp-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-md);
    flex-wrap: wrap;
}
.lp-footer-links { display: flex; gap: var(--sp-lg); flex-wrap: wrap; }
.lp-footer-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}
.lp-footer-links a:hover { color: var(--orange-light); }
@media (max-width: 600px) {
    .lp-footer-inner { flex-direction: column; align-items: flex-start; }
    .lp-footer-links { gap: var(--sp-md); }
}

/* ── Sticky mobile CTA ──────────────────────────────────────────────── */
.lp-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    display: none;
    background: rgba(255,255,255,0.95);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-top: 1px solid rgba(17,24,39,0.08);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 8px;
}
.lp-mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 13px 12px;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.lp-mobile-cta-call {
    background: #fff;
    color: var(--charcoal);
    border: 1px solid #d1d5db;
    flex: 0 0 33%;
}
.lp-mobile-cta-primary {
    background: var(--orange);
    color: #fff;
    border: 1px solid var(--orange-dark);
    box-shadow: 0 6px 14px -4px rgba(247,127,0,0.45);
}
@media (max-width: 720px) {
    .lp-mobile-cta { display: flex; }
    body.lp { padding-bottom: 76px; }
    /* Raise cookie banner above the sticky mobile CTA bar */
    body.lp .cc-banner { bottom: calc(76px + env(safe-area-inset-bottom) + 12px); }
}

/* ── Floating pulsating CTA ─────────────────────────────────────────── */
@keyframes lp-fab-pulse {
    0%   { box-shadow: 0 10px 28px -8px rgba(247,127,0,0.55), 0 0 0 0 rgba(247,127,0,0.55); }
    70%  { box-shadow: 0 10px 28px -8px rgba(247,127,0,0.55), 0 0 0 18px rgba(247,127,0,0); }
    100% { box-shadow: 0 10px 28px -8px rgba(247,127,0,0.55), 0 0 0 0 rgba(247,127,0,0); }
}
.lp-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    border: none;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 10px 28px -8px rgba(247,127,0,0.55);
    animation: lp-fab-pulse 2.4s ease-out infinite;
    transition: transform 180ms ease, background 180ms ease;
    cursor: pointer;
}
.lp-fab:hover { background: var(--orange-dark); transform: translateY(-2px); }
.lp-fab:focus-visible { outline: 3px solid rgba(247,127,0,0.4); outline-offset: 3px; }

@media (max-width: 720px) {
    .lp-fab { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    .lp-fab { animation: none; }
}

/* ── Scroll-to-top ──────────────────────────────────────────────────── */
.lp-scroll-top {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 65;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: var(--charcoal);
    border: 1px solid #d1d5db;
    box-shadow: 0 6px 18px -6px rgba(17,24,39,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 200ms ease, transform 200ms ease, color 180ms ease, border-color 180ms ease;
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
}
.lp-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.lp-scroll-top:hover { color: var(--orange-dark); border-color: var(--orange); }
@media (max-width: 720px) {
    .lp-scroll-top {
        right: 16px;
        bottom: calc(76px + env(safe-area-inset-bottom) + 12px);
        width: 38px;
        height: 38px;
    }
}
