:root {
    --bg: #080808;
    --bg-elevated: #111111;
    --bg-surface: #161616;
    --bg-hover: #1c1c1c;
    --text: #e8e4df;
    --text-secondary: #8a8580;
    --text-muted: #555;
    --accent: #b8956a;
    --accent-light: #d4b48a;
    --accent-dim: rgba(184, 149, 106, 0.08);
    --accent-border: rgba(184, 149, 106, 0.2);
    --border: #1e1e1e;
    --border-subtle: #161616;
    --red: #c44;
    --green: #4a4;
    --radius: 6px;
    --radius-lg: 12px;
    --font: 'Inter', -apple-system, sans-serif;
    --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; }
::selection { background: var(--accent); color: var(--bg); }

/* ===== TOP BAR ===== */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: #0a0a0a;
    border-bottom: 1px solid var(--border);
    padding: 8px 40px;
}
.topbar-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12px; color: var(--text-secondary);
}
.topbar-left, .topbar-center, .topbar-right {
    display: flex; align-items: center; gap: 8px;
}
.topbar-center { color: var(--accent); font-weight: 500; }
.topbar-phone { display: flex; align-items: center; gap: 8px; }
.topbar-social { display: flex; align-items: center; gap: 12px; margin-left: 12px; }
.topbar-social a { color: var(--text-muted); transition: color 0.2s; }
.topbar-social a:hover { color: var(--text); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 37px; left: 0; right: 0; z-index: 100;
    padding: 0 40px; height: 72px;
    display: flex; align-items: center;
    transition: all 0.5s var(--ease);
}
.navbar.scrolled {
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid var(--border);
    top: 0;
}
.nav-container {
    width: 100%; max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-shield {
    width: 44px; height: 44px;
    border: 1.5px solid var(--accent);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    transition: all 0.3s;
}
.logo-shield:hover { background: var(--accent); color: var(--bg); }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 400; letter-spacing: 3px;
    line-height: 1; color: var(--text);
}
.logo-sub {
    font-size: 9px; font-weight: 400; letter-spacing: 4px;
    color: var(--text-muted); margin-top: 2px;
}
.nav-links {
    display: flex; align-items: center; gap: 32px;
}
.nav-links a {
    font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
    color: var(--text-secondary); transition: color 0.3s;
    text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 28px;
    background: var(--accent);
    border: none; border-radius: var(--radius);
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    color: var(--bg); text-transform: uppercase;
    transition: all 0.3s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184, 149, 106, 0.3); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--bg);
    padding-top: 109px;
    overflow: hidden;
}
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) brightness(0.6) contrast(1.1);
}
.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg) 0%, rgba(8,8,8,0.7) 40%, rgba(8,8,8,0.3) 70%, transparent 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px;
    min-height: calc(100vh - 109px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--text);
    text-transform: uppercase;
}
.hero h1 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
    text-transform: none;
}
.hero-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(184, 149, 106, 0.3);
}
.btn-gold {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px;
    background: var(--accent); color: var(--bg);
    border: none; border-radius: var(--radius);
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(184, 149, 106, 0.3); }
.btn-outline-white {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 32px;
    background: transparent; color: var(--text);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    font-size: 12px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
}
.btn-outline-white:hover { border-color: var(--text); background: rgba(255,255,255,0.05); }
.hero-social-proof { display: flex; align-items: center; gap: 16px; }
.hero-avatars { display: flex; }
.hero-avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--bg); background-size: cover; background-position: center; margin-left: -10px; }
.hero-avatar:first-child { margin-left: 0; }
.hero-stars { display: flex; gap: 2px; }
.hero-rating-text { font-size: 13px; color: var(--text-secondary); font-weight: 500; }

/* ===== FEATURES BAR ===== */
.features-bar {
    position: relative;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.features-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 32px;
    border-right: 1px solid var(--border);
    transition: background 0.3s;
}
.feature-bar-item:last-child { border-right: none; }
.feature-bar-item:hover { background: var(--bg-elevated); }
.feature-bar-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.feature-bar-item strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    display: block;
    margin-bottom: 2px;
}
.feature-bar-item span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ===== BARBERS SHOWCASE ===== */
.barbers-showcase{padding:80px 40px;background:var(--bg-elevated);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.barbers-inner{max-width:1400px;margin:0 auto}
.barbers-header{text-align:center;margin-bottom:40px}
.barbers-header h2{font-family:var(--font-serif);font-size:2rem;font-weight:400;letter-spacing:-.5px}
.barbers-header p{font-size:13px;color:var(--text-muted);margin-top:8px}
.barbers-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.barber-card-show{background:var(--bg-surface);border:1px solid var(--border-subtle);border-radius:var(--radius-lg);padding:24px;text-align:center;transition:all .3s var(--ease)}
.barber-card-show:hover{border-color:var(--border);transform:translateY(-4px)}
.barber-photo-wrap{width:96px;height:96px;margin:0 auto 16px;border-radius:50%;overflow:hidden;border:3px solid var(--border);background:var(--accent-dim)}
.barber-photo-wrap img{width:100%;height:100%;object-fit:cover;display:block}
.barber-photo-fallback{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:28px;font-weight:700;color:var(--accent)}
.barber-card-show h3{font-size:15px;font-weight:600}
.barber-spec{font-size:11px;color:var(--accent);letter-spacing:.5px;display:block;margin-top:2px}
.barber-rating{margin-top:8px;font-size:12px;color:var(--accent);display:flex;align-items:center;justify-content:center;gap:4px}
.barber-rating small{color:var(--text-muted);font-size:11px}
@media(max-width:900px){.barbers-showcase{padding:60px 24px}.barbers-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.barbers-grid{grid-template-columns:1fr;max-width:340px;margin:0 auto}}
/* ===== BOOKING SECTION ===== */
.booking {
    padding: 120px 40px;
    position: relative;
}
.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--accent));
}
.booking-container {
    max-width: 1400px;
    margin: 0 auto;
}
.booking-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}
.booking-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: -0.5px;
}
.booking-line {
    width: 48px;
    height: 2px;
    background: var(--accent);
    margin-top: 12px;
}
.booking-hours {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent);
}
.booking-hours-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}
.booking-hours-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

