:root {
    --theme-color: #a18549;
    --theme-color-dark: #7a612e;
    --theme-color-soft: #e7dcc4;
    --primary-color: #bbbbbb;
    --main-color: #222222;
    --text-color: #666666;
    --meta-text-color: #999999;
    --section-bg: #fbf8f3;
    --white: #ffffff;
    --black: #000000;
    --footer-bg: #18140b;
    --border-color: #e5e0d7;
    --shadow-soft: 1px 5px 15px 0 rgba(0, 0, 0, 0.07);
    --shadow-strong: 0 25px 70px rgba(24, 20, 11, 0.16);
    --container: 1180px;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --font-body: "Poppins", sans-serif;
    --font-heading: "Noto Serif", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--main-color);
    background: var(--white);
    line-height: 1.66;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img,
svg,
video,
iframe {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--main-color);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    text-transform: none;
}

p {
    margin: 0;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.72;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.section {
    padding: 115px 0;
}

.section-heading {
    position: relative;
    z-index: 1;
}

.section-heading--center {
    max-width: 740px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-heading--left {
    max-width: 520px;
}

.section-heading h2,
.final-cta-section h2 {
    margin-top: 10px;
    margin-bottom: 22px;
    font-size: clamp(34px, 4vw, 52px);
}

.section-kicker {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-kicker::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 36px;
    height: 2px;
    content: "";
    background: var(--theme-color);
    transform: translateX(-50%);
}

.section-heading--left .section-kicker::after,
.hero-content .section-kicker::after,
.final-cta-section .section-kicker::after {
    left: 0;
    transform: none;
}

.section-kicker--light {
    color: rgba(255, 255, 255, 0.82);
}

.btn {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 31px;
    border: 1px solid var(--theme-color);
    background: transparent;
    color: var(--main-color);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: var(--white);
    transform: scaleX(0);
    transform-origin: 50%;
    transition: transform 0.3s ease-out;
}

.btn:hover,
.btn:focus-visible {
    color: var(--theme-color);
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(161, 133, 73, 0.18);
}

.btn:hover::before,
.btn:focus-visible::before {
    transform: scaleX(1);
}

.btn--primary {
    background: var(--theme-color);
    color: var(--white);
}

.btn--secondary {
    margin-top: 34px;
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--white);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
    color: var(--main-color);
}

.btn--ghost {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
    backdrop-filter: blur(12px);
}

.btn--ghost::before {
    background: var(--white);
}

.btn--large {
    min-height: 60px;
    padding: 18px 42px;
    font-size: 16px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 34px;
    color: var(--theme-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.25s ease, gap 0.25s ease;
}

.text-link:hover,
.text-link:focus-visible {
    gap: 14px;
    color: var(--theme-color-dark);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    color: var(--white);
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(24, 20, 11, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(18px);
}

.header-topbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.header-topbar__inner,
.header-main__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-topbar__inner {
    min-height: 42px;
}

.header-topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    transition: color 0.25s ease;
}

.header-topbar__link:hover,
.header-topbar__link:focus-visible,
.header-topbar__social a:hover,
.header-topbar__social a:focus-visible {
    color: var(--theme-color-soft);
}

.header-topbar__social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}

.header-topbar__social a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.header-topbar__social a:hover {
    transform: translateY(-2px);
}

.header-main__inner {
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    min-width: max-content;
    padding: 5px 12px 5px 5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(24, 20, 11, 0.28);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.brand:hover,
.brand:focus-visible {
    border-color: rgba(231, 220, 196, 0.5);
    background: rgba(24, 20, 11, 0.44);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

.brand__mark {
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(231, 220, 196, 0.42);
    border-radius: 50%;
    background: rgba(24, 20, 11, 0.92);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.brand__mark--image {
    overflow: hidden;
    padding: 5px;
    background: linear-gradient(145deg, rgba(24, 20, 11, 0.98), rgba(58, 43, 30, 0.96));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.brand__mark--image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.brand__text {
    display: grid;
    line-height: 1.05;
}

.brand__text strong {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 800;
}

.brand__text small {
    margin-top: 5px;
    color: rgba(231, 220, 196, 0.86);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 27px);
    margin-left: auto;
}

.main-nav a {
    position: relative;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.main-nav a::after {
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 0;
    height: 1px;
    content: "";
    background: var(--theme-color);
    transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
    color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
    width: 100%;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: max-content;
    padding: 11px 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: var(--theme-color);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.25s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
    background: var(--theme-color-dark);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    background: var(--white);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero-section {
    position: relative;
    display: grid;
    min-height: 100svh;
    overflow: hidden;
    place-items: center;
    color: var(--white);
    background: var(--footer-bg);
}

.hero-section__video,
.hero-section__fallback,
.hero-section__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-section__video {
    object-fit: cover;
    z-index: 0;
}

.hero-section__fallback {
    z-index: -1;
    background:
        radial-gradient(circle at 78% 24%, rgba(161, 133, 73, 0.42), transparent 32%),
        linear-gradient(135deg, #18140b 0%, #2d2414 52%, #806434 100%);
}

.hero-section__overlay {
    z-index: 1;
    background:
        radial-gradient(circle at 76% 54%, rgba(161, 133, 73, 0.2), transparent 34%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.54) 43%, rgba(0, 0, 0, 0.24) 100%);
}

.hero-section__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
    gap: clamp(36px, 6vw, 90px);
    align-items: center;
    width: min(100% - 72px, var(--container));
    margin-inline: auto;
    padding-top: clamp(132px, 15vh, 150px);
    padding-bottom: clamp(68px, 8vh, 82px);
}

.hero-content {
    max-width: 710px;
}

.hero-content h1 {
    margin-top: 14px;
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(40px, 4.8vw, 66px);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.hero-content__lead {
    max-width: 590px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.52;
}

.hero-content__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    width: fit-content;
    margin: 28px 0 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.hero-stat {
    min-width: 118px;
    padding: 15px 20px;
}

.hero-stat strong {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1;
}

.hero-stat span {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-content__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.hero-logo-card {
    position: relative;
    isolation: isolate;
    width: min(100%, 440px);
    margin-left: auto;
    padding: clamp(8px, 1.2vw, 14px);
    border: 1px solid rgba(231, 220, 196, 0.45);
    border-radius: 26px;
    background: #000;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-logo-card::before {
    position: absolute;
    inset: -8px;
    z-index: -1;
    content: "";
    border: 1px solid rgba(161, 133, 73, 0.5);
    border-radius: 32px;
    background: #000;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 24px 56px rgba(0, 0, 0, 0.42);
}

.hero-logo-card::after {
    position: absolute;
    inset: 12% -7% -7% 24%;
    z-index: -2;
    content: "";
    border-radius: 999px;
    background: radial-gradient(circle, rgba(238, 42, 45, 0.24), transparent 64%);
    filter: blur(20px);
    opacity: 0.7;
}

.hero-logo-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.42));
}

.hero-content__actions .btn--large {
    min-height: 56px;
    padding: 16px 34px;
    font-size: 14px;
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: translateX(-50%);
    animation: floatDown 1.8s ease-in-out infinite;
}

@keyframes floatDown {
    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 8px);
    }
}

.accommodation-section {
    background: var(--white);
}

.carousel-toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: -40px;
    margin-bottom: 28px;
}

.carousel-btn {
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--main-color);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
    border-color: var(--theme-color);
    background: var(--theme-color);
    color: var(--white);
    transform: translateY(-2px);
}

