﻿:root {
    --charcoal: #1c1814;
    --charcoal-mid: #2a2620;
    --charcoal-light: #3d3830;
    --gold: #c9a962;
    --gold-dark: #a88b45;
    --gold-light: #e0c98a;
    --cream: #e8e4dc;
    --cream-muted: #a39e94;
    --white: #f5f2eb;
    --font-serif: 'Cinzel', Georgia, serif;
    --font-sans: 'Source Sans 3', system-ui, sans-serif;
    --container: 1180px;
    --radius: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    color: var(--cream);
    background: var(--charcoal);
    line-height: 1.6;
    background-image:
        radial-gradient(ellipse at 20% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='%23c9a962' stroke-opacity='0.04'/%3E%3C/svg%3E");
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select { font: inherit; color: inherit; }

.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }

.site-header {
    position: fixed; inset: 0 0 auto; z-index: 100;
    background: rgba(28, 24, 20, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.25);
}
.header-inner {
    display: grid; grid-template-columns: auto 1fr auto; align-items: center;
    gap: 1.25rem; min-height: 72px;
}
.logo {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gold);
}
.main-nav ul { display: flex; justify-content: center; gap: 0.85rem; flex-wrap: wrap; }
.main-nav a {
    font-size: 0.65rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--cream-muted);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--gold); }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
    padding: 0.75rem 1.5rem; border-radius: 4px; font-weight: 600;
    font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em;
    border: none; cursor: pointer; transition: opacity 0.2s, background 0.2s, color 0.2s;
}
.btn-primary { background: var(--gold); color: var(--charcoal); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: rgba(201, 169, 98, 0.12); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.68rem; }
.btn-lg { padding: 1rem 1.75rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.section-kicker { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 0.5rem; }
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
    color: var(--white);
}
.section-title.left { text-align: left; }
.section-desc { text-align: center; color: var(--cream-muted); margin-bottom: 2rem; max-width: 620px; margin-inline: auto; }
.section-head.decor { text-align: center; }
.section-head.decor .icon { color: var(--gold); margin: 0 auto 0.75rem; display: block; }
.section { padding: 3.5rem 0; }
.decor-box {
    background: var(--charcoal-mid);
    border-radius: var(--radius);
    border: 1px solid rgba(201, 169, 98, 0.22);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hero {
    position: relative; margin-top: 72px; min-height: 85vh;
    display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(28, 24, 20, 0.92) 0%, rgba(28, 24, 20, 0.65) 45%, rgba(28, 24, 20, 0.35) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 580px; padding: 4rem 0; }
.hero-eyebrow { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.85rem, 4.5vw, 2.85rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--white);
}
.hero-lead { color: var(--cream-muted); font-size: 1.05rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.trust-bar { background: var(--charcoal-mid); padding: 2rem 0; border-block: 1px solid rgba(201, 169, 98, 0.15); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-item { display: flex; gap: 0.75rem; }
.trust-icon { color: var(--gold); flex-shrink: 0; }
.trust-item h3 { font-size: 0.86rem; font-weight: 700; color: var(--white); }
.trust-item p { font-size: 0.78rem; color: var(--cream-muted); }

.page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
    padding: 2rem 0 4rem;
}
.page-main { min-width: 0; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card {
    background: var(--charcoal-mid);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.15);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0, 0, 0, 0.4); border-color: rgba(201, 169, 98, 0.35); }
.service-image { aspect-ratio: 4/5; overflow: hidden; background: var(--charcoal-light); }
.service-image img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: 1.25rem; }
.service-body h3 { font-family: var(--font-serif); font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--gold-light); }
.service-body p { font-size: 0.84rem; color: var(--cream-muted); margin-bottom: 0.75rem; }
.service-meta { display: flex; gap: 1rem; font-size: 0.74rem; color: var(--gold); margin-bottom: 1rem; flex-wrap: wrap; }
.service-meta span { display: inline-flex; align-items: center; gap: 0.25rem; }
.eeat-note { text-align: center; font-size: 0.8rem; color: var(--cream-muted); margin-top: 1.25rem; }

