/* ============================================
   NŌCH — Landing Page Stylesheet
   ============================================ */

:root {
    --black: #0a0a0a;
    --white: #f5f2ed;
    --cream: #f5f2ed;
    --gold: #c9a96e;
    --gold-hover: #d4b97a;
    --gray-100: #e8e4df;
    --gray-200: #d0cbc4;
    --gray-400: #8a8580;
    --gray-600: #5a5550;
    --gray-800: #1a1816;
    --gray-850: #151311;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ---- Cookie Consent ---- */
.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 90;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    max-width: 460px;
    margin: 0 auto;
    transform: translateY(calc(100% + 2rem));
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-text {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gray-200);
    line-height: 1.5;
    margin-bottom: 0.85rem;
}
.cookie-banner-text a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(201,169,110,0.3);
}

.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
}
.cookie-btn {
    flex: 1;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}
.cookie-btn-accept {
    background: var(--ed-cream);
    color: var(--ed-ink);
}
.cookie-btn-decline {
    background: transparent;
    color: var(--gray-400);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Close (x) — quiet dismissal for the session, doesn't record consent. */
.cookie-banner { position: fixed; }
.cookie-banner-close {
    position: absolute;
    top: 0.4rem;
    right: 0.55rem;
    width: 1.6rem;
    height: 1.6rem;
    padding: 0;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s ease, background 0.2s ease;
}
.cookie-banner-close:hover {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.06);
}

/* Tighter mobile pass — the banner was eating ~25% of viewport on phones,
   competing with the COMPLETE ORDER button on the order page. */
@media (max-width: 640px) {
    .cookie-banner {
        bottom: 0.5rem;
        left: 0.5rem;
        right: 0.5rem;
        padding: 0.85rem 1rem 0.9rem;
        border-radius: 10px;
    }
    .cookie-banner-text {
        font-size: 0.7rem;
        line-height: 1.45;
        margin-bottom: 0.65rem;
        padding-right: 1.4rem; /* keep clear of the close x */
    }
    .cookie-banner-actions { gap: 0.4rem; }
    .cookie-btn {
        padding: 0.55rem 0.75rem;
        font-size: 0.65rem;
        letter-spacing: 0.07em;
    }
    .cookie-banner-close {
        top: 0.3rem;
        right: 0.4rem;
    }
}

/* ---- Launch Banner ---- */
.launch-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: linear-gradient(90deg, #c9a96e 0%, #d4b97a 50%, #c9a96e 100%);
    color: var(--black);
    overflow: hidden;
    transition: transform 0.4s ease;
}
.launch-banner.hidden {
    transform: translateY(-100%);
}
.launch-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.6rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: relative;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.launch-banner-icon { font-size: 0.85rem; }
.launch-banner-text strong {
    font-weight: 700;
    background: rgba(10,10,10,0.12);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    margin-left: 0.35rem;
}
.launch-banner-close {
    position: absolute;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--black);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.2rem 0.4rem;
    opacity: 0.6;
    line-height: 1;
}
.launch-banner-close:hover { opacity: 1; }

/* Push nav down when banner is visible */
body:not(.banner-dismissed) .nav {
    top: 38px;
}
body:not(.banner-dismissed) .hero {
    padding-top: calc(6rem + 38px);
}

@media (max-width: 640px) {
    .launch-banner-content { font-size: 0.68rem; padding-right: 2.5rem; }
    .launch-banner-text { line-height: 1.4; }
}

/* ---- Nav ---- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1.1rem 1.5rem;
    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.nav.scrolled {
    background: rgba(10,10,10,0.95);
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    justify-self: start;
    z-index: 102;
    position: relative;
}
.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
}

.nav-logo {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--cream);
    justify-self: center;
    z-index: 101;
}

.nav-cta {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.55rem 1.1rem;
    border: 1px solid var(--gold);
    border-radius: 6px;
    color: var(--gold);
    transition: all 0.3s;
    justify-self: end;
    z-index: 101;
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

/* ---- Menu Overlay ---- */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.menu-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.menu-inner {
    text-align: center;
    padding: 2rem;
}

