:root {
    --bg: #f5efe4;
    --bg-soft: #fbf8f1;
    --surface: rgba(255, 255, 255, 0.86);
    --surface-strong: #ffffff;
    --text: #243126;
    --text-soft: #647164;
    --green-deep: #245331;
    --green: #347245;
    --green-bright: #5ea76b;
    --green-soft: #e8f1e5;
    --brown: #7d5a31;
    --brown-soft: #b79062;
    --sand: #efe3cf;
    --line: rgba(36, 49, 38, 0.12);
    --line-strong: rgba(36, 49, 38, 0.18);
    --white: #ffffff;
    --shadow-soft: 0 18px 48px rgba(35, 48, 34, 0.08);
    --shadow-medium: 0 26px 68px rgba(35, 48, 34, 0.12);
    --radius: 28px;
    --radius-medium: 22px;
    --radius-small: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 0%, rgba(94, 167, 107, 0.12), transparent 28%),
        linear-gradient(180deg, #fbf8f1 0%, var(--bg) 100%);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

img {
    display: block;
    height: auto;
}

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

a:hover {
    color: var(--green);
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

p,
h1,
h2,
h3,
h4 {
    margin-top: 0;
}

p:last-child {
    margin-bottom: 0;
}

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

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 9999;
    transform: translateY(-160%);
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    font-weight: 850;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 248, 241, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(36, 49, 38, 0.08);
    box-shadow: 0 10px 24px rgba(31, 42, 28, 0.04);
}


body.nav-open .site-header {
    background: var(--bg-soft);
    box-shadow: 0 12px 28px rgba(31, 42, 28, 0.08);
}

body.nav-open .brand,
body.nav-open .brand strong,
body.nav-open .brand small {
    color: var(--text);
}

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

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

.brand img {
    width: 90px;
    object-fit: contain;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.1;
}

.brand strong {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand small {
    margin-top: 3px;
    color: var(--text-soft);
    font-weight: 750;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 850;
    color: var(--text);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    box-shadow: 0 10px 24px rgba(52, 114, 69, 0.18);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 16px;
    background: var(--green-deep);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

main {
    overflow: clip;
}

.section {
    padding: 90px 0;
}

.section-tight {
    padding: 66px 0;
}

.section-muted {
    background: linear-gradient(180deg, rgba(232, 241, 229, 0.62), rgba(251, 248, 241, 0.82));
}

.section-dark {
    background: linear-gradient(180deg, rgba(232, 241, 229, 0.62), rgba(251, 248, 241, 0.9));
    color: var(--text);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.section-head-compact {
    justify-content: flex-start;
}

.section-head h1,
.section-head h2,
.content-block h2,
.legal-content h1,
.legal-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin-bottom: 10px;
}

.section-head p {
    max-width: 660px;
    font-size: 1.05rem;
    color: var(--text-soft);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--green);
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 850;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: var(--white);
    box-shadow: 0 16px 34px rgba(52, 114, 69, 0.2);
}

.btn-primary:hover {
    color: var(--white);
    box-shadow: 0 18px 38px rgba(52, 114, 69, 0.26);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    border-color: rgba(36, 49, 38, 0.14);
}

.btn-secondary:hover {
    color: var(--green-deep);
    background: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--green-deep);
    box-shadow: 0 14px 32px rgba(31, 42, 28, 0.1);
}

.btn-light:hover {
    color: var(--green-deep);
    background: #fffdf8;
}

.btn-whatsapp {
    background: rgba(255, 255, 255, 0.34);
    color: var(--green-deep);
    border-color: rgba(36, 49, 38, 0.12);
}

.btn-whatsapp:hover {
    color: var(--green-deep);
    background: rgba(255, 255, 255, 0.52);
}

.hero {
    position: relative;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(94, 167, 107, 0.18), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(183, 144, 98, 0.16), transparent 26%),
        linear-gradient(180deg, #fbf8f1 0%, #f3eadc 100%);
}

.hero-simple {
    min-height: auto;
}

.hero-inner-simple {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 58px;
    align-items: center;
    padding: 92px 0 82px;
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 5.8vw, 5.35rem);
    line-height: 1;
    letter-spacing: -0.07em;
}