.accommodation-carousel {
    display: grid;
    grid-auto-columns: minmax(330px, 1fr);
    grid-auto-flow: column;
    gap: 30px;
    overflow-x: auto;
    padding: 3px 3px 24px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--theme-color) #f0eadf;
}

.accommodation-carousel::-webkit-scrollbar {
    height: 8px;
}

.accommodation-carousel::-webkit-scrollbar-track {
    background: #f0eadf;
}

.accommodation-carousel::-webkit-scrollbar-thumb {
    background: var(--theme-color);
}

.accommodation-card {
    min-width: 0;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(24, 20, 11, 0.08);
    scroll-snap-align: start;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.accommodation-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(24, 20, 11, 0.13);
}

.accommodation-card__media {
    position: relative;
    height: 310px;
    margin: 0;
    overflow: hidden;
}

.accommodation-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.media-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 28px;
    background:
        radial-gradient(circle at 70% 18%, rgba(161, 133, 73, 0.24), transparent 28%),
        linear-gradient(135deg, #211b10 0%, #53401d 100%);
    color: rgba(255, 255, 255, 0.86);
    text-align: center;
}

.media-placeholder i {
    color: var(--theme-color-soft);
    font-size: 42px;
}

.media-placeholder span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.accommodation-card:hover .accommodation-card__media img {
    transform: scale(1.04);
}