.menu-links {
    list-style: none;
    margin-bottom: 3rem;
}
.menu-links li {
    margin-bottom: 1.5rem;
}
.menu-links a {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--gray-400);
    transition: color 0.3s;
    display: inline-block;
}
.menu-links a:hover,
.menu-links a.active {
    color: var(--cream);
}
.menu-links .menu-cta {
    color: var(--gold);
    font-style: italic;
}
.menu-links .menu-cta.active {
    color: var(--gold-hover);
}

.menu-footer {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gray-600);
    text-transform: uppercase;
}
.menu-footer p { margin: 0; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}
.btn-gold {
    background: var(--gold);
    color: var(--black);
}
.btn-gold:hover { background: var(--gold-hover); }
.btn-ghost {
    background: transparent;
    color: var(--gray-200);
    border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: var(--cream); }
.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-large { padding: 1.1rem 3rem; font-size: 0.85rem; }

/* ---- Page Hero (for sub-pages) ---- */
.page-hero {
    padding: 10rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    margin: 1rem 0;
}
.page-hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.page-hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-400);
    max-width: 500px;
    margin: 0 auto;
}

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem 4rem;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(201,169,110,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero-content { position: relative; max-width: 700px; }
.hero-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(201,169,110,0.25);
    border-radius: 100px;
}
.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-style: italic;
    color: var(--gold);
}
.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 2.5rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gray-600);
}
.hero-proof strong { color: var(--gray-400); font-weight: 500; }
.hero-proof-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--gold);
}

/* ---- Sections ---- */
.section { padding: 7rem 0; }
.section-dark { background: var(--gray-850); }

.section-header { margin-bottom: 3.5rem; }
.section-header-center { text-align: center; }

.section-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.section-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-400);
    max-width: 500px;
    margin: 0 auto;
}

/* ---- Trust Bar ---- */
.trust-bar {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-align: center;
}
.trust-bar p {
    font-size: 0.75rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gray-600);
    letter-spacing: 0.02em;
}

/* ---- Steps ---- */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.step {
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    transition: border-color 0.3s;
}
.step:hover { border-color: rgba(201,169,110,0.2); }
.step-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}
.step h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.step p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ---- Features ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature {
    padding: 1.75rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 14px;
    position: relative;
}
.feature-icon {
    color: var(--gold);
    margin-bottom: 1rem;
}
.feature h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}
.feature p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.6;
}
.feature-premium { border-color: rgba(201,169,110,0.15); }
.feature-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold);
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 4px;
}
.feature-badge-gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.feature-concierge { border-color: rgba(201,169,110,0.2); }

/* ---- Pricing ---- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
}
.pricing-card {
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    position: relative;
}
.pricing-card-featured {
    border-color: var(--gold);
    background: rgba(201,169,110,0.03);
}
.pricing-popular {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 0.3rem 1rem;
    border-radius: 100px;
}
.pricing-tier {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gray-400);
    display: block;
    margin-bottom: 1rem;
}
.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.pricing-currency {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-400);
}
.pricing-price {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
}
.pricing-split {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gray-600);
    margin-bottom: 0.3rem;
}
.pricing-joke {
    font-size: 0.7rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gray-400);
    margin-bottom: 2rem;
}
.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}
.pricing-features li {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray-200);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding-left: 1.25rem;
    position: relative;
}
.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    transform: translateY(-50%);
}
.pricing-card-concierge {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.02);
}
.pricing-card .btn { width: 100%; }

/* ---- Emotional CTA ---- */
.section-cta {
    background: linear-gradient(135deg, rgba(201,169,110,0.04) 0%, transparent 50%);
}
.section-cta h2 em { color: var(--gold); font-style: italic; }

.section-final h2 em { color: var(--gold); font-style: italic; }

/* ---- FAQ ---- */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.faq-item p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ---- Order Form ---- */
.order-form {
    max-width: 700px;
    margin: 0 auto;
}
.form-section {
    margin-bottom: 2.5rem;
}
.form-section-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.form-hint {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray-400);
    margin-bottom: 1rem;
}

/* Package toggle */
.package-toggle, .type-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.package-toggle-3 { grid-template-columns: 1fr 1fr 1fr; }
.package-option input, .type-option input { display: none; }
.package-card, .type-card {
    padding: 1.25rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}
