:root {
    --bg: #f3f1ed;
    --surface: #ffffff;
    --surface-alt: #e6e0d6;
    --surface-soft: #faf7f2;
    --text: #161616;
    --muted: #5c564d;
    --accent: #b8945b;
    --accent-dark: #2a2723;
    --accent-soft: #e7d6b8;
    --line: rgba(42, 39, 35, 0.12);
    --shadow: 0 20px 45px rgba(22, 22, 22, 0.08);
    --radius: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(231, 214, 184, 0.45), transparent 30%),
        linear-gradient(180deg, #fcfbf8 0%, #f3f1ed 100%);
    line-height: 1.6;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(42, 39, 35, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.brand strong,
h1,
h2,
h3,
.site-footer h2,
.site-footer h3 {
    margin: 0;
    font-family: "Barlow", sans-serif;
    line-height: 1;
}

.brand strong {
    display: block;
    font-size: 1.15rem;
}

.brand small {
    display: block;
    color: var(--muted);
    margin-top: 0.2rem;
}

.brand-mark {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a1a1a, var(--accent));
    color: #fff;
    box-shadow: var(--shadow);
    font-family: "Barlow", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.site-nav a {
    color: var(--muted);
    font-weight: 600;
}

.site-nav a[aria-current="page"] {
    color: var(--text);
}

.button,
.button:visited {
    font-family: "Plus Jakarta Sans", sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 0.9rem 1.45rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #8b6a3f);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 14px 28px rgba(139, 106, 63, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(139, 106, 63, 0.28);
    color: #fff;
}

.button-secondary,
.button-secondary:visited {
    background: rgba(255, 255, 255, 0.96);
    color: var(--accent-dark);
    border: 1px solid rgba(42, 39, 35, 0.18);
    box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
    color: var(--accent-dark);
    background: #f1ece3;
    border-color: rgba(42, 39, 35, 0.28);
    box-shadow: 0 12px 24px rgba(22, 22, 22, 0.08);
}

.button-nav,
.button-nav:visited,
.site-nav .button-nav,
.site-nav .button-nav:visited {
    min-height: 46px;
    padding-inline: 1.2rem;
    color: #fff;
}

.button-nav:hover,
.button-nav:focus-visible,
.site-nav .button-nav:hover,
.site-nav .button-nav:focus-visible {
    color: #fff;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--text);
    border-radius: 999px;
}

main {
    overflow: clip;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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

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

.service-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    overflow: hidden;
    padding: 0;
}

.service-card-reverse .service-card-image {
    order: 2;
}

.service-card-reverse .service-card-body {
    order: 1;
}

.service-card-image {
    width: 100%;
    min-height: 360px;
    height: 100%;
    object-fit: cover;
}

.service-card-body {
    display: grid;
    align-content: center;
    padding: 2rem;
}

.service-card-top h3 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 0.85rem;
}

.process-card h3,
.step-card h3 {
    font-size: 1.35rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: #ead9ba;
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.filter-button {
    padding: 0.8rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    color: var(--accent-dark);
    font-weight: 700;
    cursor: pointer;
}

.filter-button.is-active {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
}

.gallery-card {
    overflow: hidden;
}

.gallery-zoom-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.gallery-grid-main .gallery-zoom-trigger,
.gallery-grid-main .gallery-card img {
    min-height: 380px;
}

.gallery-grid-preview .gallery-card img,
.gallery-card img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

.gallery-zoom-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(22, 22, 22, 0.05), rgba(22, 22, 22, 0.45));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-zoom-icon-wrap {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    transform: scale(0.94);
    transition: transform 0.25s ease;
}

.gallery-zoom-trigger:hover .gallery-zoom-overlay,
.gallery-zoom-trigger:focus-visible .gallery-zoom-overlay {
    opacity: 1;
}

.gallery-zoom-trigger:hover .gallery-zoom-icon-wrap,
.gallery-zoom-trigger:focus-visible .gallery-zoom-icon-wrap {
    transform: scale(1);
}

.gallery-card.is-hidden {
    display: none;
}

.hero,
.page-hero {
    position: relative;
    padding: 7rem 0 5rem;
    background-color: #1a1815;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(22, 22, 22, 0.9), rgba(22, 22, 22, 0.48));
}

.hero .container,
.page-hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: center;
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 1rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(231, 214, 184, 0.16);
    color: #f5e6ca;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.2rem);
    color: #fff;
}

