/* ============================================
   BARBER HOUSE — v2 Refined
   Fonts: Cormorant Garamond + DM Sans + DM Mono
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600&display=swap');

/* ── TOKENS ─────────────────────────────────── */
:root {
    --bg:           #09090a;
    --bg-2:         #0f0f10;
    --bg-3:         #161618;
    --surface:      #131315;
    --border:       rgba(255,255,255,0.07);
    --border-gold:  rgba(194,162,100,0.35);
    --gold:         #C2A264;
    --gold-lt:      #D6B87A;
    --gold-dim:     rgba(194,162,100,0.12);
    --white:        #F2EDE4;
    --muted:        #787470;
    --text:         #C4C0B8;
    --ease:         cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in:      cubic-bezier(0.4, 0, 1, 1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.logo, h1, h2, h3, .section-title {
    font-family: var(--font-display);
    font-weight: 400; /* A Bebas Neue általában csak 400-as súllyal érhető el */
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── UTILITIES ──────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.center-text { text-align: center; }

/* ── SECTION TYPOGRAPHY ─────────────────────── */
.section-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 18px;
}
.section-title-large {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    letter-spacing: 0.02em;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 16px;
}
.section-title-small {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: 0.02em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    transition: background 0.5s var(--ease), border-color 0.5s;
}
#navbar.scrolled {
    background: rgba(9,9,10,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 44px;
    transition: padding 0.4s var(--ease);
}
#navbar.scrolled .header-container { padding: 14px 44px; }
.logo-group { display: flex; flex-direction: column; gap: 3px; }
.logo {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.22em;
    color: var(--white);
    line-height: 1;
}
.sub-logo {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.34em;
    color: var(--gold);
    text-transform: uppercase;
}
.lang-switch {
    display: flex; align-items: center; gap: 4px;
    font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
}
.lang-switch span { cursor: pointer; color: var(--muted); padding: 6px 8px; transition: color 0.2s; }
.lang-switch span:hover { color: var(--white); }
.lang-switch span.active { color: var(--gold); }
.lang-switch .separator { color: var(--border); }


/* ============================================
   HERO — centred layout, larger logo
   ============================================ */
.hero {
    position: relative;
    height: 100svh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
/* Rich multi-layer overlay: vignette + bottom fade */
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(9,9,10,0.65) 100%),
        linear-gradient(to top, rgba(9,9,10,1) 0%, rgba(9,9,10,0.55) 35%, rgba(9,9,10,0.1) 70%);
    z-index: 1;
}
.hero-content {
    position: relative; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center;
    padding: 0 24px 60px;
    max-width: 820px;
}
.main-logo-container { margin-bottom: 32px; }
.hero-logo {
    width: 110px; height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-gold);
    box-shadow: 0 0 40px rgba(194,162,100,0.18), 0 0 0 6px rgba(194,162,100,0.06);
    transition: transform 0.6s var(--ease);
}
.hero-logo:hover { transform: scale(1.04); }
.hero h1 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(4rem, 9vw, 8rem);
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 18px;
}
.hero-location {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.36em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 48px;
}
.hero-btn-wrapper { display: flex; justify-content: center; }
.btn-gold-large {
    display: inline-block;
    padding: 16px 52px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-decoration: none;
    text-transform: uppercase;
    position: relative; overflow: hidden;
    transition: color 0.35s var(--ease);
}
.btn-gold-large::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gold);
    transform: translateX(-101%);
    transition: transform 0.45s var(--ease);
    z-index: 0;
}
.btn-gold-large span, .btn-gold-large { position: relative; }
.btn-gold-large:hover::before { transform: translateX(0); }
.btn-gold-large:hover { color: var(--bg); }
.hero-fade { display: none; }

/* Hero entrance */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero-logo       { animation: fadeUp 1s var(--ease) 0.15s both; }
.hero h1         { animation: fadeUp 1.1s var(--ease) 0.35s both; }
.hero-location   { animation: fadeUp 1s var(--ease) 0.55s both; }
.hero-btn-wrapper { animation: fadeUp 1s var(--ease) 0.75s both; }


