/* ============================================
   KWIACIARNIA BUKIECIK — Luxury florist landing
   Palette tuned to logo background #FFEFFB
   ============================================ */

:root {
    /* Surfaces */
    --bg: #FFEFFB;
    --bg-soft: #FFF7FC;
    --bg-cream: #FAEAEF;
    --white: #FFFFFF;

    /* Brand — dusty rose & gold */
    --rose: #C9576A;
    --rose-dark: #A03E54;
    --rose-light: #F8D5DE;
    --rose-pale: #FBE5EC;
    --gold: #C9A96E;
    --gold-dark: #A88A4F;
    --sage: #A8B89A;

    /* Ink */
    --ink: #2C1F26;
    --ink-soft: #4B3942;
    --ink-muted: #6B5B63;
    --ink-faded: #9C8B92;

    /* Dark sections */
    --dark: #1E1419;
    --dark-soft: #2A1A22;
    --dark-line: rgba(255, 239, 251, 0.12);

    /* Shadows */
    --shadow-xs: 0 2px 6px rgba(44, 31, 38, 0.06);
    --shadow-sm: 0 8px 22px rgba(44, 31, 38, 0.08);
    --shadow-md: 0 18px 40px rgba(201, 87, 106, 0.14);
    --shadow-lg: 0 30px 70px rgba(160, 62, 84, 0.22);
    --shadow-rose: 0 12px 30px rgba(201, 87, 106, 0.30);

    /* Type */
    --ff-display: 'Cormorant Garamond', 'Georgia', serif;
    --ff-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --container: 1240px;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast: 180ms;
    --t-med: 320ms;
    --t-slow: 560ms;

    /* Layers */
    --z-nav: 70;        /* above mobile-menu (60) so burger stays clickable */
    --z-menu: 60;
    --z-modal: 80;
    --z-mobile-cta: 40;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg, video, iframe { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul { list-style: none; }

/* Selection */
::selection { background: var(--rose); color: #FFF; }

/* Containers */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(20px, 5vw, 48px);
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 800ms var(--ease), transform 800ms var(--ease);
    will-change: opacity, transform;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform var(--t-fast) var(--ease),
                box-shadow var(--t-med) var(--ease),
                background-color var(--t-fast) var(--ease),
                color var(--t-fast) var(--ease);
    white-space: nowrap;
}
.btn--primary {
    background: var(--rose);
    color: #FFF;
    box-shadow: var(--shadow-rose);
}
.btn--primary:hover { background: var(--rose-dark); box-shadow: 0 14px 34px rgba(160, 62, 84, 0.38); transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }
.btn--primary:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn--ghost {
    background: rgba(255, 255, 255, 0.18);
    color: #FFF;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.92); color: var(--ink); transform: translateY(-2px); }
.btn--ghost:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn--large { min-height: 56px; padding: 16px 36px; font-size: 16px; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: var(--z-nav);
    padding: 14px 0;
    background: rgba(255, 239, 251, 0);
    transition: background-color var(--t-med) var(--ease),
                box-shadow var(--t-med) var(--ease),
                padding var(--t-med) var(--ease),
                backdrop-filter var(--t-med) var(--ease);
}
.nav.is-scrolled {
    background: var(--bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 24px rgba(44, 31, 38, 0.08);
    padding: 8px 0;
}
/* When mobile menu is open, nav must be invisible so menu slides in as one seamless sheet */
.nav.menu-is-open {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    transition: none !important; /* snap instantly — no fade-out artefact */
}

.nav__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
.nav__logo   { grid-column: 1; }
.nav__links  { grid-column: 2; justify-self: center; }
/* CTA i burger zajmują tę samą kolumnę, ale tylko jedno jest widoczne naraz */
.nav__cta    { grid-column: 3; justify-self: end; }
.nav__burger { grid-column: 3; justify-self: end; }

.nav__logo {
    display: block;
    flex-shrink: 0;
    transition: transform var(--t-fast) var(--ease);
}
.nav__logo:hover { opacity: 0.82; }
.nav__logo img,
.nav__logo picture img {
    height: 50px;
    width: 50px;
    max-height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.nav__links {
    display: flex;
    gap: 36px;
    align-items: center;
}
.nav__link {
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    padding: 8px 0;
    letter-spacing: 0.02em;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 2px;
    width: 0; height: 1.5px;
    background: var(--rose);
    transition: width var(--t-med) var(--ease);
}
.nav__link:hover { color: var(--rose); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose);
    color: #FFF;
    padding: 11px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(201, 87, 106, 0.30);
    transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.nav__cta:hover { background: var(--rose-dark); transform: translateY(-2px); }

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 48px; height: 48px;
    align-items: center;
    justify-content: center;
}
.nav__burger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease);
    transform-origin: center;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: var(--z-menu);
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease);
    padding-top: 80px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-menu.is-open { transform: translateX(0); }

/* X close button — top-right corner, above nav (z-nav=70 > z-menu=60) */
.mobile-menu__close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rose-pale);
    color: var(--rose);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
    z-index: 1; /* relative to mobile-menu stacking */
}
.mobile-menu__close:hover { background: var(--rose); color: #FFF; transform: rotate(90deg); }

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 20px 32px 0;
    flex: 1;
}
.mobile-menu__link {
    font-family: var(--ff-display);
    font-size: 34px;
    font-weight: 500;
    color: var(--ink);
    padding: 18px 0;
    border-bottom: 1.5px solid var(--rose);
    transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}