.package-card:hover, .type-card:hover { border-color: rgba(255,255,255,0.2); }
.package-option input:checked ~ .package-card,
.type-option input:checked ~ .type-card {
    border-color: var(--gold);
    background: rgba(201,169,110,0.05);
}
.package-name {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gray-200);
    margin-bottom: 0.4rem;
}
.package-price {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--cream);
}
.type-card {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-200);
}

/* Form fields */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-field {
    display: block;
}
.form-field span {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.4rem;
}
.form-field input,
.form-field select,
.form-field textarea {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: border-color 0.3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--gray-600); }
.form-field select { appearance: none; cursor: pointer; }
.form-field select option { background: var(--black); color: var(--cream); }
.form-field textarea { resize: vertical; min-height: 100px; }

/* Venue rows */
.venue-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.venue-name-input,
.venue-row select {
    padding: 0.75rem 0.85rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    transition: border-color 0.3s;
}
.venue-name-input:focus,
.venue-row select:focus {
    outline: none;
    border-color: var(--gold);
}
.venue-name-input::placeholder { color: var(--gray-600); }
.venue-row select { appearance: none; cursor: pointer; min-width: 110px; }
.venue-row select option { background: var(--black); color: var(--cream); }

.btn-add-venue {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--gray-400);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-add-venue:hover { border-color: var(--gold); color: var(--gold); }

/* File upload */
.file-upload {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--gray-400);
    cursor: pointer;
    transition: all 0.2s;
}
.file-upload:hover { border-color: var(--gold); color: var(--gold); }
.file-upload input { display: none; }
.file-upload span { font-size: 0.85rem; }

/* Submit */
.form-submit { text-align: center; margin-top: 2rem; }
.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
.payment-methods > span {
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-600);
}
.payment-icons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.payment-icon {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gray-400);
    padding: 0.3rem 0.7rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    letter-spacing: 0.03em;
}
.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border-radius: 4px;
    background: transparent;
}
.payment-logo svg {
    display: block;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.form-disclaimer {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--gray-600);
    margin-top: 1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Success */
.order-success {
    text-align: center;
    padding: 4rem 0;
}
.success-icon { color: var(--gold); margin-bottom: 1.5rem; }
.order-success h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}
.order-success p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-400);
}

/* ---- Legal Pages ---- */
.legal-content {
    max-width: 720px;
    margin: 0 auto;
    color: var(--gray-200);
    line-height: 1.75;
}
.legal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--cream);
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 1rem;
}
.legal-content ul {
    margin: 0 0 1.5rem 1.5rem;
    padding: 0;
}
.legal-content li {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.legal-content strong {
    color: var(--cream);
    font-weight: 500;
}
.legal-content a {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(201,169,110,0.3);
    text-underline-offset: 3px;
}
.legal-content a:hover { text-decoration-color: var(--gold); }

/* Footer legal links */
.footer-legal {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.65rem;
    color: var(--gray-600);
    letter-spacing: 0.05em;
}
.footer-legal a {
    color: var(--gray-400);
    transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ---- Footer ---- */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
}
.footer-logo {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--cream);
    display: block;
    margin-bottom: 0.5rem;
}
.footer p {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}
.footer-email {
    font-size: 0.75rem;
    color: var(--gold);
    transition: opacity 0.2s;
}
.footer-email:hover { opacity: 0.7; }

/* ================================================
   CITY LANDING PAGES
   ================================================ */
.city-content {
    max-width: 760px;
    margin: 0 auto;
    color: var(--gray-200);
    line-height: 1.75;
}
.city-content h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--cream);
    margin-top: 3rem;
    margin-bottom: 1rem;
}
.city-content h2:first-child { margin-top: 0; }
.city-content h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.city-content p {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 1rem;
}
.city-content ul, .city-content ol {
    margin: 0 0 1.5rem 1.5rem;
    padding: 0;
}
.city-content li {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.city-content strong {
    color: var(--cream);
    font-weight: 500;
}

.city-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}

.city-day {
    padding: 1.5rem 1.75rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
}
.city-day h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--gold);
}
.city-day ul {
    margin: 0;
    padding-left: 1.25rem;
}
.city-day li { margin-bottom: 0.4rem; }