.hero-text {
    max-width: 700px;
    margin-bottom: 34px;
    color: var(--text-soft);
    font-size: clamp(1.06rem, 2vw, 1.22rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 38px;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-highlight {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(36, 49, 38, 0.1);
    box-shadow: 0 12px 26px rgba(31, 42, 28, 0.05);
}

.hero-highlight strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.08rem;
    color: var(--green-deep);
}

.hero-highlight span {
    color: var(--text-soft);
    font-weight: 650;
    font-size: 0.94rem;
}

.hero-image-card {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border-radius: 36px;
    background: var(--surface-strong);
    border: 1px solid rgba(36, 49, 38, 0.1);
    box-shadow: var(--shadow-medium);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
}

.hero-logo-strip {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    grid-template-columns: 88px 1fr;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(36, 49, 38, 0.1);
    box-shadow: 0 18px 40px rgba(31, 42, 28, 0.12);
}

.hero-logo-strip img {
    width: 88px;
}

.hero-logo-strip strong,
.hero-logo-strip span {
    display: block;
    line-height: 1.25;
}

.hero-logo-strip strong {
    color: var(--green-deep);
    font-weight: 900;
}

.hero-logo-strip span {
    color: var(--text-soft);
    font-weight: 700;
}

.subhero {
    background:
        radial-gradient(circle at top left, rgba(94, 167, 107, 0.18), transparent 28%),
        linear-gradient(180deg, #fbf8f1 0%, #efe3cf 100%);
    color: var(--text);
    border-bottom: 1px solid rgba(36, 49, 38, 0.08);
}

.subhero-content {
    padding: 78px 0 68px;
}

.subhero h1 {
    font-size: clamp(2.7rem, 5vw, 4.55rem);
    line-height: 1;
    letter-spacing: -0.06em;
    margin-bottom: 18px;
}

.subhero p:not(.eyebrow) {
    max-width: 780px;
    color: var(--text-soft);
    font-size: 1.1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(36, 49, 38, 0.1);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brown), var(--green), var(--green-bright));
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 114, 69, 0.18);
    box-shadow: var(--shadow-medium);
}

.card-number {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    color: var(--white);
    font-weight: 900;
}

.card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.card p {
    color: var(--text-soft);
}

.card ul {
    margin: 18px 0 0;
    padding-left: 20px;
}

.card li + li {
    margin-top: 6px;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.image-panel {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    border-radius: 34px;
    background: var(--surface-strong);
    border: 1px solid rgba(36, 49, 38, 0.1);
    box-shadow: var(--shadow-medium);
}

.image-panel::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    pointer-events: none;
    z-index: 2;
}

.image-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-panel.image-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 31, 22, 0.14), transparent 45%);
}

.content-block p {
    color: var(--text-soft);
    font-size: 1.05rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.check-list li {
    position: relative;
    padding: 15px 16px 15px 46px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(36, 49, 38, 0.1);
    box-shadow: 0 14px 30px rgba(31, 42, 28, 0.05);
    font-weight: 730;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 12px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 0.82rem;
}

.gallery-grid,
.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    border-radius: 24px;
    background: #d8dece;
    box-shadow: 0 18px 44px rgba(21, 30, 20, 0.11);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(19, 30, 23, 0.18), rgba(19, 30, 23, 0));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 245px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

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

.gallery-card span {
    display: none;
}

.gallery-empty {
    border-radius: var(--radius);
    padding: 32px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px dashed rgba(52, 114, 69, 0.28);
    color: var(--text-soft);
}

.placeholder-card {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: end;
    padding: 22px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(183, 144, 98, 0.72), rgba(94, 167, 107, 0.72));
    color: var(--green-deep);
    font-weight: 850;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.video-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(36, 49, 38, 0.1);
    box-shadow: var(--shadow-soft);
}

.video-box {
    position: relative;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 28px;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(94, 167, 107, 0.2), transparent 34%),
        linear-gradient(135deg, #f6f0e5 0%, #e8f1e5 100%);
}

.video-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-consent h3 {
    margin-bottom: 10px;
    font-size: 1.45rem;
}

.video-consent p {
    max-width: 520px;
    margin: 0 auto 18px;
    color: var(--text-soft);
}

.video-card-body {
    padding: 22px;
}

.video-card-body h3 {
    margin-bottom: 6px;
    color: var(--text);
}

.video-card-body p {
    color: var(--text-soft);
}