.mobile-menu__link:hover { color: var(--rose); padding-left: 8px; }
.mobile-menu__cta {
    margin-top: 28px;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    color: #FFF;
    padding: 18px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-align: center;
    box-shadow: var(--shadow-rose);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 17px;
}
.mobile-menu__bouquet {
    margin: auto;
    text-align: center;
    pointer-events: none;
    user-select: none;
    display: flex;
    justify-content: center;
    align-self: center;
}
.mobile-menu__bouquet img {
    width: 240px;
    height: 240px;
    object-fit: contain;
}
/* Larger bouquet on wider mobile / small tablet */
@media (min-width: 480px) and (max-width: 768px) {
    .mobile-menu__bouquet img { width: 300px; height: 300px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg,
            rgba(30, 20, 25, 0.30) 0%,
            rgba(30, 20, 25, 0.50) 60%,
            rgba(30, 20, 25, 0.75) 100%),
        radial-gradient(ellipse at center, transparent 30%, rgba(201, 87, 106, 0.18) 100%);
}

.hero__content {
    text-align: center;
    color: #FFF;
    padding-top: 110px;
    padding-bottom: 60px;
    animation: heroIn 1100ms var(--ease) both;
}
@keyframes heroIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__logo {
    max-height: 120px;
    width: auto;
    margin: 0 auto 28px;
    border-radius: 50%;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.30);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #FFF;
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}
.hero__badge strong { font-weight: 700; }

.hero__title {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(40px, 7vw, 88px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
    margin-bottom: 24px;
}
.hero__title em {
    font-style: italic;
    color: var(--rose-light);
}
.hero__title-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: lineIn 900ms var(--ease) forwards;
}
.hero__title-line:nth-child(1) { animation-delay: 250ms; }
.hero__title-line:nth-child(2) { animation-delay: 450ms; }
.hero__title-line:nth-child(3) { animation-delay: 650ms; }
@keyframes lineIn {
    to { opacity: 1; transform: translateY(0); }
}

.hero__subtitle {
    font-size: clamp(16px, 1.6vw, 19px);
    color: rgba(255, 255, 255, 0.92);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.65;
}

.hero__cta-wrap {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 46px;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}
.hero__scroll span {
    width: 3px;
    height: 8px;
    background: #FFF;
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(14px); opacity: 0.3; }
}

/* ============================================
   STATS
   ============================================ */
.stats {
    padding: 80px 0;
    background: var(--bg);
    position: relative;
}
.stats::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat__value {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1;
    color: var(--rose);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.stat__label {
    font-size: 14px;
    color: var(--ink-muted);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================================
   SECTION HEAD (shared)
   ============================================ */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-head__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--rose);
    margin-bottom: 16px;
    padding: 6px 16px;
    background: var(--rose-pale);
    border-radius: var(--radius-pill);
}
.section-head__eyebrow--light {
    color: var(--gold);
    background: rgba(201, 169, 110, 0.15);
}
.section-head__title {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.section-head__title em { font-style: italic; color: var(--rose); }
.section-head__lead {
    font-size: 17px;
    color: var(--ink-muted);
    line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t-med) var(--ease),
                box-shadow var(--t-med) var(--ease),
                background-color var(--t-med) var(--ease),
                border-color var(--t-med) var(--ease);
    overflow: hidden;
    isolation: isolate;
}
.service-card::before {
    content: "";
    position: absolute;
    top: -50px; right: -50px;
    width: 140px; height: 140px;
    background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--t-med) var(--ease);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--rose-light);
    background: rgba(255, 255, 255, 0.95);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--rose-pale) 0%, var(--rose-light) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    margin-bottom: 22px;
    transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
}
.service-card__icon svg { width: 32px; height: 32px; }
.service-card:hover .service-card__icon {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    color: #FFF;
    transform: rotate(-6deg) scale(1.05);
}
.service-card__title {
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.005em;
}
.service-card__desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-muted);
}

