:root {
    --slate: #0f172a;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --forest-dark: #0f172a;
    --forest: #14532d;
    --forest-soft: #166534;
    --emerald: #10b981;
    --emerald-soft: #d1fae5;
    --gold: #c9a227;
    --gold-soft: #f8e7b5;
    --white: #ffffff;
    --paper: #f7f8f4;
    --mist: #eef5ef;
    --danger: #b91c1c;
    --shadow-soft: 0 18px 55px rgba(15, 23, 42, 0.1);
    --shadow-card: 0 18px 42px rgba(15, 23, 42, 0.13);
    --shadow-green: 0 18px 42px rgba(20, 83, 45, 0.22);
    --border: rgba(15, 23, 42, 0.1);
    --glass: rgba(255, 255, 255, 0.16);
    --glass-strong: rgba(255, 255, 255, 0.82);
    --radius-card: 8px;
    --radius-pill: 999px;
    --container: 1180px;
    --nav-height: 76px;
    --ease: 220ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--slate);
    font-family: "Inter", "Manrope", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 0.96rem;
    line-height: 1.65;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.is-loading,
body.lightbox-open,
body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
    height: auto;
}

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

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--emerald);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #e8eee8;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--forest), var(--emerald));
    border: 2px solid #e8eee8;
    border-radius: var(--radius-pill);
}

:focus-visible {
    outline: 3px solid rgba(201, 162, 39, 0.72);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 10px 14px;
    border-radius: var(--radius-card);
    background: var(--white);
    color: var(--forest);
    box-shadow: var(--shadow-soft);
    transform: translateY(-140%);
    transition: transform var(--ease);
}

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

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

.section {
    padding: 76px 0;
}

.section-tight {
    padding: 24px 0 8px;
}

.section-head,
.section-copy {
    max-width: 780px;
}

.section-head {
    margin-bottom: 34px;
}

.section-head h2,
.section-copy h2,
.contact-panel h2 {
    margin: 0;
    color: var(--forest-dark);
    font-family: "Manrope", "Inter", sans-serif;
    font-size: 2.15rem;
    line-height: 1.08;
    letter-spacing: 0;
}

.section-head p,
.section-copy p,
.contact-panel p {
    margin: 16px 0 0;
    color: var(--slate-500);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: var(--forest);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    border-radius: var(--radius-pill);
    background: linear-gradient(90deg, var(--gold), var(--emerald));
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

.btn svg,
.nav-cta svg,
.contact-list svg,
.social-links svg,
.floating-whatsapp svg,
.back-to-top svg,
.round-btn svg,
.lightbox button svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: currentColor;
}

.btn:hover,
.nav-cta:hover,
.round-btn:hover,
.floating-whatsapp:hover,
.back-to-top:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--emerald), var(--forest));
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    box-shadow: 0 22px 60px rgba(16, 185, 129, 0.28);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    backdrop-filter: blur(18px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.22);
}

.btn-card {
    width: 100%;
    margin-top: auto;
    background: var(--slate);
    color: var(--white);
}

.btn-card:hover {
    background: var(--forest);
    box-shadow: var(--shadow-green);
}

.glass-panel {
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    gap: 18px;
    background: radial-gradient(circle at center, #214f35 0%, #10221b 48%, #07120e 100%);
    transition: opacity 500ms ease, visibility 500ms ease;
}

.is-loaded .preloader {
    opacity: 0;
    visibility: hidden;
}

.preloader-mark {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.preloader-mark img {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-card);
    object-fit: cover;
}

.preloader-line {
    position: relative;
    width: 148px;
    height: 3px;
    overflow: hidden;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.16);
}

.preloader-line::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 46%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, var(--gold), var(--emerald), transparent);
}

.site-header {
    position: relative;
    z-index: 1000;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    color: var(--white);
    transition: top var(--ease), background var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.site-nav.nav-scrolled,
body.menu-open .site-nav {
    color: var(--forest-dark);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--nav-height);
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 10px;
    color: inherit;
}

.brand img {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-card);
    object-fit: cover;
    background: var(--white);
}

.brand span {
    display: grid;
    line-height: 1.1;
}

.brand strong {
    font-family: "Poppins", "Inter", sans-serif;
    font-size: 0.96rem;
    font-weight: 800;
}

.brand small {
    font-size: 0.76rem;
    font-weight: 700;
    color: currentColor;
    opacity: 0.78;
}

.nav-toggle {
    position: relative;
    z-index: 3;
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.12);
    color: inherit;
    backdrop-filter: blur(10px);
}

