/* ============================================================
   BLUMENDUFT – BISCHOFSZELL
   Professionelles CSS – SEO-freundlich, barrierefrei, responsiv
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600;700&display=swap');

/* ── CUSTOM PROPERTIES ── */
:root {
    --cream:        #f7f4ee;
    --cream-soft:   #f0ece1;
    --green:        #c8d97a;
    --green-dark:   #adc25e;
    --green-pale:   #e8f0b8;
    --purple:       #5e3a8c;
    --purple-dark:  #3d2460;
    --purple-light: rgba(94, 58, 140, 0.08);
    --text:         #2e2b33;
    --muted:        #6b6473;
    --white:        #ffffff;
    --glass:        rgba(255, 255, 255, 0.70);
    --glass-border: rgba(255, 255, 255, 0.50);
    --shadow-sm:    0 8px 28px rgba(46, 43, 51, 0.08);
    --shadow-md:    0 20px 56px rgba(46, 43, 51, 0.12);
    --shadow-lg:    0 36px 80px rgba(46, 43, 51, 0.16);
    --radius-xl:    36px;
    --radius-lg:    24px;
    --radius-md:    16px;
    --radius-sm:    10px;
    --max-w:        1220px;
    --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t:            0.32s var(--ease);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Jost', system-ui, sans-serif;
    font-weight: 400;
    color: var(--text);
    background-color: var(--cream);
    background-image:
        radial-gradient(ellipse 60% 40% at 0% 0%, rgba(200, 217, 122, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 100% 100%, rgba(94, 58, 140, 0.07) 0%, transparent 55%);
    line-height: 1.72;
    overflow-x: hidden;
    min-height: 100vh;
}

img, svg {
    max-width: 100%;
    display: block;
}

a {
    color: var(--purple);
    text-decoration: none;
    transition: color var(--t), opacity var(--t);
}

a:hover {
    color: var(--purple-dark);
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--purple);
    line-height: 1.08;
    margin-top: 0;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 600; margin-bottom: 18px; }
h3 { font-size: 1.45rem; font-weight: 600; margin-bottom: 10px; }

h1 em, h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--purple);
}

p { margin-bottom: 18px; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

abbr[title] {
    text-decoration: none;
    color: var(--purple);
}

/* Skip to content */
.skip-link {
    position: absolute;
    top: -999px;
    left: 8px;
    padding: 8px 18px;
    background: var(--purple);
    color: #fff;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 600;
    z-index: 10000;
}
.skip-link:focus { top: 0; }

/* ── LAYOUT ── */
.container {
    width: min(var(--max-w), calc(100% - 40px));
    margin-inline: auto;
    position: relative;
    z-index: 2;
}

.narrow {
    max-width: 820px;
    margin-inline: auto;
}

.text-center { text-align: center; }

.grid-halves {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* ── BACKGROUND BLOBS ── */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    animation: blobDrift 16s ease-in-out infinite;
}

.bg-blob-1 {
    width: 380px; height: 380px;
    background: rgba(200, 217, 122, 0.28);
    top: 60px; left: -130px;
}

.bg-blob-2 {
    width: 320px; height: 320px;
    background: rgba(94, 58, 140, 0.09);
    top: 50vh; right: -100px;
    animation-delay: 3s;
}

.bg-blob-3 {
    width: 260px; height: 260px;
    background: rgba(255, 255, 255, 0.55);
    bottom: 10vh; left: 20%;
    animation-delay: 6s;
}

@keyframes blobDrift {
    0%, 100% { transform: translate(0, 0); }
    33%       { transform: translate(18px, -22px); }
    66%       { transform: translate(-12px, 14px); }
}

/* ── HEADER / NAV ── */
.site-header { position: relative; }

.header-bar {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(247, 244, 238, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
    transition: background var(--t), box-shadow var(--t);
}

.header-bar.scrolled {
    background: rgba(247, 244, 238, 0.88);
    box-shadow: 0 2px 24px rgba(46, 43, 51, 0.08);
}

.header-bar-inner {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 0 12px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }

.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: opacity var(--t);
}
.brand:hover .brand-logo { opacity: 0.82; }

/* NAV */
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.main-nav a {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--purple);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: background var(--t), color var(--t);
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--purple-light);
}