/* ============================================
   WEDDINGS
   ============================================ */
.weddings {
    padding: 110px 0;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.weddings::before {
    content: "";
    position: absolute;
    top: -10%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--rose-pale) 0%, transparent 70%);
    z-index: 0;
}

.weddings__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.weddings__content .section-head__eyebrow { margin-bottom: 20px; }
.weddings__title {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(34px, 4.5vw, 54px);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 22px;
    letter-spacing: -0.01em;
}
.weddings__title em { font-style: italic; color: var(--rose); }
.weddings__desc {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 32px;
}
.weddings__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    margin-bottom: 36px;
}
.weddings__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-soft);
}
.weddings__list svg {
    color: var(--rose);
    flex-shrink: 0;
    background: var(--rose-pale);
    border-radius: 50%;
    padding: 3px;
}

.weddings__accent {
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    color: #FFF;
    padding: 22px 28px;
    border-radius: var(--radius-md);
    margin-bottom: 28px;
    box-shadow: var(--shadow-rose);
    position: relative;
    overflow: hidden;
}
.weddings__accent::before {
    content: "";
    position: absolute;
    top: -30%; right: -10%;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.45) 0%, transparent 70%);
}
.weddings__accent strong {
    display: block;
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
    position: relative;
}
.weddings__accent span {
    font-size: 14px;
    opacity: 0.92;
    position: relative;
}

.weddings__visual {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.weddings__visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
}
.weddings__visual:hover img { transform: scale(1.05); }
.weddings__visual-deco {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(30, 20, 25, 0.25) 100%);
    pointer-events: none;
}

/* ============================================
   REVIEWS CAROUSEL
   ============================================ */
.reviews {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.carousel {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}
.carousel__viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.carousel__track {
    display: flex;
    transition: transform 600ms var(--ease);
    will-change: transform;
}

.review-card {
    flex: 0 0 100%;
    padding: 50px 56px;
    background: #FFF;
    text-align: center;
    border: 1px solid var(--rose-pale);
    box-sizing: border-box;
}
.review-card__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 22px;
}
.review-card__stars svg { width: 22px; height: 22px; }
.review-card__text {
    font-family: var(--ff-display);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 32px;
    position: relative;
}
.review-card__text::before {
    content: "";
    display: block;
    font-family: var(--ff-display);
    font-size: 90px;
    line-height: 0.5;
    color: var(--rose-light);
    height: 36px;
    margin-bottom: 10px;
}
.review-card__author {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    margin-top: auto;
}
.review-card__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-display);
    font-weight: 600;
    font-size: 22px;
}
.review-card__name {
    font-weight: 600;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.3;
}
.review-card__role {
    font-size: 13px;
    color: var(--ink-muted);
}

.carousel__controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
}
.carousel__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFF;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast) var(--ease),
                color var(--t-fast) var(--ease),
                transform var(--t-fast) var(--ease);
}
/* hover only on real pointer devices — prevents stuck state on touch */
@media (hover: hover) and (pointer: fine) {
    .carousel__btn:hover {
        background: var(--rose);
        color: #FFF;
        transform: translateY(-2px);
    }
}
.carousel__btn:active {
    background: var(--rose);
    color: #FFF;
    transform: scale(0.94);
}
/* Immediately deactivate focus ring after mouse/touch click */
.carousel__btn:focus:not(:focus-visible) {
    background: #FFF;
    color: var(--ink);
    transform: none;
}
.carousel__btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.carousel__dots {
    display: flex;
    gap: 10px;
}
.carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--rose-light);
    cursor: pointer;
    transition: background var(--t-fast) var(--ease),
                width var(--t-med) var(--ease);
}
.carousel__dot.is-active {
    background: var(--rose);
    width: 32px;
    border-radius: 6px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 110px 0;
    background: var(--bg);
}
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 18px;
}
.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 900ms var(--ease);
}
.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(160, 62, 84, 0.55) 100%);
    opacity: 0;
    transition: opacity var(--t-med) var(--ease);
}
.gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }

