:root {
    --ink: #111820;
    --muted: #5d6670;
    --soft: #f5f7f8;
    --line: #dfe5e8;
    --teal: #087f8c;
    --red: #e03b4f;
    --gold: #c9a34a;
    --shadow: 0 26px 70px rgba(12, 18, 24, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: #fff;
    color: var(--ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
    align-items: center;
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(17,24,32,.08);
    display: flex;
    gap: 22px;
    justify-content: space-between;
    left: 0;
    padding: 14px clamp(18px, 4vw, 58px);
    position: sticky;
    right: 0;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
}
.brand {
    align-items: center;
    display: inline-flex;
    gap: 10px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
}
.brand-mark {
    align-items: center;
    background: #111820;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}
.nav {
    align-items: center;
    display: flex;
    gap: 22px;
    color: #303942;
    font-size: 14px;
    font-weight: 750;
}
.nav a:hover { color: var(--teal); }
.header-actions {
    align-items: center;
    display: flex;
    gap: 10px;
}
.menu-toggle {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    display: none;
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    min-height: 38px;
    padding: 0 14px;
}
.btn {
    align-items: center;
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 850;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    white-space: nowrap;
}
.btn.secondary {
    background: #fff;
    border-color: var(--line);
    color: var(--ink);
}
.btn.teal {
    background: var(--teal);
    border-color: var(--teal);
}

.hero {
    background:
        linear-gradient(90deg, rgba(17,24,32,.86), rgba(17,24,32,.30)),
        url("https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=2200&q=82") center/cover;
    color: #fff;
    min-height: 720px;
    overflow: hidden;
    position: relative;
}
.hero-inner {
    align-items: center;
    display: grid;
    gap: 46px;
    grid-template-columns: minmax(0, .86fr) minmax(520px, 1fr);
    margin: 0 auto;
    max-width: 1440px;
    min-height: 720px;
    padding: 72px clamp(20px, 4vw, 64px);
}
.eyebrow {
    color: #92dbe4;
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 18px;
    text-transform: uppercase;
}
h1 {
    font-size: clamp(48px, 7vw, 98px);
    letter-spacing: 0;
    line-height: .92;
    margin-bottom: 26px;
    max-width: 780px;
}
.hero-copy {
    color: rgba(255,255,255,.88);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.42;
    max-width: 710px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}
.hero-actions .btn.light {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.32);
    color: #fff;
}
.proof-line {
    color: rgba(255,255,255,.70);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    font-weight: 800;
    margin-top: 30px;
}

.product-stage {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 16px;
    transform: rotate(-1deg);
}
.product-window {
    background: #f6f7f8;
    border-radius: 22px;
    color: var(--ink);
    overflow: hidden;
}
.product-top {
    align-items: center;
    background: #2f3640;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 12px 16px;
}
.product-top span {
    font-size: 12px;
    font-weight: 800;
}
.product-top span:last-child { justify-self: end; }
.product-top strong {
    font-size: 14px;
    justify-self: center;
}
.product-screen {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: 520px;
}
.mock-nav {
    background: #0b1214;
    color: rgba(255,255,255,.72);
    padding: 18px 14px;
}
.mock-nav strong {
    color: #fff;
    display: block;
    margin-bottom: 20px;
}
.mock-nav span {
    border-radius: 10px;
    display: block;
    font-size: 12px;
    font-weight: 750;
    margin-bottom: 7px;
    padding: 10px;
}
.mock-nav span.active { background: rgba(255,255,255,.12); color: #fff; }
.mock-main { padding: 20px; }
.mock-toolbar {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 18px;
}
.mock-toolbar h3 {
    font-size: 28px;
    letter-spacing: 0;
    margin: 0;
}
.mock-pill {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
    padding: 9px 12px;
}
.service-board {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow-x: auto;
    padding: 18px;
}
.time-row {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 56px repeat(4, minmax(110px, 1fr));
    margin-bottom: 12px;
    min-width: 620px;
}
.time-row small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}
.booking-bar {
    background: #e9edf0;
    border-left: 5px solid #8a97a3;
    border-radius: 11px;
    min-height: 58px;
    padding: 9px 10px;
}
.booking-bar.green { background: #e7f6ee; border-color: #1f8d55; }
.booking-bar.teal { background: #e8f7f8; border-color: var(--teal); }
.booking-bar strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}
.booking-bar span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.section {
    padding: clamp(58px, 8vw, 112px) clamp(20px, 4vw, 64px);
}
.section-inner {
    margin: 0 auto;
    max-width: 1240px;
}
.section-head {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, .78fr) minmax(280px, .42fr);
    margin-bottom: 42px;
}
.section h2 {
    font-size: clamp(34px, 5vw, 66px);
    letter-spacing: 0;
    line-height: .98;
    margin: 0;
}
.section-head p,
.large-copy {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
    margin: 0;
}

.logo-strip {
    background: #fafafa;
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    padding: 28px clamp(20px, 4vw, 64px);
    text-align: center;
}
.logo-strip p {
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 18px;
}
.venue-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.venue-logos span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #303942;
    font-size: 13px;
    font-weight: 850;
    padding: 10px 16px;
}

.benefit-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.benefit {
    border-top: 3px solid var(--ink);
    padding-top: 20px;
}
.benefit:nth-child(2) { border-color: var(--teal); }
.benefit:nth-child(3) { border-color: var(--red); }
.benefit:nth-child(4) { border-color: var(--gold); }
.benefit-icon {
    align-items: center;
    background: var(--soft);
    border-radius: 16px;
    display: inline-flex;
    height: 54px;
    justify-content: center;
    margin-bottom: 18px;
    width: 54px;
}
.benefit h3 {
    font-size: 23px;
    letter-spacing: 0;
    margin-bottom: 10px;
}
.benefit p {
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

.feature-band {
    background: #111820;
    color: #fff;
}
.feature-band .section-head p { color: rgba(255,255,255,.68); }
.feature-list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.feature-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    min-height: 250px;
    padding: 24px;
}
.feature-card span {
    color: #92dbe4;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 28px;
    text-transform: uppercase;
}
.feature-card h3 {
    font-size: 27px;
    letter-spacing: 0;
    line-height: 1.08;
    margin-bottom: 14px;
}
.feature-card p {
    color: rgba(255,255,255,.70);
    line-height: 1.55;
    margin: 0;
}

.split {
    align-items: center;
    display: grid;
    gap: 54px;
    grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr);
}
.split h2 { margin-bottom: 22px; }
.tick-list {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
}
.tick-list li {
    color: #313b44;
    font-weight: 700;
    line-height: 1.45;
    padding-left: 30px;
    position: relative;
}
.tick-list li::before {
    background: var(--teal);
    border-radius: 999px;
    color: #fff;
    content: "✓";
    font-size: 12px;
    font-weight: 900;
    height: 20px;
    left: 0;
    line-height: 20px;
    position: absolute;
    text-align: center;
    top: 1px;
    width: 20px;
}
.plan.featured .tick-list li { color: rgba(255,255,255,.88); }
.insight-panel {
    background: #f7f8f9;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 24px;
}
.metrics {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 22px;
}
.metric {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
}
.metric span {
    color: var(--muted);
    display: block;
    font-size: 12px;
    font-weight: 850;
    margin-bottom: 10px;
}
.metric strong {
    display: block;
    font-size: 32px;
}
.guest-profile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
}
.guest-head {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}
.guest-head p {
    color: var(--muted);
    margin: 4px 0 0;
}
.avatar {
    align-items: center;
    background: #ddece5;
    border-radius: 999px;
    display: flex;
    font-weight: 900;
    height: 54px;
    justify-content: center;
    width: 54px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row span {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 10px;
}

.stats-band {
    background: #f3f6f7;
    border-block: 1px solid var(--line);
}
.stats-grid {
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat {
    border-left: 1px solid var(--line);
    padding: 10px 26px;
}
.stat:first-child { border-left: 0; }
.stat strong {
    display: block;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    margin-bottom: 10px;
}
.stat span {
    color: var(--muted);
    display: block;
    font-weight: 750;
    line-height: 1.45;
}

.pricing-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.plan {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 26px;
}
.plan.featured {
    background: #111820;
    border-color: #111820;
    color: #fff;
    transform: translateY(-14px);
}
.plan p {
    color: var(--muted);
    line-height: 1.5;
}
.plan.featured p { color: rgba(255,255,255,.68); }
.plan h3 {
    font-size: 28px;
    letter-spacing: 0;
    margin-bottom: 10px;
}
.plan strong {
    display: block;
    font-size: 15px;
    margin: 22px 0 12px;
}

.contact {
    background:
        linear-gradient(90deg, rgba(17,24,32,.88), rgba(17,24,32,.55)),
        url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2200&q=82") center/cover;
    color: #fff;
}
.contact-shell {
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, .86fr) minmax(360px, .7fr);
}
.contact h2 { color: #fff; margin-bottom: 18px; }
.contact p { color: rgba(255,255,255,.72); }
.lead-form {
    background: #fff;
    border-radius: 24px;
    color: var(--ink);
    padding: 24px;
}
.form-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
    color: #39434c;
    font-size: 12px;
    font-weight: 850;
}
.field input,
.field select,
.field textarea {
    border: 1px solid var(--line);
    border-radius: 12px;
    font: inherit;
    min-height: 48px;
    padding: 0 13px;
    width: 100%;
}
.field textarea {
    min-height: 96px;
    padding-top: 12px;
    resize: vertical;
}
.lead-form .btn {
    margin-top: 14px;
    width: 100%;
}
.small-print {
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.5;
    margin-top: 22px;
}
.site-footer {
    background: #080c10;
    color: rgba(255,255,255,.68);
    padding: 34px clamp(20px, 4vw, 64px);
}
.footer-inner {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1240px;
}

@media (max-width: 1080px) {
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .nav {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        gap: 0;
        left: 18px;
        padding: 10px;
        position: absolute;
        right: 18px;
        top: calc(100% + 8px);
    }
    .nav.open { display: flex; }
    .nav a {
        border-radius: 10px;
        padding: 12px;
        width: 100%;
    }
    .hero-inner,
    .split,
    .contact-shell {
        grid-template-columns: 1fr;
    }
    .hero-inner { min-height: auto; }
    .hero { min-height: auto; }
    .product-stage { transform: none; }
    .benefit-grid,
    .feature-list,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stat:nth-child(3) { border-left: 0; }
    .plan.featured { transform: none; }
}

@media (max-width: 720px) {
    .site-header {
        align-items: center;
        display: grid;
        gap: 8px;
        grid-template-columns: minmax(0, 1fr) auto auto;
        padding: 10px 14px;
    }
    .brand {
        font-size: 16px;
        min-width: 0;
    }
    .brand-mark {
        height: 30px;
        width: 30px;
    }
    .menu-toggle {
        min-height: 38px;
        padding: 0 12px;
    }
    .header-actions {
        display: flex;
        grid-column: auto;
    }
    .header-actions .btn.secondary {
        display: none;
    }
    .header-actions .btn {
        font-size: 13px;
        min-height: 38px;
        padding: 0 12px;
    }
    .nav {
        left: 12px;
        right: 12px;
    }

    .hero {
        background-position: center top;
    }
    .hero-inner {
        gap: 28px;
        grid-template-columns: minmax(0, 1fr);
        padding: 38px 14px 34px;
        width: 100%;
    }
    .eyebrow {
        font-size: 11px;
        margin-bottom: 14px;
    }
    h1 {
        font-size: clamp(36px, 11vw, 48px);
        line-height: .98;
        margin-bottom: 18px;
    }
    .hero-copy {
        font-size: 16px;
        line-height: 1.5;
    }
    .hero-actions {
        display: grid;
        gap: 10px;
        margin-top: 24px;
    }
    .hero-actions .btn {
        min-height: 46px;
        width: 100%;
    }
    .proof-line {
        flex-wrap: nowrap;
        gap: 8px;
        margin: 22px -14px 0;
        overflow-x: auto;
        padding: 0 14px 4px;
        -webkit-overflow-scrolling: touch;
    }
    .proof-line span {
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 999px;
        flex: 0 0 auto;
        padding: 8px 10px;
    }

    .product-stage {
        border-radius: 20px;
        margin: 0;
        max-width: 100%;
        min-width: 0;
        padding: 8px;
        width: 100%;
    }
    .product-window {
        border-radius: 16px;
        max-width: 100%;
        min-width: 0;
    }
    .product-top {
        display: flex;
        justify-content: center;
        padding: 11px 12px;
    }
    .product-top span {
        display: none;
    }
    .product-screen {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .mock-nav { display: none; }
    .mock-main {
        min-width: 0;
        padding: 12px;
    }
    .mock-toolbar {
        margin-bottom: 12px;
    }
    .mock-toolbar h3 {
        font-size: 22px;
    }
    .mock-pill {
        padding: 7px 10px;
    }
    .service-board {
        border-radius: 12px;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        padding: 12px;
    }
    .time-row {
        align-items: start;
        gap: 8px;
        grid-template-columns: 46px minmax(0, 1fr);
        margin-bottom: 14px;
        min-width: 0;
    }
    .time-row:last-child {
        margin-bottom: 0;
    }
    .time-row > div:empty {
        display: none;
    }
    .time-row small {
        background: #f3f5f6;
        border-radius: 999px;
        grid-row: 1 / span 10;
        padding: 6px 0;
        text-align: center;
    }
    .booking-bar {
        grid-column: 2;
        min-height: 50px;
        padding: 8px 10px;
    }
    .booking-bar strong {
        font-size: 12px;
    }

    .section {
        padding: 48px 16px;
    }
    .logo-strip {
        padding: 24px 16px;
    }
    .logo-strip p {
        font-size: 14px;
        line-height: 1.45;
    }
    .venue-logos {
        flex-wrap: nowrap;
        justify-content: flex-start;
        margin: 0 -16px;
        overflow-x: auto;
        padding: 0 16px 4px;
        -webkit-overflow-scrolling: touch;
    }
    .venue-logos span {
        flex: 0 0 auto;
        font-size: 12px;
    }
    .section h2 {
        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.04;
    }
    .section-head {
        gap: 14px;
        margin-bottom: 28px;
    }
    .section-head p,
    .large-copy {
        font-size: 16px;
    }
    .section-head,
    .benefit-grid,
    .feature-list,
    .pricing-grid,
    .metrics,
    .form-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .benefit,
    .feature-card,
    .plan,
    .insight-panel,
    .lead-form {
        border-radius: 16px;
    }
    .feature-card {
        min-height: 0;
        padding: 20px;
    }
    .feature-card span {
        margin-bottom: 18px;
    }
    .feature-card h3,
    .benefit h3,
    .plan h3 {
        font-size: 23px;
    }
    .split {
        gap: 30px;
    }
    .insight-panel {
        padding: 16px;
    }
    .metric {
        padding: 14px;
    }
    .guest-head {
        align-items: flex-start;
    }
    .tag-row {
        gap: 7px;
    }
    .pricing-grid {
        gap: 14px;
    }
    .stat,
    .stat:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 22px 0;
    }
    .stat:first-child { border-top: 0; }
    .contact {
        background-position: center;
    }
    .contact-shell {
        gap: 28px;
    }
    .field input,
    .field select,
    .field textarea {
        min-height: 46px;
    }
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .site-header {
        grid-template-columns: minmax(0, 1fr) auto;
    }
    .header-actions {
        display: none;
    }
    .brand span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    h1 {
        font-size: 38px;
    }
    .hero-actions {
        grid-template-columns: 1fr;
    }
    .mock-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }
    .guest-head {
        display: grid;
    }
}
