:root {
    --bg: #fffaf8;
    --surface: #ffffff;
    --surface-soft: #fff3f8;
    --text: #263238;
    --muted: #68737a;
    --pink: #ef9fc9;
    --pink-dark: #d86da8;
    --blue: #70bdf0;
    --blue-dark: #3c96d1;
    --mint: #79d9d2;
    --yellow: #ffd786;
    --green: #9bcf6a;
    --line: rgba(38, 50, 56, 0.11);
    --shadow: 0 22px 70px rgba(90, 66, 79, 0.13);
    --shadow-small: 0 12px 35px rgba(90, 66, 79, 0.1);
    --radius: 30px;
    --radius-small: 18px;
    --container: 1180px;
    --header-height: 86px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    margin: 0;
    color: var(--text);
    background: var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

body.lightbox-open,
body.nav-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 740px;
    font-size: clamp(3rem, 6.8vw, 6.25rem);
    font-weight: 850;
}

h2 {
    font-size: clamp(2.2rem, 4.4vw, 4.2rem);
    font-weight: 820;
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    left: 18px;
    top: 18px;
    z-index: 9999;
    transform: translateY(-150%);
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--text);
    color: #fff;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--pink-dark);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    border: 0;
    border-radius: 999px;
    background: var(--pink-dark);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(216, 109, 168, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    background: #ca5c99;
    box-shadow: 0 16px 38px rgba(216, 109, 168, 0.32);
}

.button-small {
    min-height: 44px;
    padding-inline: 20px;
    font-size: 0.92rem;
}

.button-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
    background: #fff;
    color: var(--text);
    box-shadow: var(--shadow-small);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    border: 0;
    border-bottom: 2px solid currentColor;
    background: transparent;
    color: var(--blue-dark);
    font-weight: 800;
    cursor: pointer;
}

.text-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: translateX(4px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: rgba(255, 250, 248, 0.78);
    backdrop-filter: blur(18px);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(255, 250, 248, 0.94);
    box-shadow: 0 8px 30px rgba(67, 48, 58, 0.07);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 850;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.brand img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    box-shadow: 0 5px 18px rgba(77, 58, 67, 0.1);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.95rem;
    font-weight: 760;
}

.main-nav > a:not(.button) {
    position: relative;
}

.main-nav > a:not(.button)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -6px;
    height: 2px;
    border-radius: 999px;
    background: var(--pink-dark);
    transition: right 0.2s ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
    right: 0;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: var(--shadow-small);
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 75px 0 95px;
    overflow: hidden;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(45px, 7vw, 90px);
}

.hero-copy h1 span {
    position: relative;
    display: inline-block;
    color: var(--blue-dark);
}

.hero-copy h1 span::after {
    content: "";
    position: absolute;
    left: 3%;
    right: 3%;
    bottom: 3px;
    height: 10px;
    border-radius: 999px;
    background: rgba(121, 217, 210, 0.45);
    z-index: -1;
    transform: rotate(-1deg);
}