.hero-copy,
.page-hero p,
.section-heading p,
.service-card-top p,
.step-card p,
.metric-card span,
.info-card p,
.process-card p,
.contact-card p,
.site-footer p,
.service-list,
.contact-list,
.footer-list,
.testimonial-card span {
    color: var(--muted);
}

.hero-copy,
.page-hero p {
    max-width: 62ch;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.section {
    padding: 5rem 0;
}

.section-alt,
.section-testimonials {
    background: rgba(255, 255, 255, 0.78);
}

.section-gallery-preview {
    background: linear-gradient(180deg, rgba(230, 224, 214, 0.42), rgba(255, 255, 255, 0.88));
}

.section-services-intro {
    background: rgba(255, 255, 255, 0.72);
}

.section-services-steps,
.service-area-section {
    background: rgba(230, 224, 214, 0.34);
}

.section-heading {
    margin-bottom: 2rem;
}

.section-heading h2,
.cta-band h2,
.page-hero h1 {
    margin-bottom: 0.8rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.metrics,
.card-grid,
.process-grid,
.gallery-grid,
.contact-grid,
.footer-grid,
.steps-grid,
.services-grid,
.benefits-grid,
.service-area-grid,
.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}

.card-grid,
.services-overview-grid,
.services-overview-grid-expanded {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefits-grid,
.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid-five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-area-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.info-card,
.metric-card,
.process-card,
.service-area-card,
.step-card,
.service-card,
.contact-card,
.gallery-card,
.testimonial-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.info-card,
.metric-card,
.process-card,
.step-card,
.contact-card,
.service-area-card,
.testimonial-card {
    padding: 1.6rem;
}

.info-card,
.metric-card {
    text-align: center;
}

.metric-card {
    display: grid;
    grid-template-rows: auto auto 1fr;
    align-content: start;
    gap: 0.9rem;
}

.metric-card-section {
    display: flex;
    justify-content: center;
}

.metric-card-section-title,
.metric-card-section-description {
    align-items: flex-start;
}

.metric-card-section-title strong,
.info-card h3,
.process-card h3,
.step-card h3,
.service-area-card h3,
.gallery-copy h2,
.contact-card h2,
.testimonial-card strong {
    margin: 0;
    font-size: 1.5rem;
}

.metric-card-section-title strong {
    font-size: 1.28rem;
    line-height: 1.2;
}

.metric-card-section-description p {
    margin: 0;
    max-width: 30ch;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.metric-icon,
.service-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #fbf4e8, #ead9ba);
    color: var(--accent-dark);
}

.metric-icon svg,
.service-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.25;
}

.contact-map {
    min-height: 240px;
    margin-top: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #e6e0d6;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 240px;
    display: block;
    border: 0;
}

.cta-band {
    padding: 4.5rem 0;
    color: #fff;
    background: linear-gradient(135deg, #171614, #8b6a3f);
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-band .button,
.cta-band .button:visited {
    min-width: min(100%, 320px);
    background: #fff;
    color: var(--accent-dark);
    box-shadow: 0 14px 28px rgba(22, 22, 22, 0.2);
}

.cta-band .button:hover,
.cta-band .button:focus-visible {
    color: var(--accent-dark);
    background: #f6f0e6;
}

.service-area-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 232, 0.92));
}

.site-footer {
    padding: 4rem 0 1.5rem;
    background: #161616;
    color: rgba(255, 255, 255, 0.82);
}

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