.main-nav a[aria-current="page"] {
    font-weight: 700;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px; height: 46px;
    border: 1.5px solid rgba(94, 58, 140, 0.18);
    border-radius: var(--radius-md);
    background: var(--glass);
    cursor: pointer;
    padding: 0;
    transition: background var(--t);
}
.nav-toggle:hover { background: #fff; }

.nav-toggle span {
    display: block;
    width: 20px; height: 1.8px;
    background: var(--purple);
    margin: 0 auto;
    border-radius: 99px;
    transition: transform 0.25s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

/* ── HERO ── */
.hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-img {
    position: absolute;
    inset: 0;
    background: url('../images/IMG_ 1 Blumenduft Bischofszell Titelbild, Blumenladen.JPG')
                center center / cover no-repeat;
    transform: scale(1.06);
    will-change: transform;
}

.hero-veil {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(160deg, rgba(20, 12, 34, 0.28) 0%, rgba(20, 12, 34, 0.18) 100%),
        linear-gradient(0deg, rgba(20, 12, 34, 0.32) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding-block: 140px 100px;
}

.hero-card {
    max-width: 960px;
    text-align: center;
    padding: 60px 64px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.30);
    box-shadow: 0 40px 100px rgba(0,0,0,0.18);
    animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.80);
    color: var(--purple);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.hero-card h1 {
    color: #fff;
    text-shadow: 0 2px 24px rgba(0,0,0,0.25);
    margin-bottom: 14px;
}

.hero-card h1 em {
    color: var(--green);
    font-style: italic;
}

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2.4vw, 1.9rem);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 20px;
}

.hero-body {
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.06rem;
}

.hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.scroll-down {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.75);
    animation: bounce 2.2s ease-in-out infinite;
    transition: color var(--t);
}
.scroll-down:hover { color: #fff; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--t), box-shadow var(--t), background var(--t);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: #1e1e1e;
    box-shadow: 0 12px 28px rgba(172, 194, 94, 0.38);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(172, 194, 94, 0.46);
    color: #1e1e1e;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.78);
    color: var(--purple);
    border: 1.5px solid rgba(255, 255, 255, 0.40);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.96);
    transform: translateY(-3px);
    color: var(--purple);
}

.btn-full { width: 100%; justify-content: center; }

/* ── SECTIONS ── */
.section {
    padding-block: 108px;
    position: relative;
}

.section-nature {
    background: linear-gradient(135deg,
        rgba(200, 217, 122, 0.90) 0%,
        rgba(220, 233, 160, 0.96) 100%);
    overflow: hidden;
}

.section-nature::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.20), transparent 40%);
    pointer-events: none;
}

.section-soft {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.40) 0%,
        rgba(234, 228, 246, 0.55) 100%);
}

/* ── LABELS & TAGS ── */
.tag-label {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 8px;
}

.lead {
    font-size: 1.18rem;
    color: #3e3a43;
    max-width: 700px;
    margin-inline: auto;
    line-height: 1.8;
}

/* ── GLASS CARD ── */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 44px;
}

/* ── ABOUT SECTION ── */
.about-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

.portrait-wrap {
    position: relative;
}

.portrait-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--t);
}

.portrait-img:hover { transform: translateY(-6px) scale(1.01); }

.portrait-img img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.portrait-deco {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(200, 217, 122, 0.35);
    filter: blur(30px);
    z-index: -1;
    pointer-events: none;
}

.social-row {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.social-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-md);
    background: rgba(94, 58, 140, 0.07);
    color: var(--purple);
    font-weight: 600;
    font-size: 0.92rem;
    border: 1px solid rgba(94, 58, 140, 0.12);
    transition: background var(--t), transform var(--t);
}