.accommodation-card__body {
    padding: 30px 28px 34px;
}

.accommodation-card__category {
    display: inline-block;
    margin-bottom: 11px;
    color: var(--theme-color);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.accommodation-card__body h3 {
    max-width: 360px;
    margin-bottom: 16px;
    color: #2f2f2f;
    font-size: 27px;
    line-height: 1.08;
}

.accommodation-card__body p {
    max-width: 350px;
    color: #777777;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.58;
}

.amenity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 9px;
    margin-top: 22px;
}

.amenity-tags li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 33px;
    padding: 9px 12px 8px;
    background: #f2eadc;
    color: #806434;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.035em;
    line-height: 1;
    text-transform: uppercase;
}

.capacity-note {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 45px;
    padding: 28px 34px;
    border: 1px solid var(--border-color);
    background: var(--section-bg);
}

.capacity-note i {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    background: var(--theme-color);
    color: var(--white);
    font-size: 22px;
}

/* Slick slider base mantido localmente */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: grab;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track::before,
.slick-track::after {
    display: table;
    content: "";
}

.slick-track::after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-arrow.slick-hidden {
    display: none;
}

.media-gallery-section {
    position: relative;
    overflow: hidden;
}

.media-gallery-section--images {
    background: var(--section-bg);
}

.media-gallery-section--videos {
    background: var(--white);
}

.media-gallery-section--videos.section {
    padding-top: 96px;
    padding-bottom: 108px;
}

.media-gallery-section .section-heading--center {
    margin-bottom: 56px;
}

.media-gallery-section .section-heading h2 {
    margin-bottom: 0;
}

.media-gallery-section--images .container {
    width: min(100% - 40px, 1320px);
}

.media-gallery-slider {
    position: relative;
    margin: 0 -15px;
}

.media-gallery-section--images .media-gallery-slider {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
}

.media-gallery-section--videos .media-gallery-slider {
    max-width: 980px;
    margin-right: auto;
    margin-left: auto;
}

.media-gallery-section--videos .media-gallery-slider:not(.has-multiple-media) {
    margin-inline: auto;
}

.media-gallery-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
}

.media-gallery-slider .slick-list {
    overflow: hidden;
}

.media-gallery-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.media-gallery-slider .slick-slide {
    height: auto;
}

.media-gallery-card {
    position: relative;
    margin: 0 15px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--footer-bg);
    box-shadow: 0 22px 54px rgba(24, 20, 11, 0.14);
}

.media-gallery-section--images .media-gallery-card {
    width: min(100%, 420px);
    max-width: 420px;
    margin: 0 10px;
    aspect-ratio: 9 / 16;
    border: 1px solid rgba(161, 133, 73, 0.18);
    border-radius: 16px;
    background: #f3eee6;
    box-shadow: 0 24px 58px rgba(24, 20, 11, 0.16);
}