.nav-toggle span {
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: var(--radius-pill);
    background: currentColor;
    transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle span:nth-child(1) {
    transform: translateY(-7px);
}

.nav-toggle span:nth-child(3) {
    transform: translateY(7px);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-panel {
    position: fixed;
    top: calc(var(--nav-height) + 10px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(18px);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform var(--ease), opacity var(--ease), visibility var(--ease);
}

body.menu-open .nav-panel {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: var(--radius-pill);
    color: var(--slate-700);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.2;
    transition: background var(--ease), color var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--forest);
    background: rgba(20, 83, 45, 0.08);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--emerald), var(--forest));
    color: var(--white);
    font-weight: 900;
    box-shadow: var(--shadow-green);
    transition: transform var(--ease), box-shadow var(--ease);
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: var(--white);
    background: var(--forest-dark);
}

.hero-media,
.hero-gradient {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-gradient {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.68) 0%, rgba(15, 23, 42, 0.38) 38%, rgba(7, 18, 14, 0.92) 100%),
        linear-gradient(115deg, rgba(20, 83, 45, 0.72), rgba(16, 185, 129, 0.15) 42%, rgba(15, 23, 42, 0.26));
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 100svh;
    gap: 28px;
    padding-top: 118px;
    padding-bottom: 86px;
}

.hero-copy {
    align-self: end;
    max-width: 900px;
}

.hero .eyebrow {
    color: var(--gold-soft);
}

.hero h1 {
    max-width: 920px;
    margin: 0;
    font-family: "Manrope", "Inter", sans-serif;
    font-size: 2.65rem;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 690px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.hero-proof {
    display: grid;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-card);
}

.hero-proof div {
    padding: 14px;
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.12);
}

.proof-number {
    display: block;
    color: var(--white);
    font-family: "Manrope", "Inter", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.hero-proof p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9rem;
    line-height: 1.45;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 2;
    display: grid;
    place-items: start center;
    width: 30px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: var(--radius-pill);
    transform: translateX(-50%);
}

.scroll-cue span {
    width: 4px;
    height: 10px;
    margin-top: 10px;
    border-radius: var(--radius-pill);
    background: var(--white);
}

.section-divider {
    height: 66px;
    margin-top: -65px;
    color: var(--paper);
    overflow: hidden;
}

.section-divider svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.credibility {
    position: relative;
    z-index: 2;
}

.credibility-grid {
    display: grid;
    gap: 14px;
}

.mini-card {
    min-height: 100%;
    padding: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.mini-icon,
.package-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-pill);
    background: var(--emerald-soft);
    color: var(--forest);
}

.mini-icon svg,
.package-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.mini-card h2 {
    margin: 16px 0 8px;
    font-size: 1.05rem;
    line-height: 1.25;
}

.mini-card p {
    margin: 0;
    color: var(--slate-500);
    font-size: 0.93rem;
}

.about {
    background:
        linear-gradient(180deg, var(--paper), #ffffff 44%, var(--mist));
}

.about-grid,
.contact-grid,
.testimonial-layout {
    display: grid;
    gap: 32px;
}

.about-media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    background: var(--slate-100);
}

.about-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: min(190px, calc(100% - 28px));
    padding: 16px;
    border-radius: var(--radius-card);
    color: var(--white);
}

.experience-badge strong {
    display: block;
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.35;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
}

.feature-list span {
    min-height: 46px;
    padding: 12px;
    border: 1px solid rgba(20, 83, 45, 0.12);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.7);
    color: var(--forest);
    font-size: 0.9rem;
    font-weight: 800;
}

.packages {
    background: #ffffff;
}

.package-grid {
    display: grid;
    gap: 18px;
}

.package-card {
    display: flex;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-card);
    background: var(--white);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: var(--shadow-card);
}

.package-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--slate-100);
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.package-card:hover .package-image img {
    transform: scale(1.06);
}

.price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.88);
    color: var(--forest);
    font-size: 0.84rem;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
    backdrop-filter: blur(14px);
}

.package-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
}

.package-body h3 {
    margin: 0;
    color: var(--forest-dark);
    font-family: "Manrope", "Inter", sans-serif;
    font-size: 1.28rem;
    line-height: 1.2;
}

.package-body p {
    margin: 0;
    color: var(--slate-500);
    font-size: 0.94rem;
}

.package-body ul {
    display: grid;
    gap: 8px;
    margin: 0 0 8px;
    padding: 0;
    list-style: none;
}

.package-body li {
    position: relative;
    padding-left: 22px;
    color: var(--slate-700);
    font-size: 0.92rem;
}

.package-body li::before {
    content: "";
    position: absolute;
    top: 0.64em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--gold), var(--emerald));
}

.gallery {
    background:
        linear-gradient(180deg, #ffffff, var(--paper)),
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.08), transparent 34%);
}

.masonry-gallery {
    display: grid;
    grid-auto-flow: dense;
    grid-auto-rows: 250px;
    gap: 14px;
}

.gallery-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-card);
    background: var(--slate-100);
    color: var(--white);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(15, 23, 42, 0.78));
    opacity: 0.86;
    transition: opacity var(--ease);
}