/* ============================================
   SOCIAL SECTION (DARK)
   ============================================ */
.social {
    position: relative;
    padding: 110px 0;
    background: var(--dark);
    color: #FFF;
    overflow: hidden;
    isolation: isolate;
}
.social__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 87, 106, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 169, 110, 0.20) 0%, transparent 50%);
}
.social__inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.social__title {
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: clamp(34px, 4.5vw, 56px);
    line-height: 1.1;
    color: #FFF;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}
.social__title em { font-style: italic; color: var(--gold); }
.social__lead {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 48px;
}

.social__buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 860px;
    margin: 0 auto;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* icon left, text next to it */
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    color: #FFF;
    transition: transform var(--t-fast) var(--ease),
                background var(--t-med) var(--ease),
                border-color var(--t-med) var(--ease),
                box-shadow var(--t-med) var(--ease);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 76px;
}
.social-btn:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.30);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.social-btn svg { flex-shrink: 0; }
.social-btn__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* left-aligned text, different handle lengths look natural */
    line-height: 1.3;
    text-align: left;
}
.social-btn__label { font-weight: 600; font-size: 15px; }
.social-btn__handle { font-size: 12px; color: rgba(255, 255, 255, 0.6); margin-top: 2px; }

.social-btn--ig:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}
.social-btn--fb:hover { background: #1877F2; border-color: #1877F2; }
.social-btn--tt:hover { background: #000; border-color: #FE2C55; box-shadow: 0 14px 30px rgba(254, 44, 85, 0.35); }

/* ============================================
   CONTACT + MAP
   ============================================ */
.contact {
    padding: 110px 0 130px;
    background: var(--bg);
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: stretch;
}
.contact__info {
    background: #FFF;
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--rose-pale);
}
.contact__item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--rose-pale);
}
.contact__item:last-of-type { border-bottom: 0; }
.contact__icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: var(--rose-pale);
    color: var(--rose);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.contact__item:hover .contact__icon { background: var(--rose); color: #FFF; }
.contact__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-muted);
    margin-bottom: 4px;
}
.contact__value {
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    transition: color var(--t-fast) var(--ease);
}
.contact__value:hover { color: var(--rose); }
.contact__hours {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px 18px;
    font-size: 15px;
    color: var(--ink-soft);
}
.contact__hours span:nth-child(odd) { font-weight: 600; color: var(--ink); }
.contact__closed { color: var(--rose) !important; font-weight: 500; }

.contact__socials {
    display: flex;
    gap: 12px;
    padding-top: 24px;
    margin-top: 8px;
    justify-content: space-evenly;
}
.contact__social {
    width: 44px;
    height: 44px;
    background: var(--rose-pale);
    color: var(--rose);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast) var(--ease),
                color var(--t-fast) var(--ease),
                transform var(--t-fast) var(--ease);
}
.contact__social:hover {
    background: var(--rose);
    color: #FFF;
    transform: translateY(-3px) scale(1.05);
}

.contact__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--rose-pale);
    min-height: 480px;
    background: var(--bg-cream);
}
.contact__map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    filter: saturate(0.92) contrast(1.02);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.78);
    padding: 80px 0 32px;
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--dark-line);
}
.footer__brand { max-width: 320px; }

/* Logo wrapper: fixed 160×80, overflow hidden so scale zooms in without expanding box */
.footer__logo-wrap {
    width: 160px;
    height: 80px;
    border-radius: 12px;
    background: var(--bg);
    overflow: hidden;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.footer__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Scale up the logo content within the fixed container
       The JPG has built-in whitespace — scaling 1.35x fills more of the box */
    transform: scale(1.35);
    transform-origin: center;
    display: block;
}

/* Tagline */
.footer__tag {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 20px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.footer__col a, .footer__col span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--t-fast) var(--ease);
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}
.footer__bottom a { color: var(--gold); }
.footer__bottom a:hover { color: #FFF; }

/* ============================================
   MOBILE FIXED CTA
   ============================================ */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: var(--z-mobile-cta);
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 239, 251, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 -10px 30px rgba(44, 31, 38, 0.12);
    gap: 10px;
    transform: translateY(0);
    transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}
