/* Turkish Barbers — premium dark barber theme */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --gold: #d4af37;
    --gold-bright: #e8c96a;
    --gold-dim: #9a7b2e;
    --burgundy: #6b0f0f;
    --burgundy-deep: #3d0808;
    --charcoal: #0f0f0f;
    --charcoal-elevated: #1a1a1a;
    --charcoal-card: #222222;
    --charcoal-border: #333333;
    --cream: #f5f0e8;
    --cream-muted: rgba(245, 240, 232, 0.72);
    --cream-dim: rgba(245, 240, 232, 0.5);
    --text-on-dark: #f5f0e8;
    --glow-gold: rgba(212, 175, 55, 0.35);
    --glow-burgundy: rgba(107, 15, 15, 0.4);
    --font-display: 'Bebas Neue', 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    --nav-h: 76px;
    --banner-h: 44px;
    --radius: 0.75rem;
    --radius-lg: 1.25rem;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 16px 48px rgba(0, 0, 0, 0.55);
    --shadow-gold: 0 0 0 1px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    color: var(--text-on-dark);
    background: var(--charcoal);
    overflow-x: hidden;
}

/* subtle barber-pole stripe texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.04;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        var(--burgundy) 20px,
        var(--burgundy) 22px,
        transparent 22px,
        transparent 42px,
        var(--gold-dim) 42px,
        var(--gold-dim) 44px
    );
    pointer-events: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.05;
    color: var(--text-on-dark);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 0;
}

p { color: var(--cream-muted); }

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--gold-bright);
    text-decoration: none;
    transition: color 0.25s var(--ease);
}

a:hover { color: var(--cream); }

/* ── Panels ── */
.glass {
    background: linear-gradient(160deg, var(--charcoal-card) 0%, var(--charcoal-elevated) 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.glow-border { position: relative; }

.glow-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--gold), var(--burgundy), var(--gold-dim), var(--gold));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.55;
    transition: opacity 0.3s var(--ease);
}

.glow-border:hover::before { opacity: 1; }

/* ── Navigation ── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: box-shadow 0.3s var(--ease);
}

.site-nav.scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.brand {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 400;
    color: var(--text-on-dark);
    letter-spacing: 0.12em;
}

.brand span { color: var(--gold); }

.nav-links {
    display: flex;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cream-muted);
}

.nav-links a:hover { color: var(--gold); }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 0.4rem;
    padding: 0.4rem 0.55rem;
    font-size: 1.25rem;
    color: var(--gold);
    cursor: pointer;
}

/* ── Walk-ins banner ── */
.walkins-banner {
    margin-top: var(--nav-h);
    padding: 0.7rem clamp(1rem, 4vw, 2.5rem);
    background: linear-gradient(90deg, var(--burgundy-deep), var(--burgundy) 45%, var(--burgundy-deep));
    border-bottom: 2px solid var(--gold);
    text-align: center;
}

.walkins-banner p {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    letter-spacing: 0.16em;
    color: var(--text-on-dark);
}

.walkins-banner i { color: var(--gold); margin-right: 0.45rem; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.85rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 0.35rem;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dim) 100%);
    color: var(--charcoal);
    box-shadow: 0 4px 24px var(--glow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--glow-gold);
    color: var(--charcoal);
}

.btn-outline {
    background: transparent;
    color: var(--text-on-dark);
    border: 1px solid rgba(212, 175, 55, 0.55);
}

.btn-outline:hover {
    background: rgba(107, 15, 15, 0.35);
    border-color: var(--gold);
    color: var(--text-on-dark);
    box-shadow: 0 0 20px var(--glow-gold);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
}

/* ── Hero ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    min-height: calc(100vh - var(--banner-h));
    padding: clamp(2rem, 5vw, 4rem);
    padding-top: clamp(2.5rem, 6vw, 5rem);
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, rgba(107, 15, 15, 0.35), transparent),
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(212, 175, 55, 0.08), transparent),
        linear-gradient(165deg, #0a0a0a 0%, var(--charcoal-elevated) 55%, #121212 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--charcoal);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-content { position: relative; z-index: 1; }

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--cream-muted);
    max-width: 32rem;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    z-index: 1;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 0.35rem);
    transition: transform 0.6s var(--ease);
}

.hero-image:hover img { transform: scale(1.03); }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.75rem;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--cream-muted);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
}

.hero-badges i { color: var(--gold); }

.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.eyebrow::before {
    content: '';
    width: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

/* ── Sections ── */
.section {
    padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
    background: var(--charcoal);
    position: relative;
}

.section-diagonal-top {
    clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
    margin-top: -48px;
    padding-top: calc(clamp(4rem, 8vw, 6rem) + 48px);
}

.section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
}

.section-header p { margin: 0; }

.price-section,
.book-section,
.team-section,
.story-section {
    background: linear-gradient(180deg, var(--charcoal-elevated) 0%, var(--charcoal) 100%);
}