.contact-band {
    padding: 34px;
    border-radius: 34px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    color: var(--text);
    background: linear-gradient(135deg, #e8f1e5 0%, #ead9bf 100%);
    border: 1px solid rgba(36, 49, 38, 0.1);
    box-shadow: var(--shadow-medium);
}

.contact-band p {
    color: var(--text-soft);
}

.contact-band-actions,
.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 28px;
    align-items: start;
}

.contact-form-card,
.contact-info-card,
.legal-content {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(36, 49, 38, 0.1);
    box-shadow: var(--shadow-soft);
}

.contact-form-card {
    padding: 30px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

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

.form-group-full {
    grid-column: 1 / -1;
}

label,
legend {
    font-weight: 850;
    color: var(--text);
}

input,
textarea,
select {
    width: 100%;
    padding: 14px 15px;
    border-radius: 16px;
    border: 1px solid rgba(36, 49, 38, 0.14);
    background: rgba(251, 250, 246, 0.94);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(52, 114, 69, 0.12);
    background: var(--white);
}

.radio-fieldset {
    margin: 0;
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-radius: 18px;
    border: 1px solid rgba(36, 49, 38, 0.14);
    background: rgba(251, 250, 246, 0.78);
}

.radio-fieldset legend {
    padding: 0 6px;
}

.radio-label,
.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    font-weight: 730;
}

.radio-label input,
.checkbox-label input {
    width: auto;
    accent-color: var(--green);
}

.radio-label span {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green-deep);
}

.form-group-checkbox {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(36, 49, 38, 0.12);
    background: rgba(251, 250, 246, 0.82);
}

.form-group-checkbox a,
.legal-content a {
    color: var(--green-deep);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 850;
}

.form-actions {
    display: flex;
    justify-content: flex-start;
}

.contact-info-card {
    overflow: hidden;
    position: sticky;
    top: 110px;
}

.map-panel,
.map-panel-soft {
    position: relative;
    min-height: 230px;
    display: grid;
    place-items: center;
    padding: 30px;
    background: #f8f4eb;
    border-bottom: 1px solid rgba(36, 49, 38, 0.08);
}

.map-panel::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 24px;
    border: 1px solid rgba(36, 49, 38, 0.08);
    pointer-events: none;
}

.map-panel img {
    width: min(300px, 86%);
}

.contact-info-content {
    padding: 28px;
}

.contact-info-content h2 {
    font-size: 1.55rem;
    margin-bottom: 12px;
}

.contact-options {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.contact-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid rgba(36, 49, 38, 0.1);
    background: rgba(251, 250, 246, 0.94);
    box-shadow: 0 10px 24px rgba(31, 42, 28, 0.04);
}

.contact-option span {
    font-weight: 850;
    color: var(--text);
}

.contact-option strong {
    font-size: 1rem;
    text-align: right;
    color: var(--green-deep);
}

.contact-option-whatsapp {
    background: #edf6ec;
}

.form-status-box {
    padding: 24px;
    margin-bottom: 26px;
    border-radius: var(--radius);
    border: 1px solid;
}

.form-status-success {
    background: #e9f8eb;
    border-color: rgba(52, 114, 69, 0.24);
}

.form-status-error {
    background: #fff2ee;
    border-color: rgba(170, 48, 18, 0.22);
}

.form-status-badge {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--white);
    font-weight: 850;
}

.legal-content {
    padding: clamp(24px, 4vw, 44px);
}

.legal-content h2 {
    margin-top: 32px;
    font-size: 1.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin-top: 24px;
}

.legal-content ul {
    padding-left: 22px;
}

.footer-cta {
    background: linear-gradient(135deg, #244d30 0%, #76502a 100%);
    color: var(--white);
}

.footer-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 42px 0;
}