/* Steps */
.steps-progress {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding: 24px 32px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.step {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.4s var(--ease);
}
.step.active .step-num {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
    box-shadow: 0 0 20px rgba(184, 149, 106, 0.3);
}
.step.completed .step-num {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}
.step-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
}
.step.active .step-label { color: var(--text); }
.step-sublabel {
    font-size: 10px;
    color: var(--text-muted);
    display: block;
    margin-top: 2px;
}
.step-connector {
    flex: 1;
    height: 1px;
    background: var(--border);
    margin: 0 20px;
    position: relative;
}
.step-connector::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--accent);
    transition: width 0.6s var(--ease);
}
.step-connector.filled::after { width: 100%; }

/* Wizard */
.wizard-body { position: relative; min-height: 500px; }
.wizard-step { display: none; animation: wizardIn 0.5s var(--ease); }
.wizard-step.active { display: block; }
@keyframes wizardIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wizard-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.wizard-col {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    transition: border-color 0.3s;
}
.wizard-col:hover { border-color: var(--border); }
.col-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400;
    color: var(--border);
    line-height: 1;
    user-select: none;
}
.col-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.col-header svg { color: var(--accent); }
.col-header span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Options */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 380px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.options-list::-webkit-scrollbar { width: 4px; }
.options-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.option-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.option-card:hover {
    border-color: var(--border);
    background: var(--bg-hover);
}
.option-card.selected {
    border-color: var(--accent-border);
    background: var(--accent-dim);
}
.option-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    display: block;
}
.option-price {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}
.option-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.25s;
    flex-shrink: 0;
}
.option-card.selected .option-check {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}
.option-with-avatar { display: flex; align-items: center; gap: 12px; }
.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 2px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
    transition: border-color 0.3s, transform 0.3s;
    overflow: hidden;
}
.avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-subtle);
    flex-shrink: 0;
    transition: border-color 0.3s, transform 0.3s;
}
.option-card.selected .avatar,
.option-card.selected .avatar-img { border-color: var(--accent); transform: scale(1.05); }
.barber-card { padding: 12px 14px; }
.barber-card:hover .avatar-img { transform: scale(1.08); }
.option-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--accent);
}

/* Calendar */
.calendar-wrapper { margin-bottom: 20px; }
.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.cal-nav-btn {
    width: 32px;
    height: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
}
.cal-nav-btn:hover { border-color: var(--accent); color: var(--accent); }
.cal-month {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
}
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 8px;
}
.cal-day-name {
    text-align: center;
    font-size: 9px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    padding: 8px 0;
}
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}
.cal-day {
    text-align: center;
    padding: 10px 4px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-secondary);
    border: 1px solid transparent;
}
.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--accent-dim);
    border-color: var(--accent-border);
}
.cal-day.selected {
    background: var(--accent);
    color: var(--bg);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(184, 149, 106, 0.25);
}
.cal-day.today { border-color: var(--accent-border); color: var(--accent); }
.cal-day.disabled { opacity: 0.2; cursor: not-allowed; }
.cal-day.empty { cursor: default; }

/* Time */
.time-section { margin-top: 20px; }
.time-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.time-btn {
    padding: 11px 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.25s;
    text-align: center;
}
.time-btn:hover { border-color: var(--border); color: var(--text); }
.time-btn.selected {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(184, 149, 106, 0.2);
}
.time-loading {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    padding: 24px;
}

/* Summary */
.summary-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}
.summary-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 10px 0;
}
.summary-row.total { padding-top: 16px; }
.summary-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.summary-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    flex: 1;
    text-align: center;
}
.summary-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    text-align: right;
}
.summary-price.big {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--accent);
    font-weight: 400;
}
.summary-divider {
    height: 1px;
    background: var(--border-subtle);
    margin: 2px 0;
}
.summary-divider.thick {
    height: 2px;
    background: var(--border);
    margin: 8px 0;
}