.media-gallery-section--videos .media-gallery-card {
    margin: 0;
}

.media-gallery-card--video {
    aspect-ratio: auto;
    padding: 12px;
    overflow: visible;
    border: 1px solid rgba(161, 133, 73, 0.28);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(231, 220, 196, 0.52));
    box-shadow: 0 30px 80px rgba(24, 20, 11, 0.22);
}

.media-gallery-video-shell {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: calc(var(--radius-md) - 6px);
    background: var(--footer-bg);
}

.media-gallery-card img,
.media-gallery-card video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.media-gallery-section--images .media-gallery-card img {
    aspect-ratio: 9 / 16;
}

.media-gallery-card--video video {
    display: block;
    background: linear-gradient(135deg, rgba(159, 125, 59, 0.18), rgba(24, 20, 11, 0.72));
}

.media-gallery-section--videos .media-gallery-card--video video {
    object-fit: contain;
}

.media-gallery-video-play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    border: 0;
    background: linear-gradient(180deg, rgba(24, 20, 11, 0.14), rgba(24, 20, 11, 0.48));
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: opacity 0.25s ease, visibility 0.25s ease, background 0.25s ease;
}

.media-gallery-video-play i {
    display: inline-grid;
    width: 78px;
    height: 78px;
    place-items: center;
    padding-left: 5px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    background: rgba(161, 133, 73, 0.92);
    font-size: 26px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.media-gallery-video-play span {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(24, 20, 11, 0.68);
    font-size: 14px;
    line-height: 1;
}

.media-gallery-video-play:hover,
.media-gallery-video-play:focus-visible {
    background: linear-gradient(180deg, rgba(24, 20, 11, 0.08), rgba(24, 20, 11, 0.34));
}

.media-gallery-card--video.is-playing .media-gallery-video-play {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.media-gallery-video-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 8px 4px;
    color: var(--main-color);
}

.media-gallery-video-caption strong {
    font-family: var(--font-heading);
    font-size: 19px;
    line-height: 1.2;
}

.media-gallery-video-caption span {
    color: var(--text-color);
    font-size: 13px;
    line-height: 1.35;
    text-align: right;
}

.media-gallery-card--video video[poster] {
    background: var(--footer-bg);
}

.media-gallery-slider--empty {
    display: block;
    margin: 0;
}

.media-gallery-empty {
    display: grid;
    min-height: 280px;
    place-items: center;
    align-content: center;
    gap: 12px;
    padding: 46px 28px;
    border: 1px solid var(--border-color);
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.media-gallery-empty i {
    color: var(--theme-color);
    font-size: 46px;
}

.media-gallery-empty h3 {
    font-size: 26px;
}

.media-gallery-empty p {
    max-width: 680px;
}

.media-gallery-slider .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: rgba(24, 20, 11, 0.72);
    color: var(--white);
    font-size: 18px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.media-gallery-slider .slick-prev {
    left: 32px;
}

.media-gallery-slider .slick-next {
    right: 32px;
}

.media-gallery-slider .slick-arrow:hover,
.media-gallery-slider .slick-arrow:focus-visible {
    border-color: var(--theme-color);
    background: var(--theme-color);
    transform: translateY(-50%) scale(1.04);
}

.media-gallery-slider .slick-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.media-gallery-swipe-hint {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: fit-content;
    margin: 18px auto 0;
    padding: 9px 16px;
    border: 1px solid var(--theme-color-soft);
    background: rgba(161, 133, 73, 0.08);
    color: var(--theme-color-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-align: center;
}

.media-gallery-swipe-hint i {
    color: var(--theme-color);
    font-size: 14px;
}

.features-section {
    position: relative;
    overflow: hidden;
    background: var(--section-bg);
}

.features-section::before {
    position: absolute;
    top: 80px;
    right: -120px;
    width: 320px;
    height: 320px;
    content: "";
    border: 1px solid rgba(161, 133, 73, 0.23);
    border-radius: 50%;
}

.features-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 70px;
    align-items: start;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    min-height: 220px;
    padding: 34px 28px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.feature-card:hover {
    background: #fffdf8;
    transform: translateY(-7px);
    box-shadow: var(--shadow-strong);
}

.feature-card__icon {
    display: inline-grid;
    width: 70px;
    height: 70px;
    place-items: center;
    margin-bottom: 26px;
    background: var(--theme-color);
    transition: background 0.25s ease, transform 0.25s ease;
}

.feature-card:hover .feature-card__icon {
    background: var(--main-color);
    transform: rotateY(180deg);
}

.feature-card__icon img {
    max-width: 38px;
    max-height: 38px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.location-section {
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 56px;
    align-items: center;
}

.map-card {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: var(--section-bg);
    box-shadow: var(--shadow-strong);
}

.map-card::after {
    position: absolute;
    inset: 22px;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.58);
}

.map-card iframe {
    width: 100%;
    height: 560px;
    border: 0;
    filter: saturate(0.85) contrast(1.05);
}

.location-content h2 {
    margin-top: 12px;
    margin-bottom: 26px;
    font-size: clamp(34px, 4vw, 52px);
}

.distance-list {
    display: grid;
    gap: 14px;
    margin-top: 34px;
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--border-color);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.distance-item i {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--section-bg);
    color: var(--theme-color);
    font-size: 18px;
}

.distance-item span {
    color: var(--main-color);
    font-weight: 700;
}

.rules-section {
    position: relative;
    background: var(--section-bg);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.rule-card {
    position: relative;
    min-height: 315px;
    padding: 38px 28px 34px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.rule-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    content: "";
    background: var(--theme-color);
}

.rule-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.rule-card__number {
    display: block;
    margin-bottom: 28px;
    color: rgba(161, 133, 73, 0.24);
    font-family: var(--font-heading);
    font-size: 62px;
    font-weight: 900;
    line-height: 0.75;
}

.rule-card h3 {
    margin-bottom: 18px;
    font-size: 25px;
}

.social-proof-section {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.social-proof-section::before {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    content: "";
    background: var(--section-bg);
}

.testimonial-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.testimonial-card {
    position: relative;
    margin-top: 46px;
    padding: 72px 26px 34px;
    background: var(--white);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.testimonial-card__avatar {
    position: absolute;
    top: -46px;
    left: 50%;
    width: 92px;
    height: 92px;
    border: 7px solid var(--white);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    transform: translateX(-50%);
}

.testimonial-card__avatar--icon {
    display: grid;
    place-items: center;
    background: var(--theme-color);
    color: var(--white);
    font-size: 30px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 18px;
    color: var(--theme-color);
    font-size: 14px;
}

.testimonial-card p {
    font-size: 15px;
}

.testimonial-card h3 {
    margin-top: 26px;
    margin-bottom: 4px;
    font-size: 22px;
}

.testimonial-card span {
    color: var(--meta-text-color);
    font-size: 13px;
    font-weight: 600;
}

.final-cta-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 130px 0 140px;
    text-align: center;
    color: var(--white);
}

.final-cta-section__bg,
.final-cta-section__overlay {
    position: absolute;
    inset: 0;
}

.final-cta-section__bg {
    z-index: -2;
    background:
        radial-gradient(circle at 30% 22%, rgba(161, 133, 73, 0.35), transparent 30%),
        linear-gradient(135deg, #18140b 0%, #2b2111 48%, #6b5426 100%);
}

.final-cta-section__overlay {
    z-index: -1;
    background: rgba(0, 0, 0, 0.66);
}

.final-cta-section__inner {
    max-width: 820px;
}

.final-cta-section h2 {
    color: var(--white);
}

.final-cta-section p {
    max-width: 700px;
    margin: 0 auto 42px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.final-cta-section .section-kicker::after {
    left: 50%;
    transform: translateX(-50%);
}

.faq-section {
    padding: 110px 0;
    background: var(--section-bg);
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 70px;
    align-items: start;
}

.faq-accordion {
    display: grid;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    background: var(--white);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.04);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 24px 28px;
    border: 0;
    background: transparent;
    color: var(--main-color);
    text-align: left;
}

.faq-question span {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
}

.faq-question i {
    color: var(--theme-color);
    transition: transform 0.25s ease;
}

.faq-item.is-open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 28px 26px;
}

.footer-section {
    background: var(--footer-bg);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(0, 1fr));
    gap: 42px;
    padding: 92px 0 62px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand--footer .brand__mark {
    background: linear-gradient(145deg, rgba(24, 20, 11, 0.98), rgba(58, 43, 30, 0.96));
}

.footer-brand p {
    max-width: 390px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.62);
}

.footer-brand .footer-cnpj {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.footer-column h3 {
    margin-bottom: 24px;
    color: var(--white);
    font-size: 22px;
}

.footer-column ul {
    display: grid;
    gap: 12px;
}

.footer-column a,
.footer-contact-list li {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--theme-color-soft);
}

.footer-contact-list li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 12px;
    line-height: 1.55;
}

.footer-contact-list i {
    margin-top: 4px;
    color: var(--theme-color);
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-social a {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
    border-color: var(--theme-color);
    background: var(--theme-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 0;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.25s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: var(--theme-color-soft);
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 32px;
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp::before {
    position: absolute;
    inset: -8px;
    content: "";
    border: 1px solid rgba(37, 211, 102, 0.55);
    border-radius: inherit;
    animation: pulseWhatsapp 1.8s ease-in-out infinite;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 22px 46px rgba(37, 211, 102, 0.42);
}

@keyframes pulseWhatsapp {
    0% {
        opacity: 0.9;
        transform: scale(0.9);
    }

    100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

@media (min-width: 741px) and (max-height: 820px) {
    .hero-section__inner {
        padding-top: 124px;
        padding-bottom: 54px;
    }

    .hero-content h1 {
        margin-top: 10px;
        margin-bottom: 14px;
        font-size: clamp(38px, 4.4vw, 58px);
    }

    .hero-content__lead {
        max-width: 560px;
        font-size: 17px;
        line-height: 1.45;
    }

    .hero-content__stats {
        margin: 20px 0 22px;
    }

    .hero-stat {
        min-width: 108px;
        padding: 12px 18px;
    }

    .hero-stat strong {
        font-size: 26px;
    }

    .hero-content__actions .btn--large {
        min-height: 52px;
        padding: 14px 28px;
    }

    .scroll-indicator {
        bottom: 14px;
    }
}

@media (max-width: 1120px) {
    .header-cta {
        display: none;
    }

    .rules-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .section {
        padding: 88px 0;
    }

    .header-topbar {
        display: none;
    }

    .header-main__inner {
        min-height: 74px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        top: 74px;
        right: 20px;
        left: 20px;
        display: grid;
        gap: 0;
        padding: 18px;
        background: rgba(24, 20, 11, 0.98);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
        transform: translateY(-14px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    }

    .main-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav a {
        padding: 15px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-nav a:last-child {
        border-bottom: 0;
    }

    .hero-section__inner {
        grid-template-columns: 1fr;
        padding-top: 128px;
    }

    .hero-logo-card {
        display: none;
    }

    .features-layout,
    .location-grid,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .section-heading--left {
        max-width: 760px;
    }

    .map-card,
    .map-card iframe {
        min-height: 430px;
        height: 430px;
    }
}

@media (max-width: 740px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .media-gallery-section--images .container {
        width: min(100% - 28px, 1320px);
    }

    .hero-section {
        min-height: 100svh;
        place-items: start center;
    }

    .hero-section__inner {
        width: min(100% - 28px, var(--container));
        padding-top: clamp(102px, 13svh, 128px);
        padding-bottom: clamp(68px, 9svh, 92px);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content .section-kicker {
        padding-bottom: 13px;
        font-size: 15px;
        letter-spacing: 0.1em;
    }

    .brand__mark {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .brand__mark--image {
        padding: 3px;
    }

    .brand__text strong {
        font-size: 19px;
    }

    .brand__text small {
        font-size: 10px;
    }

    .hero-content h1 {
        margin-top: 12px;
        margin-bottom: 14px;
        font-size: clamp(38px, 10.9vw, 52px);
        line-height: 1.01;
    }

    .hero-content__lead {
        max-width: 100%;
        font-size: clamp(15px, 4.2vw, 17px);
        line-height: 1.44;
    }

    .hero-content__stats {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        width: 100%;
        margin: 22px 0 20px;
    }

    .hero-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0;
        padding: 14px clamp(12px, 4vw, 18px);
    }

    .hero-stat strong {
        width: 72px;
        font-size: 26px;
        text-align: left;
    }

    .hero-stat span {
        width: 72px;
        font-size: 9px;
        letter-spacing: 0.08em;
        line-height: 1.2;
        text-align: left;
    }

    .hero-content__actions {
        gap: 12px;
    }

    .hero-content__actions .btn {
        width: 100%;
    }

    .hero-content__actions .btn--large {
        min-height: 50px;
        padding: 14px 18px;
        font-size: 13px;
    }

    .scroll-indicator {
        bottom: 14px;
        gap: 6px;
        font-size: 10px;
    }

    .carousel-toolbar {
        justify-content: center;
        margin-top: -34px;
    }

    .accommodation-carousel {
        grid-auto-columns: 88%;
        gap: 18px;
    }

    .accommodation-card__media {
        height: 255px;
    }

    .media-gallery-slider.has-multiple-media + .media-gallery-swipe-hint {
        display: flex;
    }

    .media-gallery-section--images .media-gallery-slider {
        width: 100%;
        max-width: 520px;
        margin-right: auto;
        margin-left: auto;
    }

    .media-gallery-section--images .media-gallery-slider .slick-list,
    .media-gallery-section--images .media-gallery-slider .slick-track {
        min-height: clamp(300px, 82vw, 430px);
    }

    .media-gallery-section--images .media-gallery-card {
        height: clamp(300px, 82vw, 430px) !important;
        min-height: clamp(300px, 82vw, 430px);
        max-width: none;
        margin-right: 0;
        margin-left: 0;
        aspect-ratio: auto;
        border-radius: 12px;
    }

    .media-gallery-section--images .media-gallery-card img {
        display: block;
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
        background: #f3eee6;
    }

    .media-gallery-slider .slick-arrow {
        width: 46px;
        height: 46px;
        border-color: rgba(255, 255, 255, 0.72);
        background: rgba(24, 20, 11, 0.76);
        font-size: 15px;
    }

    .media-gallery-slider .slick-prev {
        left: 8px;
    }

    .media-gallery-slider .slick-next {
        right: 8px;
    }

    .media-gallery-section--videos.section {
        padding-top: 82px;
        padding-bottom: 92px;
    }

    .media-gallery-section--videos .media-gallery-slider {
        width: min(100%, 680px);
    }

    .capacity-note {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .features-grid,
    .rules-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rule-card {
        min-height: auto;
    }

    .final-cta-section {
        padding: 98px 0 108px;
    }

    .faq-section {
        padding: 88px 0;
    }

    .faq-question {
        padding: 21px 22px;
    }

    .faq-question span {
        font-size: 19px;
    }

    .faq-answer p {
        padding: 0 22px 23px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .section-heading--center {
        margin-bottom: 56px;
    }

    .section-heading h2,
    .location-content h2,
    .final-cta-section h2 {
        font-size: 34px;
    }

    .btn--large {
        min-height: 58px;
        padding: 17px 24px;
        font-size: 14px;
    }

    .hero-section__overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 100%);
    }

    .hero-section__inner {
        padding-top: clamp(96px, 12svh, 118px);
        padding-bottom: clamp(62px, 8svh, 82px);
    }

    .hero-content h1 {
        font-size: clamp(35px, 10.6vw, 45px);
    }

    .hero-content__lead {
        font-size: clamp(14px, 4vw, 16px);
        line-height: 1.4;
    }

    .hero-content__stats {
        margin: 20px 0 18px;
    }

    .hero-stat strong {
        font-size: 25px;
    }

    .hero-content__actions .btn--large {
        min-height: 48px;
        padding: 13px 14px;
    }

    .accommodation-carousel {
        grid-auto-columns: 94%;
    }

    .accommodation-card__body {
        padding: 28px 22px 30px;
    }

    .accommodation-card__body h3 {
        font-size: 25px;
    }

    .media-gallery-section--videos.section {
        padding-top: 74px;
        padding-bottom: 82px;
    }

    .media-gallery-section--videos .section-heading--center {
        margin-bottom: 34px;
    }

    .media-gallery-card--video {
        padding: 7px;
        border-radius: var(--radius-sm);
        box-shadow: 0 18px 44px rgba(24, 20, 11, 0.18);
    }

    .media-gallery-video-shell {
        aspect-ratio: 9 / 16;
        max-height: 68vh;
        border-radius: calc(var(--radius-sm) - 2px);
    }

    .media-gallery-video-play i {
        width: 66px;
        height: 66px;
        font-size: 22px;
    }

    .media-gallery-video-play span {
        padding: 8px 14px;
        font-size: 13px;
    }

    .media-gallery-video-caption {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
        padding: 11px 6px 3px;
    }

    .media-gallery-video-caption span {
        font-size: 12px;
        text-align: left;
    }

    .feature-card {
        min-height: auto;
    }

    .map-card,
    .map-card iframe {
        min-height: 360px;
        height: 360px;
    }

    .floating-whatsapp {
        right: 18px;
        bottom: 18px;
        width: 58px;
        height: 58px;
        font-size: 28px;
    }
}

@media (max-width: 740px) and (max-height: 720px) {
    .hero-section__inner {
        padding-top: clamp(74px, 11svh, 84px);
        padding-bottom: 34px;
    }

    .hero-content .section-kicker {
        padding-bottom: 8px;
        font-size: 12px;
    }

    .hero-content h1 {
        margin-top: 6px;
        margin-bottom: 8px;
        font-size: clamp(30px, 8.8vw, 34px);
        line-height: 0.98;
    }

    .hero-content__lead {
        font-size: 13px;
        line-height: 1.32;
    }

    .hero-content__stats {
        margin: 12px 0;
    }

    .hero-stat {
        padding: 8px 9px;
    }

    .hero-stat strong {
        font-size: 23px;
    }

    .hero-stat span {
        margin-top: 4px;
        font-size: 8px;
    }

    .hero-content__actions {
        gap: 8px;
    }

    .hero-content__actions .btn--large {
        min-height: 40px;
        padding: 9px 12px;
        font-size: 11px;
    }

    .scroll-indicator {
        bottom: 6px;
    }
}

@media (max-width: 740px) and (max-height: 620px) {
    .hero-section__inner {
        padding-top: 68px;
        padding-bottom: 28px;
    }

    .hero-content h1 {
        font-size: clamp(28px, 8.9vw, 31px);
    }

    .hero-content__lead {
        font-size: 12.5px;
        line-height: 1.28;
    }

    .hero-content__stats {
        margin: 10px 0;
    }

    .hero-stat {
        padding: 7px 8px;
    }

    .hero-stat strong {
        font-size: 22px;
    }

    .hero-content__actions .btn--ghost {
        display: none;
    }

    .hero-content__actions .btn--large {
        min-height: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