/* Cities grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.city-card {
    padding: 2rem 1.75rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    transition: all 0.3s;
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.city-card:hover {
    background: rgba(201,169,110,0.04);
    border-color: rgba(201,169,110,0.2);
    transform: translateY(-4px);
}

.city-card-flag {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.city-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--cream);
    margin: 0;
}

.city-card p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.5;
    flex: 1;
    margin: 0;
}

.city-card-link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.75rem;
}

.city-card-other {
    background: rgba(201,169,110,0.05);
    border-color: rgba(201,169,110,0.15);
}

@media (max-width: 768px) {
    .cities-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .city-card { padding: 1.25rem 1rem; }
    .city-card h3 { font-size: 1.15rem; }
    .city-card p { font-size: 0.75rem; }
}

@media (max-width: 480px) {
    .cities-grid { grid-template-columns: 1fr; }
}

/* ================================================
   BEFORE / AFTER COMPARISON
   ================================================ */
.compare-section {
    padding: 6rem 0;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.compare-col {
    padding: 2rem;
    border-radius: 16px;
}

.compare-before {
    background: rgba(150, 80, 80, 0.04);
    border: 1px solid rgba(232, 128, 116, 0.12);
}
.compare-before h3 {
    color: #e88074;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
}

.compare-after {
    background: rgba(201, 169, 110, 0.05);
    border: 1px solid rgba(201, 169, 110, 0.2);
}
.compare-after h3 {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-align: center;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.compare-list li {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
    color: var(--gray-200);
}

.compare-before li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #e88074;
    font-weight: 500;
}

.compare-after li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 500;
}

.compare-divider {
    color: var(--gold);
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .compare-grid { grid-template-columns: 1fr; gap: 1rem; }
    .compare-divider {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }
}

/* ================================================
   DEMO SECTION
   ================================================ */
.demo-section {
    background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(201,169,110,0.03) 50%, rgba(10,10,10,0.1) 100%);
}
.demo-hero {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.demo-hero h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.demo-hero h2 em { font-style: italic; color: var(--gold); }
.demo-sub {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.demo-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}
.demo-hint {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--gray-600);
    text-transform: uppercase;
}

/* ================================================
   TESTIMONIALS / SOCIAL PROOF
   ================================================ */
.testimonials-section {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.testimonial {
    padding: 2rem 1.75rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.55;
    color: var(--cream);
    font-style: italic;
    flex: 1;
}

.testimonial-author {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.testimonial-name {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cream);
}
.testimonial-role {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--gray-400);
    letter-spacing: 0.05em;
}

.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.stat {
    text-align: center;
}
.stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.stat-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
    .social-proof-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
}

/* ================================================
   PRICE CALCULATOR
   ================================================ */
.calc-wrap {
    max-width: 560px;
    margin: 0 auto;
}

.calc-tier-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.calc-tier-btn {
    padding: 1rem 0.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: var(--gray-200);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1.4;
}
.calc-tier-btn span {
    display: block;
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-top: 0.25rem;
}
.calc-tier-btn.active {
    background: rgba(201,169,110,0.1);
    border-color: var(--gold);
    color: var(--gold);
}
.calc-tier-btn.active span {
    color: rgba(201,169,110,0.7);
}

.calc-card {
    background: linear-gradient(180deg, rgba(201,169,110,0.05) 0%, rgba(10,10,10,0.3) 100%);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 20px;
    padding: 2.5rem 1.75rem;
}

.calc-result {
    text-align: center;
    margin-bottom: 2.5rem;
}
.calc-result-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}
.calc-result-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.calc-amount {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    transition: color 0.3s;
}
.calc-currency {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gray-400);
    letter-spacing: 0.05em;
}
.calc-result-sub {
    display: block;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gray-600);
    letter-spacing: 0.05em;
}

.calc-slider-group {
    margin-bottom: 2rem;
}
.calc-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}
.calc-slider-label > span:first-child {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
}
.calc-slider-value {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--cream);
}
.calc-slider-value span {
    color: var(--gold);
    font-weight: 500;
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--gold) 0%, var(--gold) 24%, rgba(255,255,255,0.1) 24%, rgba(255,255,255,0.1) 100%);
    border-radius: 3px;
    outline: none;
    transition: background 0.1s;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: var(--gold);
    border: 3px solid var(--black);
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 12px rgba(201,169,110,0.5);
    transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.15);
}
.calc-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: var(--gold);
    border: 3px solid var(--black);
    border-radius: 50%;
    cursor: grab;
}