.story-section {
    background:
        linear-gradient(180deg, var(--charcoal-elevated), var(--charcoal)),
        repeating-linear-gradient(-45deg, transparent, transparent 14px, rgba(212, 175, 55, 0.025) 14px, rgba(212, 175, 55, 0.025) 28px);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.story-grid p { color: var(--cream-muted); }

.story-grid img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(212, 175, 55, 0.35);
    box-shadow: var(--shadow-card);
}

.story-tea {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.1rem 1.25rem;
    background: rgba(107, 15, 15, 0.25);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.story-tea i { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }

.story-tea p { margin: 0; color: var(--cream-muted); }

.story-tea strong { color: var(--text-on-dark); }

/* ── Service cards ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.service-card {
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.service-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.service-card > :not(img) { padding: 0 1.5rem; }

.service-card h3 {
    font-size: 1.35rem;
    margin: 1rem 0 0.5rem;
    padding-top: 0;
}

.service-card p {
    margin: 0 0 1rem;
    font-size: 0.92rem;
}

.service-icon {
    display: inline-grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-top: -1.4rem;
    margin-left: 1.5rem;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    color: var(--charcoal);
    font-size: 1rem;
    box-shadow: 0 4px 16px var(--glow-gold);
}

.service-price {
    display: block;
    padding-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gold-bright);
    letter-spacing: 0.04em;
}

/* ── Price list ── */
.price-list {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(212, 175, 55, 0.2);
    color: var(--text-on-dark);
}

.price-row span:last-child {
    font-weight: 700;
    color: var(--gold-bright);
    white-space: nowrap;
}

.price-row small { color: var(--cream-dim); font-weight: 400; }

/* ── Gallery ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.08);
}

.gallery-item figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    font-size: 0.82rem;
    color: var(--text-on-dark);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
    transform: translateY(100%);
    transition: transform 0.35s var(--ease);
}

.gallery-item:hover figcaption { transform: translateY(0); }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox img {
    max-height: 90vh;
    max-width: 90vw;
    border-radius: var(--radius);
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 80px var(--glow-gold);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-on-dark);
    font-size: 2rem;
    cursor: pointer;
}

/* ── Team ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-lg);
    transition: transform 0.35s var(--ease);
}

.team-card:hover { transform: translateY(-5px); }

.team-card img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 0 24px var(--glow-gold);
}

.team-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.team-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.65rem;
}

.team-card p { font-size: 0.9rem; margin: 0; }

/* ── Testimonials ── */
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s var(--ease);
}

.testimonial-slide {
    min-width: 100%;
    padding: 2.5rem;
    text-align: center;
}

.testimonial-slide blockquote {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 400;
    color: var(--cream-muted);
    margin: 0 0 1rem;
    line-height: 1.7;
}

.testimonial-slide cite {
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

.stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.15em;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}

.carousel-dots button.active {
    background: var(--gold);
    transform: scale(1.35);
}

/* ── Booking wizard ── */
#booking { scroll-margin-top: calc(var(--nav-h) + 1.5rem); }

.booking-wizard {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
}

.booking-wizard h3 {
    font-size: 1.1rem;
    margin: 0 0 1.25rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.booking-steps {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.booking-step {
    flex: 1;
    height: 3px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 2px;
    transition: background 0.35s var(--ease);
}

.booking-step.active {
    background: linear-gradient(90deg, var(--gold-dim), var(--gold-bright));
    box-shadow: 0 0 12px var(--glow-gold);
}

/* ── Forms (booking, contact, modal) ── */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-on-dark);
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.45rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.form-control::placeholder { color: var(--cream-dim); }

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

input[type="date"].form-control {
    color-scheme: dark;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator {
    filter: invert(0.85) sepia(0.4) saturate(4) hue-rotate(5deg);
    cursor: pointer;
}

select.form-control option,
select.form-control optgroup {
    background-color: #1a1a1a;
    color: #f5f0e8;
}

/* Service select combobox */
.service-select-group { max-width: 100%; }

.elegant-select { position: relative; }

.elegant-combobox {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.75rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.55);
    color: var(--text-on-dark);
    border-color: rgba(212, 175, 55, 0.4);
    font-weight: 500;
}

.elegant-combobox option,
.elegant-combobox optgroup {
    background: var(--charcoal-card);
    color: var(--text-on-dark);
}

.elegant-select .select-caret {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    pointer-events: none;
    font-size: 0.8rem;
}

.service-select-hint {
    margin-top: 0.65rem;
    font-size: 0.88rem;
    color: var(--cream-dim);
}

.text-muted {
    color: var(--cream-dim);
    font-size: 0.9rem;
}

.text-muted a { color: var(--gold-bright); text-decoration: underline; }

/* Staff & addon option cards */
.service-option {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    margin-bottom: 0.65rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.25);
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.service-option:hover {
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(107, 15, 15, 0.15);
}

.service-option:has(input:checked) {
    border-color: var(--gold);
    background: rgba(107, 15, 15, 0.28);
    box-shadow: 0 0 20px var(--glow-gold);
}

.service-option input {
    margin-top: 0.2rem;
    accent-color: var(--gold);
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}

.service-option-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.service-option-body strong {
    color: var(--text-on-dark);
    font-size: 0.95rem;
}

.service-option-body span {
    font-size: 0.85rem;
    color: var(--cream-dim);
}

.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 0.5rem;
}

