/* ── Tokens ── */
:root {
    --p:      #c0533a;
    --p-lt:   #e8795f;
    --p-dk:   #8f3929;
    --bg:     #faf9f7;
    --surface:#ffffff;
    --dark:   #1a1714;
    --mid:    #6b635d;
    --lt:     #f0ede9;
    --border: #e2ddd8;

    --fd: 'DM Serif Display', Georgia, serif;
    --fs: 'DM Sans', system-ui, sans-serif;

    --radius: 10px;
    --shadow: 0 2px 12px rgba(26,23,20,0.08);
    --shadow-lg: 0 8px 40px rgba(26,23,20,0.12);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--fs);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark);
    background: var(--bg);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
    font-family: var(--fd);
    font-weight: 400;
    line-height: 1.15;
}

/* ── Utilities ── */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-family: var(--fs);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.18s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--p);
    color: #fff;
}
.btn-primary:hover { background: var(--p-dk); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-ghost {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--p); color: var(--p); }

.btn-white {
    background: #fff;
    color: var(--p);
    font-weight: 600;
}
.btn-white:hover { background: var(--lt); }

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Nav ── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250,249,247,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fd);
    font-size: 1.35rem;
    color: var(--dark);
    flex-shrink: 0;
}

.nav-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--p);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-mark svg { width: 18px; height: 18px; fill: #fff; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--mid);
    transition: color 0.15s;
}
.nav-links a:hover { color: var(--dark); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-login {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--mid);
    transition: color 0.15s;
}
.nav-login:hover { color: var(--dark); }

/* ── Hero ── */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, oklch(0.61 0.17 38 / 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lt);
    color: var(--p);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    color: var(--dark);
    max-width: 820px;
    margin: 0 auto 24px;
}

.hero h1 em {
    font-style: normal;
    color: var(--p);
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--mid);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.7;
}

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

.hero-trust {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--mid);
}

.hero-trust-stars {
    color: var(--p);
    letter-spacing: -2px;
}

.hero-screenshot {
    margin-top: 72px;
    position: relative;
}

.hero-screenshot-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 960px;
    margin: 0 auto;
}

.hero-screenshot-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--lt);
    border-bottom: 1px solid var(--border);
}

.hero-screenshot-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.hero-screenshot-url {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    color: var(--mid);
    background: var(--surface);
    border-radius: 6px;
    padding: 4px 12px;
}

.hero-dashboard-preview {
    padding: 32px;
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    min-height: 320px;
}

.preview-sidebar {
    grid-row: 1 / 3;
    background: var(--lt);
    border-radius: 10px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-nav-item {
    padding: 9px 12px;
    border-radius: 7px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.preview-nav-item.active {
    background: var(--surface);
    color: var(--p);
    box-shadow: var(--shadow);
}

.preview-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.4;
    flex-shrink: 0;
}

.preview-nav-item.active .preview-nav-dot { opacity: 1; }

.preview-stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
}

.preview-stat-label {
    font-size: 0.78rem;
    color: var(--mid);
    font-weight: 500;
    margin-bottom: 8px;
}

.preview-stat-value {
    font-family: var(--fd);
    font-size: 2rem;
    color: var(--dark);
}

.preview-stat-sub {
    font-size: 0.78rem;
    color: var(--p);
    margin-top: 4px;
}

.preview-card {
    grid-column: 2 / 4;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
}

.preview-card-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 14px;
}

.preview-booking-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preview-booking {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: var(--lt);
    border-radius: 7px;
}

.preview-booking-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.preview-booking-dot.confirmed { background: #22c55e; }
.preview-booking-dot.pending   { background: var(--p); }
.preview-booking-dot.checkout  { background: var(--mid); }

.preview-booking-info { flex: 1; }

.preview-booking-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
}

.preview-booking-dates {
    font-size: 0.75rem;
    color: var(--mid);
}

.preview-booking-amount {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

/* ── Logos bar ── */
.logos-bar {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.logos-label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--mid);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.logos-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logos-list span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--border);
    letter-spacing: -0.02em;
}

/* ── Features ── */
.features-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.features-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.features-header p { font-size: 1.05rem; color: var(--mid); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: box-shadow 0.2s, transform 0.2s;
}

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

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--lt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg { width: 22px; height: 22px; stroke: var(--p); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

.feature-card h3 { font-family: var(--fs); font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }

/* ── How it works ── */
.how-bg { background: var(--surface); }

.how-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 64px;
}

.how-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.how-header p { color: var(--mid); }

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.step { text-align: center; }

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--p);
    color: #fff;
    font-family: var(--fd);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 { font-family: var(--fs); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

/* ── Pricing ── */
.pricing-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}

.pricing-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.pricing-header p { color: var(--mid); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 36px 32px;
}

.pricing-card.featured {
    border-color: var(--p);
    position: relative;
    box-shadow: 0 0 0 4px rgba(192,83,58,0.08);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--p);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--mid);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.pricing-currency { font-size: 1.2rem; font-weight: 600; color: var(--dark); margin-top: 6px; }
.pricing-amount { font-family: var(--fd); font-size: 3rem; color: var(--dark); }
.pricing-period { font-size: 0.88rem; color: var(--mid); }

.pricing-desc { font-size: 0.88rem; color: var(--mid); margin-bottom: 28px; line-height: 1.5; }

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--dark);
}

.pricing-check {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--p);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* ── CTA banner ── */
.cta-banner {
    background: var(--p);
    color: #fff;
    text-align: center;
    padding: 80px 24px;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* ── Footer ── */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.55);
    padding: 64px 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fd);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 14px;
}

.footer-brand-mark {
    width: 28px;
    height: 28px;
    background: var(--p);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-mark svg { width: 16px; height: 16px; fill: #fff; }

.footer-tagline { font-size: 0.85rem; line-height: 1.6; max-width: 260px; }

.footer-col h4 {
    font-family: var(--fs);
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.82rem;
}

.footer-bottom a { color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer-bottom a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .section { padding: 64px 0; }
    .hero { padding: 64px 0 48px; }
    .hero-dashboard-preview { grid-template-columns: 1fr 1fr; min-height: auto; }
    .preview-sidebar { display: none; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .hero-screenshot { display: none; }
}

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