/* LodgeHub — Luxury Lodge Theme */
/* Theme variables: copper (default), emerald, ocean, burgundy, midnight */
:root,
[data-theme="copper"] {
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #0a0f1a;
    --copper-400: #fb923c;
    --copper-500: #ea580c;
    --copper-600: #c2410c;
    --copper-700: #9a3412;
    --copper-50: #fff7ed;
    --copper-100: #ffedd5;
    --ivory: #faf9f7;
    --cream: #f5f3ef;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-sans: 'Sora', system-ui, sans-serif;
    --radius: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-2xl: 24px;
    --shadow: 0 1px 3px rgba(15,23,42,.06);
    --shadow-md: 0 4px 12px rgba(15,23,42,.08);
    --shadow-lg: 0 12px 24px rgba(15,23,42,.1);
    --shadow-xl: 0 24px 48px rgba(15,23,42,.12);
    --header-bg: rgba(250,249,247,.95);
    --card-bg: #fff;
    --section-dark-bg: #0f172a;
}

/* Emerald theme */
[data-theme="emerald"] {
    --copper-400: #34d399;
    --copper-500: #10b981;
    --copper-600: #059669;
    --copper-700: #047857;
    --copper-50: #ecfdf5;
    --copper-100: #d1fae5;
}

/* Ocean theme */
[data-theme="ocean"] {
    --copper-400: #60a5fa;
    --copper-500: #3b82f6;
    --copper-600: #2563eb;
    --copper-700: #1d4ed8;
    --copper-50: #eff6ff;
    --copper-100: #dbeafe;
}

/* Burgundy theme */
[data-theme="burgundy"] {
    --copper-400: #f472b6;
    --copper-500: #c026d3;
    --copper-600: #a21caf;
    --copper-700: #86198f;
    --copper-50: #fdf4ff;
    --copper-100: #fae8ff;
}

/* Midnight dark theme */
[data-theme="midnight"] {
    --header-bg: rgba(15,23,42,.98);
    --card-bg: #1e293b;
    --slate-50: #1e293b;
    --slate-100: #334155;
    --slate-200: #475569;
    --slate-300: #64748b;
    --slate-400: #94a3b8;
    --slate-500: #cbd5e1;
    --slate-600: #e2e8f0;
    --slate-700: #f1f5f9;
    --slate-800: #f8fafc;
    --slate-900: #fff;
    --slate-950: #fff;
    --copper-400: #38bdf8;
    --copper-500: #0ea5e9;
    --copper-600: #0284c7;
    --copper-700: #0369a1;
    --copper-50: #0c4a6e;
    --copper-100: #075985;
    --ivory: #0f172a;
    --cream: #1e293b;
    --shadow: 0 1px 3px rgba(0,0,0,.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,.35);
    --shadow-lg: 0 12px 24px rgba(0,0,0,.4);
    --shadow-xl: 0 24px 48px rgba(0,0,0,.45);
    --section-dark-bg: #1e293b;
}
[data-theme="midnight"] .w-section-dark { background: var(--section-dark-bg) !important; }
[data-theme="midnight"] .w-section-white,
[data-theme="midnight"] .bg-white { background: var(--card-bg) !important; }
[data-theme="midnight"] .w-room-card,
[data-theme="midnight"] .w-feature-card,
[data-theme="midnight"] .w-price-card,
[data-theme="midnight"] .w-platform-card,
[data-theme="midnight"] .w-latest-card,
[data-theme="midnight"] .w-mockup,
[data-theme="midnight"] .w-platform-card-header,
[data-theme="midnight"] .w-mockup-flow-header { background: var(--card-bg) !important; }
[data-theme="midnight"] .w-room-card,
[data-theme="midnight"] .w-feature-card,
[data-theme="midnight"] .w-price-card,
[data-theme="midnight"] .w-platform-card,
[data-theme="midnight"] .w-latest-card { border-color: var(--slate-200) !important; }

* { box-sizing: border-box; }

:root { --header-height: 72px; --topbar-height: 36px; }
@media (min-width: 768px) { :root { --header-height: 88px; } }
body.has-topbar {
    padding-top: calc(36px + 72px) !important;
    --header-height: 108px;
}
@media (min-width: 768px) {
    body.has-topbar {
        padding-top: calc(36px + 88px) !important;
        --header-height: 124px;
    }
}