.hero-lead {
    max-width: 700px;
    margin: 28px 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-meta span {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    margin-bottom: 25px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    font-size: 0.88rem;
    box-shadow: 0 8px 25px rgba(70, 50, 60, 0.07);
}

.status-dot {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(155, 207, 106, 0.16);
    background: var(--green);
}

.status-pill.is-closed .status-dot {
    background: var(--pink-dark);
    box-shadow: 0 0 0 5px rgba(216, 109, 168, 0.16);
}

.status-pill.is-soon .status-dot {
    background: var(--yellow);
    box-shadow: 0 0 0 5px rgba(255, 215, 134, 0.2);
}

.hero-photo-card {
    position: relative;
    min-height: 590px;
}

.hero-photo-card > img {
    width: 100%;
    height: 590px;
    object-fit: cover;
    border-radius: 46% 54% 45% 55% / 39% 41% 59% 61%;
    box-shadow: var(--shadow);
}

.hero-logo-card {
    position: absolute;
    left: -58px;
    bottom: 28px;
    width: 180px;
    padding: 13px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 20px 60px rgba(84, 61, 72, 0.2);
    transform: rotate(-5deg);
}

.hero-logo-card img {
    border-radius: 50%;
}

.floating-note {
    position: absolute;
    top: 30px;
    right: -40px;
    max-width: 210px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-small);
    color: #4f5d63;
    font-family: "Segoe Print", "Comic Sans MS", cursive;
    font-size: 1rem;
    line-height: 1.4;
    transform: rotate(3deg);
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.hero-shape-one {
    width: 440px;
    height: 440px;
    top: -130px;
    right: -120px;
    background: radial-gradient(circle at 30% 30%, rgba(239, 159, 201, 0.42), rgba(239, 159, 201, 0.05) 70%);
}

.hero-shape-two {
    width: 360px;
    height: 360px;
    left: -120px;
    bottom: -160px;
    background: radial-gradient(circle at 60% 40%, rgba(121, 217, 210, 0.4), rgba(121, 217, 210, 0.04) 72%);
}

.notice-section {
    position: relative;
    z-index: 3;
    margin-top: -42px;
}

.notice-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border: 1px solid rgba(255, 215, 134, 0.7);
    border-radius: 24px;
    background: linear-gradient(135deg, #fff8dc, #fff);
    box-shadow: var(--shadow-small);
}

.notice-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #fff;
    font-size: 1.7rem;
    box-shadow: 0 8px 25px rgba(121, 100, 45, 0.1);
}

.notice-content h2 {
    margin-bottom: 8px;
    font-size: clamp(1.5rem, 2.5vw, 2.3rem);
}

.notice-content p:last-child {
    margin: 0;
    color: var(--muted);
}

.two-column {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: clamp(48px, 8vw, 100px);
}

.about-image {
    position: relative;
}

.about-image > img {
    width: 100%;
    min-height: 540px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-badge {
    position: absolute;
    right: -28px;
    bottom: -28px;
    width: 170px;
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 9px solid var(--bg);
    border-radius: 50%;
    background: var(--mint);
    text-align: center;
    box-shadow: var(--shadow-small);
}

.image-badge strong {
    font-size: 2rem;
    line-height: 1;
}

.image-badge span {
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 760;
    line-height: 1.25;
}

.section-copy h2 {
    margin-bottom: 25px;
}

.section-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.06rem;
}

.section-copy .text-link {
    margin-top: 14px;
}

.services {
    background: #fff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading > p:last-child {
    color: var(--muted);
    font-size: 1.08rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 310px;
    padding: 32px 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--surface);
    box-shadow: 0 10px 30px rgba(71, 51, 61, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:nth-child(1) { background: linear-gradient(180deg, #fff, #fff3f8); }
.service-card:nth-child(2) { background: linear-gradient(180deg, #fff, #effaff); }
.service-card:nth-child(3) { background: linear-gradient(180deg, #fff, #fff9e9); }
.service-card:nth-child(4) { background: linear-gradient(180deg, #fff, #effbf9); }

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

.service-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 22px;
    background: #fff;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(71, 51, 61, 0.08);
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--muted);
}

.pricing {
    background: linear-gradient(180deg, var(--bg), #fff5f8);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
    gap: clamp(40px, 8vw, 100px);
}

.pricing-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 28px 0;
    padding: 18px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(80, 58, 69, 0.07);
}

.pricing-note p {
    margin: 0;
    color: var(--text) !important;
    font-size: 0.95rem !important;
}

.price-card {
    overflow: hidden;
    border: 1px solid rgba(216, 109, 168, 0.2);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.price-card-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--pink), #f8c8df);
}

.price-card-header span {
    font-size: 0.85rem;
    font-weight: 760;
    opacity: 0.72;
}

.price-list {
    padding: 8px 30px 18px;
}

.price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 18px 2px;
    border-bottom: 1px solid var(--line);
}

.price-row:last-child {
    border-bottom: 0;
}

.price-row span {
    color: #45545b;
}

.price-row strong {
    color: var(--blue-dark);
    white-space: nowrap;
}

.celebrations {
    padding-top: 50px;
    background: #fff5f8;
}

.celebration-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    overflow: hidden;
    border-radius: 36px;
    background: var(--text);
    box-shadow: var(--shadow);
}

.celebration-photo img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}

.celebration-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(38px, 7vw, 80px);
    color: #fff;
}

.celebration-copy h2 {
    margin-bottom: 22px;
}

.celebration-copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
}

.celebration-copy .button {
    margin-top: 18px;
}

.gallery-section {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 115px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    grid-column: span 4;
    grid-row: span 3;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 22px;
    background: #eee;
    cursor: zoom-in;
}

.gallery-item-1,
.gallery-item-6 {
    grid-column: span 6;
    grid-row: span 4;
}

.gallery-item-2,
.gallery-item-8 {
    grid-column: span 3;
    grid-row: span 4;
}

.gallery-item-3,
.gallery-item-7 {
    grid-column: span 3;
    grid-row: span 4;
}

.gallery-item-4,
.gallery-item-5,
.gallery-item-9 {
    grid-column: span 4;
    grid-row: span 3;
}

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

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(20, 28, 31, 0.25));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.045);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
    opacity: 1;
}

