*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #212121;
    background-color: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.75rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(183, 110, 121, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.75rem !important;
    gap: 1rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.logo-script {
    font-family: "Great Vibes", cursive;
    font-size: 1.6rem;
    color: #b76e79;
    letter-spacing: 0.04em;
}

.logo-tagline {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #757575;
}

.site-nav ul {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    padding: 0.75rem 1.25rem 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 0 0.9rem;
}

.site-nav a {
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.35rem 0;
    position: relative;
}

.site-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 1.75rem;
    height: 2px;
    background: linear-gradient(90deg, #b76e79, #fce4ec);
    border-radius: 999px;
}

.site-nav.open ul {
    display: flex;
}

.nav-toggle {
    border: none;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.28rem;
    padding: 0.4rem;
    cursor: pointer;
}

.nav-toggle-line {
    width: 1.4rem;
    height: 2px;
    background: #212121;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 839px) {
    .site-nav ul {
        left: 0;
        right: 0;
        top: 100%;
        padding: 0.9rem 1.75rem 1.15rem;
        border-bottom-left-radius: 1.1rem;
        border-bottom-right-radius: 1.1rem;
    }

    .site-nav a {
        padding: 0.55rem 0;
        font-size: 0.98rem;
    }

    .nav-toggle {
        margin-left: auto;
    }
}

.hero {
    position: relative;
    padding: 4.25rem 0 3.25rem;
    background:
        radial-gradient(circle at 6% 0%, rgba(252, 228, 236, 0.9) 0, transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(33, 33, 33, 0.95) 0, rgba(33, 33, 33, 0.9) 32%, transparent 70%),
        #ffffff;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(26px);
    opacity: 0.75;
}

.hero::before {
    width: 320px;
    height: 320px;
    right: -140px;
    bottom: -120px;
    background: radial-gradient(circle at 10% 10%, rgba(252, 228, 236, 0.9), transparent 60%);
}

.hero::after {
    width: 260px;
    height: 260px;
    left: -120px;
    top: 40%;
    background: radial-gradient(circle at 80% 0%, rgba(183, 110, 121, 0.52), transparent 50%);
}

.hero-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    padding: 1.75rem 1.4rem !important;
    border-radius: 1.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(252, 228, 236, 0.85));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(183, 110, 121, 0.25);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    color: #b76e79;
    margin-bottom: 0.5rem;
}