.social-row a:hover {
    background: rgba(94, 58, 140, 0.13);
    transform: translateY(-2px);
    color: var(--purple);
}

/* ── OFFER LIST ── */
.offer-list {
    list-style: none;
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.97rem;
    font-weight: 500;
    color: var(--text);
}

.offer-list li svg {
    color: var(--green-dark);
    flex-shrink: 0;
}

/* ── STACKED PHOTOS ── */
.stacked-photos {
    position: relative;
    min-height: 600px;
}

.stacked-img {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 70%;
    transition: transform var(--t);
}

.stacked-top {
    top: -10px; left: 0;
    transform: rotate(-3.5deg);
    z-index: 2;
}

.stacked-bottom {
    bottom: -30px; right: 0;
    transform: rotate(3.5deg);
    z-index: 1;
}

.stacked-img:hover { transform: rotate(0deg) translateY(-6px); }

.stacked-img img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    display: block;
}

/* ── HOURS ── */
.hours-table {
    margin-top: 28px;
    display: grid;
    gap: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0 4px 14px rgba(46, 43, 51, 0.05);
    transition: transform var(--t);
    font-weight: 500;
}

.hours-row:hover { transform: translateX(6px); }

.hours-row.closed dt,
.hours-row.closed dd {
    color: var(--muted);
}

.badge-closed {
    padding: 3px 12px;
    border-radius: 99px;
    background: rgba(200, 217, 122, 0.25);
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.hint-text {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.93rem;
    color: var(--muted);
    margin-top: 16px;
    line-height: 1.6;
}

.hint-text svg { flex-shrink: 0; margin-top: 2px; }

/* ── PAYMENT ── */
.pay-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 26px;
}

.pay-chip {
    padding: 9px 16px;
    border-radius: 99px;
    background: rgba(200, 217, 122, 0.28);
    border: 1px solid rgba(94, 58, 140, 0.10);
    color: var(--purple);
    font-weight: 600;
    font-size: 0.92rem;
    transition: background var(--t), transform var(--t);
    cursor: default;
}

.pay-chip:hover { background: rgba(200, 217, 122, 0.45); transform: translateY(-2px); }
.pay-chip-highlight {
    background: rgba(200, 217, 122, 0.55);
    border-color: rgba(94, 58, 140, 0.20);
}

/* ── MAP ── */
.map-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 22px;
    box-shadow: var(--shadow-md);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

/* ── ADDRESS ── */
.shop-address {
    font-style: normal;
    line-height: 1.9;
    margin-bottom: 18px;
    color: var(--text);
}

.shop-address strong { display: block; font-size: 1.04rem; margin-bottom: 4px; }

/* ── CONTACT FORM ── */
.form-card { }

.cform { margin-top: 28px; }

.cform-group {
    margin-bottom: 18px;
}

.cform-group label {
    display: block;
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--purple);
    margin-bottom: 7px;
}

.cform-group input,
.cform-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(94, 58, 140, 0.15);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.90);
    font-family: 'Jost', sans-serif;
    font-size: 0.97rem;
    color: var(--text);
    transition: border-color var(--t), box-shadow var(--t), background var(--t);
    resize: vertical;
}

.cform-group input::placeholder,
.cform-group textarea::placeholder {
    color: #b0a8ba;
}

.cform-group input:focus,
.cform-group textarea:focus {
    outline: none;
    border-color: rgba(94, 58, 140, 0.38);
    box-shadow: 0 0 0 4px rgba(94, 58, 140, 0.08);
    background: #fff;
}

.form-note {
    font-size: 0.84rem;
    color: var(--muted);
    margin-top: 14px;
    text-align: center;
}

/* ── ALERTS ── */
.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.alert-ok {
    background: rgba(200, 217, 122, 0.30);
    border: 1px solid rgba(160, 194, 70, 0.50);
    color: #3d5c12;
}

.alert-err {
    background: rgba(255, 200, 200, 0.40);
    border: 1px solid rgba(200, 100, 100, 0.32);
    color: #832020;
}