body {
    margin: 0;
    padding-top: var(--header-height);
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.65;
    color: var(--slate-800);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

.w-font-display { font-family: var(--font-display); }

.w-container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .w-container { padding: 0 2rem; } }

.w-flex { display: flex; }
.w-grid { display: grid; }
.w-hidden { display: none; }
.w-inline-flex { display: inline-flex; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1; }
.shrink-0 { flex-shrink: 0; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.overflow-hidden { overflow: hidden; }
.cursor-pointer { cursor: pointer; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.25rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.text-xs { font-size: 0.8125rem; }
.text-sm { font-size: 0.9375rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.6; }

.text-white { color: #fff; }
.text-stone-400 { color: var(--slate-400); }
.text-stone-500 { color: var(--slate-500); }
.text-stone-600 { color: var(--slate-600); }
.text-stone-700 { color: var(--slate-700); }
.text-stone-800 { color: var(--slate-800); }
.text-stone-900 { color: var(--slate-900); }
.text-teal-400 { color: var(--copper-500); }
.text-teal-500 { color: var(--copper-500); }
.text-teal-600 { color: var(--copper-600); }
.text-teal-700 { color: var(--copper-700); }
.text-amber-600 { color: var(--copper-600); }
.text-red-700 { color: #b91c1c; }

.bg-white { background: #fff; }
.bg-teal-50 { background: var(--copper-50); }
.bg-teal-500 { background: var(--copper-500); }
.bg-teal-600 { background: var(--copper-600); }
.bg-amber-50 { background: var(--copper-50); }
.bg-amber-100 { background: var(--copper-100); }
.bg-stone-50 { background: var(--slate-50); }
.bg-stone-900 { background: var(--slate-900); }
.bg-stone-950 { background: #0a0f1a; }
.bg-red-50 { background: #fef2f2; }

.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-stone-100 { border-color: var(--slate-100); }
.border-stone-200 { border-color: var(--slate-200); }
.border-stone-300 { border-color: var(--slate-300); }
.border-stone-800 { border-color: var(--slate-800); }
.border-teal-100 { border-color: var(--copper-100); }
.border-teal-200 { border-color: var(--copper-100); }
.border-teal-500 { border-color: var(--copper-500); }
.border-amber-100 { border-color: var(--copper-100); }
.border-red-100 { border-color: #fee2e2; }
.border-white\/20 { border-color: rgba(255,255,255,.25); }

.rounded { border-radius: 6px; }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: var(--radius-lg); }
.rounded-2xl { border-radius: var(--radius-xl); }
.rounded-3xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: 9999px; }

.transition { transition: all 0.25s ease; }

.w-nav-link:hover { color: var(--copper-600); }
.w-footer-link:hover { color: var(--copper-500); }

/* Topbar (OYO-style) */
.fd-topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 51;
    background: var(--slate-900);
    color: var(--slate-300);
    font-size: 0.8125rem;
    height: 36px;
    display: flex;
    align-items: center;
}
.fd-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 768px) { .fd-topbar-inner { padding: 0 2rem; } }
.fd-topbar-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.fd-topbar-link {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}
.fd-topbar-link:hover { color: #fff; }
.fd-topbar-label { font-weight: 600; }
.fd-topbar-sublabel { font-size: 0.75rem; color: var(--slate-400); }
.fd-topbar-right { display: flex; align-items: center; gap: 1rem; }
.fd-topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: inherit;
    text-decoration: none;
}
.fd-topbar-phone:hover { color: #fff; }
.fd-topbar .w-lang-dropdown { margin: 0; }
.fd-topbar .w-lang-trigger { color: var(--slate-300); padding: 0.25rem 0.5rem; }
.fd-topbar .w-lang-trigger:hover { color: #fff; background: rgba(255,255,255,.1); }
.fd-topbar .w-lang-menu { background: var(--slate-800); border-color: var(--slate-700); }
.fd-topbar .w-lang-option { color: var(--slate-300); }
.fd-topbar .w-lang-option:hover { background: var(--slate-700); color: #fff; }

/* Header */
.w-header {
    position: fixed;
    top: 36px; left: 0; right: 0;
    z-index: 50;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--slate-200);
}
.w-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .w-header-inner { height: 88px; padding: 0 2rem; }
    .w-nav-links { display: flex; }
}
@media (max-width: 767px) { .w-nav-links { display: none; } }
.w-logo {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.375rem;
    color: var(--slate-900);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.w-logo:hover { color: var(--copper-600); }
.w-nav-links { gap: 2.5rem; align-items: center; }
.w-nav-links a { color: var(--slate-600); text-decoration: none; font-weight: 500; font-size: 0.9375rem; }
.w-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    background: var(--slate-900);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius);
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.w-cta-btn:hover { background: var(--copper-600); color: #fff; }

/* Language dropdown */
.w-lang-dropdown {
    position: relative;
}
.w-lang-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: var(--slate-600);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    border-radius: var(--radius);
    border: none;
    background: none;
    font-family: inherit;
}
.w-lang-trigger::-webkit-details-marker { display: none; }
.w-lang-trigger:hover { color: var(--copper-600); background: var(--slate-100); }
.w-lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.25rem;
    min-width: 160px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-200);
    padding: 0.25rem;
    z-index: 60;
}
.w-lang-form { margin: 0; }
.w-lang-option {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    text-align: left;
    font-size: 0.9375rem;
    color: var(--slate-700);
    background: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.15s;
}
.w-lang-option:hover { background: var(--slate-100); color: var(--copper-600); }
.w-lang-option.active { background: var(--copper-50); color: var(--copper-700); font-weight: 500; }

/* Hero */
.w-hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 9rem;
    padding-bottom: 7rem;
    position: relative;
    overflow: hidden;
}
.w-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.w-hero-bg1 {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(234,88,12,.12), transparent 55%);
}
.w-hero-bg2 {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 85% 60%, rgba(30,41,59,.06), transparent 50%);
}
.w-hero-bg3 {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(250,249,247,.5) 100%);
}
.w-hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(234,88,12,.04) 1px, transparent 0);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 70%);
}
.w-hero-grid {
    display: grid;
    gap: 3.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .w-hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 5rem; }
    .w-hero-content { order: 1; }
    .w-hero-mockup { order: 2; }
}
.w-badge-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: #fff;
    border: 1px solid var(--copper-200);
    color: var(--copper-700);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 9999px;
    margin-bottom: 1.75rem;
    box-shadow: 0 1px 3px rgba(234,88,12,.08);
}
.w-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--copper-500), var(--copper-600));
    animation: heroPulse 2.5s ease-in-out infinite;
}
.w-badge-text { letter-spacing: 0.03em; }
@keyframes heroPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.1); } }
.w-hero-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.035em;
    display: flex;
    flex-direction: column;
    gap: 0.1em;
}
@media (min-width: 640px) { .w-hero-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .w-hero-title { font-size: 4rem; } }
.w-hero-title-line1 { color: var(--slate-900); }
.w-hero-title-line2 {
    color: var(--copper-600);
    background: linear-gradient(135deg, var(--copper-600), var(--copper-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.w-hero-desc {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
    max-width: 34rem;
    line-height: 1.75;
}
.w-hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.w-hero-btn1 {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.875rem;
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(15,23,42,.25);
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.25s ease;
}
.w-hero-btn1:hover {
    background: linear-gradient(135deg, var(--copper-600) 0%, var(--copper-500) 100%);
    box-shadow: 0 6px 20px rgba(234,88,12,.35);
    transform: translateY(-1px);
}
.w-hero-btn-arrow { transition: transform 0.25s ease; }
.w-hero-btn1:hover .w-hero-btn-arrow { transform: translateX(2px); }
.w-hero-btn2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border: 2px solid var(--slate-200);
    color: var(--slate-700);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.25s ease;
}
.w-hero-btn2:hover {
    border-color: var(--copper-300);
    color: var(--copper-700);
    box-shadow: 0 2px 12px rgba(234,88,12,.1);
}
.w-hero-btn2 svg { flex-shrink: 0; color: var(--copper-500); }
.w-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.w-hero-badge-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    color: var(--slate-600);
    transition: all 0.2s ease;
}
.w-hero-badge-item:hover {
    border-color: var(--copper-200);
    color: var(--slate-800);
}
.w-hero-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--copper-500);
    flex-shrink: 0;
}
.w-hero-badge-icon svg { width: 18px; height: 18px; }

