/*
Theme Name: Pousada Dinossauro
Theme URI: https://example.com/
Author: Equipe de Desenvolvimento
Description: Tema customizado em Bootstrap para o site da Pousada Dinossauro.
Version: 1.0.0
Text Domain: pousada-dinossauro
*/

body {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 500;
}

.hero-header {
    position: relative;
    height: clamp(260px, 34vw, 430px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-header-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-header-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-header-media video,
.hero-header-media iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.hero-header-media video {
    object-fit: cover;
}

.hero-header-media--embed iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

.hero-header-media--embed iframe {
    pointer-events: none;
}

.hero-header--home {
    height: 100vh;
    min-height: 640px;
}

.hero-header--short {
    min-height: 520px;
}

.hero-header-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .18) 0%,
            rgba(0, 0, 0, .08) 38%,
            rgba(0, 0, 0, .76) 100%);
}

.hero-header-top {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    padding-top: 22px;
}

.hero-header--home .hero-header-top {
    padding-top: 30px;
}

.hero-header-top-left {
    display: flex;
    align-items: center;
    min-height: 130px;
}

.hero-header-top-center {
    display: flex;
    justify-content: center;
}

.hero-header-top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    min-height: 130px;
}

/* burger */
.hero-header-burger {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    padding: 0;
    display: grid;
    place-items: center;
}

.hero-header-burger span,
.hero-header-burger span::before,
.hero-header-burger span::after {
    content: "";
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    position: relative;
    border-radius: 2px;
}

.hero-header-burger span::before {
    position: absolute;
    top: -5px;
    left: 0;
}

.hero-header-burger span::after {
    position: absolute;
    top: 5px;
    left: 0;
}

/* logo menor igual print */
.hero-header-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 150px;
    height: auto;
    margin: 0 auto;
    border-radius: 100%;
}

.hero-header-logo-wrap .custom-logo {
    max-width: 150px;
    height: auto;
    object-fit: contain;
}

/* botão reserva */
.hero-header-cta {
    min-height: 34px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #5f7b4a;
    background: #5f7b4a;
    color: #fff;
    text-decoration: none;
    font-size: .72rem;
    text-align: center;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1;
}

.hero-header-cta:hover {
    color: #fff;
    background: #4d653d;
    border-color: #4d653d;
}

/* whatsapp */
.hero-header-whatsapp {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .9);
    background: transparent;
    text-decoration: none;
}

.hero-header-whatsapp svg {
    width: 16px;
    height: 16px;
}

/* conteúdo sobe e fica mais parecido com a referência */
.hero-header-content {
    position: relative;
    z-index: 3;
    height: calc(100% - 152px);
    display: flex;
    align-items: flex-end;
}

.hero-header-content-inner {
    max-width: 600px;
    margin-bottom: 64px;
}

.hero-header--home .hero-header-content-inner {
    margin-bottom: 80px;
}

.hero-header--short .hero-header-content {
    min-height: 360px;
    padding-top: 120px;
    padding-bottom: 42px;
}

.hero-header-content-inner {
    max-width: 600px;
    margin-bottom: 60px;
}

/* título menor e mais fino */
.hero-header-title {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 4.8vw, 3.05rem);
    font-weight: 400;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.14;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

/* subtítulo */
.hero-header-subtitle {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .28);
}

.hero-header-text {
    margin: 0;
    font-size: .98rem;
    color: rgba(255, 255, 255, .95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, .28);
}

.hero-header-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.hero-header-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.hero-header-menu-close {
    position: absolute;
    top: 22px;
    left: 24px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
}

.hero-header-menu-inner {
    width: min(1200px, 92%);
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.hero-header-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 28px 54px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-header-menu-list li {
    margin: 0;
}

.hero-header-menu-list a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(28px, 2.4vw, 42px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: .01em;
}

.hero-header-menu-list a:hover {
    opacity: .85;
}

body.hero-menu-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-header-menu-list {
        gap: 22px 34px;
    }
}

@media (max-width: 767px) {
    .hero-header-menu-list {
        flex-direction: column;
        gap: 18px;
    }

    .hero-header-menu-list a {
        font-size: 32px;
    }

    .hero-header-menu-close {
        top: 16px;
        left: 16px;
    }
}

@media (max-width: 991px) {
    .hero-header-media {
        display: none;
    }

    .hero-header {
        min-height: 640px;
    }

    .hero-header-top {
        padding-top: 24px;
    }

    .hero-header-content {
        padding-top: 140px;
        padding-bottom: 56px;
    }

    .hero-header-title {
        font-size: clamp(2rem, 7vw, 3.2rem);
    }
}

.floating-whatsapp-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp-button:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .25);
}

.floating-whatsapp-button i,
.floating-whatsapp-button svg {
    font-size: 1.7rem;
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .floating-whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 767px) {
    .hero-header {
        min-height: 560px;
    }

    .hero-header-top {
        grid-template-columns: 1fr auto 1fr;
        padding-top: 18px;
    }

    .hero-header-logo-wrap {
        width: clamp(86px, 22vw, 118px);
        max-width: clamp(86px, 22vw, 118px);
        height: auto;
    }

    .hero-header-logo-wrap .custom-logo {
        width: 100%;
        max-width: clamp(86px, 22vw, 118px);
        height: auto;
    }

    .hero-header-cta {
        min-height: 30px;
        padding: 0 10px;
        font-size: .66rem;
    }

    .hero-header-top-right {
        justify-content: flex-end;
        padding-left: 12px;
    }

    .hero-header-whatsapp {
        width: 30px;
        height: 30px;
    }

    .hero-header-content {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-header-content-inner {
        max-width: 340px;
    }

    .hero-header-title {
        font-size: 2rem;
        letter-spacing: .04em;
    }
}

.home-about-carousel .carousel-item img {
    object-fit: cover;
    height: 320px;
}

.home-about-gallery .home-about-photo {
    overflow: hidden;
    border-radius: 16px;
}

.home-about-gallery .home-about-photo img {
    object-fit: cover;
    height: 260px;
}

.home-rooms-v2 {
    background: #fff;
    padding: 72px 0;
}

.home-rooms-v2 .home-rooms-head {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 34px;
}

.home-rooms-v2 .home-rooms-kicker {
    color: #5f7b4a;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .85rem;
    margin-bottom: 10px;
}

.home-rooms-v2 .home-rooms-title {
    color: #5f7b4a;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 500;
    font-size: clamp(28px, 3.6vw, 44px);
    margin: 0 0 14px;
}

.home-rooms-v2 .home-rooms-subtitle,
.home-rooms-v2 .home-rooms-text {
    color: #475569;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 860px;
}

.home-rooms-v2 .home-rooms-subtitle {
    margin-bottom: 10px;
}

.home-rooms-v2 .home-rooms-text {
    margin-bottom: 0;
}

/* cards */
.home-room-card-v2 {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
}

.home-room-media {
    display: block;
    overflow: hidden;
}

.home-room-media img {
    height: 320px;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.home-room-card-v2:hover .home-room-media img {
    transform: scale(1.06);
}

.home-room-body-v2 {
    padding: 18px 0 0;
}

.home-room-title-v2 {
    margin: 0 0 12px;
    font-size: 1rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-weight: 600;
    color: #2b2b2b;
}

.home-room-title-v2 a {
    color: inherit;
    text-decoration: none;
}

.home-room-meta-v2 {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 12px;
    color: #334155;
    font-size: .85rem;
}

.home-room-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: .95;
}

/* ícones simples via CSS (sem libs) */
.home-room-ic,
.home-room-bed {
    width: 18px;
    height: 18px;
    display: inline-block;
    position: relative;
}

.home-room-ic {
    border: 2px solid #5f7b4a;
    border-radius: 3px;
}

.home-room-ic::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: 3px;
    height: 2px;
    background: #5f7b4a;
    opacity: .6;
}