.calc-slider-marks {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.65rem;
    color: var(--gray-600);
    letter-spacing: 0.05em;
}

.calc-comparisons {
    padding: 1.25rem 1rem;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    margin-bottom: 2rem;
}
.calc-comparison-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    text-align: center;
}
.calc-comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.calc-comparison-list li {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray-200);
    line-height: 1.5;
    padding-left: 0.3rem;
}
.calc-icon {
    display: inline-block;
    width: 24px;
    margin-right: 0.4rem;
}

/* ================================================
   iPHONE MOCKUPS — FOMO visuals
   ================================================ */
.phone-showcase {
    position: relative;
    padding: 5rem 1.5rem 4rem;
    background: linear-gradient(180deg, transparent 0%, rgba(201,169,110,0.02) 50%, transparent 100%);
    overflow: hidden;
}

.phone-showcase-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.phone-showcase-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.phone-showcase-header h2 em { font-style: italic; color: var(--gold); }
.phone-showcase-header p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-400);
    max-width: 480px;
    margin: 0 auto;
}

.phones-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* iPhone frame */
.phone {
    flex-shrink: 0;
    position: relative;
    width: 240px;
    height: 490px;
    background: #1a1816;
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.5),
        0 15px 30px rgba(201,169,110,0.08),
        inset 0 0 0 2px rgba(255,255,255,0.04);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

/* Notch */
.phone::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #0a0a0a;
    border-radius: 14px;
    z-index: 3;
}

/* Side button details */
.phone::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 130px;
    width: 3px;
    height: 40px;
    background: #2a2825;
    border-radius: 0 2px 2px 0;
}

/* Phone variations — slight rotation for layered effect */
.phone-1 { transform: translateY(20px) rotate(-5deg); }
.phone-2 { transform: translateY(0) rotate(0deg); z-index: 2; }
.phone-3 { transform: translateY(20px) rotate(5deg); }

.phone-1:hover { transform: translateY(10px) rotate(-3deg); }
.phone-2:hover { transform: translateY(-10px); }
.phone-3:hover { transform: translateY(10px) rotate(3deg); }

/* Mock content for phone screens */
.mock-screen {
    width: 100%;
    height: 100%;
    padding: 34px 18px 18px;
    display: flex;
    flex-direction: column;
    font-family: var(--font-sans);
    color: var(--cream);
    position: relative;
}

/* Home screen mock */
.mock-home {
    background: #0a0a0a;
    background-image: radial-gradient(ellipse at 50% 30%, rgba(201,169,110,0.08) 0%, transparent 60%);
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}
.mock-monogram {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 10px;
}
.mock-line {
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin: 4px 0;
}
.mock-name {
    font-family: var(--font-serif);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.mock-sub {
    font-size: 7px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.mock-date {
    font-size: 8px;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    margin-bottom: 32px;
}
.mock-nav-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mock-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-200);
}
.mock-nav-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mock-nav-num {
    font-size: 7px;
    color: var(--gold);
}

/* Venues screen mock */
.mock-venues {
    background: #0a0a0a;
    padding: 34px 14px 14px;
    gap: 10px;
}
.mock-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0 8px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mock-back {
    color: var(--gray-200);
    font-size: 14px;
}
.mock-logo {
    font-family: var(--font-serif);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
}
.mock-page-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
}
.mock-page-tag {
    font-size: 6px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 4px;
}
.mock-venue-card {
    background: var(--gray-800);
    border-radius: 8px;
    overflow: hidden;
}
.mock-venue-img {
    height: 80px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.mock-venue-img::after {
    content: 'FRIDAY NIGHT';
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 5px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--cream);
    background: rgba(0,0,0,0.65);
    padding: 2px 5px;
    border-radius: 6px;
}
.mock-venue-body {
    padding: 8px 10px;
}
.mock-venue-type {
    font-size: 5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 2px;
}
.mock-venue-name {
    font-family: var(--font-serif);
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 1px;
}
.mock-venue-area {
    font-size: 6px;
    font-weight: 300;
    color: var(--gray-400);
    margin-bottom: 4px;
}