/* Hero mockup */
.w-hero-mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(234,88,12,.08) 0%, transparent 70%);
    pointer-events: none;
}
.w-mockup {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15,23,42,.15), 0 0 0 1px rgba(0,0,0,.04);
    border: 1px solid var(--slate-200);
    background: #fff;
    z-index: 1;
}
.w-mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--slate-100);
    background: linear-gradient(135deg, var(--copper-50) 0%, #fff 100%);
}
.w-mockup-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: rgba(234,88,12,.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.w-mockup-icon svg { width: 26px; height: 26px; color: var(--copper-600); }
.w-mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    flex: 1;
}
.w-mockup-item {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--slate-100);
    cursor: pointer;
    transition: all 0.25s ease;
}
.w-mockup-item:hover {
    border-color: var(--copper-200);
    box-shadow: var(--shadow-md);
}
.w-mockup-aspect { aspect-ratio: 4/3; display: flex; flex-direction: column; }

/* Hero mockup: How guests order flow */
.w-mockup-flow { min-height: 340px; }
.w-mockup-flow-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--slate-100);
    background: linear-gradient(180deg, var(--copper-50) 0%, #fff 100%);
}
.w-mockup-flow-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--copper-600);
    margin-bottom: 0.5rem;
}
.w-mockup-flow-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--slate-900);
    margin: 0 0 0.375rem 0;
}
.w-mockup-flow-subtitle {
    font-size: 0.9375rem;
    color: var(--slate-600);
    margin: 0;
    line-height: 1.5;
}
.w-mockup-flow-steps {
    padding: 1.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.w-mockup-flow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius-lg);
    transition: background 0.2s ease;
}
.w-mockup-flow-step:hover { background: var(--slate-50); }
.w-mockup-flow-num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--copper-500), var(--copper-600));
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(234,88,12,.25);
}
.w-mockup-flow-step div { flex: 1; }
.w-mockup-flow-step strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}
.w-mockup-flow-step span {
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.5;
}