.home-room-bed {
    border: 2px solid #5f7b4a;
    border-radius: 3px;
}

.home-room-bed::before {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    top: 7px;
    height: 2px;
    background: #5f7b4a;
}

.home-room-svg {
    width: 18px;
    height: 18px;
    display: inline-block;
    color: #5f7b4a;
}

.home-room-svg svg {
    width: 18px;
    height: 18px;
    display: block;
}

.home-room-svg svg * {
    fill: currentColor;
    stroke: currentColor;
}

.home-room-excerpt-v2 {
    margin: 0 0 14px;
    color: #334155;
    line-height: 1.65;
    font-size: .95rem;
}

.home-room-more-v2 {
    display: inline-block;
    color: #5f7b4a;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .10em;
    font-size: .8rem;
    text-transform: uppercase;
}

.home-room-more-v2:hover {
    text-decoration: underline;
}

/* dots */
.home-rooms-v2 .home-rooms-dots {
    position: static;
    margin: 22px 0 0;
    gap: 10px;
}

.home-rooms-v2 .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    opacity: .35;
    margin: 0;
}

.home-rooms-v2 .carousel-indicators .active {
    opacity: 1;
}

/* mobile */
@media (max-width: 767px) {
    .home-rooms-v2 {
        padding: 56px 0;
    }

    .home-room-media img {
        height: 240px;
    }

    .home-room-body-v2 {
        padding-top: 14px;
    }
}

.home-cta {
    background: linear-gradient(135deg, #0f172a, #0369a1);
    color: #ffffff;
}

.home-cta .section-subtitle {
    color: #e5e7eb;
}

/* ===== SERVICES SECTION ===== */

.home-services {
    background: #efefec;
    padding: 90px 0;
}

/* GRID */
.home-services .row {
    align-items: center;
}

/* ===== COLUNA IMAGENS ===== */

.home-services .col-lg-6:first-child {
    display: flex;
    justify-content: flex-end;
}

.home-services-images {
    max-width: 760px;
    width: 100%;
}

.home-services-img {
    margin-bottom: 28px;
    overflow: hidden;
}

.home-services-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== COLUNA TEXTO ===== */

.home-services-right {
    max-width: 520px;
    margin-left: 60px;
}

/* kicker */
.home-services-kicker {
    color: #5f7b4a;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 18px;
}

/* título gigante */
.home-services-title {
    font-size: clamp(36px, 4.5vw, 36px);
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #2d3640;
    line-height: 1.2;
    margin-bottom: 36px;
}

/* ===== ITEMS ===== */

.home-service-item {
    margin-bottom: 36px;
}

.home-service-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.home-service-icon {
    color: #5f7b4a;
    font-size: 22px;
}

.home-service-head h3 {
    color: #5f7b4a;
    letter-spacing: .28em;
    text-transform: uppercase;
    font-size: 14px;
    margin: 0;
}

.home-service-item p {
    color: #5b6470;
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
    max-width: 460px;
}

/* ===== RESPONSIVO ===== */

@media(max-width:991px) {

    .home-services {
        padding: 70px 0;
    }

    .home-services .col-lg-6:first-child {
        justify-content: center;
        margin-bottom: 40px;
    }

    .home-services-right {
        margin-left: 0;
        max-width: 640px;
    }

    .home-services-title {
        font-size: 36px;
        letter-spacing: .22em;
    }
}

.home-checkin-placeholder {
    max-width: 480px;
    margin-inline: auto;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1rem;
    color: #4b5563;
}

.home-section-kicker {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #6b7280;
}

/* About section heading – match reference */
.home-about .home-section-kicker {
    color: #5f7b4a;
    font-weight: 600;
    letter-spacing: .18em;
    opacity: .95;
}

.home-about .section-title {
    color: #5f7b4a;
    text-transform: uppercase;
    letter-spacing: .10em;
    font-weight: 600;
    font-size: clamp(2rem, 5.4vw, 3.2rem);
    margin-top: .25rem;
    margin-bottom: .5rem;
}

.home-about .section-subtitle {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #475569;
}

.home-hero-burger {
    text-decoration: none;
    margin-left: 20px;
}

.home-hero-burger-lines {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #fff;
    position: relative;
    border-radius: 2px;
}

.home-hero-burger-lines:before,
.home-hero-burger-lines:after {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.home-hero-burger-lines:before {
    top: -8px;
}

.home-hero-burger-lines:after {
    top: 8px;
}

.home-hero-logo {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-logo .custom-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.home-hero-actions .home-hero-cta-btn {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .9);
    color: #fff;
    background: rgba(255, 255, 255, .08);
    padding: .5rem 1rem;
    line-height: 1.2;
    letter-spacing: .02em;
}

.home-hero-actions .home-hero-cta-btn:hover {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.home-hero-ic {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .96);
    color: #0b1f12;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

/* Fullscreen Menu Overlay */
.home-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(2px);
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.home-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.home-menu-inner {
    max-width: 1100px;
    margin: 0 auto;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
}

.home-menu-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 48px;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.home-menu-list a {
    color: #fff;
    text-decoration: none;
    font-size: clamp(1.25rem, 2.6vw, 2rem);
    font-weight: 600;
    letter-spacing: .02em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}

.home-menu-list a:hover {
    opacity: .9;
}

.home-menu-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    border: 0;
}

@media (max-width: 767px) {
    .home-menu-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-hero-content {
        margin-top: 18vh;
        margin-bottom: 8vh;
    }
}

.home-about-carousel .carousel-control-prev,
.home-about-carousel .carousel-control-next {
    width: 4rem;
}

.home-about-carousel .carousel-control-prev-icon,
.home-about-carousel .carousel-control-next-icon {
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .35));
}

.home-about-photo {
    border-radius: 18px;
    overflow: hidden;
}

.home-about-photo img {
    height: 320px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .home-about-photo img {
        height: 220px;
    }
}

.home-video-block {
    padding: 56px 0 0;
    background: #fff;
    overflow: hidden;
}

.home-video-block .home-video-header {
    padding: 0 0 18px;
}

/* titulo: coluna 1 texto (quebra normal), coluna 2 linha até o fim */
.home-video-block .home-video-heading {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 18px;
    align-items: end;
    /* importante: linha fica alinhada na 1ª linha */

    width: min(1200px, 92%);
    margin: 0 auto 10px;
    padding-left: 24px;

    color: #5f7b4a;
    text-transform: uppercase;
    letter-spacing: .28em;
    font-weight: 500;
    font-size: clamp(18px, 2.2vw, 30px);
    line-height: 1.25;
}

/* texto quebra automático como no print */
.home-video-block .home-video-heading-text {
    display: block;
    max-width: 560px;
    /* controla onde quebra (ajuste fino) */
}

/* linha começa depois do texto e vai até o fim da tela */
.home-video-block .home-video-heading::after {
    content: "";
    height: 2px;
    background: #5f7b4a;
    opacity: .35;
    margin-top: .55em;
    /* baixa a linha para ficar no meio da 1ª linha do texto */
    width: 100vw;
    /* vai até o fim */
}