.masters-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.master-card {
    background: var(--charcoal-mid);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid rgba(201, 169, 98, 0.15);
    text-align: center;
}
.master-photo { border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; background: var(--charcoal-light); aspect-ratio: 28/34; }
.master-photo img { width: 100%; height: 100%; object-fit: cover; }
.master-card h3 { font-family: var(--font-serif); font-size: 1.15rem; margin-bottom: 0.25rem; }
.master-role { font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; }
.master-bio { font-size: 0.84rem; color: var(--cream-muted); margin-bottom: 0.75rem; }
.master-credentials { text-align: left; font-size: 0.76rem; color: var(--cream-muted); }
.master-credentials li { display: flex; gap: 0.35rem; align-items: flex-start; margin-bottom: 0.35rem; }
.master-credentials .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.product-card {
    background: var(--charcoal-mid);
    border-radius: var(--radius);
    padding: 1.25rem;
    border: 1px solid rgba(201, 169, 98, 0.15);
    text-align: center;
}
.product-image { border-radius: 8px; overflow: hidden; margin-bottom: 1rem; aspect-ratio: 1; background: var(--charcoal-light); }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card h3 { font-family: var(--font-serif); font-size: 1rem; margin-bottom: 0.35rem; color: var(--gold-light); }
.product-card p { font-size: 0.82rem; color: var(--cream-muted); margin-bottom: 0.5rem; }
.product-price { font-size: 1.1rem; font-weight: 700; color: var(--gold); }

.calculator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.calculator-intro p { color: var(--cream-muted); margin-bottom: 1rem; }
.calc-notes { font-size: 0.84rem; color: var(--cream-muted); }
.calc-notes li { display: flex; gap: 0.4rem; margin-bottom: 0.4rem; }
.calc-notes .icon { color: var(--gold); flex-shrink: 0; }
.calculator-form { padding: 1.75rem; display: flex; flex-direction: column; gap: 0.85rem; }
.calculator-form label span { display: block; font-size: 0.88rem; }
.checkbox-main span { font-weight: 600; }
.calculator-form input[type="checkbox"] { accent-color: var(--gold); }
.calc-options legend { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; letter-spacing: 0.08em; }
.checkbox-label { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.86rem; cursor: pointer; color: var(--cream-muted); }
.calc-result {
    background: rgba(201, 169, 98, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(201, 169, 98, 0.25);
}
.calc-result-label { display: block; font-size: 0.76rem; color: var(--cream-muted); margin-bottom: 0.25rem; }
.calc-result-value { font-size: 1.55rem; color: var(--gold); font-family: var(--font-serif); }
.calc-disclaimer { font-size: 0.7rem; color: var(--cream-muted); text-align: center; }

.quiz-card { padding: 2rem; max-width: 100%; }
.quiz-progress { position: relative; height: 6px; background: var(--charcoal-light); border-radius: 3px; margin-bottom: 0.5rem; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: var(--gold); transition: width 0.3s; border-radius: 3px; }
.quiz-step-label { font-size: 0.74rem; color: var(--cream-muted); display: block; margin-bottom: 1.25rem; }
.quiz-step { display: none; }
.quiz-step.active { display: block; }
.quiz-step h3 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 1rem; color: var(--white); }
.quiz-options label {
    display: block; padding: 0.75rem 1rem; margin-bottom: 0.5rem;
    border: 1px solid rgba(201, 169, 98, 0.2); border-radius: 6px;
    cursor: pointer; font-size: 0.88rem; transition: border-color 0.2s, background 0.2s;
}
.quiz-options label:has(input:checked) { border-color: var(--gold); background: rgba(201, 169, 98, 0.12); }
.quiz-options input { margin-right: 0.5rem; accent-color: var(--gold); }
.quiz-result-class { font-weight: 600; color: var(--gold); margin: 1rem 0; }
.quiz-nav { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card {
    background: var(--charcoal-mid);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid rgba(201, 169, 98, 0.12);
}
.stars { display: flex; gap: 2px; color: var(--gold); margin-bottom: 0.75rem; }
.review-card blockquote p { font-size: 0.88rem; color: var(--cream-muted); margin-bottom: 1rem; font-style: italic; }
.review-card footer strong { display: block; font-size: 0.86rem; color: var(--white); }
.review-card footer span { font-size: 0.76rem; color: var(--cream-muted); }

.faq-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start; }
.faq-intro { color: var(--cream-muted); font-size: 0.88rem; margin-top: 0.75rem; }
.faq-item { border-bottom: 1px solid rgba(201, 169, 98, 0.18); padding: 1rem 0; }
.faq-item summary { font-weight: 600; cursor: pointer; list-style: none; color: var(--white); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 0.75rem; font-size: 0.86rem; color: var(--cream-muted); }