.hero h1 {
    font-size: 2.1rem;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero-text {
    font-size: 0.98rem;
    max-width: 32rem;
    color: #4a4a4a;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
    background: linear-gradient(120deg, #b76e79, #fce4ec);
    color: #212121;
    box-shadow: 0 12px 28px rgba(183, 110, 121, 0.4);
}

.btn-secondary {
    background: #212121;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    border-color: rgba(183, 110, 121, 0.5);
    color: #b76e79;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.btn.full-width {
    width: 100%;
}

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 60%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
    transform: skewX(-20deg);
    animation: shimmer-move 2.5s infinite;
}

@keyframes shimmer-move {
    0% {
        left: -150%;
    }

    60% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.hero-meta {
    margin-top: 1rem;
    font-size: 0.86rem;
    color: #757575;
}

.hero-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-media-stack {
    position: relative;
    width: 100%;
    max-width: 420px;
    min-height: 260px;
}

.hero-photo-card {
    position: absolute;
    border-radius: 1.4rem;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    transform-origin: center;
}

.hero-photo-card-primary {
    inset: 0;
}

.hero-photo-card-secondary {
    width: 60%;
    bottom: -12%;
    right: -6%;
    transform: rotate(6deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.hero-photo-card img {
    width: 100%;
    height: auto;
}

.hero-stat-pill {
    position: absolute;
    left: -2%;
    bottom: -8%;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(33, 33, 33, 0.9);
    color: #ffffff;
    display: inline-flex;
    flex-direction: column;
    gap: 0.1rem;
    max-width: 260px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.hero-stat-number {
    font-size: 0.82rem;
    font-weight: 600;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: #f5f5f5;
}

.video-placeholder {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 9 / 16;
    border-radius: 1.6rem;
    background: radial-gradient(circle at 20% 0, rgba(252, 228, 236, 0.9), transparent 60%), linear-gradient(145deg, #212121, #b76e79);
    overflow: hidden;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
}

.video-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.55), transparent 55%);
}

.video-overlay {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #ffffff;
    text-align: center;
    padding: 1.5rem;
}

.play-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.video-label {
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.badge-pill {
    font-size: 0.78rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(183, 110, 121, 0.3);
    background: rgba(252, 228, 236, 0.6);
}

.section {
    padding: 3rem 0;
}

.section.section-types {
    padding-top: 2.5rem;
    padding-bottom: 3.25rem;
    background: linear-gradient(180deg, rgba(252, 228, 236, 0.3), rgba(252, 228, 236, 0.02));
}

.section.section-photozones {
    padding-top: 3.25rem;
}

.section.section-cta {
    padding-top: 3.5rem;
    padding-bottom: 3.8rem;
    background: radial-gradient(circle at 0 0, rgba(252, 228, 236, 0.6), transparent 55%);
}

.section-header {
    margin-bottom: 2rem;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}

.section-header p {
    max-width: 32rem;
    color: #555555;
}

.section-header.center p {
    margin-inline: auto;
}

.slider-wrapper {
    position: relative;
    margin-top: 1.5rem;
}

.event-type-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
}

.event-type-slider::-webkit-scrollbar {
    display: none;
}

.event-type-card {
    min-width: 80%;
    max-width: 20rem;
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.4rem 1.5rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(183, 110, 121, 0.15);
}

.event-type-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.event-type-card p {
    font-size: 0.92rem;
    color: #555555;
    margin-bottom: 0.65rem;
}

.event-type-card ul li {
    position: relative;
    padding-left: 0.9rem;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.event-type-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #b76e79;
}

.text-link {
    font-size: 0.9rem;
    color: #b76e79;
    font-weight: 500;
}

.slider-control {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    display: none;
}

.slider-control::before {
    content: "";
    display: block;
    width: 0.45rem;
    height: 0.45rem;
    border-top: 2px solid #212121;
    border-right: 2px solid #212121;
    transform: rotate(135deg);
    margin: 0 auto;
}

.slider-control-next::before {
    transform: rotate(-45deg);
}

.slider-control-prev {
    left: -0.5rem;
}

.slider-control-next {
    right: -0.5rem;
}

.photozones-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr);
    gap: 2rem;
    align-items: center;
}

.photozones-points {
    margin: 1rem 0 1.5rem;
    display: grid;
    gap: 0.5rem;
}

.icon-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
}

.icon-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: linear-gradient(120deg, #b76e79, #fce4ec);
}

.photozones-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.photo-card {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.photo-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 80%;
    justify-self: center;
}

.chip-label {
    position: absolute;
    left: 0.9rem;
    bottom: 0.9rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.balloon-float {
    animation: float-balloon 6s ease-in-out infinite;
}

@keyframes float-balloon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

.process-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.process-step {
    border-radius: 1.25rem;
    padding: 1.4rem 1.5rem;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
    border: 1px solid rgba(183, 110, 121, 0.16);
}

.process-step h3 {
    margin-bottom: 0.4rem;
}

.process-step p {
    font-size: 0.92rem;
    color: #555555;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: #fce4ec;
    color: #b76e79;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.section-testimonials {
    background: #fef6f8;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.6rem 1.4rem;
    border-radius: 1.3rem;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(183, 110, 121, 0.16);
}

.testimonial-card blockquote {
    font-size: 0.96rem;
    margin-bottom: 0.85rem;
    color: #424242;
}

.testimonial-card figcaption {
    font-size: 0.86rem;
    color: #777777;
}

.section-cta {
    padding-bottom: 3.5rem;
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
    align-items: flex-start;
}

.cta-copy h2 {
    margin-bottom: 0.4rem;
}

.cta-copy p {
    max-width: 24rem;
    color: #555555;
}

.contact-form {
    border-radius: 1.35rem;
    padding: 1.5rem 1.5rem 1.7rem;
    background: #ffffff;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(183, 110, 121, 0.18);
}

.form-row {
    margin-bottom: 1rem;
}

.form-row-inline {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
}

label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    color: #616161;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.7rem 0.85rem;
    font-family: inherit;
    font-size: 0.94rem;
    background: #fafafa;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(183, 110, 121, 0.7);
    box-shadow: 0 0 0 1px rgba(183, 110, 121, 0.3);
    background: #ffffff;
}