/* remove qualquer “enfeite” do tema */
.home-video-block .home-video-heading::before {
    content: none !important;
}

/* subtítulo alinhado com o título */
.home-video-block .section-subtitle {
    width: min(980px, 92%);
    margin: 0 auto 16px;
    padding-left: 24px;
}

/* hero imagem */
.home-video-hero {
    position: relative;
    width: 100%;
    height: clamp(320px, 40vw, 520px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* sombreado */
.home-video-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .55) 0%,
            rgba(0, 0, 0, .35) 25%,
            rgba(0, 0, 0, .15) 55%,
            rgba(0, 0, 0, .05) 100%);
}

/* botão play */
.home-video-play {
    position: relative;
    z-index: 2;
    width: 76px;
    height: 76px;
    border-radius: 999px;
    border: 0;
    background: rgba(210, 210, 210, .92);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: transform .18s ease, filter .18s ease;
}

.home-video-play:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.home-video-play:active {
    transform: scale(.98);
}

.home-video-play:focus-visible {
    outline: 3px solid rgba(95, 123, 74, .45);
    outline-offset: 4px;
}

.home-video-play-icon {
    width: 0;
    height: 0;
    border-left: 18px solid rgba(80, 80, 80, .9);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 3px;
}

/* overlay */
.home-video-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .88);
    z-index: 1400;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.home-video-overlay.open {
    opacity: 1;
    visibility: visible;
}

.home-video-inner {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
}

.home-video-embed {
    width: min(92vw, 1200px);
}

.home-video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

.home-video-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .7);
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width:768px) {
    .home-video-block .home-video-heading {
        padding-left: 16px;
        letter-spacing: .22em;
        font-size: 18px;
    }

    .home-video-block .home-video-heading-text {
        max-width: 320px;
    }

    .home-video-block .section-subtitle {
        padding-left: 16px;
    }

    .home-video-play {
        width: 64px;
        height: 64px;
    }

    .home-video-play-icon {
        border-left-width: 16px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
}

.home-bookbar {
    background: #5f7b4a;
    /* verde do layout */
    padding: 18px 0;
}

.home-bookbar-label {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 6px;
    display: block;
}

.home-bookbar-input {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(0, 0, 0, .08);
    color: #fff;
}

.home-bookbar-input::placeholder {
    color: rgba(255, 255, 255, .7);
}

.home-bookbar-btn {
    border-radius: 10px;
    background: #0b1f12;
    color: #fff;
    padding: .85rem 1rem;
}

.home-bookbar-btn:hover {
    color: #fff;
    opacity: .95;
}



.site-footer {
    background: #5f7b4a;
}

.footer-kicker {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .9;
    margin-bottom: 10px;
}

.footer-text {
    opacity: .95;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    opacity: .95;
}

.footer-link:hover {
    color: #fff;
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    opacity: .9;
    font-size: .9rem;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-social-icon {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
}

.footer-social .bi {
    font-size: 22px;
    line-height: 1;
    display: inline-block;
}

.footer-social svg {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
}

/* Footer grid dividers */
.site-footer .footer-grid {
    border-top: 1px solid rgba(255, 255, 255, .2);
}

@media (min-width: 768px) {
    .site-footer .footer-grid>.footer-col {
        border-left: 1px solid rgba(255, 255, 255, .2);
    }

    .site-footer .footer-grid>.footer-col:first-child {
        border-left: 0;
    }
}

html {
    scroll-behavior: smooth;
}

.btn {
    transition: transform .2s ease, box-shadow .25s ease, opacity .2s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.home-hero-cta .btn:hover {
    background: rgba(255, 255, 255, .12);
}

.home-about-photo img,
.home-room-image img {
    transition: transform .8s cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.home-about-photo:hover img,
.home-room-card:hover .home-room-image img {
    transform: scale(1.06);
}

.home-room-card {
    transition: transform .25s ease, box-shadow .3s ease;
}

.home-room-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, .12);
}


.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .8s cubic-bezier(.2, .8, .2, 1);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal.fade {
    transform: none;
}

.reveal.zoom {
    transform: scale(.96);
}

.reveal.zoom.in {
    transform: none;
}

@media (prefers-reduced-motion: reduce) {

    .btn,
    .home-about-photo img,
    .home-room-image img,
    .home-room-card,
    .reveal {
        transition: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Gallery carousel (scroll-snap) */
.home-gallery-carousel {
    position: relative;
    isolation: isolate;
}

.home-about {
    --hg-bleed: clamp(160px, 16vw, 320px);
}

.home-gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 340px;
    gap: 28px;
    overflow-x: auto;
    scroll-snap-type: none;
    scroll-padding-left: var(--hg-bleed, 88px);
    -webkit-overflow-scrolling: touch;
    scroll-behavior: auto;
    padding: 8px var(--hg-bleed, 88px);
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
}

.home-gallery-track::-webkit-scrollbar {
    display: none;
}

.home-gallery-track.hg-drag {
    cursor: grabbing;
}

.home-gallery-item {
    scroll-snap-align: start;
    border-radius: 0;
    overflow: hidden;
    height: 560px;
    background: #e5e7eb;
}

.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.home-gallery-item:hover img {
    transform: scale(1.06);
}

.home-gallery-item img {
    -webkit-user-drag: none;
    user-select: none;
}

.hg-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .96);
    color: #111827;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
    transition: transform .2s ease, opacity .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.hg-btn:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.hg-btn:disabled {
    opacity: .35;
    pointer-events: none;
}

.hg-prev {
    left: 8px;
}

.hg-next {
    right: 8px;
}

.hg-icon {
    font-size: 20px;
    line-height: 1;
}

/* Edge fade */
/* Removido fade lateral para evitar sombreamento */
.home-gallery-carousel::before,
.home-gallery-carousel::after {
    display: none;
}

@media (max-width: 991px) {
    .home-about {
        --hg-bleed: clamp(120px, 14vw, 260px);
    }

    .home-gallery-track {
        grid-auto-columns: 280px;
        gap: 22px;
    }

    .home-gallery-item {
        height: 460px;
    }
}

@media (max-width: 575px) {
    .home-about {
        --hg-bleed: clamp(96px, 18vw, 200px);
    }

    .home-gallery-track {
        grid-auto-columns: 220px;
        gap: 16px;
    }

    .home-gallery-item {
        height: 340px;
    }
}

/* Full-bleed effect for About gallery */
.home-about {
    background: #f3f2ed;
}

.home-about .home-gallery-carousel {
    position: relative;
    --vwfix: calc(100vw - (100vw - 100%));
    width: var(--vwfix);
    left: 50%;
    margin-left: calc(var(--vwfix) * -0.5);
    margin-right: calc(var(--vwfix) * -0.5);
    padding-top: 8px;
    padding-bottom: 8px;
    overflow: hidden;
}

.home-about .hg-prev {
    left: calc(var(--hg-bleed, 120px) * .5 - 24px);
}

.home-about .hg-next {
    right: calc(var(--hg-bleed, 120px) * .5 - 24px);
}

@media (min-width: 1400px) {
    .home-about {
        --hg-bleed: clamp(180px, 12vw, 360px);
    }

    .home-gallery-track {
        grid-auto-columns: 360px;
        gap: 32px;
    }

    .home-gallery-item {
        height: 580px;
    }
}

/* =========================
   SINGLE ROOM PAGE
   ========================= */

.single-room-page {
    background: #f3f2ed;
}

/* esconde header padrão só nessa página */
.single-room-page+.site-footer,
.single-room-page~.site-footer {
    margin-top: 0;
}

.single-room-hero {
    position: relative;
    min-height: 430px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.single-room-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .12) 38%, rgba(0, 0, 0, .08) 100%);
}