/* Schedule screen mock */
.mock-schedule {
    background: var(--cream);
    padding: 34px 14px 14px;
    color: var(--black);
}
.mock-schedule .mock-topbar {
    border-bottom-color: rgba(0,0,0,0.08);
}
.mock-schedule .mock-back { color: var(--black); }
.mock-schedule .mock-logo { color: var(--black); }
.mock-day-label {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    margin-top: 8px;
}
.mock-day-sub {
    font-size: 6px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8a8580;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.mock-timeline {
    position: relative;
    padding-left: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mock-timeline::before {
    content: '';
    position: absolute;
    left: 3px;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: #d0cbc4;
}
.mock-event {
    position: relative;
}
.mock-event::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d0cbc4;
}
.mock-event-gold::before {
    background: var(--gold);
}
.mock-time {
    font-size: 6px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1px;
}
.mock-event-title {
    font-family: var(--font-serif);
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 1px;
}
.mock-event-desc {
    font-size: 7px;
    font-weight: 300;
    color: #5a5550;
    line-height: 1.4;
}

/* Bottom nav */
.mock-bottom-nav {
    position: absolute;
    bottom: 6px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-around;
    padding: 6px 0 4px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.mock-nav-pill {
    font-size: 5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #5a5550;
}
.mock-nav-pill.active { color: var(--gold); }

.phone-showcase-footer {
    text-align: center;
    margin-top: 3rem;
}
.phone-showcase-hint {
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    /* Horizontal swipe-snap carousel — every phone fully reachable */
    .phones-row {
        gap: 1.25rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        padding: 3rem 1.5rem 2rem;
        scroll-snap-type: x mandatory;
        scroll-padding: 1.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        align-items: center;
    }
    .phones-row::-webkit-scrollbar { display: none; }
    .phone {
        width: 230px;
        height: 470px;
        border-radius: 34px;
        padding: 9px;
        scroll-snap-align: center;
        /* Kill rotations on mobile — they clip the left phone + block touch */
        transform: none !important;
    }
    .phone-screen { border-radius: 26px; }
    .phone::before { width: 72px; height: 20px; top: 12px; border-radius: 13px; }
    .mock-screen { padding: 32px 14px 14px; }
    .mock-monogram { font-size: 54px; }
    .mock-page-title { font-size: 16px; }
    .mock-venue-img { height: 70px; }
    .phone-showcase { padding: 3rem 0; }
    .phone-showcase .container { padding: 0; }
    /* Subtle swipe hint */
    .phone-showcase-header { padding: 0 1.5rem; }
    .phone-showcase-footer { padding: 0 1.5rem; }
}

/* ================================================
   TRIP PLANNER PAGE
   ================================================ */
.planner-hero {
    padding: 8rem 1.5rem 3rem;
}

.planner-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.planner-field label,
.planner-field > label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
}

.planner-field input[type="text"],
.planner-field select {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 16px;
    transition: border-color 0.3s;
}
.planner-field input[type="text"]:focus,
.planner-field select:focus {
    outline: none;
    border-color: var(--gold);
}
.planner-field input::placeholder { color: var(--gray-600); }
.planner-field select { appearance: none; cursor: pointer; }
.planner-field select option { background: var(--black); color: var(--cream); }

.planner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* City chips */
.city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.city-chip {
    padding: 0.9rem 0.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: var(--gray-200);
    font-family: var(--font-sans);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.city-chip .city-flag { font-size: 1.3rem; line-height: 1; }
.city-chip .city-name {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}
.city-chip.active {
    background: rgba(201,169,110,0.08);
    border-color: var(--gold);
    color: var(--gold);
}
.city-chip:hover {
    border-color: rgba(255,255,255,0.2);
}

/* Vibe cards */
.vibe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.6rem;
}
.vibe-option input { display: none; }
.vibe-card {
    padding: 1rem 0.6rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}
.vibe-icon {
    font-size: 1.3rem;
    color: var(--gold);
}
.vibe-label {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream);
}
.vibe-desc {
    font-size: 0.65rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.4;
    letter-spacing: 0.02em;
}
.vibe-option input:checked ~ .vibe-card {
    background: rgba(201,169,110,0.06);
    border-color: var(--gold);
}