/* Sections */
.w-section { padding: 6rem 1.25rem; }
@media (min-width: 1024px) { .w-section { padding: 8rem 2rem; } }
.w-section-white { background: #fff; }
.w-section-warm { background: var(--cream); }
.w-section-dark {
    background: var(--section-dark-bg);
    color: #fff;
}
.w-section-dark .w-section-title { color: #fff; }
.w-section-dark .w-section-subtitle { color: var(--slate-300); }
.w-section-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--slate-900);
}
@media (min-width: 1024px) { .w-section-title { font-size: 2.75rem; } }
.w-section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-600);
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 4rem;
    line-height: 1.65;
}

/* Features */
.w-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .w-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}
.w-feature-card {
    padding: 2.25rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    background: #fff;
    transition: all 0.3s ease;
}
.w-feature-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--slate-300);
}
.w-feature-lodges { background: linear-gradient(160deg, var(--copper-50) 0%, #fff 70%); border-color: var(--copper-100); }
.w-feature-resto { background: linear-gradient(160deg, var(--slate-50) 0%, #fff 70%); border-color: var(--slate-200); }
.w-feature-guests { background: #fff; border-color: var(--slate-200); }
.w-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.w-feature-lodges .w-feature-icon { background: rgba(234,88,12,.12); }
.w-feature-lodges .w-feature-icon svg { color: var(--copper-600); }
.w-feature-resto .w-feature-icon { background: rgba(30,41,59,.08); }
.w-feature-resto .w-feature-icon svg { color: var(--slate-700); }
.w-feature-guests .w-feature-icon { background: var(--slate-100); }
.w-feature-guests .w-feature-icon svg { color: var(--slate-600); }
.w-feature-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--slate-900); }
.w-feature-desc { color: var(--slate-600); margin-bottom: 1.5rem; font-size: 0.9375rem; }
.w-feature-list { font-size: 0.9375rem; color: var(--slate-600); list-style: none; margin: 0; padding: 0; }
.w-feature-list li { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.w-feature-list .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.w-feature-lodges .dot { background: var(--copper-500); }
.w-feature-resto .dot { background: var(--slate-500); }
.w-feature-guests .dot { background: var(--slate-500); }

/* Steps */
.w-steps-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .w-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}
@media (min-width: 1024px) {
    .w-steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        position: relative;
    }
}
.w-step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}
.w-step-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(234,88,12,.3);
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
}
.w-step-connector {
    display: none;
}
@media (min-width: 1024px) {
    .w-step-connector {
        display: block;
        position: absolute;
        top: 50%;
        left: calc(100% + 0.25rem);
        width: 1.25rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(234,88,12,.35), transparent);
        transform: translateY(-50%);
        pointer-events: none;
        z-index: 0;
    }
    .w-step-card:last-child .w-step-connector { display: none; }
}
.w-step-icon-wrap {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-lg);
    background: rgba(234,88,12,.2);
    border: 1px solid rgba(234,88,12,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.w-step-icon { width: 1.5rem; height: 1.5rem; color: var(--copper-400); }
.w-step-num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius);
    background: rgba(234,88,12,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--copper-400);
}
.w-step-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: #fff; }
.w-step-desc { font-size: 0.9375rem; color: var(--slate-300); line-height: 1.55; }