.booking-sidebar { position: relative; }
.booking-sticky {
    position: sticky;
    top: 88px;
    padding: 1.5rem;
}
.booking-sticky h2 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-light);
}
.booking-lead { font-size: 0.84rem; color: var(--cream-muted); margin-bottom: 1rem; }
.booking-perks { margin-bottom: 1.25rem; font-size: 0.8rem; color: var(--cream-muted); }
.booking-perks li { display: flex; gap: 0.4rem; margin-bottom: 0.35rem; }
.booking-form { display: flex; flex-direction: column; gap: 0.85rem; }
.booking-form label span {
    display: block; font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; color: var(--gold); margin-bottom: 0.3rem;
}
.booking-form input,
.booking-form select {
    width: 100%; padding: 0.6rem 0.7rem;
    border: 1px solid rgba(201, 169, 98, 0.3); border-radius: 4px;
    background: var(--charcoal); color: var(--cream);
}
.booking-form input:focus,
.booking-form select:focus { outline: 2px solid var(--gold); outline-offset: 1px; }

.site-footer { background: #12100e; color: rgba(232, 228, 220, 0.85); padding: 3rem 0 0; border-top: 1px solid rgba(201, 169, 98, 0.2); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
.logo-footer { font-family: var(--font-serif); font-size: 1.15rem; display: block; margin-bottom: 0.5rem; color: var(--gold); letter-spacing: 0.1em; }
.footer-brand p { font-size: 0.84rem; opacity: 0.8; margin-bottom: 0.75rem; }
.footer-brand .icon { color: var(--gold); opacity: 0.85; }
.footer-contacts h4, .footer-legal h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; color: var(--gold); }
.footer-contacts p, .footer-legal p { font-size: 0.84rem; margin-bottom: 0.4rem; display: flex; align-items: flex-start; gap: 0.4rem; }
.footer-contacts a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(201, 169, 98, 0.12); padding: 1rem 0; font-size: 0.76rem; opacity: 0.65; }

.toast {
    position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(120%);
    background: var(--gold); color: var(--charcoal);
    padding: 0.85rem 1.5rem; border-radius: 6px; font-size: 0.88rem; font-weight: 600;
    z-index: 200; transition: transform 0.3s; max-width: 90vw; text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ——— Hero & promise strip ——— */
.hero-promises {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.hero-promises span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(201, 169, 98, 0.35);
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold-light);
}
.hero-promises .icon { color: var(--gold); }

.promise-strip {
    background: var(--charcoal-mid);
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
    padding: 1.25rem 0;
}
.promise-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.promise-item { display: flex; gap: 0.65rem; align-items: flex-start; }
.promise-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: 4px;
    flex-shrink: 0;
}
.promise-icon .icon { color: var(--gold); }
.promise-item strong { display: block; font-size: 0.82rem; color: var(--white); margin-bottom: 0.15rem; }
.promise-item span { font-size: 0.72rem; color: var(--cream-muted); }

/* ——— Atmosphere ——— */
.atmosphere-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: center;
}
.atmosphere-copy p { color: var(--cream-muted); margin-bottom: 1rem; }
.atmosphere-list { font-size: 0.86rem; color: var(--cream-muted); }
.atmosphere-list li { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; align-items: flex-start; }
.atmosphere-list .icon { color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }
.atmosphere-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.atmosphere-images img { border-radius: var(--radius); border: 1px solid rgba(201, 169, 98, 0.2); object-fit: cover; height: 100%; min-height: 180px; }

/* ——— Pricing ——— */
.subsection-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin: 2rem 0 0.35rem;
    color: var(--gold-light);
}
.subsection-desc { font-size: 0.84rem; color: var(--cream-muted); margin-bottom: 1rem; }
.tier-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.tier-tab {
    padding: 0.65rem 1rem;
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 4px;
    background: var(--charcoal-mid);
    cursor: pointer;
    text-align: center;
    min-width: 120px;
}
.tier-tab.active { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.tier-tab small { display: block; font-size: 0.68rem; opacity: 0.85; margin-top: 0.15rem; }
.price-table-wrap { overflow-x: auto; padding: 1rem; margin-bottom: 1rem; }
.price-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.price-table th, .price-table td { padding: 0.75rem; border-bottom: 1px solid rgba(201, 169, 98, 0.15); text-align: center; }
.price-table th[scope="row"] { text-align: left; }
.price-table thead th { color: var(--gold); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }
.price-table [data-tier].tier-highlight { background: rgba(201, 169, 98, 0.15); color: var(--gold-light); font-weight: 700; }
.full-price-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.full-price-item { padding: 1rem; position: relative; }
.full-price-duration {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
}
.full-price-item h4 { font-size: 0.9rem; margin: 0.35rem 0; color: var(--white); }
.full-price-item strong { color: var(--gold); }

/* ——— Visit flow & combos ——— */
.visit-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    list-style: none;
}
.visit-flow-step { position: relative; padding: 1.25rem; padding-top: 2.25rem; }
.visit-flow-num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--gold);
    opacity: 0.5;
}
.visit-flow-step h3 { font-family: var(--font-serif); font-size: 0.95rem; margin-bottom: 0.35rem; }
.visit-flow-step p { font-size: 0.8rem; color: var(--cream-muted); }

