/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY & VARIABLES
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --bg-color: #fafafa;
    --text-color: #2c2c2c;
    --text-muted: #6b6b6b;
    --accent-color: #D3B68B;
    --accent-hover: #c2a374;
    --card-bg: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --nav-height: 72px;
    --section-padding: clamp(60px, 8vw, 100px) 5%;
    --container-max: 1400px;
    --radius-lg: 30px;
    --radius-md: 15px;
    --radius-sm: 8px;
    --shadow-soft: 0 15px 35px rgba(0,0,0,0.05);

    /* Aliases */
    --a:     var(--accent-color);
    --black: #0e0e0e;
    --text:  var(--text-color);
    --muted: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

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

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

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

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY UTILITIES
   ═══════════════════════════════════════════════════════════ */
.display-1 {
    font-size: clamp(2.2rem, 8vw, 4rem);
    line-height: 1.15;
    margin-bottom: 25px;
}
.display-2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 20px;
}
.lead {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    margin-bottom: 35px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 1000;
    transition: background .4s ease, box-shadow .4s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.nav-spacer {
    display: block;
    width: 100%;
    height: var(--nav-height);
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 18px rgba(0,0,0,.05);
}

.brand {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-style: italic;
    color: var(--text-color);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
    height: 100%;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    display: flex;
    align-items: center;
    white-space: nowrap;
    min-height: 44px; /* tap target */
    padding: 0 4px;
}

/* Book button in nav */
.nav-book-btn {
    padding: 11px 26px !important;
    border: 1.5px solid #D3B68B;
    background: #D3B68B;
    color: #fff !important;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background .3s, color .3s;
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}
.nav-book-btn:hover {
    background: transparent !important;
    color: #D3B68B !important;
}

.page-inner .navbar .brand,
.page-inner .nav-links a { color: var(--text-color); }

/* ── Hamburger ───────────────────────────────────────── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;      /* bigger tap area */
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.nav-hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-color);
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Drawer ───────────────────────────────────── */
.nav-drawer {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    bottom: 0;                /* fullscreen height for tall menus */
    background: #fff;
    z-index: 999;
    flex-direction: column;
    padding: 40px 8%;
    gap: 8px;
    border-top: 2px solid var(--accent-color);
    transform: translateY(-110%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    overflow-y: auto;
}
.nav-drawer a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-color); text-decoration: none;
    transition: color .3s;
    padding: 14px 0;
    border-bottom: 1px solid #f5f2ee;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.nav-drawer a:hover,
.nav-drawer a.active-link { color: var(--accent-color); }

.nav-drawer-book {
    color: #D3B68B !important;
    font-weight: 800 !important;
    border-bottom: none !important;
    margin-top: 20px;
}

/* Na mobilu — zapnout drawer a hamburger */
@media (max-width: 900px) {
    .nav-links     { display: none !important; }
    .nav-hamburger { display: flex; }
    .nav-drawer    { display: flex; }
    .nav-drawer.open { transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   AUDIO PLAYER
   ═══════════════════════════════════════════════════════════ */
.audio-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    background: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, color 0.3s ease;
    min-height: 44px;
}

.audio-controls:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.audio-controls svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: fill 0.3s;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
    height: calc(100vh - var(--nav-height));
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: zoomInOut 30s infinite alternate ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(250,250,250,0.7) 0%, rgba(250,250,250,0.95) 100%);
    z-index: -1;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.hero-content {
    max-width: 900px;
    padding: clamp(25px, 5vw, 40px);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    animation: fadeIn 2s ease forwards;
    opacity: 0;
    border: 1px solid rgba(255,255,255,0.6);
    margin: 0 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   GENERAL SECTIONS
   ═══════════════════════════════════════════════════════════ */
section {
    padding: var(--section-padding);
    position: relative;
}

.blob-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY GRID
   ═══════════════════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 85%;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: var(--radius-lg);
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.gallery-item-overlay h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: var(--text-color);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT GRID
   ═══════════════════════════════════════════════════════════ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-img-wrapper {
    position: relative;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 5vw, 60px) clamp(25px, 4vw, 40px);
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.pricing-card h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin-bottom: 15px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--accent-color);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 50px;
}

.pricing-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border: 1px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.4s ease;
    text-align: center;
    min-height: 44px;
    min-width: 44px;
    text-decoration: none;
}

.btn:hover {
    background: var(--text-color);
    color: var(--card-bg);
}