/* ============================================
   ABOUT — two-col, refined body text
   ============================================ */
.about-section {
    padding: 130px 0;
    /* Subtle CSS grain texture via SVG data URI */
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E"),
        var(--bg);
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.about-card { background: none; border: none; padding: 0; }

/* KEY CHANGE: about text uses elegant Cormorant body weight, not italic display */
.about-text-premium {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 400;
    font-style: normal;
    line-height: 1.65;
    color: var(--text);
    margin-bottom: 40px;
    letter-spacing: 0.01em;
}
/* Decorative opening quote mark */
.about-text-premium::before {
    content: '\201C';
    font-size: 4rem;
    line-height: 0;
    vertical-align: -0.55em;
    color: var(--gold);
    opacity: 0.5;
    margin-right: 4px;
    font-family: var(--font-display);
}
.parking-badge {
    display: inline-flex; align-items: center; gap: 12px;
    border: 1px solid var(--border-gold);
    padding: 12px 20px;
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
}
.parking-badge i { font-size: 1rem; }
.map-wrapper {
    width: 100%; aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
}
.map-wrapper::before {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid var(--border-gold);
    z-index: 1;
    pointer-events: none;
}
.map-wrapper iframe {
    width: 100%; height: 100%; border: 0;
    filter: grayscale(0.6) brightness(0.85);
    display: block;
}


/* ============================================
   TEAM
   ============================================ */
.team-section {
    padding: 110px 0;
    position: relative;
    /* Diagonal line pattern as CSS background */
    background:
        repeating-linear-gradient(
            -55deg,
            transparent,
            transparent 60px,
            rgba(255,255,255,0.012) 60px,
            rgba(255,255,255,0.012) 61px
        ),
        var(--bg-2);
    border-top: 1px solid var(--border);
}
.team-header {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    margin-bottom: 64px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.team-card-premium {
    background: var(--bg-2);
    padding: 28px 24px 32px;
    display: flex; flex-direction: column;
    transition: background 0.35s;
}
.team-card-premium:hover { background: var(--bg-3); }
.team-img-box {
    width: 100%; aspect-ratio: 3/4;
    overflow: hidden; margin-bottom: 20px;
}
.team-img-box img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s var(--ease);
    filter: grayscale(15%);
}
.team-card-premium:hover .team-img-box img { transform: scale(1.05); }
.team-card-premium h3 {
    font-family: var(--font-display);
    font-weight: 400; font-size: 1.2rem;
    letter-spacing: 0.02em; color: var(--white); margin-bottom: 4px;
}
.role {
    font-family: var(--font-mono); font-size: 0.58rem;
    letter-spacing: 0.24em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
}
.barber-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; flex-grow: 1; }
.barber-social-links { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.barber-social-links a {
    color: var(--muted); text-decoration: none; font-size: 0.76rem;
    font-family: var(--font-mono); display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.barber-social-links a:hover { color: var(--gold); }
.barber-social-links a i { color: var(--gold); font-size: 0.82rem; width: 14px; }
.opening-hours-list { margin-bottom: 18px; border-top: 1px solid var(--border); padding-top: 14px; }
.opening-hours-list p {
    display: flex; justify-content: space-between;
    font-size: 0.73rem; color: var(--muted); padding: 3px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.opening-hours-list span { color: var(--text); font-weight: 500; }
.portfolio-btn-gold {
    width: 100%; padding: 11px;
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em;
    text-transform: uppercase; cursor: pointer;
    transition: background 0.3s var(--ease), color 0.3s, border-color 0.3s;
    margin-top: auto;
}
.portfolio-btn-gold:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }


/* ============================================
   PRICING — CSS-only decorative background
   ============================================ */
.pricing-section-bg {
    position: relative;
    padding: 120px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
/* No overlay div needed */
.pricing-overlay { display: none; }
.pricing-content { position: relative; z-index: 1; }
.pricing-header {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    margin-bottom: 64px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    max-width: 820px;
    margin: 0 auto;
}
.pricing-item {
    background: rgba(9,9,10,0.92);
    padding: 36px 36px;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.3s; gap: 20px;
}
.pricing-item:hover { background: var(--surface); }
/* SOS item — highlighted */
.pricing-item.sos {
    background: rgba(194,162,100,0.05);
}
.pricing-item.sos:hover { background: rgba(194,162,100,0.1); }
.pricing-item.sos .price-info h3 { color: var(--gold-lt); }
.sos-tag {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.18em;
    color: var(--bg);
    background: var(--gold);
    padding: 3px 7px;
    text-transform: uppercase;
    margin-left: 8px;
    vertical-align: middle;
    border-radius: 1px;
}
.price-info h3 {
    font-family: var(--font-display);
    font-weight: 400; font-size: 1.35rem; color: var(--white); margin-bottom: 4px;
}
.price-info p {
    font-size: 0.75rem; color: var(--muted); font-family: var(--font-mono); letter-spacing: 0.06em;
}
.price-tag {
    font-family: var(--font-display);
    font-weight: 300; font-size: 1.5rem; color: var(--gold);
    white-space: nowrap; letter-spacing: 0.02em;
    border-left: 1px solid var(--border-gold); padding-left: 24px;
}


/* ============================================
   BOOKING
   ============================================ */
#booking.booking-section {
    padding: 110px 0;
    border-top: 1px solid var(--border);
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E"),
        var(--bg);
}
.booking-header {
    display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 60px;
}
.booking-grid-premium {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.booking-item-card {
    background: var(--surface); border: 1px solid var(--border);
    padding: 44px 20px; text-decoration: none; color: var(--white); text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
    transition: border-color 0.3s, background 0.3s; min-height: 230px;
}
.booking-item-card:hover { border-color: var(--border-gold); background: var(--bg-3); }
.avatar-box {
    width: 76px; height: 76px; border-radius: 50%;
    border: 1px solid var(--border-gold); overflow: hidden;
    transition: border-color 0.3s;
}
.booking-item-card:hover .avatar-box { border-color: var(--gold); }
.avatar-box img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(15%); }
.booking-item-card h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; }
.book-tag {
    font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.2em;
    color: var(--gold); border: 1px solid var(--border-gold); padding: 6px 14px;
    text-transform: uppercase; display: inline-block;
    transition: background 0.3s, color 0.3s;
}
.booking-item-card:hover .book-tag { background: var(--gold); color: var(--bg); border-color: var(--gold); }


/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    display: flex; justify-content: center; align-items: flex-start;
    max-width: 960px; margin: 0 auto;
    padding: 60px 32px 80px; gap: 0;
    border-top: 1px solid var(--border);
}
.step { flex: 1; text-align: center; }
.step-num {
    width: 40px; height: 40px;
    border: 1px solid var(--border-gold); color: var(--gold); border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-family: var(--font-mono); font-size: 0.72rem;
    margin: 0 auto 14px; background: var(--bg); position: relative; z-index: 1;
}
.step p {
    font-family: var(--font-mono); font-size: 0.6rem; color: var(--muted);
    letter-spacing: 0.1em; text-transform: uppercase; line-height: 1.5; padding: 0 8px;
}
.step-line { flex: 0.5; height: 1px; background: var(--border); margin-top: 20px; align-self: flex-start; }