.slot-btn {
    padding: 0.65rem 0.4rem;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cream-muted);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.slot-btn:hover,
.slot-btn.selected {
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    color: var(--charcoal);
    border-color: var(--gold);
    box-shadow: 0 0 16px var(--glow-gold);
}

.book-guest-fields {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

#booking-summary {
    padding: 1.25rem;
    margin-bottom: 1rem;
    color: var(--cream-muted);
}

#booking-summary strong { color: var(--text-on-dark); }

#booking-summary p { margin: 0.4rem 0; }

.booking-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.75rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.booking-action-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.contact-info,
#contact-form {
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.contact-info h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.contact-info p,
.contact-line {
    color: var(--cream-muted);
    margin: 0.5rem 0;
}

.contact-info a { color: var(--gold-bright); }

.contact-info i {
    width: 1.25rem;
    color: var(--gold);
    margin-right: 0.35rem;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-hours-block { margin: 0.75rem 0; }

.contact-hours-status-wrap { margin: 0.5rem 0 0; }

.hours-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hours-status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.hours-status-pill--open {
    color: #7dcea0;
    background: rgba(125, 206, 160, 0.12);
    border: 1px solid rgba(125, 206, 160, 0.35);
}

.hours-status-pill--open .hours-status-dot {
    background: #7dcea0;
    box-shadow: 0 0 8px rgba(125, 206, 160, 0.5);
}

.hours-status-pill--closed {
    color: #e8a0a0;
    background: rgba(107, 15, 15, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.hours-status-pill--closed .hours-status-dot {
    background: var(--burgundy);
}

/* ── Footer ── */
.site-footer {
    background: #080808;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 3rem clamp(1rem, 5vw, 4rem) 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.site-footer h4 {
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 0.12em;
}

.site-footer p {
    margin: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--cream-dim);
}

.site-footer a {
    color: var(--cream-muted);
}

.site-footer a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-size: 0.82rem;
    color: var(--cream-dim);
}

/* ── Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.open { display: flex; }

.modal {
    width: 100%;
    max-width: 420px;
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: var(--text-on-dark);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--cream-muted);
    cursor: pointer;
}

.auth-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.auth-tabs button {
    flex: 1;
    padding: 0.65rem;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cream-muted);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.25s;
}

.auth-tabs button.active {
    color: var(--text-on-dark);
    background: rgba(107, 15, 15, 0.35);
    border-color: var(--gold);
}

.modal-submit { width: 100%; }

.modal-alt-link {
    margin-top: 0.85rem;
    text-align: center;
    font-size: 0.88rem;
}

/* ── Cookie & toast ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    padding: 1rem 1.5rem;
    background: var(--charcoal-elevated);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--cream-muted);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p { margin: 0; flex: 1; min-width: 200px; }

.cookie-banner a { color: var(--gold-bright); }

.toast {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 4000;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    background: var(--charcoal-card);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--text-on-dark);
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    max-width: 90vw;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-error {
    border-color: rgba(200, 80, 80, 0.5);
    background: #2a1212;
}

.toast-success {
    border-color: rgba(125, 206, 160, 0.4);
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Legal pages ── */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
    background: var(--charcoal);
    min-height: 100vh;
}

.legal-lead { color: var(--cream-muted); }

.legal-updated { font-size: 0.88rem; color: var(--cream-dim); }

.legal-article {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    margin-top: 1.5rem;
    color: var(--cream-muted);
}

.legal-article h2 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-article h2:first-child { margin-top: 0; }

.legal-article a { color: var(--gold-bright); }

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.legal-footer-note {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.88rem;
    color: var(--cream-dim);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-top: 2rem;
    }

    .hero-lead { margin-left: auto; margin-right: auto; }

    .hero-image { max-width: 420px; margin: 0 auto; }

    .inline-actions,
    .hero-badges { justify-content: center; }

    .contact-grid,
    .story-grid { grid-template-columns: 1fr; }

    .story-grid img { order: -1; }
}

@media (max-width: 768px) {
    :root { --nav-h: 68px; }

    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 1rem 1.25rem 1.25rem;
        background: rgba(15, 15, 15, 0.98);
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        gap: 0.75rem;
    }

    .nav-links.open { display: flex; }

    .nav-toggle { display: block; }

    .services-grid,
    .gallery-grid,
    .team-grid { grid-template-columns: 1fr; }

    .booking-actions,
    .booking-action-group {
        flex-direction: column;
        width: 100%;
    }

    .btn { width: 100%; }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}