.gallery-card:hover::after {
    opacity: 1;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 550ms ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-card span {
    position: absolute;
    left: 16px;
    bottom: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.testimonials {
    background: var(--forest-dark);
    color: var(--white);
}

.testimonials .eyebrow {
    color: var(--gold-soft);
}

.testimonials .section-copy h2,
.testimonials .section-copy p {
    color: var(--white);
}

.testimonials .section-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.testimonial-controls {
    display: flex;
    gap: 10px;
    margin-top: 26px;
}

.round-btn {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: transform var(--ease), background var(--ease);
}

.round-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.testimonial-frame {
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 450ms ease;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-card);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.rating {
    display: flex;
    gap: 6px;
}

.rating span {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold));
    clip-path: polygon(50% 0, 61% 36%, 98% 36%, 68% 57%, 79% 92%, 50% 70%, 21% 92%, 32% 57%, 2% 36%, 39% 36%);
}

.testimonial-card p {
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    line-height: 1.7;
}

.person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.person img {
    width: 54px;
    height: 54px;
    border: 2px solid rgba(255, 255, 255, 0.36);
    border-radius: var(--radius-pill);
    object-fit: cover;
}

.person strong,
.person span {
    display: block;
}

.person strong {
    font-weight: 900;
}

.person span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.testimonial-dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.34);
    transition: width var(--ease), background var(--ease);
}

.testimonial-dots button.active {
    width: 28px;
    background: var(--gold);
}

.contact {
    background:
        linear-gradient(135deg, rgba(20, 83, 45, 0.07), transparent 42%),
        var(--paper);
}

.contact-panel {
    padding: 26px;
    border-radius: var(--radius-card);
    background: var(--forest);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.contact-panel .eyebrow,
.contact-panel h2,
.contact-panel p {
    color: var(--white);
}

.contact-panel p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.contact-list a,
.contact-list span {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    padding: 14px;
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-weight: 700;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.contact-list svg {
    margin-top: 2px;
    color: var(--gold-soft);
}

.booking-form {
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.form-row {
    display: grid;
    gap: 8px;
}

.form-row.two-col {
    display: grid;
    gap: 14px;
}

.form-row label {
    color: var(--slate-700);
    font-size: 0.88rem;
    font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(15, 23, 42, 0.13);
    border-radius: var(--radius-card);
    background: var(--white);
    color: var(--slate);
    transition: border-color var(--ease), box-shadow var(--ease);
}

.form-row textarea {
    min-height: 112px;
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: rgba(16, 185, 129, 0.62);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
    outline: none;
}

.form-submit {
    width: 100%;
    margin-top: 4px;
}

.site-footer {
    padding: 56px 0 22px;
    background: #edf3ed;
    color: var(--slate-700);
}

.footer-grid {
    display: grid;
    gap: 32px;
}

.site-footer .brand {
    color: var(--forest-dark);
}

.footer-brand p {
    max-width: 420px;
    margin: 18px 0 0;
    color: var(--slate-500);
}

.site-footer h2 {
    margin: 0 0 14px;
    color: var(--forest-dark);
    font-size: 1rem;
}

.footer-links {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    transition: color var(--ease);
}

.footer-links a:hover {
    color: var(--forest);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-pill);
    background: var(--white);
    color: var(--forest);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: transform var(--ease), color var(--ease);
}

.social-links a:hover {
    color: var(--emerald);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 38px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--slate-500);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.floating-whatsapp,
.back-to-top {
    position: fixed;
    z-index: 900;
    display: grid;
    place-items: center;
    border-radius: var(--radius-pill);
    transition: transform var(--ease), opacity var(--ease), visibility var(--ease), box-shadow var(--ease);
}

.floating-whatsapp {
    right: 16px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #22c55e, var(--forest));
    color: var(--white);
    box-shadow: 0 18px 40px rgba(34, 197, 94, 0.36);
}

.floating-whatsapp svg {
    width: 27px;
    height: 27px;
}

.back-to-top {
    right: 16px;
    bottom: 86px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.9);
    color: var(--forest);
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--ease), visibility var(--ease);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 8, 0.84);
    backdrop-filter: blur(10px);
}

.lightbox-dialog {
    position: relative;
    width: min(100%, 980px);
    border-radius: var(--radius-card);
}

.lightbox figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-card);
    background: var(--slate);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.lightbox img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    background: #07120e;
}

.lightbox figcaption {
    display: grid;
    gap: 4px;
    padding: 16px;
    background: var(--white);
    color: var(--slate);
}

.lightbox figcaption strong {
    font-size: 1.05rem;
}

.lightbox figcaption span {
    color: var(--slate-500);
    font-size: 0.92rem;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.9);
    color: var(--forest);
    box-shadow: var(--shadow-soft);
}

.lightbox-close {
    top: -14px;
    right: -10px;
    width: 42px;
    height: 42px;
}

.lightbox-nav {
    top: 50%;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
}

.lightbox-nav.prev {
    left: -10px;
}

.lightbox-nav.next {
    right: -10px;
}