.single-room-topbar {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    padding: 28px 34px 0;
}

.single-room-topbar-left {
    display: flex;
    align-items: flex-start;
}

.single-room-topbar-center {
    display: flex;
    justify-content: center;
}

.single-room-topbar-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.single-room-burger {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    padding: 0;
    display: grid;
    place-items: center;
}

.single-room-burger span,
.single-room-burger span::before,
.single-room-burger span::after {
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: relative;
}

.single-room-burger span::before {
    position: absolute;
    top: -5px;
    left: 0;
}

.single-room-burger span::after {
    position: absolute;
    top: 5px;
    left: 0;
}

.single-room-logo-link {
    width: 64px;
    height: 64px;
    border: 2px solid rgba(255, 255, 255, .95);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .03);
}

.single-room-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.single-room-hero-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    background: rgba(255, 255, 255, .08);
}

.single-room-hero-book-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, .16);
}

.single-room-container {
    width: min(1240px, 92%);
    margin: 0 auto;
}

.single-room-content {
    padding: 48px 0 34px;
    background: #FFF;
}

.single-room-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 52px;
    align-items: start;
}

.single-room-main {
    max-width: 680px;
}

.single-room-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #6f8c58;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.single-room-breadcrumb a {
    color: #6f8c58;
    text-decoration: none;
}

.single-room-breadcrumb a:hover {
    color: #4f6b3d;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.single-room-breadcrumb span[aria-hidden="true"] {
    color: rgba(111, 140, 88, .55);
}

.single-room-breadcrumb span[aria-current="page"] {
    color: #475569;
}

.single-room-title {
    margin: 0 0 14px;
    color: #7a9561;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 400;
    font-size: clamp(28px, 2.2vw, 44px);
    line-height: 1.15;
}

.single-room-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}

.single-room-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3e4938;
    font-size: .75rem;
}

.single-room-meta-icon {
    width: 16px;
    height: 16px;
    border: 2px solid #7a9561;
    border-radius: 2px;
    display: inline-block;
    position: relative;
}

.single-room-meta-icon::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: 3px;
    height: 2px;
    background: #7a9561;
}

.single-room-meta-svg {
    width: 16px;
    height: 16px;
    color: #7a9561;
    display: inline-flex;
    flex: 0 0 16px;
    align-items: center;
    justify-content: center;
}

.single-room-meta-svg svg {
    width: 16px;
    height: 16px;
    display: block;
}

.single-room-meta-svg svg * {
    fill: currentColor;
    stroke: currentColor;
}

.single-room-meta-svg .bi {
    font-size: 16px;
    line-height: 1;
    display: block;
}

.single-room-description {
    color: #404952;
    font-size: .92rem;
    line-height: 1.85;
    margin-bottom: 30px;
}

.single-room-description p {
    margin: 0 0 16px;
}

.single-room-section-title {
    margin: 0 0 20px;
    color: #7a9561;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .95rem;
    font-weight: 700;
}

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

.single-room-amenity {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #3d4738;
    font-size: .76rem;
    line-height: 1.45;
}

.single-room-amenity-icon {
    width: 16px;
    height: 16px;
    border: 2px solid #7a9561;
    border-radius: 3px;
    display: inline-block;
    flex: 0 0 16px;
    margin-top: 2px;
    position: relative;
}

.single-room-amenity-icon::after {
    content: "";
    position: absolute;
    left: 3px;
    right: 3px;
    bottom: 3px;
    height: 2px;
    background: #7a9561;
}

.single-room-amenity-svg {
    width: 22px;
    height: 22px;
    color: #7a9561;
    display: inline-flex;
    flex: 0 0 22px;
    margin-top: 2px;
}

.single-room-amenity-svg svg {
    width: 22px;
    height: 22px;
    display: block;
}

.single-room-amenity-svg svg * {
    fill: currentColor;
    stroke: currentColor;
}

/* sidebar */
.single-room-booking-box {
    background: #e9e7e4;
    border-radius: 12px;
    padding: 24px 20px 20px;
}

.single-room-booking-title {
    margin: 0 0 18px;
    color: #7a9561;
    text-transform: uppercase;
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .04em;
}

.single-room-booking-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.single-room-booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.single-room-booking-field label {
    display: block;
    margin: 0 0 6px;
    color: #7a9561;
    text-transform: uppercase;
    font-size: .7rem;
    font-weight: 700;
}

.single-room-fake-input {
    min-height: 40px;
    border: 1.5px solid #7a9561;
    border-radius: 6px;
    background: #f4f3ef;
    color: #495159;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
}

.single-room-booking-btn {
    margin-top: 10px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #7a9561;
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .76rem;
    font-weight: 700;
}

.single-room-booking-btn:hover {
    color: #fff;
    opacity: .95;
}

/* gallery */
.single-room-gallery {
    background: #fff;
    padding: 24px 0 0;
}

.single-room-gallery .single-room-container {
    width: min(1440px, 94%);
}

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

.single-room-gallery-item {
    overflow: hidden;
}

.single-room-gallery-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.single-room-gallery-control {
    width: 46px;
    opacity: 1;
}

.single-room-gallery-arrow {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(230, 230, 230, .95);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
}

.carousel-control-prev.single-room-gallery-control {
    justify-content: flex-start;
    left: -16px;
}

.carousel-control-next.single-room-gallery-control {
    justify-content: flex-end;
    right: -16px;
}

/* mobile */
@media (max-width: 991px) {
    .single-room-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .single-room-main {
        max-width: none;
    }

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

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

    .single-room-gallery-item img {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .single-room-topbar {
        padding: 18px 16px 0;
    }

    .single-room-logo-link {
        width: 54px;
        height: 54px;
    }

    .single-room-logo {
        width: 34px;
        height: 34px;
    }

    .single-room-hero {
        min-height: 300px;
    }

    .single-room-content {
        padding: 34px 0 24px;
    }

    .single-room-amenities-grid {
        grid-template-columns: 1fr;
    }

    .single-room-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .single-room-gallery-item img {
        height: 220px;
    }
}

/* =========================
   HERO BLOG
   ========================= */

.hero-header--blog {
    height: auto;
    min-height: clamp(420px, 46vw, 760px);
}

.hero-header--blog .hero-header-content {
    position: relative;
    z-index: 3;
    height: auto;
    min-height: calc(100% - 152px);
    display: flex;
    align-items: flex-end;
    padding-top: clamp(28px, 4vw, 72px);
    padding-bottom: clamp(36px, 5vw, 72px);
}

.hero-header--blog .hero-header-content-inner {
    width: min(100%, 820px);
    max-width: 820px;
    margin-bottom: 0;
}

.hero-header--blog .hero-header-title {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 3.6vw, 56px);
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-wrap: balance;
    overflow-wrap: anywhere;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

/* =========================
   BLOG SINGLE
   ========================= */

.blog-single-section {
    background: #f3f2ed;
    padding: 42px 0 0;
}

.blog-single-container {
    width: min(1295px, 92%);
    margin: 0 auto;
}

.blog-single-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 64px;
    align-items: start;
}

.blog-single-content {
    min-width: 0;
}

.blog-single-entry {
    max-width: 760px;
    color: #3f4650;
    font-size: .98rem;
    line-height: 1.9;
}