.gallery-zoom {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    font-size: 1.45rem;
    line-height: 1;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover .gallery-zoom,
.gallery-item:focus-visible .gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}

.opening {
    background: linear-gradient(180deg, #fff, #eefaf8);
}

.opening-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: stretch;
    gap: 26px;
}

.opening-card,
.building-card {
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-small);
}

.opening-card {
    padding: clamp(32px, 5vw, 58px);
}

.opening-card h2 {
    margin-bottom: 30px;
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.opening-list {
    margin-bottom: 22px;
}

.opening-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    border-radius: 10px;
}

.opening-row.is-today {
    background: #fff2f7;
    color: var(--pink-dark);
}

.small-note {
    color: var(--muted);
    font-size: 0.88rem;
}

.building-card {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.building-card > img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}

.building-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(19, 26, 29, 0.85));
}

.building-caption {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 34px;
    z-index: 2;
    color: #fff;
}

.building-caption h3 {
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.building-caption p:not(.eyebrow) {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.76);
}

.building-caption .button {
    margin-top: 12px;
}

.contact {
    background: var(--text);
    color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(45px, 8vw, 100px);
}

.contact-intro h2 {
    margin-bottom: 24px;
}

.contact-intro > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.08rem;
}

.contact-links {
    display: grid;
    gap: 12px;
    margin-top: 35px;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.045);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
    transform: translateX(4px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.contact-links a > span:first-child {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--pink-dark);
    font-size: 1.1rem;
    font-weight: 900;
}

.contact-links small,
.contact-links strong {
    display: block;
}

.contact-links small {
    color: rgba(255, 255, 255, 0.55);
}

.contact-form {
    padding: clamp(28px, 5vw, 48px);
    border-radius: var(--radius);
    background: #fff;
    color: var(--text);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    margin-bottom: 26px;
    font-size: 2rem;
}

.contact-form label {
    display: block;
    margin-bottom: 16px;
    color: #45545b;
    font-size: 0.9rem;
    font-weight: 800;
}

.contact-form label span {
    color: var(--muted);
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    padding: 14px 15px;
    border: 1px solid #dce2e5;
    border-radius: 13px;
    outline: 0;
    background: #fafcfc;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(112, 189, 240, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-message {
    margin-bottom: 20px;
    padding: 13px 15px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
}

.form-message.success {
    background: #eaf7df;
    color: #426720;
}

.form-message.error {
    background: #fff0f3;
    color: #9b3c5f;
}