.input-error {
    border-color: #b76e79;
    box-shadow: 0 0 0 1px rgba(183, 110, 121, 0.4);
}

.form-consent {
    font-size: 0.86rem;
    color: #555555;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 0.15rem;
}

.form-note {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: #757575;
}

.form-note a {
    color: #b76e79;
    font-weight: 500;
}

.site-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    margin-top: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr);
    gap: 1.75rem;
    padding: 2.2rem 0 1.6rem;
    font-size: 0.88rem;
}

.footer-brand p {
    margin-top: 0.4rem;
    max-width: 20rem;
    color: #616161;
}

.footer-links h3,
.footer-contact h3 {
    font-size: 0.88rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: #424242;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.4rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #b76e79;
}

.footer-small {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: #757575;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding: 0.75rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #868686;
}

.page-hero {
    padding: 3.2rem 0 2rem;
    background: radial-gradient(circle at top left, #fce4ec 0, transparent 45%), #ffffff;
}

.page-hero h1 {
    font-size: 1.9rem;
    margin-bottom: 0.4rem;
}

.page-intro {
    max-width: 34rem;
    color: #555555;
}

.service-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
}

.service-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
}

.service-media {
    border-radius: 1.4rem;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.15);
}

.service-copy h2 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.service-copy p {
    font-size: 0.94rem;
    color: #555555;
    margin-bottom: 0.6rem;
}

.service-copy ul {
    margin-bottom: 0.6rem;
}

.service-copy ul li {
    position: relative;
    padding-left: 0.9rem;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.service-copy ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #b76e79;
}

.service-note {
    font-size: 0.86rem;
    color: #757575;
    margin-bottom: 0.8rem;
}

.section-faq {
    background: #fef6f8;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.faq-item h3 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: #555555;
}

.contact-section {
    padding-bottom: 3rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.contact-details h2 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 0.94rem;
    color: #555555;
    margin-bottom: 0.7rem;
}