.blog-single-entry p {
    margin: 0 0 18px;
}

.blog-single-entry h2,
.blog-single-entry h3,
.blog-single-entry h4 {
    color: #6f8c58;
    margin: 34px 0 16px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 500;
}

.blog-single-entry img {
    display: block;
    max-width: 100%;
    height: auto;
}

.blog-single-entry figure {
    margin: 26px 0;
}

.blog-single-entry .wp-block-gallery,
.blog-single-entry .gallery {
    margin: 28px 0;
}

/* sidebar */

.blog-single-sidebar {
    padding-top: 2px;
}

.blog-search-box {
    width: 100%;
}

.blog-search-box form {
    position: relative;
}

.blog-search-box label {
    display: block;
    margin: 0;
}

.blog-search-box .search-field {
    width: 100%;
    height: 44px;
    border: 1px solid #9da394;
    background: transparent;
    padding: 0 48px 0 14px;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #4b5563;
    outline: none;
}

.blog-search-box .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    font-size: 0;
    cursor: pointer;
}

.blog-search-box .search-submit::before {
    content: "⌕";
    font-size: 24px;
    color: #2f3640;
    line-height: 1;
}

/* =========================
   DESCUBRA MAIS
   ========================= */

.blog-more-section {
    margin-top: 56px;
    padding-top: 28px;
    border-top: 1px solid rgba(47, 54, 64, .35);
    padding-bottom: 64px;
}

.blog-more-title {
    margin: 0 0 18px;
    color: #6f8c58;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 1.1rem;
    font-weight: 700;
}

.blog-more-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 280px));
    gap: 18px 22px;
}

.blog-more-card {
    min-width: 0;
}

.blog-more-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-more-thumb-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
}

.blog-more-thumb {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-more-date-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 50px;
    background: #e7ebe1;
    color: #6f8c58;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-transform: uppercase;
    border-radius: 2px;
}

.blog-more-date-badge .month {
    font-size: .62rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.blog-more-date-badge .day {
    font-size: 1.4rem;
    font-weight: 700;
}

.blog-more-card-title {
    margin: 0 0 10px;
    color: #8aa072;
    font-size: 1.15rem;
    line-height: 1.25;
    text-transform: uppercase;
    font-weight: 400;
}

.blog-more-read {
    color: #6f8c58;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: .78rem;
    font-weight: 700;
}

.blog-more-link:hover .blog-more-read {
    text-decoration: underline;
}

/* =========================
   SEARCH FORM WORDPRESS
   ========================= */

.search-form {
    position: relative;
}

.search-form label {
    width: 100%;
}

/* =========================
   RESPONSIVO
   ========================= */

@media (max-width: 991px) {
    .blog-single-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-single-entry {
        max-width: none;
    }

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

@media (max-width: 575px) {
    .hero-header--blog {
        min-height: 360px;
    }

    .hero-header--blog .hero-header-content-inner {
        width: 100%;
    }

    .hero-header--blog .hero-header-title {
        font-size: clamp(1.8rem, 8vw, 2.3rem);
        letter-spacing: .04em;
    }

    .blog-more-grid {
        grid-template-columns: 1fr;
    }

    .blog-more-thumb {
        height: 240px;
    }
}

.blog-search-results {
    padding: 60px 0 80px;
    background: #f3f2ed;
}

.blog-search-results .container {
    width: min(1200px, 92%);
}

.blog-more-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 24px;
}

@media (max-width: 991px) {
    .blog-more-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .blog-more-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   HOME BLOG V2
   ========================= */

.home-blog-v2 {
    position: relative;
    padding: 72px 0 96px;
    background-color: #f3f2ed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.home-blog-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .52) 0%,
            rgba(0, 0, 0, .38) 26%,
            rgba(243, 242, 237, 0) 48%,
            rgba(243, 242, 237, 1) 48%);
    pointer-events: none;
}

.home-blog-v2-inner {
    position: relative;
    z-index: 2;
}

/* topo */
.home-blog-v2-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
    color: #fff;
}

.home-blog-v2-kicker {
    margin: 0 0 10px;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #f4f4f4;
}

.home-blog-v2-title {
    margin: 0 0 14px;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 300;
    color: #fff;
}

.home-blog-v2-text {
    max-width: 620px;
    margin: 0 auto 18px;
    font-size: .95rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .95);
}

.home-blog-v2-more-top {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .06em;
}

.home-blog-v2-more-top:hover {
    color: #fff;
    text-decoration: underline;
}

/* grid */
.home-blog-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    width: min(1100px, 92%);
    margin: 0 auto;
}

.home-blog-v2-card {
    min-width: 0;
}

.home-blog-v2-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.home-blog-v2-thumb-wrap {
    position: relative;
    overflow: hidden;
    background: #ddd;
}

.home-blog-v2-thumb {
    display: block;
    width: 100%;
    height: 310px;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.home-blog-v2-card:hover .home-blog-v2-thumb {
    transform: scale(1.06);
}

.home-blog-v2-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .72) 0%,
            rgba(0, 0, 0, .28) 36%,
            rgba(0, 0, 0, .02) 66%);
}

.home-blog-v2-card-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    color: #fff;
}

.home-blog-v2-card-title {
    margin: 0 0 8px;
    font-size: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 500;
    color: #fff;
}

.home-blog-v2-card-excerpt {
    margin: 0 0 10px;
    font-size: .84rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, .95);
}

.home-blog-v2-card-more {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #fff;
}

/* responsivo */
@media (max-width: 991px) {
    .home-blog-v2 {
        padding: 64px 0 80px;
    }

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

    .home-blog-v2-thumb {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .home-blog-v2 {
        padding: 52px 0 64px;
    }

    .home-blog-v2-title {
        font-size: 2rem;
        letter-spacing: .04em;
    }

    .home-blog-v2-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-blog-v2-thumb {
        height: 280px;
    }
}



/* =========================
   HERO BLOG LISTING
   ========================= */

.hero-header--blog-listing {
    height: 520px;
}

.hero-header--blog-listing .hero-header-content-inner {
    max-width: 560px;
    margin-bottom: 42px;
}

.hero-header--blog-listing .hero-header-subtitle {
    margin: 0 0 10px;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-header--blog-listing .hero-header-title {
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 300;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
}

/* =========================
   BLOG ARCHIVE
   ========================= */

.blog-archive-section {
    background: #f3f2ed;
    padding: 46px 0 80px;
}

.blog-archive-container {
    width: min(1240px, 92%);
    margin: 0 auto;
}

.blog-archive-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-archive-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #8ea377;
    background: transparent;
    min-height: 320px;
}

.blog-archive-card.is-reverse .blog-archive-card-media {
    order: 2;
}

.blog-archive-card.is-reverse .blog-archive-card-content {
    order: 1;
}

.blog-archive-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 320px;
}

.blog-archive-card-thumb {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.blog-archive-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 56px;
    height: 62px;
    background: #e9ece2;
    color: #6f8c58;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.blog-archive-card.is-reverse .blog-archive-date-badge {
    left: auto;
    right: 14px;
}

.blog-archive-date-badge .month {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.blog-archive-date-badge .day {
    font-size: 2rem;
    font-weight: 700;
}

.blog-archive-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 40px;
}

.blog-archive-card-title {
    margin: 0 0 20px;
    font-size: 2rem;
    line-height: 1.15;
    text-transform: uppercase;
    font-weight: 300;
    color: #89a06f;
}