.planner-disclaimer {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--gray-600);
    margin-top: 0.75rem;
}

/* ---- Loading State ---- */
.loading-hero {
    text-align: center;
    padding: 4rem 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.loading-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.loading-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    animation: loadingPulse 1.4s infinite;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes loadingPulse {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.2); }
}

.loading-hero h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
    transition: opacity 0.3s;
}

.loading-hero p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-400);
}

/* ---- Generated Plan ---- */
.plan-result-section {
    padding-bottom: 3rem;
}

.plan-hero {
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-hero-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.plan-hero h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 0.4rem;
}
.plan-hero-sub {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray-400);
    letter-spacing: 0.05em;
}

.plan-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.plan-intro {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    color: var(--gray-200);
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.plan-day {
    margin-bottom: 2.5rem;
}

.plan-day-header {
    margin-bottom: 1.25rem;
}
.plan-day-header h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}
.plan-day-header p {
    font-size: 0.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--gray-400);
}

.plan-events {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-event {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
}
.plan-event-time {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gold);
    padding-top: 0.15rem;
}
.plan-event-tag {
    display: inline-block;
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.plan-event-body h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    color: var(--cream);
}
.plan-event-venue {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-200);
    margin-bottom: 0.3rem;
}
.plan-event-desc {
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.5;
}

/* Fading day (fades into paywall) */
.plan-day-fading {
    position: relative;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0.4) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0.4) 100%);
}

/* ---- Paywall ---- */
.paywall {
    max-width: 600px;
    margin: -2rem auto 0;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(201,169,110,0.04) 40%, rgba(10,10,10,0.9) 100%);
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.paywall-lock {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(201,169,110,0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.paywall h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.paywall h3 em {
    font-style: italic;
    color: var(--gold);
}

.paywall p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.6;
    max-width: 420px;
    margin: 0 auto 1.75rem;
}

.paywall-price {
    margin-bottom: 1.5rem;
}
.paywall-from {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.4rem;
}
.paywall-amount {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.2rem;
}
.paywall-split {
    display: block;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--gray-600);
}

.paywall-cta {
    display: inline-flex !important;
    min-width: 260px;
}