/* Platform */
.w-platform-header { text-align: center; margin-bottom: 3.5rem; max-width: 40rem; margin-left: auto; margin-right: auto; }
.w-platform-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--slate-900);
}
@media (min-width: 1024px) { .w-platform-title { font-size: 2.5rem; } }
.w-platform-desc { font-size: 1.125rem; color: var(--slate-600); margin: 0; line-height: 1.65; }
.w-platform-grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .w-platform-grid {
        grid-template-columns: 1fr minmax(320px, 1fr);
        gap: 4rem;
    }
}
.w-platform-list { margin: 0; padding: 0; list-style: none; }
.w-platform-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    transition: all 0.25s ease;
}
.w-platform-item:last-child { margin-bottom: 0; }
.w-platform-item:hover {
    border-color: var(--copper-200);
    box-shadow: var(--shadow-md);
}
.w-platform-icon-wrap {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(234,88,12,.12) 0%, rgba(234,88,12,.06) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.w-platform-icon-svg { width: 28px; height: 28px; color: var(--copper-600); }
.w-platform-item-content { flex: 1; min-width: 0; }
.w-platform-item h4 { font-size: 1.125rem; font-weight: 600; margin: 0 0 0.375rem 0; color: var(--slate-900); }
.w-platform-item p { font-size: 0.9375rem; color: var(--slate-600); margin: 0; line-height: 1.55; }
.w-platform-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-200);
}
.w-platform-card-header { margin-bottom: 2rem; }
.w-platform-card-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--copper-600);
    margin-bottom: 0.5rem;
}
.w-platform-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin: 0; color: var(--slate-900); }
.w-platform-dl { margin: 0; padding: 0; }
.w-platform-dl-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--slate-100);
}
.w-platform-dl-row:last-child { border-bottom: none; padding-bottom: 0; }
.w-platform-dl-row:first-child { padding-top: 0; }
.w-platform-dl dt { color: var(--slate-600); font-weight: 500; margin: 0; font-size: 0.9375rem; flex-shrink: 0; }
.w-platform-dl dd {
    font-weight: 600;
    color: var(--slate-900);
    margin: 0;
    font-size: 0.9375rem;
    text-align: right;
    flex: 1;
}
.w-platform-dl dd.w-platform-pills { flex: none; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.5rem; }
.w-platform-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--copper-50);
    color: var(--copper-700);
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Lodge room management section */
.w-room-header {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 3rem;
}
.w-room-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    color: var(--slate-900);
}
@media (min-width: 1024px) { .w-room-title { font-size: 2.25rem; } }
.w-room-subtitle {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin: 0 0 1rem 0;
    line-height: 1.5;
}
.w-room-desc {
    font-size: 1rem;
    color: var(--slate-500);
    margin: 0;
    line-height: 1.65;
}
.w-room-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .w-room-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .w-room-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }
.w-room-card {
    padding: 1.75rem;
    background: #fff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.w-room-card:hover {
    border-color: var(--copper-200);
    box-shadow: var(--shadow-md);
}
.w-room-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--copper-50) 0%, rgba(234,88,12,.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.w-room-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--copper-600);
}
.w-room-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--slate-900);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}
.w-room-card-desc {
    font-size: 0.9375rem;
    color: var(--slate-600);
    margin: 0;
    line-height: 1.55;
}