.blog-archive-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-archive-card-excerpt {
    color: #3f4650;
    line-height: 1.9;
    font-size: .94rem;
    margin-bottom: 22px;
    max-width: 430px;
}

.blog-archive-card-more {
    display: inline-block;
    color: #6f8c58;
    text-transform: uppercase;
    text-decoration: none;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
}

.blog-archive-card-more:hover {
    text-decoration: underline;
}

/* paginação */
.blog-archive-pagination {
    margin-top: 28px;
    text-align: right;
}

.blog-archive-pagination .page-numbers {
    color: #6f8c58;
    text-decoration: none;
    margin-left: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .9rem;
}

.blog-archive-pagination .current {
    opacity: .75;
}

/* responsivo */
@media (max-width: 991px) {
    .blog-archive-card {
        grid-template-columns: 1fr;
    }

    .blog-archive-card.is-reverse .blog-archive-card-media,
    .blog-archive-card.is-reverse .blog-archive-card-content {
        order: initial;
    }

    .blog-archive-card-content {
        padding: 28px 24px;
    }

    .blog-archive-card-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 575px) {
    .hero-header--blog-listing {
        height: 360px;
    }

    .hero-header--blog-listing .hero-header-title {
        font-size: 2rem;
    }

    .blog-archive-card-media,
    .blog-archive-card-thumb {
        min-height: 240px;
    }

    .blog-archive-card-title {
        font-size: 1.45rem;
    }
}

/* ============================================================
   PAGE SOBRE — apenas o que o Bootstrap não cobre
   ============================================================ */

/* ── Kickers ── */
.about-section-kicker {
    color: #5f7b4a;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .85rem;
    margin-bottom: 10px;
}

/* ── Títulos principais ── */
.about-section-title {
    color: #5f7b4a;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 500;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.2;
    margin: 0 0 16px;
}

/* ── Texto corrido ── */
.about-section-text {
    color: #475569;
    line-height: 1.75;
    font-size: .97rem;
    margin: 0;
}

/* ── Imagem banner (bem-vindo) ── */
.about-welcome-image img {
    height: 520px;
    object-fit: cover;
}

/* ── Seção história 1: fundo levemente diferente ── */
.about-history1-section {
    background: #f3f2ed;
}

/* ── Mosaico de fotos (história 1) ── */
.about-history1-mosaic {
    display: flex;
    gap: 12px;
    height: 520px;
}

.ah1-img {
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
}

.ah1-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.ah1-img--tall {
    flex: 0 0 55%;
    height: 100%;
}

.ah1-img-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.ah1-img-col .ah1-img {
    flex: 1;
    width: 100%;
}

/* ── Faixa verde atrás do carrossel (história 2) ── */
.about-history2-carousel-wrap {
    position: relative;
    background: #5f7b4a;
    padding: 42px 0;
}

/* Reutiliza o mesmo sistema full-bleed do home-about */
.about-history2-carousel-wrap .home-gallery-carousel {
    --hg-bleed: clamp(160px, 16vw, 320px);
    position: relative;
    --vwfix: calc(100vw - (100vw - 100%));
    width: var(--vwfix);
    left: 50%;
    margin-left: calc(var(--vwfix) * -0.5);
    overflow: hidden;
}

/* Botões prev/next ficam brancos sobre o verde */
.about-history2-carousel-wrap .hg-btn {
    background: rgba(255, 255, 255, .92);
    border-color: rgba(255, 255, 255, .3);
    color: #2b2b2b;
}

.about-history2-carousel-wrap .hg-btn:hover {
    background: #fff;
}

/* ── Responsivo ── */
@media (max-width: 767.98px) {
    .about-welcome-image img {
        height: 260px;
    }

    .about-history1-mosaic {
        flex-direction: column;
        height: auto;
    }

    .ah1-img--tall {
        flex: none;
        height: 260px;
        width: 100%;
    }

    .ah1-img-col {
        flex-direction: row;
        height: 180px;
    }

    .ah1-img-col .ah1-img {
        flex: 1;
    }

    .about-history2-carousel-wrap {
        padding: 28px 0;
    }
}

.single-room-booking-box {
    width: 100%;
    overflow: hidden;
}

.pd-booking-widget {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.pd-booking-widget .hbe-bws,
.pd-booking-widget #hbe-bws-page,
.pd-booking-widget #hbe-bws-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

.single-room-sidebar .pd-booking-widget iframe,
.single-room-sidebar .pd-booking-widget input,
.single-room-sidebar .pd-booking-widget select,
.single-room-sidebar .pd-booking-widget button {
    max-width: 100%;
    box-sizing: border-box;
}

/* BOX */
.single-room-booking-box {
    background: #f4f4f1;
    padding: 28px;
    border-radius: 16px;
}

/* TÍTULO */
.single-room-booking-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #6c8b5a;
    margin-bottom: 20px;
    font-weight: 600;
}

/* FORM */
.single-room-booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* LABEL */
.single-room-booking-field label {
    font-size: 12px;
    color: #6c8b5a;
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

/* INPUTS GERAIS */
.single-room-booking-field input,
.single-room-booking-field select {
    width: 100%;
    height: 52px;
    border: 2px solid #6c8b5a;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 14px;
    background: #fff;
    outline: none;
}

/* DATE estilo mais bonito */
.custom-date {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}

/* REMOVE estilo feio do date */
.custom-date::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}

/* ROW (adultos/crianças) */
.single-room-booking-row {
    display: flex;
    gap: 10px;
}

.single-room-booking-row .single-room-booking-field {
    flex: 1;
}

/* BOTÃO */
.single-room-booking-btn {
    margin-top: 10px;
    height: 56px;
    border-radius: 10px;
    background: #6c8b5a;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: all 0.2s ease;
}

.single-room-booking-btn:hover {
    background: #5a744c;
}

/* =========================
   2026 improvements
   ========================= */

.hero-header-media--embed iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(100vw, 177.78vh);
    height: max(100vh, 56.25vw);
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.home-video-embed {
    width: min(96vw, 1280px);
    aspect-ratio: 16 / 9;
    max-height: 86vh;
}

.home-video-embed .ratio {
    width: 100%;
    height: 100%;
}

.home-video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
    display: block;
}

.hero-header--inner,
.hero-header--blog,
.hero-header--blog-listing,
.hero-header--contact {
    height: clamp(260px, 34vw, 430px);
    min-height: 0;
}

.hero-header--inner .hero-header-content,
.hero-header--blog .hero-header-content,
.hero-header--blog-listing .hero-header-content,
.hero-header--contact .hero-header-content {
    position: relative;
    z-index: 3;
    height: calc(100% - 152px);
    min-height: 0;
    display: flex;
    align-items: flex-end;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-header--inner .hero-header-content-inner,
.hero-header--blog .hero-header-content-inner,
.hero-header--blog-listing .hero-header-content-inner,
.hero-header--contact .hero-header-content-inner {
    width: min(100%, 600px);
    max-width: 600px;
    margin-bottom: 60px;
}

.hero-header--inner .hero-header-title,
.hero-header--blog .hero-header-title,
.hero-header--blog-listing .hero-header-title,
.hero-header--contact .hero-header-title {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 4.8vw, 3.05rem);
    font-weight: 400;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.14;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}

.hero-header--long-title {
    height: auto;
    min-height: clamp(560px, 38vw, 680px);
}

.hero-header--long-title .hero-header-content {
    height: auto;
    min-height: calc(100% - 152px);
    padding-top: 188px;
    padding-bottom: 64px;
}