.site-footer .footer-list,
.site-footer .footer-list a,
.site-footer p {
    color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-floating {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.15rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
    z-index: 60;
}

.whatsapp-floating img {
    width: 1.2rem;
    height: 1.2rem;
}

@media (max-width: 1100px) {
    .card-grid,
    .services-overview-grid,
    .services-overview-grid-expanded,
    .benefits-grid,
    .process-grid-five,
    .gallery-grid,
    .footer-grid,
    .contact-grid,
    .service-area-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-area-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .hero-grid,
    .service-card,
    .card-grid,
    .services-overview-grid,
    .services-overview-grid-expanded,
    .benefits-grid,
    .process-grid-five,
    .gallery-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-card-reverse .service-card-image,
    .service-card-reverse .service-card-body {
        order: initial;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1rem;
        background: rgba(250, 247, 242, 0.98);
        border-bottom: 1px solid rgba(42, 39, 35, 0.08);
    }

    .site-nav.is-open {
        display: flex;
    }

    .menu-toggle {
        display: inline-block;
    }

    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hero,
    .page-hero,
    .section,
    .cta-band {
        padding: 4rem 0;
    }

    h1 {
        font-size: 2.7rem;
    }

    .section-heading h2,
    .page-hero h1,
    .cta-band h2 {
        font-size: 2.1rem;
    }

    .hero-actions,
    .cta-band-inner {
        align-items: stretch;
    }

    .hero-actions .button,
    .cta-band .button,
    .button-nav {
        width: 100%;
    }

    .whatsapp-floating span:last-child {
        display: none;
    }

    .lightbox-content {
        padding: 1rem;
    }

    .lightbox-content img {
        max-width: 100vw;
        max-height: 82vh;
    }

    .lightbox-caption {
        width: calc(100% - 2rem);
        text-align: center;
        border-radius: 20px;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.82);
    backdrop-filter: blur(6px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-content img {
    max-width: 94vw;
    max-height: 88vh;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.lightbox-nav,
.lightbox-close {
    position: absolute;
    z-index: 2;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    cursor: pointer;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-nav-prev {
    left: 1rem;
}

.lightbox-nav-next {
    right: 1rem;
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-nav-fallback {
    display: none;
}

.lightbox-caption {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    margin: 0;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(22, 22, 22, 0.8);
    color: #fff;
    font-family: "Barlow", sans-serif;
    font-weight: 700;
}

.center-action {
    margin-top: 2rem;
    text-align: center;
}

.testimonial-card {
    display: grid;
    gap: 1rem;
}

.testimonial-quote {
    margin: 0;
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.7;
}

.contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: start;
}

.contact-side {
    display: grid;
    gap: 1.5rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(42, 39, 35, 0.12);
    background: var(--surface-soft);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(184, 148, 91, 0.22);
    border-color: var(--accent);
}

.form-group.is-invalid input,
.form-group.is-invalid textarea {
    border-color: #b42318;
}

.error-message {
    display: block;
    min-height: 1.2rem;
    margin-top: 0.35rem;
    color: #b42318;
}

.form-feedback {
    min-height: 1.5rem;
    margin: 0;
    font-weight: 700;
    color: var(--accent-dark);
}

.contact-list,
.service-list,
.footer-list {
    margin: 0;
    padding-left: 1.1rem;
}

.footer-list {
    list-style: none;
    padding-left: 0;
}

.contact-map {
    min-height: 240px;
    margin-top: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #e6e0d6;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 240px;
    display: block;
    border: 0;
}

.cta-band {
    padding: 4.5rem 0;
    color: #fff;
    background: linear-gradient(135deg, #171614, #8b6a3f);
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band p {
    color: rgba(255, 255, 255, 0.9);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-band .button,
.cta-band .button:visited {
    min-width: min(100%, 320px);
    background: #fff;
    color: var(--accent-dark);
    box-shadow: 0 14px 28px rgba(22, 22, 22, 0.2);
}

.cta-band .button:hover,
.cta-band .button:focus-visible {
    color: var(--accent-dark);
    background: #f6f0e6;
}

.service-area-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 232, 0.92));
}

.site-footer {
    padding: 4rem 0 1.5rem;
    background: #161616;
    color: rgba(255, 255, 255, 0.82);
}

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

.site-footer .footer-list,
.site-footer .footer-list a,
.site-footer p {
    color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.whatsapp-floating {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.15rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
    z-index: 60;
}

.whatsapp-floating img {
    width: 1.2rem;
    height: 1.2rem;
}

@media (max-width: 1100px) {
    .card-grid,
    .services-overview-grid,
    .services-overview-grid-expanded,
    .benefits-grid,
    .process-grid-five,
    .gallery-grid,
    .footer-grid,
    .contact-grid,
    .service-area-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-area-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .hero-grid,
    .service-card,
    .card-grid,
    .services-overview-grid,
    .services-overview-grid-expanded,
    .benefits-grid,
    .process-grid-five,
    .gallery-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .service-card-reverse .service-card-image,
    .service-card-reverse .service-card-body {
        order: initial;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1rem;
        background: rgba(250, 247, 242, 0.98);
        border-bottom: 1px solid rgba(42, 39, 35, 0.08);
    }

    .site-nav.is-open {
        display: flex;
    }

    .menu-toggle {
        display: inline-block;
    }

    .cta-band-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .hero,
    .page-hero,
    .section,
    .cta-band {
        padding: 4rem 0;
    }

    h1 {
        font-size: 2.7rem;
    }

    .section-heading h2,
    .page-hero h1,
    .cta-band h2 {
        font-size: 2.1rem;
    }

    .hero-actions,
    .cta-band-inner {
        align-items: stretch;
    }

    .hero-actions .button,
    .cta-band .button,
    .button-nav {
        width: 100%;
    }

    .whatsapp-floating span:last-child {
        display: none;
    }

    .lightbox-content {
        padding: 1rem;
    }

    .lightbox-content img {
        max-width: 100vw;
        max-height: 82vh;
    }

    .lightbox-caption {
        width: calc(100% - 2rem);
        text-align: center;
        border-radius: 20px;
    }
}

/* Premium landing overrides */
:root {
    --bg: #f6f2eb;
    --surface: #fffdf9;
    --surface-soft: #f1eadf;
    --surface-dark: #1a1d18;
    --text: #171613;
    --muted: #5f584f;
    --accent: #c49a5a;
    --accent-dark: #897046;
    --olive: #233126;
    --olive-soft: #314135;
    --line: rgba(44, 39, 34, 0.1);
    --shadow: 0 22px 60px rgba(18, 20, 17, 0.12);
    --radius: 28px;
    --container: 1240px;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(196, 154, 90, 0.18), transparent 28%),
        linear-gradient(180deg, #fcfaf7 0%, #f6f2eb 100%);
}

.brand strong,
h1,
h2,
h3,
.site-footer h2,
.site-footer h3,
.home-cta h2,
.section-kicker,
.location-points li {
    font-family: "Fraunces", serif;
}

.site-header {
    background: rgba(251, 247, 240, 0.88);
    border-bottom: 1px solid rgba(32, 28, 24, 0.08);
    box-shadow: 0 10px 40px rgba(24, 24, 20, 0.05);
}

.header-inner {
    min-height: 88px;
}

.brand {
    gap: 1rem;
}

.brand strong {
    font-weight: 600;
    font-size: 1.55rem;
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.brand small {
    margin-top: 0.3rem;
    font-size: 0.9rem;
    color: #6d655b;
}

.brand-mark {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #263327, #162016);
    font-size: 1.2rem;
}

.site-nav {
    gap: 1.5rem;
}

.site-nav a {
    color: #403b35;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.96rem;
    letter-spacing: 0.01em;
}

.button,
.button:visited {
    font-family: "Plus Jakarta Sans", sans-serif;
    min-height: 54px;
    padding: 0.95rem 1.6rem;
    background: linear-gradient(135deg, var(--accent), #a67b3f);
    box-shadow: 0 16px 30px rgba(166, 123, 63, 0.24);
}

.button-secondary,
.button-secondary:visited {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
}

.button-hero {
    width: fit-content;
}

.landing-hero {
    min-height: min(100svh, 920px);
    padding: 10rem 0 8rem;
    display: grid;
    align-items: center;
}

.landing-hero::before {
    background:
        linear-gradient(90deg, rgba(16, 19, 16, 0.86) 0%, rgba(16, 19, 16, 0.62) 38%, rgba(16, 19, 16, 0.2) 72%, rgba(16, 19, 16, 0.16) 100%);
}

.landing-hero-inner {
    position: relative;
    z-index: 1;
}

.landing-hero-copy {
    max-width: 610px;
}

.landing-hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(4.3rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.landing-hero .hero-copy {
    max-width: 31ch;
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.55;
}

.landing-hero .eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.2rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(196, 154, 90, 0.18);
    color: #f3ddbb;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-kicker {
    background: transparent;
    color: var(--accent);
    padding: 0;
}

.section-kicker-light {
    color: #f0dfc4;
}

.benefit-ribbon-wrap {
    position: relative;
    margin-top: -3.8rem;
    z-index: 3;
}

.benefit-ribbon {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(196, 154, 90, 0.25);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(32, 45, 35, 0.98), rgba(22, 31, 24, 0.98));
    box-shadow: 0 24px 70px rgba(15, 18, 15, 0.28);
}

.benefit-pill {
    display: grid;
    justify-items: center;
    gap: 0.85rem;
    padding: 1.6rem 1rem;
    text-align: center;
    color: #fff;
}

.benefit-pill + .benefit-pill {
    border-left: 1px solid rgba(196, 154, 90, 0.18);
}

.benefit-pill strong {
    font-size: 1rem;
    line-height: 1.35;
}

.benefit-pill-icon,
.occasion-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
}

.benefit-pill-icon svg,
.occasion-icon svg {
    width: 24px;
    height: 24px;
}

.home-section {
    padding: 4.8rem 0 0;
}

.section-heading-compact {
    max-width: 620px;
    margin: 0 auto 2rem;
    text-align: center;
}

.section-heading-compact h2,
.gallery-showcase-copy h2,
.location-copy h2,
.home-cta h2 {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
}

.occasion-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.occasion-card {
    display: grid;
    justify-items: center;
    gap: 1rem;
    padding: 1.6rem 1rem;
    border: 1px solid rgba(32, 27, 24, 0.07);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 34px rgba(26, 29, 24, 0.06);
    text-align: center;
    font-weight: 600;
}

.home-gallery-section {
    padding-top: 4.5rem;
}

.gallery-showcase {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    gap: 1.6rem;
    align-items: end;
}

.gallery-showcase-copy {
    padding: 1rem 1rem 2rem 0;
}

.gallery-showcase-copy p {
    max-width: 26ch;
    color: var(--muted);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 92px;
    gap: 1rem;
}

.bento-grid-compact {
    grid-auto-rows: 110px;
}

.bento-card {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bento-card-1 { grid-column: span 7; grid-row: span 4; }
.bento-card-2 { grid-column: span 5; grid-row: span 4; }
.bento-card-3 { grid-column: span 4; grid-row: span 3; }
.bento-card-4 { grid-column: span 4; grid-row: span 3; }
.bento-card-5 { grid-column: span 4; grid-row: span 3; }

.home-location {
    padding-top: 4.5rem;
}

.location-split {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 1.4rem;
    align-items: stretch;
}

.location-map-card,
.location-copy {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

.location-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.location-copy {
    display: grid;
    align-content: center;
    gap: 1.25rem;
    padding: 2.4rem;
}

.location-points {
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.location-points li {
    font-size: 1.45rem;
    line-height: 1;
}

.home-cta {
    position: relative;
    margin-top: 5rem;
    padding: 6rem 0;
    background-position: center;
    background-size: cover;
}

.home-cta-inner {
    max-width: 720px;
    text-align: center;
}

.home-cta p {
    margin: 0 auto 1.8rem;
    max-width: 30ch;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.14rem;
}

.site-footer {
    background: linear-gradient(135deg, #172219, #243427);
}

.site-footer .footer-list,
.site-footer .footer-list a,
.site-footer p {
    color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1100px) {
    .benefit-ribbon,
    .occasion-grid,
    .gallery-showcase,
    .location-split {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-ribbon {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .occasion-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gallery-showcase {
        grid-template-columns: 1fr;
    }

    .gallery-showcase-copy {
        padding-right: 0;
    }
}

@media (max-width: 960px) {
    .landing-hero {
        min-height: auto;
        padding: 8rem 0 6.5rem;
    }

    .landing-hero h1 {
        font-size: clamp(3.4rem, 14vw, 5.2rem);
    }

    .benefit-ribbon-wrap {
        margin-top: -2.5rem;
    }

    .benefit-ribbon {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-pill + .benefit-pill {
        border-left: 0;
    }

    .occasion-grid,
    .location-split {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 180px;
    }

    .bento-card,
    .bento-card-1,
    .bento-card-2,
    .bento-card-3,
    .bento-card-4,
    .bento-card-5 {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 640px) {
    .header-inner {
        min-height: 80px;
    }

    .brand strong {
    font-weight: 600;
    font-size: 1.2rem;
    }

    .brand small {
        font-size: 0.78rem;
    }

    .landing-hero {
        padding: 7rem 0 5.5rem;
    }

    .landing-hero .hero-copy {
        font-size: 1rem;
    }

    .benefit-ribbon,
    .occasion-grid,
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .benefit-pill {
        padding: 1.3rem 1rem;
    }

    .location-copy {
        padding: 2rem 1.4rem;
    }

    .location-points li {
        font-size: 1.2rem;
    }

    .home-cta {
        margin-top: 4rem;
        padding: 5rem 0;
    }
}




/* CTA contrast fix */
.cta-band h2 {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Home CTA contrast fix */
.home-cta h2 {
    color: rgba(255, 255, 255, 0.86) !important;
}