.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(211, 182, 139, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════ */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: clamp(30px, 5vw, 60px) clamp(20px, 5vw, 60px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 18px 20px;
    background: #f9f9f9;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-sm);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.4s ease;
    min-height: 44px;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(211, 182, 139, 0.1);
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-color);
    font-weight: 600;
    margin-left: 5px;
}

.invalid-feedback {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
    margin-left: 5px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
    padding: clamp(50px, 8vw, 80px) 5% 40px;
    background: var(--card-bg);
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.03);
    margin-top: 40px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-style: italic;
    color: #000;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-socials a {
    color: var(--text-muted);
    font-weight: 500;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color .3s ease;
}

.footer-socials a:hover {
    color: var(--accent-color);
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.footer-legal-links a:hover {
    color: #D3B68B;
}

.footer-sep {
    color: #ccc;
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════
   COOKIE CONSENT BAR
   ═══════════════════════════════════════════════════════════ */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #fff;
    border-top: 2px solid #D3B68B;
    padding: 18px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.06);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-bar.visible {
    transform: translateY(0);
}

.cookie-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.cookie-btn {
    background: #D3B68B;
    color: #fff;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 14px 28px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
    border-radius: 0;
    min-height: 44px;
}

.cookie-btn:hover {
    background: #2c2c2c;
}

/* ═══════════════════════════════════════════════════════════
   DESIGN SYSTEM — Shared styles across all pages
   ═══════════════════════════════════════════════════════════ */

/* ── FADE ANIMATIONS ──────────────────────────────────────── */
.fade-section,
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .85s ease, transform .85s ease;
    transition-delay: var(--delay, 0s);
}
.fade-section.visible,
.fade-section.is-visible,
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── EYEBROW TEXTS ────────────────────────────────────────── */
.f-eyebrow,
.works-eyebrow,
.legal-eyebrow,
.p-eyebrow,
.about-eyebrow,
.section-eyebrow,
.c-eyebrow,
.cta-eyebrow,
.sw-eyebrow,
.intro-eyebrow,
.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
}

/* ── SECTION HEADINGS ─────────────────────────────────────── */
.works-heading,
.f-section-heading,
.cta-heading,
.cta-strip-heading,
.sw-heading,
.b-step-title,
.intro-statement {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    line-height: 1;
}

/* ── TEXT LINKS ───────────────────────────────────────────── */
.f-text-link,
.works-all,
.sw-see-all,
.intro-link,
.pf-load-more {
    font-family: 'Montserrat', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
    transition: color .3s ease;
    background: none;
    cursor: pointer;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.f-text-link:hover,
.works-all:hover,
.sw-see-all:hover,
.intro-link:hover,
.pf-load-more:hover {
    color: var(--accent-color);
}

/* ── PRIMARY BUTTONS ──────────────────────────────────────── */
.btn-gold,
.cta-btn-primary,
.cf-btn,
.contact-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: background .3s ease, color .3s ease;
    min-height: 44px;
}
.btn-gold:hover,
.cta-btn-primary:hover,
.cf-btn:hover,
.contact-btn:hover {
    background: #1a1a1a;
    color: #fff;
}

/* ── OUTLINE BUTTONS ──────────────────────────────────────── */
.btn-outline,
.cta-btn-outline {
    border: 2px solid #000;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: border-color .3s ease, color .3s ease;
    min-height: 44px;
}
.btn-outline:hover,
.cta-btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* ── NAV ACTIVE LINK ──────────────────────────────────────── */
.navbar .brand {
    color: var(--text-color);
    transition: color .3s ease;
}
.navbar .brand:hover {
    color: var(--accent-color);
}
.nav-links a:hover {
    color: var(--accent-color);
}
.nav-links a.active-link {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 3px;
}

/* ── SECTION DIVIDER ──────────────────────────────────────── */
.section-divider {
    width: 100%;
    height: 1px;
    background: #f0ebe4;
    margin: 0;
}

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #fafafa; }
::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

/* ── SELECTION HIGHLIGHT ──────────────────────────────────── */
::selection {
    background: var(--accent-color);
    color: #fff;
}

/* ── FOCUS VISIBLE (accessibility) ───────────────────────── */
:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Global mobile-first rules
   ═══════════════════════════════════════════════════════════ */

/* Tablet: 768px */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .hero-content {
        padding: 25px 20px;
        margin: 0 20px;
    }
    .form-container {
        padding: 30px 20px;
    }
    section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
    .footer-socials {
        gap: 16px;
    }
    .cookie-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .cta-strip-inner,
    .works-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .live-status {
        flex-direction: column;
        text-align: center;
    }
}