.hero-header--long-title .hero-header-content-inner {
    width: min(100%, 620px);
    max-width: 620px;
    margin-bottom: 0;
}

.hero-header--long-title .hero-header-title {
    font-size: clamp(1.65rem, 2.35vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: .03em;
    overflow-wrap: anywhere;
}

.single-post .hero-header--blog .hero-header-title {
    font-size: clamp(1.55rem, 2.15vw, 2.05rem);
    line-height: 1.1;
    letter-spacing: .025em;
}

.single-post .hero-header--blog.hero-header--long-title .hero-header-title {
    font-size: clamp(1.35rem, 1.85vw, 1.8rem);
    line-height: 1.08;
    letter-spacing: .018em;
}

#homePeople {
    display: none;
}

.guest-picker {
    position: relative;
}

.guest-picker-toggle {
    width: 100%;
    min-height: 48px;
    border: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    background: #fff;
    color: #4c4c4c;
}

.guest-picker-toggle .bi {
    color: #fff;
    font-size: 26px;
}

.guest-picker-kicker {
    display: block;
    font-size: .72rem;
    line-height: 1;
    font-weight: 700;
}

.guest-picker-toggle strong {
    display: block;
    line-height: 1.15;
    color: #fff;
}

.guest-picker-panel {
    position: absolute;
    z-index: 20;
    top: calc(100% + 8px);
    left: 0;
    width: min(280px, 92vw);
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.guest-picker.is-open .guest-picker-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.guest-picker-row {
    display: grid;
    grid-template-columns: 1fr 34px 34px 34px;
    align-items: center;
    gap: 10px;
    color: #81776c;
    font-size: .92rem;
}

.guest-picker-row+.guest-picker-row {
    margin-top: 14px;
}

.guest-step {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 999px;
    background: #5f7b4a;
    color: #fff;
    line-height: 1;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.guest-step:disabled {
    opacity: .38;
    cursor: not-allowed;
}

.guest-picker-row strong {
    text-align: center;
    color: #81776c;
}

.home-bookbar-input {
    min-height: 58px;
}

.guest-picker-toggle {
    height: 58px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 10px;
    background: rgba(0, 0, 0, .08);
    color: #fff;
}

.guest-picker-toggle .bi,
.guest-picker-toggle strong {
    color: #fff;
}

.guest-picker-kicker {
    color: rgba(255, 255, 255, .86);
}

.guest-step {
    background: #5f7b4a;
}

.contact-info-item a {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.home-bookbar-action {
    padding-top: calc(.72rem * 1.2 + 6px);
}

.home-bookbar-btn {
    height: 58px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .home-bookbar-action {
        padding-top: 0;
    }
}

@media (max-width: 991px) {
    .hero-header--home .hero-header-media {
        display: block;
    }

    .hero-header--home .hero-header-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-header--home .hero-header-media--embed iframe {
        display: block;
        width: max(100vw, 177.78vh);
        height: max(100vh, 56.25vw);
    }
}

@media (max-width: 767px) {
    .hero-header--home {
        min-height: 620px;
    }
}

@media (prefers-reduced-motion: reduce) and (max-width: 991px) {
    .hero-header--home .hero-header-media {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-header-top {
        grid-template-columns: 44px minmax(86px, 1fr) auto;
        column-gap: 12px;
    }

    .hero-header-top-left {
        min-height: 96px;
    }

    .hero-header-logo-wrap {
        justify-self: center;
        width: clamp(82px, 24vw, 104px);
        max-width: clamp(82px, 24vw, 104px);
    }

    .hero-header-logo-wrap .custom-logo {
        max-width: clamp(82px, 24vw, 104px);
    }

    .hero-header-cta {
        max-width: 132px;
        min-height: 32px;
        padding: 0 12px;
        font-size: .62rem;
        line-height: 1.05;
        white-space: normal;
    }
}

@media (max-width: 390px) {
    .hero-header-top {
        grid-template-columns: 40px minmax(76px, 1fr) 118px;
        column-gap: 8px;
    }

    .hero-header-logo-wrap {
        width: 78px;
        max-width: 78px;
    }

    .hero-header-logo-wrap .custom-logo {
        max-width: 78px;
    }

    .hero-header-cta {
        width: 118px;
        max-width: 118px;
        padding: 0 9px;
        font-size: .58rem;
    }
}

@media (max-width: 575px) {
    .hero-header-top {
        grid-template-columns: 44px 1fr;
        grid-template-areas: "menu cta";
        column-gap: 10px;
        row-gap: 0;
        align-items: center;
        position: relative;
    }

    .hero-header-top-left {
        grid-area: menu;
        min-height: 0;
        align-items: center;
        padding-top: 18px;
    }

    .hero-header-top-center {
        position: absolute;
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        justify-content: center;
        pointer-events: none;
    }

    .hero-header-top-right {
        grid-area: cta;
        justify-content: flex-end;
        padding-left: 0;
        padding-top: 18px;
        z-index: 3;
    }

    .hero-header-cta {
        width: 132px;
        max-width: 132px;
        min-height: 34px;
        padding: 0 10px;
        font-size: .6rem;
        line-height: 1.05;
        white-space: normal;
    }
}

.site-footer {
    background: #5f7b4a;
    color: #fff;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    padding: 42px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.footer-map-wrap {
    min-height: 260px;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(255, 255, 255, .1);
}

.footer-map {
    width: 100%;
    height: 100%;
    min-height: 260px;
    border: 0;
    display: block;
}

.footer-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, .22);
    padding-left: 28px;
}

.footer-social-title {
    margin-top: 28px;
}

.footer-social-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom {
    padding: 22px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, .22);
    opacity: 1;
}

.footer-legal {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    text-align: center;
    font-size: .88rem;
    font-weight: 500;
}

.footer-privacy-link {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-privacy-link:hover {
    color: #fff;
    opacity: .85;
}

.cmplz-manage-consent,
.cmplz-show-banner,
button.cmplz-manage-consent,
button.cmplz-show-banner,
.cc-revoke {
    display: none !important;
}

/* Page default */
.hero-header--page {
    height: clamp(360px, 32vw, 500px);
}

.hero-header--page .hero-header-content {
    height: calc(100% - 120px);
    align-items: flex-end;
    padding-bottom: 72px;
}

.hero-header--page .hero-header-content-inner {
    width: min(100%, 760px);
    max-width: 760px;
    margin-bottom: 0;
}

.hero-header--page .hero-header-title {
    font-size: clamp(2rem, 4.1vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: .08em;
}

.site-page-section {
    background: #f4f3ee;
    padding: clamp(56px, 7vw, 96px) 0;
}

.site-page-container {
    width: min(100% - 32px, 1120px);
    margin: 0 auto;
}

.site-page-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(33, 37, 41, .08);
    padding: clamp(28px, 5vw, 70px);
    color: #212529;
    font-size: 1.02rem;
    line-height: 1.8;
}

.site-page-section--privacy .site-page-content {
    max-width: 980px;
    margin: 0 auto;
}

.site-page-content h1,
.site-page-content h2,
.site-page-content h3,
.site-page-content h4 {
    color: #2f3844;
    line-height: 1.2;
    letter-spacing: 0;
}

.site-page-content h1 {
    margin-bottom: 24px;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.site-page-content h2 {
    margin: 36px 0 18px;
    font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.site-page-content h3 {
    margin: 30px 0 14px;
    font-size: 1.18rem;
}

.site-page-content p,
.site-page-content ul,
.site-page-content ol {
    margin-bottom: 18px;
}

.site-page-content ul,
.site-page-content ol {
    padding-left: 1.35rem;
}

.site-page-content a {
    color: #5f7b4a;
    font-weight: 700;
}

.contact-page-section {
    background: #f3f2ed;
    padding: 52px 0 64px;
}

.contact-page-container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 42px;
    align-items: start;
}

.contact-form-panel,
.contact-info-panel {
    background: #fff;
    border-radius: 6px;
    padding: 28px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, .06);
}

.contact-form-panel .wpcf7 {
    color: #263528;
}

.contact-form-panel .wpcf7-form {
    display: grid;
    gap: 18px;
}

.contact-form-panel .wpcf7-form p {
    margin: 0;
}

.contact-form-panel .wpcf7 label {
    display: grid;
    gap: 8px;
    color: #5f7b4a;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-form-panel .wpcf7-form-control-wrap {
    display: block;
}

.contact-form-panel .wpcf7 input[type="text"],
.contact-form-panel .wpcf7 input[type="email"],
.contact-form-panel .wpcf7 input[type="tel"],
.contact-form-panel .wpcf7 input[type="url"],
.contact-form-panel .wpcf7 input[type="number"],
.contact-form-panel .wpcf7 select,
.contact-form-panel .wpcf7 textarea {
    width: 100%;
    border: 1px solid rgba(95, 123, 74, .24);
    border-radius: 6px;
    background: #f8f8f4;
    color: #263528;
    font: inherit;
    font-size: .98rem;
    letter-spacing: 0;
    text-transform: none;
    padding: 13px 14px;
    outline: 0;
    transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.contact-form-panel .wpcf7 textarea {
    min-height: 170px;
    resize: vertical;
}

.contact-form-panel .wpcf7 input:focus,
.contact-form-panel .wpcf7 select:focus,
.contact-form-panel .wpcf7 textarea:focus {
    border-color: #5f7b4a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(95, 123, 74, .12);
}

.contact-form-panel .wpcf7-submit {
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    background: #5f7b4a;
    color: #fff;
    padding: 0 28px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.contact-form-panel .wpcf7-submit:hover,
.contact-form-panel .wpcf7-submit:focus {
    background: #4f6b3d;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .14);
    transform: translateY(-1px);
}

.contact-form-panel .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #9f2f2f;
    font-size: .82rem;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 500;
}

.contact-form-panel .wpcf7-response-output {
    margin: 4px 0 0;
    border-radius: 6px;
    padding: 12px 14px;
    font-size: .92rem;
}

.contact-form-panel .wpcf7-spinner {
    margin-left: 12px;
}

.contact-info-item+.contact-info-item {
    margin-top: 24px;
}

.contact-info-label {
    display: block;
    margin-bottom: 8px;
    color: #5f7b4a;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-info-item p {
    margin: 0;
    color: #3f4650;
    line-height: 1.65;
}

.contact-info-item a,
.contact-social-list a {
    color: #3f4650;
    text-decoration: none;
}

.contact-social-list {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.contact-social-list .bi {
    font-size: 24px;
}

.contact-map-wrap {
    margin-top: 42px;
    height: clamp(300px, 36vw, 460px);
    overflow: hidden;
    border-radius: 6px;
}

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

.contact-empty-form {
    color: #6b7280;
}

@media (max-width: 900px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .hero-header--inner,
    .hero-header--blog,
    .hero-header--blog-listing,
    .hero-header--contact,
    .hero-header--page {
        height: auto;
        min-height: clamp(340px, 92vw, 420px);
    }

    .hero-header--inner .hero-header-content,
    .hero-header--blog .hero-header-content,
    .hero-header--blog-listing .hero-header-content,
    .hero-header--contact .hero-header-content,
    .hero-header--page .hero-header-content {
        height: auto;
        min-height: clamp(218px, 58vw, 268px);
        padding-top: 82px;
        padding-bottom: 30px;
    }

    .hero-header--inner .hero-header-content-inner,
    .hero-header--blog .hero-header-content-inner,
    .hero-header--blog-listing .hero-header-content-inner,
    .hero-header--contact .hero-header-content-inner,
    .hero-header--page .hero-header-content-inner {
        width: min(100%, 92vw);
        max-width: 92vw;
        margin-bottom: 0;
    }

    .hero-header--inner .hero-header-title,
    .hero-header--blog .hero-header-title,
    .hero-header--blog-listing .hero-header-title,
    .hero-header--contact .hero-header-title,
    .hero-header--page .hero-header-title,
    .hero-header--long-title .hero-header-title {
        font-size: clamp(1.45rem, 8vw, 2.15rem);
        line-height: 1.12;
        letter-spacing: .025em;
        overflow-wrap: anywhere;
        word-break: normal;
        hyphens: auto;
    }

    .site-page-section {
        padding: 36px 0 52px;
    }

    .site-page-container {
        width: min(100% - 24px, 1120px);
    }

    .site-page-content {
        padding: 24px 20px;
        font-size: .96rem;
        line-height: 1.72;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding-inline: 16px;
    }

    .footer-info-panel {
        border-left: 0;
        padding-left: 0;
    }
}

/* Single post hero alignment */
.single-post .hero-header--blog {
    height: clamp(260px, 34vw, 430px);
    min-height: 0;
}

.single-post .hero-header--blog .hero-header-content {
    height: calc(100% - 152px);
    min-height: 0;
    align-items: flex-end;
    padding-top: 0;
    padding-bottom: 0;
}

.single-post .hero-header--blog .hero-header-content-inner {
    width: min(100%, 620px);
    max-width: 620px;
    margin-bottom: clamp(40px, 5vw, 70px);
}

.single-post .hero-header--blog .hero-header-title {
    margin: 0;
    font-size: clamp(1.75rem, 2.15vw, 2.55rem);
    line-height: 1.12;
    letter-spacing: .055em;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.single-post .hero-header--blog.hero-header--long-title {
    height: clamp(260px, 34vw, 430px);
    min-height: 0;
}

.single-post .hero-header--blog.hero-header--long-title .hero-header-content {
    height: calc(100% - 152px);
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.single-post .hero-header--blog.hero-header--long-title .hero-header-content-inner {
    width: min(100%, 640px);
    max-width: 640px;
    margin-bottom: clamp(36px, 4vw, 60px);
}

.single-post .hero-header--blog.hero-header--long-title .hero-header-title {
    font-size: clamp(1.45rem, 1.75vw, 2.05rem);
    line-height: 1.08;
    letter-spacing: .035em;
}

@media (max-width: 767px) {
    .single-post .hero-header--blog,
    .single-post .hero-header--blog.hero-header--long-title {
        height: auto;
        min-height: 560px;
    }

    .single-post .hero-header--blog .hero-header-content,
    .single-post .hero-header--blog.hero-header--long-title .hero-header-content {
        height: calc(100% - 152px);
        min-height: 0;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .single-post .hero-header--blog .hero-header-content-inner,
    .single-post .hero-header--blog.hero-header--long-title .hero-header-content-inner {
        width: min(100%, 92vw);
        max-width: 92vw;
        margin-bottom: 0;
    }

    .single-post .hero-header--blog .hero-header-title,
    .single-post .hero-header--blog.hero-header--long-title .hero-header-title {
        font-size: clamp(1.45rem, 7.2vw, 2.05rem);
        line-height: 1.1;
        letter-spacing: .03em;
    }
}