.footer-cta h2 {
    font-size: clamp(1.95rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.footer-cta p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
}

.footer-cta .eyebrow {
    color: rgba(255, 255, 255, 0.88);
}

.footer-cta .btn-light {
    background: var(--white);
    color: var(--green-deep);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.footer-cta .btn-whatsapp {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.site-footer {
    background: linear-gradient(180deg, #18231c 0%, #111914 100%);
    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr 0.75fr 0.75fr;
    gap: 34px;
    padding: 58px 0;
}

.footer-grid h2 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: 1.08rem;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 18px;
}

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

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

.footer-list a:hover,
.site-footer a:hover {
    color: #91da9b;
}

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

.footer-bottom-inner {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 0.92rem;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.86);
}

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

.lightbox img {
    max-height: min(86vh, 980px);
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox button {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--text);
    font-size: 1.45rem;
    font-weight: 900;
}

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

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

.section-actions {
    margin-top: 30px;
    text-align: center;
}

.block-actions {
    margin-top: 28px;
}

@media (max-width: 1120px) {
    .hero-inner-simple,
    .split-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

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

    .contact-info-card {
        position: static;
    }

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

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 12px;
        padding: 22px 18px 30px;
        min-height: calc(100svh - 88px);
        background: var(--bg-soft);
        transform: translateX(100%);
        transition: transform 0.25s ease;
        overflow-y: auto;
        box-shadow: inset 0 1px 0 rgba(36, 49, 38, 0.08);
    }

    body.nav-open .main-nav {
        transform: translateX(0);
    }

    .main-nav a {
        width: min(100%, 520px);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 58px;
        margin: 0 auto;
        padding: 14px 20px;
        text-align: center;
        border: 1px solid rgba(36, 49, 38, 0.1);
        background: var(--white);
        box-shadow: 0 14px 30px rgba(31, 42, 28, 0.06);
    }

    .hero-inner-simple {
        gap: 34px;
        padding: 58px 0 54px;
    }

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

    .hero-image-card,
    .hero-main-image {
        min-height: 360px;
    }

    .section,
    .section-tight {
        padding: 62px 0;
    }

    .section-head {
        display: block;
    }

    .contact-band,
    .footer-cta-inner {
        grid-template-columns: 1fr;
    }

    .contact-band-actions,
    .footer-actions {
        justify-content: flex-start;
    }

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

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: auto;
    }
}

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

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

    .main-nav {
        top: 78px;
        min-height: calc(100svh - 78px);
        padding: 18px 14px 28px;
    }

    .main-nav a {
        width: min(100%, 100%);
    }

    .brand img {
        width: 70px;
    }

    .brand strong {
        font-size: 0.95rem;
    }

    .brand small {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 14vw, 3.95rem);
    }

    .hero-logo-strip {
        position: static;
        margin: 14px;
        grid-template-columns: 80px 1fr;
    }

    .hero-main-image {
        min-height: 300px;
    }

    .hero-image-card,
    .hero-highlight,
    .contact-form-card,
    .contact-band,
    .legal-content {
        border-radius: 22px;
    }

    .cards-grid,
    .gallery-grid,
    .placeholder-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card,
    .gallery-card img {
        min-height: 260px;
    }

    .subhero-content {
        padding: 56px 0 52px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 18px 0;
    }

    .radio-fieldset {
        display: grid;
    }

    .contact-option {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-option strong {
        text-align: left;
    }
}

.image-panel.image-photo::before,
.map-panel::after {
    display: none;
}

.image-panel.image-photo {
    border: 0;
}

.map-panel,
.map-panel-soft {
    background: #ffffff;
}

.hero-image-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(25, 40, 29, 0.28), transparent 55%);
    pointer-events: none;
}

.hero-logo-strip {
    z-index: 2;
}

.lightbox {
    gap: 18px;
}

.lightbox-img-wrap {
    position: relative;
    max-width: min(92vw, 1280px);
    max-height: 88vh;
    display: grid;
    place-items: center;
}

.lightbox .lightbox-close,
.lightbox .lightbox-prev,
.lightbox .lightbox-next {
    position: absolute;
    z-index: 2;
    display: grid;
    place-items: center;
    border: 0;
    background: rgba(255, 255, 255, 0.94);
    color: var(--text);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.lightbox .lightbox-close {
    right: 18px;
    top: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.45rem;
    font-weight: 900;
}

.lightbox .lightbox-prev,
.lightbox .lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 999px;
    font-size: 2rem;
    font-weight: 800;
}

.lightbox .lightbox-prev {
    left: 18px;
}

.lightbox .lightbox-next {
    right: 18px;
}

.lightbox .lightbox-prev:hover,
.lightbox .lightbox-next:hover,
.lightbox .lightbox-close:hover {
    color: var(--green-deep);
    background: #ffffff;
}

@media (max-width: 620px) {
    .lightbox .lightbox-prev,
    .lightbox .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 1.55rem;
    }

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

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

body.lightbox-open {
    overflow: hidden;
}

.lightbox .lightbox-prev {
    right: auto;
}

.lightbox .lightbox-next {
    left: auto;
}