/* ── FOOTER ── */
.site-footer {
    background: linear-gradient(180deg,
        rgba(200, 217, 122, 0.88) 0%,
        rgba(183, 205, 96, 0.96) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.site-footer::before {
    content: '';
    position: absolute;
    right: -80px; bottom: -80px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand img {
    margin-bottom: 14px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}

.footer-brand p {
    font-size: 0.95rem;
    color: #3a4e12;
    line-height: 1.7;
}

.footer-col h3 {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #2e420a;
    margin-bottom: 18px;
}

.footer-col p,
.footer-col address p { font-size: 0.93rem; color: #3a4e12; line-height: 1.8; }

.footer-col a {
    display: block;
    font-size: 0.93rem;
    color: #2a3e0a;
    margin-bottom: 8px;
    font-weight: 500;
    transition: color var(--t), transform var(--t);
}
.footer-col a:hover { color: var(--purple-dark); transform: translateX(4px); }

.footer-col address { font-style: normal; }

.footer-bottom {
    background: #111;
    color: rgba(255,255,255,0.70);
    text-align: center;
    padding: 18px;
    font-size: 0.88rem;
}

.footer-bottom p { margin: 0; }

/* ── COOKIE BANNER ── */
.cookie-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 720px;
    background: rgba(18, 14, 26, 0.96);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    display: none;
    flex-direction: column;
    gap: 18px;
    z-index: 9999;
    box-shadow: 0 24px 60px rgba(0,0,0,0.40);
    border: 1px solid rgba(255,255,255,0.08);
}

.cookie-bar.visible { display: flex; }

.cookie-bar p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.88);
}

.cookie-bar a { color: var(--green); text-decoration: underline; }

.cookie-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-btns .btn-primary { background: var(--green); color: #1e1e1e; }
.cookie-btns .btn-ghost {
    background: rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.80);
    border-color: rgba(255,255,255,0.20);
}
.cookie-btns .btn-ghost:hover { background: rgba(255,255,255,0.18); color: #fff; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px 40px;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 860px) {
    .nav-toggle { display: inline-flex; }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 18px;
        border-radius: var(--radius-xl);
        background: rgba(247, 244, 238, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(255,255,255,0.50);
    }

    .main-nav.open { display: flex; }
    .main-nav a { width: 100%; padding: 11px 16px; border-radius: var(--radius-sm); }

    .grid-halves,
    .about-grid,
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .portrait-wrap { order: -1; max-width: 400px; }

    .section { padding-block: 72px; }

    .hero-card { padding: 40px 28px; }

    .stacked-photos {
        min-height: 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stacked-img {
        position: relative;
        width: 100%;
        inset: auto;
        transform: none;
    }
    .stacked-img:hover { transform: none; }

    .offer-list { grid-template-columns: 1fr; }

    .hours-row { flex-direction: column; align-items: flex-start; gap: 4px; }

    .map-frame iframe { height: 300px; }

    .glass-card { padding: 30px 26px; }
}

@media (max-width: 560px) {
    .container { width: min(var(--max-w), calc(100% - 24px)); }

    h1 { font-size: 2.6rem; }
    h2 { font-size: 2.1rem; }

    .hero-eyebrow { font-size: 0.82rem; padding: 7px 14px; }
    .hero-cta { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }

    .bg-blob { display: none; }

    .footer-inner { grid-template-columns: 1fr; }

    .cookie-btns { flex-direction: column; }
    .cookie-btns .btn { width: 100%; }

    .stacked-photos { grid-template-columns: 1fr; }
}

/* ── PRINT ── */
@media print {
    .header-bar, .hero, .cookie-bar, .bg-blob,
    .scroll-down, .site-footer { display: none; }
    body { background: #fff; color: #000; }
    .glass-card { box-shadow: none; border: 1px solid #ccc; }
}

.gallery-img {
    cursor: pointer;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(20, 15, 18, 0.88);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.lightbox-close {
    position: fixed;
    top: 24px;
    right: 32px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #222;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}