.mobile-cta.is-hidden {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}
.mobile-cta__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.mobile-cta__btn:active { transform: scale(0.97); }
.mobile-cta__btn--call {
    background: var(--rose);
    color: #FFF;
    box-shadow: var(--shadow-rose);
}
.mobile-cta__btn--ig {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 22%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #FFF;
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .weddings__grid { grid-template-columns: 1fr; gap: 56px; }
    .weddings__visual { max-width: 520px; margin: 0 auto; aspect-ratio: 4 / 5; }
    .contact__grid { grid-template-columns: 1fr; gap: 30px; }
    .contact__map { min-height: 380px; }
    .contact__map iframe { min-height: 380px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    /* keep brand left-aligned on tablet — only center on mobile */
    .footer__brand { max-width: 100%; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    body { padding-bottom: 80px; }

    .nav { padding: 10px 0; }
    .nav.is-scrolled { padding: 6px 0; }
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .nav__logo img,
    .nav__logo picture img { height: 44px; width: 44px; max-height: 44px; }

    .hero__content { padding-top: 100px; padding-bottom: 80px; }
    .hero__br { display: none; }
    .hero__cta-wrap .btn { flex: 1; min-width: 0; }

    .stats { padding: 60px 0; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 18px; }

    .services, .weddings, .reviews, .gallery, .social, .contact {
        padding: 70px 0;
    }
    .section-head { margin-bottom: 44px; }

    .services__grid { grid-template-columns: 1fr; gap: 18px; }
    .service-card { padding: 32px 26px; text-align: center; }
    .service-card__icon { margin-inline: auto; }

    .weddings__content { text-align: center; }
    .weddings__list { grid-template-columns: 1fr; justify-items: start; }
    .weddings__list li { text-align: left; }
    .weddings__accent { text-align: center; }
    .weddings__accent strong { font-size: 19px; }

    .review-card { padding: 36px 26px; }
    .review-card__text::before { font-size: 70px; height: 28px; }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery__item--tall { grid-row: span 2; }

    .social__buttons { grid-template-columns: 1fr; max-width: 420px; }
    .social-btn { padding: 18px 22px; }

    .contact__info { padding: 30px 24px; }
    .contact__item { flex-direction: row; } /* keep icon+text row on mobile */

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

    .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
    .footer__bottom { justify-content: center; text-align: center; }
    /* center logo + tagline on mobile */
    .footer__brand { text-align: center; display: flex; flex-direction: column; align-items: center; max-width: 100%; }
    .footer__logo-wrap { margin-inline: auto; }

    .mobile-cta { display: flex; }
}

@media (max-width: 420px) {
    :root { --container: 100%; }
    .hero__title { font-size: clamp(34px, 9vw, 50px); }
    .hero__cta-wrap { flex-direction: column; width: 100%; }
    .hero__cta-wrap .btn { width: 100%; }
    .stats__grid { gap: 28px 14px; }
    .stat__value { font-size: 38px; }
}

/* Focus visible for everyone */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Print-friendly fallback */
@media print {
    .nav, .mobile-cta, .hero__scroll, .carousel__controls { display: none !important; }
    body { background: #FFF; color: #000; }
}

/* ============================================
   GALLERY ITEM — click / lightbox trigger
   ============================================ */
.gallery__item {
    cursor: pointer;
}
.gallery__item:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease);
}
.lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}
.lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 10, 14, 0.94);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: zoom-out;
}
.lightbox__content {
    position: relative;
    z-index: 1;
    max-width: min(94vw, 1200px);
    max-height: 92dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox__img {
    display: block;
    max-width: 100%;
    max-height: 92dvh;
    width: auto;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.70);
    object-fit: contain;
    transition: opacity var(--t-med) var(--ease);
}
.lightbox__img.is-loading { opacity: 0.3; }
.lightbox__close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.22); transform: rotate(90deg); }
.lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.20); }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox__counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.08em;
    background: rgba(0, 0, 0, 0.35);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
}
@media (max-width: 600px) {
    .lightbox__nav { width: 44px; height: 44px; }
    .lightbox__nav--prev { left: 8px; }
    .lightbox__nav--next { right: 8px; }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 28px;
    z-index: var(--z-mobile-cta);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--rose);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-rose);
    opacity: 0;
    transform: translateY(16px) scale(0.85);
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease),
                transform var(--t-med) var(--ease),
                background var(--t-fast) var(--ease);
}
.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}
.back-to-top:hover { background: var(--rose-dark); transform: translateY(-3px) scale(1.05); }
.back-to-top:active { transform: translateY(0) scale(0.97); }
@media (max-width: 768px) {
    /* On mobile lift above the fixed CTA bar */
    .back-to-top { bottom: 90px; right: 16px; width: 50px; height: 50px; }
}