.contact-list li {
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.contact-list strong {
    font-weight: 600;
}

.contact-list a {
    color: #b76e79;
}

.contact-list a:hover {
    text-decoration: underline;
}

.map-embed {
    margin-top: 0.9rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.map-embed iframe {
    width: 100%;
    height: 260px;
    display: block;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.filter-btn {
    border-radius: 999px;
    border: 1px solid rgba(183, 110, 121, 0.4);
    background: #ffffff;
    padding: 0.35rem 0.9rem;
    font-size: 0.86rem;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.filter-btn.active {
    background: #b76e79;
    border-color: #b76e79;
    color: #ffffff;
}

.masonry-grid {
    column-count: 1;
    column-gap: 0.75rem;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 0.75rem;
    border-radius: 1rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.masonry-item img {
    width: 100%;
    display: block;
}

.masonry-item figcaption {
    font-size: 0.86rem;
    padding: 0.65rem 0.8rem 0.8rem;
    color: #555555;
    height: auto;
    min-height: 67px;
}

.fade-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 60;
}

.lightbox.active {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.lightbox-inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lightbox img {
    max-height: 80vh;
    border-radius: 1rem;
}

.lightbox-caption {
    font-size: 0.9rem;
    color: #f5f5f5;
}

.lightbox-close {
    position: absolute;
    top: -0.6rem;
    right: -0.6rem;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: none;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.lightbox-close::before,
.lightbox-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 2px;
    background: #212121;
    transform-origin: center;
}

.lightbox-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.legal-hero {
    background: linear-gradient(135deg, #ffffff 0, #fce4ec 55%, #ffffff 100%);
}

.legal-content {
    font-size: 0.95rem;
    color: #424242;
    display: grid;
    gap: 1.2rem;
}

.legal-content h2 {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
}

.legal-content ul {
    margin-left: 1rem;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 0.3rem;
}

.success-body {
    background: radial-gradient(circle at top, #fce4ec 0, #ffffff 55%);
}

.success-main {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 2.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
}

.success-card {
    position: relative;
    z-index: 1;
    border-radius: 1.6rem;
    padding: 2rem 1.6rem 1.8rem;
    background: #ffffff;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.success-icon {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
}

.success-card h1 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

.success-card p {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 1.1rem;
}

.success-card .btn {
    margin: 0.25rem 0.3rem;
}

.confetti-layer {
    position: absolute;
    inset: -10vh -10vw;
    pointer-events: none;
    background-image: radial-gradient(circle at 20% 20%, rgba(183, 110, 121, 0.9) 0, transparent 55%), radial-gradient(circle at 80% 30%, rgba(252, 228, 236, 0.9) 0, transparent 55%), radial-gradient(circle at 40% 80%, rgba(33, 33, 33, 0.65) 0, transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.9;
}

.confetti-layer-back {
    filter: blur(8px);
    transform: translateY(-8px);
}

.confetti-layer-front {
    animation: confetti-float 14s linear infinite alternate;
}

@keyframes confetti-float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(16px);
    }
}

@media (min-width: 640px) {
    .hero-inner {
        flex-direction: row;
        align-items: center;
    }

    .hero-copy {
        flex: 1.1;
    }

    .hero-media {
        flex: 0.9;
    }

    .photozones-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        gap: 2.5rem;
    }

    .photozones-images {
        gap: 1rem;
    }

    .photo-card:nth-child(3) {
        max-width: 100%;
        grid-column: auto;
    }

    .process-grid,
    .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .service-card {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
        gap: 1.75rem;
    }

    .service-card-reverse {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.05fr);
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
        gap: 2.25rem;
    }

    .map-embed iframe {
        height: 320px;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1.4fr);
    }

    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .masonry-grid {
        column-count: 2;
    }
}

@media (min-width: 840px) {
    .header-inner {
        padding-inline: 0;
    }

    .site-nav ul {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .nav-toggle {
        display: none;
    }

    .hero {
        padding: 4rem 0 3.5rem;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .cta-inner {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
        gap: 2.5rem;
    }

    .form-row-inline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .slider-control,
    .testimonial-control {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .testimonial-track {
        border-radius: 1.4rem;
        overflow: hidden;
    }

    .testimonial-slide {
        padding: 1.9rem 2.1rem;
    }

    .masonry-grid {
        column-count: 3;
    }

    .map-embed iframe {
        height: 360px;
    }

    .success-card {
        padding-inline: 2.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-media {
        margin-top: 0.75rem;
    }

    .hero-media-stack {
        max-width: 320px;
        margin-inline: auto;
        min-height: 0;
    }

    .hero-photo-card-primary {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .hero-photo-card-secondary {
        display: none;
    }

    .hero-stat-pill {
        position: static;
        margin-top: 0.7rem;
        max-width: 100%;
        padding: 0.55rem 0.9rem;
    }

    .photozones-grid {
        gap: 1.75rem;
    }

    .photozones-images {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.9rem;
    }

    .photo-card {
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
    }

    .photo-card:nth-child(3) {
        max-width: 100%;
        justify-self: stretch;
    }

    .section.section-types .section-header {
        text-align: center;
    }

    .section.section-types .section-header p {
        margin-inline: auto;
    }

    .section.section-types .slider-wrapper {
        margin-top: 1.1rem;
    }

    .event-type-card {
        min-width: 90%;
        padding: 1.5rem 1.4rem;
    }

    h1,
    .hero h1,
    .page-hero h1 {
        font-size: 1.7rem;
    }

    h2,
    .section-header h2,
    .page-hero h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1rem;
    }
}

@media (min-width: 1080px) {
    .hero h1 {
        font-size: 2.9rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .photozones-grid {
        gap: 3rem;
    }

    .service-grid {
        gap: 3rem;
    }

    .footer-grid {
        padding-top: 2.8rem;
        padding-bottom: 2rem;
    }
}