.btn-confirm {
    width: 100%;
    padding: 18px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn-confirm::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.12));
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(184, 149, 106, 0.3);
}
.btn-confirm:hover::after { opacity: 1; }
.btn-confirm:active { transform: translateY(0); }

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* Payment */
.pix-info {
    margin-top: 16px;
}
.pix-box {
    background: var(--bg-surface);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    color: var(--accent);
}
.pix-box p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}
.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-item {
    padding: 32px 28px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.feature-item:hover { border-color: var(--border); transform: translateY(-4px); }
.feature-item:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}
.feature-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}
.feature-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 40px;
}
.gallery-header {
    max-width: 1400px;
    margin: 0 auto 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.gallery-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
}
.gallery-subtitle {
    font-size: 13px;
    color: var(--text-muted);
}
.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
    cursor: pointer;
}
.gallery-item:nth-child(1) {
    grid-row: span 2;
    aspect-ratio: auto;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
    filter: saturate(0.85);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.gallery-overlay small {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 40px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.testimonial-card {
    padding: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}
.testimonial-card:hover { border-color: var(--border); }
.testimonial-stars {
    display: flex;
    gap: 2px;
    color: var(--accent);
    margin-bottom: 20px;
}
.testimonial-card p {
    font-family: var(--font-serif);
    font-size: 17px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}
.testimonial-name { font-size: 13px; font-weight: 600; display: block; }
.testimonial-role { font-size: 11px; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
    padding: 64px 40px 32px;
}
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--border);
}
.footer-brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.footer-brand-desc {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 300px;
    line-height: 1.7;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
}
.heart { color: var(--red); }

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    background: var(--bg-elevated);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.5s var(--ease);
    z-index: 200;
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== LANDING ===== */
.landing-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}
.landing-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,149,106,0.06) 0%, transparent 70%);
    filter: blur(80px);
}
.landing-hero .container {
    max-width: 720px;
    position: relative;
    z-index: 1;
}
.landing-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}
.landing-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}
.landing-hero h1 em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent);
}
.landing-hero p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.75;
}
.landing-actions { display: flex; gap: 16px; justify-content: center; }

.landing-features {
    padding: 100px 40px;
    border-top: 1px solid var(--border);
}
.landing-features h2 {
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    margin-bottom: 56px;
}
.landing-features-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.landing-feature {
    padding: 36px 32px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}
.landing-feature:hover { border-color: var(--border); transform: translateY(-2px); }
.feature-icon-lg {
    width: 52px;
    height: 52px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 20px;
}
.landing-feature h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}
.landing-feature p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.landing-shops {
    padding: 80px 40px;
    border-top: 1px solid var(--border);
}
.landing-shops h2 {
    text-align: center;
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    margin-bottom: 40px;
}
.shops-list {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.shop-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
}
.shop-list-item:hover { border-color: var(--accent-border); transform: translateY(-2px); }
.shop-list-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent-dim);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}
.shop-list-info { flex: 1; }
.shop-list-info h3 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.shop-list-info p { font-size: 12px; color: var(--text-muted); }
.shop-list-item svg { color: var(--text-muted); flex-shrink: 0; }

.landing-cta {
    padding: 100px 40px;
    text-align: center;
    border-top: 1px solid var(--border);
}
.landing-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    margin-bottom: 16px;
}
.landing-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}
.footer-bottom-landing {
    padding: 24px 40px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .wizard-columns { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:nth-child(1) { grid-row: span 1; aspect-ratio: 3/4; }
    .features-bar-inner { grid-template-columns: repeat(2, 1fr); }
    .feature-bar-item:nth-child(2) { border-right: none; }
}
@media (max-width: 900px) {
    .topbar { display: none; }
    .navbar { top: 0; padding: 0 24px; }
    .hero { padding-top: 72px; }
    .hero-content { padding: 40px 24px; }
    .hero h1 { font-size: 3.5rem; }
    .booking { padding: 80px 24px; }
    .features { padding: 80px 24px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery { padding: 80px 24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials { padding: 80px 24px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }
    .wizard-columns { grid-template-columns: 1fr; }
    .footer { padding: 48px 24px 24px; }
    .footer-top { flex-direction: column; gap: 32px; }
    .landing-features-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .booking-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .step-label, .step-sublabel { display: none; }
    .steps-progress { padding: 16px 20px; justify-content: center; gap: 8px; }
    .step-connector { margin: 0 8px; }
    .features-bar-inner { grid-template-columns: 1fr; }
    .feature-bar-item { border-right: none; border-bottom: 1px solid var(--border); }
    .feature-bar-item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
    .hero-text { padding: 32px 16px; }
    .hero h1 { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions a { width: 100%; justify-content: center; }
    .hero-social-proof { flex-wrap: wrap; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .time-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-top { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .landing-actions { flex-direction: column; align-items: center; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}