/* Diagram: central system with 8 surrounding ovals (multi-channel) */
.w-diagram-wrap {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto 2rem;
    aspect-ratio: 1;
    min-height: 400px;
}
.w-diagram-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.w-diagram-line {
    stroke: #94a3b8;
    stroke-width: 1.5;
    stroke-linecap: round;
}
.w-diagram-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 42%;
    min-width: 140px;
    aspect-ratio: 1;
    border: 2px dashed #64748b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
    padding: 1rem;
}
.w-diagram-center-text {
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    font-weight: 600;
    color: var(--slate-800);
    text-align: center;
    line-height: 1.3;
}
.w-diagram-oval {
    position: absolute;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: clamp(0.7rem, 1.5vw, 0.8125rem);
    font-weight: 600;
    color: var(--slate-800);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.w-diagram-oval span { max-width: 100%; line-height: 1.2; }
.w-diagram-oval-light {
    background: #e0f2fe;
    border: 1.5px solid #7dd3fc;
}
.w-diagram-oval-dark {
    background: #1e3a5f;
    border: 1.5px solid #1e40af;
    color: #fff;
}
/* Positions: top-left, top-right, mid-r-u, mid-r-l, bottom-right, bottom-left, mid-l-l, mid-l-u */
.w-diagram-oval-1 { left: 8%; top: 5%; min-width: 140px; }
.w-diagram-oval-2 { right: 8%; top: 5%; left: auto; min-width: 160px; }
.w-diagram-oval-3 { right: 5%; top: 32%; left: auto; min-width: 160px; }
.w-diagram-oval-4 { right: 5%; top: 55%; left: auto; min-width: 160px; }
.w-diagram-oval-5 { right: 8%; bottom: 5%; left: auto; top: auto; min-width: 160px; }
.w-diagram-oval-6 { left: 8%; bottom: 5%; top: auto; min-width: 140px; }
.w-diagram-oval-7 { left: 5%; top: 55%; min-width: 160px; }
.w-diagram-oval-8 { left: 5%; top: 32%; min-width: 160px; }

/* Latest features grid */
.w-latest-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) { .w-latest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .w-latest-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
.w-latest-card {
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    transition: all 0.25s ease;
}
.w-latest-card:hover {
    border-color: var(--copper-200);
    box-shadow: var(--shadow-md);
}
.w-latest-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--copper-50);
    color: var(--copper-600);
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.w-latest-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}
.w-latest-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-900);
    margin: 0 0 0.5rem 0;
}
.w-latest-card-desc {
    font-size: 0.9375rem;
    color: var(--slate-600);
    line-height: 1.5;
    margin: 0;
}