.combos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.combo-card { position: relative; padding: 1.25rem; }
.combo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    background: var(--gold);
    color: var(--charcoal);
    border-radius: 4px;
}
.combo-card h3 { font-family: var(--font-serif); font-size: 1rem; margin-bottom: 0.5rem; padding-right: 3rem; }
.combo-card p { font-size: 0.82rem; color: var(--cream-muted); margin-bottom: 0.75rem; }
.combo-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; font-size: 0.84rem; color: var(--gold); }

/* ——— Style gallery ——— */
.style-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1rem; }
.style-tab {
    padding: 0.55rem 1rem;
    border: 1px solid rgba(201, 169, 98, 0.3);
    background: var(--charcoal-mid);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
}
.style-tab.active { background: var(--gold); color: var(--charcoal); }
.style-panel { display: none; padding: 1.25rem; gap: 1.25rem; align-items: center; grid-template-columns: 200px 1fr; }
.style-panel.active { display: grid; }
.style-panel img { border-radius: var(--radius); object-fit: cover; width: 100%; height: 260px; }
.style-panel h3 { font-family: var(--font-serif); margin-bottom: 0.5rem; }
.style-panel p { font-size: 0.86rem; color: var(--cream-muted); margin-bottom: 0.75rem; }

.master-tier-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.5rem;
    background: rgba(201, 169, 98, 0.15);
    color: var(--gold);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.master-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.72rem;
    color: var(--gold);
    margin-bottom: 0.35rem;
}
.master-meta .icon { fill: var(--gold); stroke: var(--gold); }
.master-card { position: relative; }
.master-book { margin-top: 0.75rem; width: 100%; }

/* ——— Loyalty ——— */
.loyalty-banner { margin: 2rem 0; padding: 1.5rem; }
.loyalty-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
}
.loyalty-inner h2 { font-family: var(--font-serif); font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--gold-light); }
.loyalty-inner p { font-size: 0.86rem; color: var(--cream-muted); margin-bottom: 0.75rem; }
.loyalty-inner ul { font-size: 0.84rem; color: var(--cream-muted); }
.loyalty-inner li { display: flex; gap: 0.4rem; margin-bottom: 0.35rem; }
.loyalty-inner .icon { color: var(--gold); }
.loyalty-inner img { border-radius: 8px; border: 1px solid rgba(201, 169, 98, 0.25); }

/* ——— Gallery & gift ——— */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { padding: 0; overflow: hidden; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-item figcaption { padding: 0.75rem 1rem; font-size: 0.82rem; color: var(--cream-muted); }

.gift-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.gift-visual { border-radius: var(--radius); border: 1px solid rgba(201, 169, 98, 0.25); width: 100%; }
.gift-options { display: flex; flex-direction: column; gap: 0.75rem; }
.gift-option { padding: 1rem; }
.gift-option strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; color: var(--gold); margin-bottom: 0.25rem; }
.gift-option p { font-size: 0.84rem; color: var(--cream-muted); }