.paywall-link {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-top: 0.75rem;
    transition: color 0.2s;
}
.paywall-link:hover { color: var(--gold); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .nav { padding: 0.9rem 1rem; }
    .nav-logo { font-size: 0.75rem; letter-spacing: 0.25em; }
    .nav-cta { font-size: 0.6rem; padding: 0.45rem 0.85rem; }
    .steps { grid-template-columns: 1fr; gap: 1rem; }
    .features-grid { grid-template-columns: 1fr; gap: 1rem; }
    .pricing-grid, .pricing-grid-3 { grid-template-columns: 1fr; gap: 1.5rem; }
    .package-toggle-3 { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .venue-row { grid-template-columns: 1fr; }
    .venue-row select { min-width: unset; }
    .hero { padding: 5rem 1.5rem 3rem; }
    .section { padding: 5rem 0; }

    /* Planner mobile */
    .city-grid { grid-template-columns: repeat(2, 1fr); }
    .vibe-grid { grid-template-columns: 1fr; gap: 0.5rem; }
    .vibe-card {
        flex-direction: row;
        padding: 0.85rem 1rem;
        text-align: left;
    }
    .vibe-desc { text-align: left; }
    .planner-grid { grid-template-columns: 1fr; }
    .plan-event { grid-template-columns: 55px 1fr; gap: 0.75rem; padding: 0.9rem; }
}

/* ---- Desktop / Large Screens ---- */
@media (min-width: 1024px) {
    .hero { padding: 8rem 1.5rem 6rem; }
    .section { padding: 9rem 0; }

    /* Tighter container, more air */
    .container { max-width: 1200px; }

    /* Hero makes bigger impact on desktop */
    .hero h1 { font-size: clamp(3rem, 6vw, 5rem); }

    /* Side-by-side planner form for desktop */
    .planner-form { max-width: 720px; }

    /* Plan events with better typography */
    .plan-event { padding: 1.25rem 1.5rem; gap: 1.5rem; }
    .plan-event-body h4 { font-size: 1.15rem; }
    .plan-event-desc { font-size: 0.85rem; }

    /* Paywall bigger on desktop */
    .paywall { padding: 3.5rem 3rem; }
    .paywall-amount { font-size: 3rem; }

    /* Pricing cards have more breathing room */
    .pricing-card { padding: 3rem 2.5rem; }

    /* Features grid — 3 columns stays but with more air */
    .features-grid { gap: 2rem; }
    .feature { padding: 2.25rem; }

    /* Bigger CTAs on desktop */
    .btn { padding: 1rem 2.25rem; }
    .btn-large { padding: 1.2rem 3rem; }
}

/* Extra large screens — take advantage of the space */
@media (min-width: 1440px) {
    .container { max-width: 1300px; }
    .hero h1 { font-size: 5.5rem; }
    .page-hero h1 { font-size: 4.5rem; }
}

/* ============================================================
   PRE-FILLED BUDGET FEATURE SECTION (pricing.html)
   ============================================================ */
.prefilled-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 900px) {
    .prefilled-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.prefilled-copy h2 { margin: 1rem 0 1.25rem; }
.prefilled-copy .section-sub { margin-bottom: 2rem; }
.prefilled-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.prefilled-points li {
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
}
.prefilled-points li:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.prefilled-points li strong { color: #fff; font-weight: 500; }

/* Phone mockup */
.prefilled-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.phone-frame {
    position: relative;
    width: 320px;
    height: 650px;
    background: #0a0a0a;
    border-radius: 48px;
    padding: 12px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 30px;
    background: #0a0a0a;
    border-radius: 0 0 22px 22px;
    z-index: 2;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: #f5f2ed;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}
.phone-topbar {
    padding: 50px 20px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(245,242,237,0.9);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    flex-shrink: 0;
}
.phone-topbar-back {
    font-size: 1.1rem;
    color: #0a0a0a;
}
.phone-topbar-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: #0a0a0a;
}
/* When the topbar logo is the SVG emblem rather than text */
img.phone-topbar-emblem {
    height: 18px;
    width: auto;
    display: block;
}
.phone-body {
    padding: 1.25rem 1.25rem 2rem;
    overflow: hidden;
    flex: 1;
}
.phone-tag {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: #c9a96e;
    font-weight: 600;
}
.phone-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 500;
    color: #0a0a0a;
    margin: 0.35rem 0 0.25rem;
    line-height: 1.1;
}
.phone-sub {
    font-size: 0.72rem;
    color: rgba(10,10,10,0.55);
    margin: 0 0 1.25rem;
    line-height: 1.4;
}
.phone-total {
    background: #0a0a0a;
    color: #fff;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 1rem;
}
.phone-total-label {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.phone-total-amount {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    color: #c9a96e;
    font-weight: 500;
    line-height: 1.1;
    margin: 2px 0;
}
.phone-kr { font-size: 0.9rem; color: rgba(201,169,110,0.7); font-weight: 400; }
.phone-total-sub {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
}
.phone-expense {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    margin-bottom: 1rem;
    align-items: center;
}
.phone-expense-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,169,110,0.1);
    border-radius: 10px;
    font-size: 1rem;
    flex-shrink: 0;
}
.phone-expense-body { flex: 1; min-width: 0; }
.phone-expense-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: #0a0a0a;
    font-weight: 500;
    margin-bottom: 2px;
}
.phone-expense-meta {
    font-size: 0.62rem;
    color: rgba(10,10,10,0.5);
}
.phone-expense-meta strong { color: #0a0a0a; font-weight: 500; }
.phone-owes {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 0.85rem;
}
.phone-owes-title {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(10,10,10,0.5);
    margin-bottom: 0.65rem;
}
.phone-owes-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: #0a0a0a;
    padding: 0.35rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.phone-owes-row:first-of-type { border-top: none; padding-top: 0; }
.phone-owes-more { color: rgba(10,10,10,0.55); font-style: italic; }

.prefilled-caption {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-align: center;
    margin: 0.75rem 0 0;
    font-style: italic;
}

/* Order form note */
.form-note {
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.2);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
    margin: 0 0 2rem;
}
.form-note strong { color: #c9a96e; font-weight: 500; }