/* ============================================
   FAQ — CSS-only decorative background
   ============================================ */
.faq-bg-wrapper {
    position: relative;
    padding: 110px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.faq-overlay { display: none; } /* no longer needed */
.faq-section, .policy-section { position: relative; z-index: 1; }
.faq-header {
    display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 48px;
}
.faq-container { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
    padding: 22px 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--text); font-size: 0.88rem; font-weight: 400; letter-spacing: 0.02em;
    transition: color 0.2s; gap: 16px;
}
.faq-question:hover { color: var(--white); }
.faq-question i { color: var(--gold); font-size: 0.68rem; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-answer {
    display: none; padding-bottom: 22px;
    color: var(--muted); font-size: 0.84rem; line-height: 1.75; max-width: 580px;
}


/* ============================================
   POLICY
   ============================================ */
.policy-section { padding: 48px 0 80px; }
.policy-card {
    max-width: 680px; margin: 0 auto;
    background: rgba(194,162,100,0.05); border: 1px solid var(--border-gold);
    padding: 32px; display: flex; gap: 24px; align-items: flex-start;
}
.policy-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.policy-content h3 {
    font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.22em;
    color: var(--gold); margin-bottom: 12px; text-transform: uppercase;
}
.policy-content p { font-size: 0.83rem; line-height: 1.75; color: var(--text); }
.policy-content strong { color: var(--gold); }


/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    padding: 110px 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.contact-header {
    display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 56px;
}
.contact-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.contact-item {
    background: var(--bg); padding: 44px 24px; text-align: center;
    transition: background 0.3s; cursor: default;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.contact-item:hover { background: var(--surface); }
.contact-item i { color: var(--gold); font-size: 1.15rem; display: block; }
.contact-item p { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }
.contact-item p a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.contact-item p a:hover { color: var(--gold); }


/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    padding: 72px 0 40px;
    border-top: 1px solid var(--border);
    /* Subtle top glow */
    background: linear-gradient(to bottom, rgba(194,162,100,0.03) 0%, transparent 40%), var(--bg);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.footer-logo-wrap { margin-bottom: 4px; }
.footer-logo-img {
    width: 54px; height: 54px; border-radius: 50%;
    object-fit: cover; border: 1px solid var(--border-gold); opacity: 0.75;
}
.footer-logo { align-items: center; }
.footer-logo .sub-logo { text-align: center; }
.footer-loc { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; color: var(--muted); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); text-decoration: none; font-size: 0.82rem;
    transition: border-color 0.3s, color 0.3s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.copyright { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.14em; color: var(--border); text-transform: uppercase; }


/* ============================================
   FLOATING CTA
   ============================================ */
.floating-book-btn {
    display: none; position: fixed; bottom: 28px; right: 28px;
    background: var(--gold); color: var(--bg);
    padding: 14px 28px; border-radius: 2px;
    font-family: var(--font-mono); font-size: 0.62rem;
    letter-spacing: 0.2em; font-weight: 500;
    text-decoration: none; z-index: 999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.55);
    transition: transform 0.2s, opacity 0.2s;
    align-items: center; gap: 8px;
}
.floating-book-btn:hover { transform: translateY(-3px); }
.floating-book-btn:active { transform: scale(0.97); }


/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none; position: fixed; z-index: 2000; inset: 0;
    background: rgba(9,9,10,0.97); padding: 60px 40px 40px; overflow-y: auto;
}
.modal-content {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px; max-width: 1080px; margin: 0 auto;
}
.modal-content img { width: 100%; border-radius: 2px; display: block; }
.close {
    position: fixed; top: 24px; right: 36px; color: var(--muted);
    font-size: 2rem; cursor: pointer; line-height: 1; transition: color 0.2s; z-index: 2001;
}
.close:hover { color: var(--white); }


/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.team-grid .team-card-premium:nth-child(1) { transition-delay: 0.00s; }
.team-grid .team-card-premium:nth-child(2) { transition-delay: 0.08s; }
.team-grid .team-card-premium:nth-child(3) { transition-delay: 0.16s; }
.team-grid .team-card-premium:nth-child(4) { transition-delay: 0.24s; }


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { max-width: 640px; }
}
@media (max-width: 900px) {
    .about-inner { grid-template-columns: 1fr; gap: 52px; }
    .booking-grid-premium { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
}
@media (max-width: 768px) {
    .header-container { padding: 18px 24px; }
    .hero-content { padding: 0 28px 60px; }
    .team-grid { grid-template-columns: 1fr; }
    .how-it-works { flex-direction: column; align-items: center; gap: 28px; }
    .step-line { display: none; }
    .booking-grid-premium { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .floating-book-btn { display: flex; }
}
@media (max-width: 520px) {
    .booking-grid-premium { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .policy-card { flex-direction: column; }
    .hero h1 { font-size: clamp(3.2rem, 13vw, 5rem); }
}