/* ——— Reviews carousel ——— */
.reviews-carousel { max-width: 640px; margin: 0 auto; }
.reviews-track { position: relative; min-height: 200px; }
.review-slide {
    display: none;
    background: var(--charcoal-mid);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: var(--radius);
    padding: 1.75rem;
    text-align: center;
}
.review-slide.active { display: block; }
.review-source {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 0.35rem;
}
.review-slide blockquote p { font-size: 0.9rem; color: var(--cream-muted); font-style: italic; margin: 0.75rem 0 1rem; }
.review-slide footer strong { display: block; color: var(--white); }
.review-slide footer span { font-size: 0.78rem; color: var(--cream-muted); }
.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.25rem; }
.reviews-prev, .reviews-next {
    width: 40px; height: 40px; border-radius: 4px;
    border: 1px solid rgba(201, 169, 98, 0.35);
    background: var(--charcoal-mid);
    font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--gold);
}
.reviews-dots { display: flex; gap: 0.5rem; }
.reviews-dot {
    width: 10px; height: 10px; border-radius: 2px; border: none;
    background: rgba(201, 169, 98, 0.35); cursor: pointer; padding: 0;
}
.reviews-dot.active { background: var(--gold); }

/* ——— Widgets & modals ——— */
.footer-phone { margin-top: 0.75rem; font-size: 0.84rem; }
.footer-phone a { color: var(--gold-light); }
.footer-links h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; color: var(--gold); }
.footer-links ul li { margin-bottom: 0.35rem; }
.footer-links a { font-size: 0.84rem; opacity: 0.85; }
.footer-links a:hover { color: var(--gold); }
.footer-grid { grid-template-columns: 1.2fr 1fr 0.8fr 1fr; }

.wa-widget {
    position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.15rem; border-radius: 4px;
    background: #25d366; color: #fff; font-weight: 600; font-size: 0.82rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.wa-widget .icon { stroke: #fff; }
.style-widget {
    position: fixed; right: 1.25rem; bottom: 5.5rem; z-index: 90;
    width: 48px; height: 48px; border-radius: 4px; border: none;
    background: var(--gold); color: var(--charcoal); cursor: pointer;
    display: grid; place-items: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.modal {
    position: fixed; inset: 0; z-index: 200;
    display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); }
.modal-dialog {
    position: relative; width: min(100%, 440px);
    background: var(--charcoal-mid); border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: var(--radius); padding: 1.75rem;
}
.modal-close {
    position: absolute; top: 0.75rem; right: 0.75rem;
    width: 36px; height: 36px; border: none; background: var(--charcoal);
    border-radius: 4px; font-size: 1.25rem; cursor: pointer; color: var(--cream-muted);
}
.modal-tag {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--gold); margin-bottom: 0.5rem;
}
.modal-dialog h2 { font-family: var(--font-serif); font-size: 1.35rem; margin-bottom: 0.5rem; }
.modal-dialog p { font-size: 0.9rem; color: var(--cream-muted); margin-bottom: 1rem; }
.modal-dialog .btn-outline { margin-top: 0.5rem; }
.exit-checklist { margin-bottom: 1.25rem; }
.exit-checklist li {
    display: flex; align-items: flex-start; gap: 0.5rem;
    font-size: 0.88rem; margin-bottom: 0.45rem; color: var(--cream-muted);
}
.exit-checklist .icon { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
body.modal-open { overflow: hidden; }

@media (max-width: 1100px) {
    .page-layout { grid-template-columns: 1fr; }
    .booking-sidebar { order: -1; }
    .booking-sticky { position: static; }
}

@media (max-width: 1024px) {
    .promise-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .atmosphere-grid { grid-template-columns: 1fr; }
    .visit-flow-grid, .combos-grid, .full-price-list, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gift-grid { grid-template-columns: 1fr; }
    .loyalty-inner { grid-template-columns: 1fr; }
    .style-panel.active { grid-template-columns: 1fr; }
    .services-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .masters-grid, .reviews-grid { grid-template-columns: 1fr; }
    .calculator-grid, .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .header-inner { grid-template-columns: 1fr auto; }
    .main-nav {
        position: fixed; top: 72px; left: 0; right: 0;
        background: var(--charcoal-mid); padding: 1rem;
        border-bottom: 1px solid rgba(201, 169, 98, 0.2);
        transform: translateY(-120%); opacity: 0; pointer-events: none;
        transition: transform 0.25s, opacity 0.25s;
    }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .main-nav ul { flex-direction: column; align-items: center; gap: 0.75rem; }
    .header-cta { display: none; }
    .menu-toggle { display: flex; }
    .services-grid, .products-grid { grid-template-columns: 1fr; }
    .promise-strip-inner, .visit-flow-grid, .combos-grid, .full-price-list, .gallery-grid { grid-template-columns: 1fr; }
    .atmosphere-images { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .wa-widget span { display: none; }
    .wa-widget { padding: 0.85rem; }
    .style-widget { bottom: 5rem; }
}