.form-privacy {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.form-privacy a {
    text-decoration: underline;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

.site-footer {
    padding: 32px 0;
    background: #1f292d;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.84rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #fff;
}

.copyright {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
}

.lightbox[hidden] {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: 30px;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(14, 18, 20, 0.92);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: min(1100px, 92vw);
    max-height: 88vh;
    margin: 0;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    margin-inline: auto;
    border-radius: 18px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-content figcaption {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 3;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay,
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.26s; }

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

@media (max-width: 1080px) {
    .main-nav {
        gap: 16px;
        font-size: 0.9rem;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        min-height: 270px;
    }

    .hero-logo-card {
        left: -25px;
    }

    .floating-note {
        right: -10px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 74px;
    }

    .section {
        padding: 82px 0;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }

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

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

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

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 90px 30px 40px;
        background: rgba(255, 250, 248, 0.98);
        font-size: 1.25rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav .button {
        margin-top: 8px;
    }

    .hero {
        min-height: auto;
        padding-top: 48px;
    }

    .hero-grid,
    .two-column,
    .pricing-grid,
    .opening-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        max-width: 680px;
        margin-inline: auto;
    }

    .hero-photo-card,
    .hero-photo-card > img {
        min-height: 0;
        height: auto;
    }

    .hero-photo-card > img {
        aspect-ratio: 4 / 3;
    }

    .hero-logo-card {
        width: 150px;
    }

    .notice-card {
        grid-template-columns: auto 1fr;
    }

    .notice-card .text-link {
        grid-column: 2;
        justify-self: start;
    }

    .celebration-card {
        grid-template-columns: 1fr;
    }

    .celebration-photo img {
        min-height: 390px;
        max-height: 520px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .gallery-item,
    .gallery-item-1,
    .gallery-item-2,
    .gallery-item-3,
    .gallery-item-4,
    .gallery-item-5,
    .gallery-item-6,
    .gallery-item-7,
    .gallery-item-8,
    .gallery-item-9 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item:first-child,
    .gallery-item:nth-child(6) {
        grid-column: span 2;
    }

    .opening-grid {
        gap: 24px;
    }

    .building-card,
    .building-card > img {
        min-height: 540px;
    }
}

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

    .section {
        padding: 68px 0;
    }

    .brand span {
        display: none;
    }

    .hero {
        padding: 34px 0 76px;
    }

    h1 {
        font-size: clamp(2.75rem, 14vw, 4.25rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .status-pill {
        align-items: flex-start;
        border-radius: 16px;
        line-height: 1.35;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-photo-card > img {
        border-radius: 26px;
    }

    .hero-logo-card {
        left: -6px;
        bottom: -25px;
        width: 112px;
        padding: 8px;
    }

    .floating-note {
        top: 13px;
        right: -4px;
        max-width: 165px;
        padding: 12px 14px;
        font-size: 0.82rem;
    }

    .notice-section {
        margin-top: -24px;
    }

    .notice-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 23px;
    }

    .notice-icon {
        width: 50px;
        height: 50px;
    }

    .notice-card .text-link {
        grid-column: 1;
    }

    .two-column {
        gap: 52px;
    }

    .about-image > img {
        min-height: 390px;
    }

    .image-badge {
        right: 8px;
        bottom: -36px;
        width: 135px;
        height: 135px;
        border-width: 7px;
    }

    .image-badge strong {
        font-size: 1.55rem;
    }

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

    .service-card {
        min-height: 0;
    }

    .price-card-header {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px;
    }

    .price-list {
        padding: 6px 20px 12px;
    }

    .price-row {
        gap: 12px;
        padding: 15px 0;
        font-size: 0.9rem;
    }

    .celebrations {
        padding-top: 20px;
    }

    .celebration-card {
        border-radius: 26px;
    }

    .celebration-photo img {
        min-height: 300px;
    }

    .celebration-copy {
        padding: 35px 25px 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .gallery-item,
    .gallery-item:first-child,
    .gallery-item:nth-child(6) {
        grid-column: span 1;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(8) {
        height: 370px;
    }

    .opening-card {
        padding: 30px 22px;
    }

    .building-card,
    .building-card > img {
        min-height: 500px;
    }

    .building-caption {
        left: 22px;
        right: 22px;
        bottom: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 28px 20px;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}

/* Doplňky pro dynamickou verzi webu */
.notice-stack { display: grid; gap: 18px; }
.notice-stack .notice-card + .notice-card { margin-top: 0; }
.legal-page, .error-page { min-height: 100vh; background: var(--bg); }
.legal-main { padding: 145px 0 80px; }
.legal-card { max-width: 900px; padding: clamp(28px, 5vw, 65px); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.legal-card h1 { margin-bottom: 25px; font-size: clamp(2.5rem, 6vw, 4.5rem); }
.legal-card h2 { margin: 36px 0 12px; font-size: 1.55rem; }
.legal-card a { color: var(--pink-dark); text-decoration: underline; }
.legal-updated { margin-top: 45px; color: var(--muted); font-size: .9rem; }
.error-page { display: grid; place-items: center; padding: 30px; }
.error-card { width: min(100%, 720px); padding: clamp(30px, 6vw, 70px); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); text-align: center; }
.error-card img { width: 150px; margin: 0 auto 20px; }
.error-card h1 { max-width: none; margin-bottom: 16px; font-size: clamp(2.4rem, 6vw, 4.5rem); }
.error-card p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); font-size: 1.1rem; }
.error-card .button { display: inline-flex; }

@media (max-width: 650px) {
    .legal-main { padding-top: 115px; }
    .legal-page .header-inner > .button { padding: 9px 12px; font-size: .78rem; }
}


/* Světlý / tmavý režim */
.theme-toggle {
    position: relative;
    z-index: 1002;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: color-mix(in srgb, var(--surface) 88%, transparent);
    color: var(--text);
    box-shadow: var(--shadow-small);
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.theme-toggle:hover,
.theme-toggle:focus-visible { transform: translateY(-2px); background: var(--surface); }
.theme-toggle-sun,
.theme-toggle-moon { grid-area: 1 / 1; font-size: 1.18rem; line-height: 1; transition: opacity .18s ease, transform .18s ease; }
.theme-toggle-moon { opacity: 1; transform: scale(1); }
.theme-toggle-sun { opacity: 0; transform: scale(.65) rotate(-25deg); }
html[data-theme="dark"] .theme-toggle-moon { opacity: 0; transform: scale(.65) rotate(25deg); }
html[data-theme="dark"] .theme-toggle-sun { opacity: 1; transform: scale(1) rotate(0); }

html[data-theme="dark"] {
    --bg: #17181d;
    --surface: #22242b;
    --surface-soft: #29242d;
    --text: #f5f2f4;
    --muted: #b8b0b6;
    --pink: #f2a5cf;
    --pink-dark: #ed7fba;
    --blue: #78c8f7;
    --blue-dark: #78c9ff;
    --mint: #68d7cf;
    --yellow: #ffd786;
    --green: #a7dc73;
    --line: rgba(255,255,255,.13);
    --shadow: 0 22px 70px rgba(0,0,0,.34);
    --shadow-small: 0 12px 35px rgba(0,0,0,.26);
}
html[data-theme="dark"] body { background: var(--bg); color: var(--text); }
html[data-theme="dark"] .site-header { background: rgba(23,24,29,.82); }
html[data-theme="dark"] .site-header.is-scrolled { background: rgba(23,24,29,.95); box-shadow: 0 8px 30px rgba(0,0,0,.25); }
html[data-theme="dark"] .main-nav { color: var(--text); }
html[data-theme="dark"] .button-ghost:hover,
html[data-theme="dark"] .button-ghost:focus-visible,
html[data-theme="dark"] .hero-meta span,
html[data-theme="dark"] .status-pill { background: rgba(34,36,43,.88); }
html[data-theme="dark"] .floating-note { color: #e7e2e5; background: rgba(34,36,43,.9); border-color: rgba(255,255,255,.15); }
html[data-theme="dark"] .notice-card { background: linear-gradient(135deg, #302c21, #22242b); border-color: rgba(255,215,134,.32); }
html[data-theme="dark"] .notice-icon,
html[data-theme="dark"] .services,
html[data-theme="dark"] .gallery-section { background: var(--surface); }
html[data-theme="dark"] .service-card:nth-child(1) { background: linear-gradient(180deg, #25252c, #302630); }
html[data-theme="dark"] .service-card:nth-child(2) { background: linear-gradient(180deg, #25252c, #21303a); }
html[data-theme="dark"] .service-card:nth-child(3) { background: linear-gradient(180deg, #25252c, #332f23); }
html[data-theme="dark"] .service-card:nth-child(4) { background: linear-gradient(180deg, #25252c, #20322f); }
html[data-theme="dark"] .service-icon,
html[data-theme="dark"] .pricing-note,
html[data-theme="dark"] .price-card,
html[data-theme="dark"] .opening-card,
html[data-theme="dark"] .building-card,
html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .legal-card,
html[data-theme="dark"] .error-card { background: var(--surface); }
html[data-theme="dark"] .pricing { background: linear-gradient(180deg, var(--bg), #221d24); }
html[data-theme="dark"] .price-row span,
html[data-theme="dark"] .contact-form label { color: #ddd6da; }
html[data-theme="dark"] .celebrations { background: #211b22; }
html[data-theme="dark"] .celebration-card,
html[data-theme="dark"] .contact { background: #111217; }
html[data-theme="dark"] .gallery-item { background: #2c2e35; }
html[data-theme="dark"] .gallery-zoom { background: rgba(34,36,43,.92); color: var(--text); }
html[data-theme="dark"] .opening { background: linear-gradient(180deg, #1d1f25, #1b2827); }
html[data-theme="dark"] .opening-row.is-today { background: #30232c; }
html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea { border-color: #464850; background: #191a20; color: var(--text); }
html[data-theme="dark"] .contact-form input:focus,
html[data-theme="dark"] .contact-form textarea:focus { background: #1f2027; }
html[data-theme="dark"] .form-message.success { background: #203426; color: #a8dda5; }
html[data-theme="dark"] .form-message.error { background: #3a2229; color: #f4a7bd; }
html[data-theme="dark"] .legal-page,
html[data-theme="dark"] .error-page { background: var(--bg); }

@media (max-width: 900px) {
    html[data-theme="dark"] .main-nav { background: rgba(23,24,29,.985); }
}
@media (max-width: 640px) {
    .theme-toggle { width: 40px; height: 40px; }
}

/* Umístění přepínače na samostatných stránkách */
.error-page > .theme-toggle { position: fixed; top: 20px; right: 20px; z-index: 20; margin: 0; }

/* v2.2.1: transparentní logo bez bílého kotouče */
.brand img,
.footer-brand img,
.error-card > img {
    background: transparent;
}
html[data-theme="dark"] .brand img,
html[data-theme="dark"] .footer-brand img,
html[data-theme="dark"] .error-card > img {
    background: transparent;
    filter: drop-shadow(0 5px 14px rgba(0, 0, 0, .28));
}


/* v2.2.2: dvě skutečné varianty loga podle zvoleného režimu */
.theme-logo {
    position: relative;
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
}
.theme-logo img {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: transparent !important;
    box-shadow: none !important;
}
.theme-logo-dark { display: none; }
html[data-theme="dark"] .theme-logo-light { display: none; }
html[data-theme="dark"] .theme-logo-dark { display: block; }
.theme-logo-brand { width: 54px; height: 54px; }
.theme-logo-footer { width: 64px; height: 64px; }
.error-theme-logo { width: 180px; height: 180px; margin: 0 auto 18px; }
html[data-theme="dark"] .theme-logo-dark { filter: drop-shadow(0 5px 14px rgba(0, 0, 0, .28)); }