/* Pricing */
.w-pricing-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}
@media (min-width: 640px) { .w-pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.w-price-card {
    padding: 2.25rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--slate-200);
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
}
.w-price-card:hover { border-color: var(--slate-300); box-shadow: var(--shadow-lg); }
.w-price-card.popular {
    border-color: var(--copper-500);
    background: linear-gradient(180deg, var(--copper-50) 0%, #fff 40%);
    box-shadow: var(--shadow-lg);
}
.w-price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1.25rem;
    background: var(--copper-600);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 9999px;
}
.w-price-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--slate-900); }
.w-price-amount { font-size: 2rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--slate-900); }
.w-price-card.popular .w-price-amount { color: var(--copper-600); }
.w-price-period { font-size: 0.9375rem; font-weight: 400; color: var(--slate-500); }
.w-price-desc { font-size: 0.9375rem; color: var(--slate-600); margin-bottom: 1.5rem; }
.w-price-features { list-style: none; margin: 0 0 2rem 0; padding: 0; font-size: 0.9375rem; color: var(--slate-600); }
.w-price-features li { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.w-price-features svg { width: 18px; height: 18px; color: var(--copper-500); flex-shrink: 0; }
.w-price-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.25s;
    border: 2px solid var(--slate-300);
    color: var(--slate-700);
    cursor: pointer;
    font-family: inherit;
    background: #fff;
}
.w-price-btn:hover { border-color: var(--slate-400); background: var(--slate-50); }
.w-price-card.popular .w-price-btn {
    background: var(--copper-600);
    border-color: var(--copper-600);
    color: #fff;
}
.w-price-card.popular .w-price-btn:hover { background: var(--copper-700); color: #fff; }

/* CTA */
.w-cta-section {
    padding: 6rem 1.25rem;
    background: var(--slate-900);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
@media (min-width: 1024px) { .w-cta-section { padding: 8rem 2rem; } }
.w-cta-title { font-family: var(--font-display); font-size: 2.25rem; font-weight: 600; margin-bottom: 1rem; }
@media (min-width: 1024px) { .w-cta-title { font-size: 2.75rem; } }
.w-cta-subtitle { font-size: 1.125rem; color: var(--slate-300); margin-bottom: 2.5rem; }
.w-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.w-cta-btn1 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--copper-500);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.w-cta-btn1:hover { background: var(--copper-600); }
.w-cta-btn2 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius);
    text-decoration: none;
}
.w-cta-btn2:hover { background: rgba(255,255,255,.15); color: #fff; }

/* Footer */
.w-footer {
    padding: 4.5rem 1.25rem 2.5rem;
    background: var(--slate-950);
    color: var(--slate-400);
}
.w-footer-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .w-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 3rem;
    }
    .w-footer-brand-col { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
    .w-footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 2.5rem 3rem;
        align-items: start;
    }
    .w-footer-brand-col { grid-column: auto; }
}
.w-footer-brand { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: #fff; }
.w-footer-tagline { margin-top: 0.75rem; font-size: 0.9375rem; color: var(--slate-400); line-height: 1.6; max-width: 20rem; }
.w-footer-col h4 { font-weight: 600; color: #fff; margin-bottom: 1.25rem; font-size: 0.9375rem; text-transform: uppercase; letter-spacing: 0.05em; }
.w-footer-col ul { list-style: none; margin: 0; padding: 0; }
.w-footer-col li { margin-bottom: 0.75rem; }
.w-footer-col a { color: inherit; text-decoration: none; font-size: 0.9375rem; transition: color 0.2s; }
.w-footer-col a:hover { color: var(--copper-400); }
.w-footer-bottom {
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    text-align: center;
}
@media (min-width: 640px) {
    .w-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}
.w-footer-built { color: var(--slate-400); }

/* Modals */
#loginModal, #registerModal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
#loginModal:not(.hidden), #registerModal:not(.hidden) { display: flex; }
#loginModal .modal-backdrop,
#registerModal .modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.5);
    backdrop-filter: blur(8px);
    z-index: 0;
}
#loginModal .modal-content,
#registerModal .modal-content {
    z-index: 1;
    position: relative;
    width: 100%;
    max-width: 28rem;
    background: #fff;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--slate-200);
    padding: 2rem;
}
#registerModal .modal-content,
.modal-content--tall { max-height: 90vh; overflow-y: auto; }
#loginModal .modal-close,
#registerModal .modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--slate-400);
    cursor: pointer;
    padding: 0.25rem;
}
#loginModal .modal-close:hover,
#registerModal .modal-close:hover { color: var(--slate-600); }
#loginModal label,
#registerModal label { display: block; font-weight: 500; color: var(--slate-700); margin-bottom: 0.5rem; font-size: 0.9375rem; }
#loginModal input[type="email"],
#loginModal input[type="password"],
#loginModal input[type="text"],
#registerModal input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    font-size: 1rem;
}
#loginModal input:focus,
#registerModal input:focus {
    outline: none;
    border-color: var(--copper-500);
    box-shadow: 0 0 0 3px rgba(234,88,12,.12);
}
#loginModal .login-remember,
#registerModal .login-remember { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; cursor: pointer; }
#loginModal .login-remember input,
#registerModal .login-remember input { width: auto; padding: 0; }
#loginModal .login-submit,
#registerModal .login-submit {
    width: 100%;
    padding: 1rem;
    background: var(--slate-900);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1rem;
}
#loginModal .login-submit:hover,
#registerModal .login-submit:hover { background: var(--copper-600); }
#loginModal .login-register,
#registerModal .login-register { text-align: center; margin-top: 1.25rem; font-size: 0.9375rem; color: var(--slate-600); }
#loginModal .login-register a,
#registerModal .login-register a { color: var(--copper-600); font-weight: 500; text-decoration: none; }
#loginModal .login-register a:hover,
#registerModal .login-register a:hover { color: var(--copper-700); }
#loginModal .login-error,
#registerModal .login-error {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #b91c1c;
    font-size: 0.9375rem;
    border-radius: var(--radius);
}
