/* :root {
        --green: #173d2c;
        --green-dark: #123225;
        --gold: #a47d2f;
        --cream: #f4f0df;
        --cream-light: #faf8f0;
        --text: #1d2722;
        --muted: #536057;
        --border: #e7e2d4;
        --white: #ffffff;
    } */


@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/inter/inter-latin-400-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/inter/inter-latin-500-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/inter/inter-latin-600-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/inter/inter-latin-700-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Inter";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("../fonts/inter/inter-latin-800-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Fraunces";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("../fonts/fraunces/fraunces-latin-500-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Fraunces";
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url("../fonts/fraunces/fraunces-latin-600-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Fraunces";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/fraunces/fraunces-latin-700-normal.woff2") format("woff2");
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #1c1a17;
    background-color: #f6f1e9;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: #152a17;
    text-decoration: none;
    transition-property: color;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: #45311e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-weight: 600;
    line-height: 1.15;
    color: #1c1a17;
    margin: 0 0 .6em;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: #152a17;
    color: #fff;
    padding: .75rem 1.25rem;
    border-radius: 8px;
    z-index: 10000;
    transition-property: top;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.skip-link:focus {
    top: 1rem;
    color: #fff;
}

:focus-visible {
    outline: 3px solid rgba(69, 49, 30, .45);
    outline-offset: 2px;
}

.container-xl {
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: 1.25rem;
}

.contact-form-card .field {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.contact-form-card .fields {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px -10px;
}

.contact-form-card .field.full {
    width: 100%;
}

.contact-form-card .field br {
    display: none;
}

.contact-form-card .fields textarea {
    height: 100px;
}

.wpcf7 form .wpcf7-response-output {
    text-align: center;
}

@media(min-width: 992px) {
    .container-xl {
        padding-inline: 2rem;
    }
}

.section-padding {
    padding-block: clamp(3.5rem, 7vw, 7rem);
}

.section-padding--muted {
    background-color: #efe6d8;
}

.eyebrow {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #45311e;
    display: inline-block;
    margin-bottom: .75rem;
}

.eyebrow--light {
    color: rgba(255, 255, 255, .85);
}

.section-title {
    font-size: clamp(1.9rem, 3.2vw, 2.75rem);
    max-width: 720px;
}

.section-title--sm {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.section-heading {
    max-width: 640px;
    margin-bottom: 2.75rem;
}

.prose {
    max-width: 780px;
}

.prose p {
    margin-bottom: 1.25em;
}

.prose h2,
.prose h3 {
    margin-top: 1.75em;
}

.prose ul,
.prose ol {
    margin-bottom: 1.25em;
    padding-left: 1.4em;
}

.prose a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: grid;
    gap: .65rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-weight: 500;
}

.feature-list i {
    color: #45311e;
    /*     margin-top: .2em; */
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: #6f7570;
}

.mt-5 {
    margin-top: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    font-size: .9375rem;
    padding: .7rem 1.4rem .7rem 1.4rem;
    border-radius: 999px;
    border: 1.5px solid rgba(0, 0, 0, 0);
    cursor: pointer;
    transition-property: transform, background-color, color, box-shadow, border-color;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
}

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

.btn-lg {
    padding: 1.05rem 2.25rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-primary-custom,
.btn-cta {
    background: #45311e;
    color: #fff;
    box-shadow: 0 2px 8px rgba(28, 33, 29, .06);
}

.btn-primary-custom:hover,
.btn-primary-custom:focus-visible,
.btn-cta:hover,
.btn-cta:focus-visible {
    background: #2f2114;
    color: #fff;
    box-shadow: 0 12px 32px rgba(28, 33, 29, .1);
}

.btn-outline-custom {
    background: rgba(0, 0, 0, 0);
    color: #152a17;
    border-color: #152a17;
}

.btn-outline-custom:hover,
.btn-outline-custom:focus-visible {
    background: #152a17;
    color: #fff;
}

.btn-outline-light {
    background: rgba(0, 0, 0, 0);
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible {
    background: #fff;
    color: #0d1a0f;
}

.btn-cta--block {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
}

.breadcrumbs {
    margin-top: 1rem;
}

.breadcrumbs__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    padding: 0;
    margin: 0;
    font-size: .875rem;
}

.breadcrumbs__item {
    color: rgba(255, 255, 255, .75);
}

.breadcrumbs__item:not(:last-child)::after {
    content: "/";
    margin-left: .4rem;
    opacity: .6;
}

.breadcrumbs__item a {
    color: rgba(255, 255, 255, .9);
}

.breadcrumbs__item--current {
    color: #fff;
    font-weight: 600;
}

.site-header {
    position: absolute;
    inset-inline: 0;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0);
    transition-property: background-color, box-shadow, padding;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
}

.site-header__logo img,
.site-footer__logo img {
    max-width: 90px;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header__logo-img--dark {
    display: none;
}

.site-header__logo-text {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    transition-property: color;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.site-header__phone {
    display: none;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    transition: all .3s;
}

.site-header__phone:hover {
    color: #fff;
    opacity: 0.7;
}

@media(min-width: 1200px) {
    .site-header__phone {
        display: inline-flex;
    }
}

.site-header.is-sticky {
    position: fixed;
    background-color: rgba(255, 253, 249, .97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(28, 33, 29, .06);
}

.site-header.is-sticky .site-header__inner {
    height: 74px;
}

.site-header.is-sticky .site-header__logo-text,
.site-header.is-sticky .nav-menu__link,
.site-header.is-sticky .site-header__phone {
    color: #1c1a17 !important;
}

.site-header.is-sticky .mobile-toggle__bar {
    background-color: #1c1a17;
}

body.admin-bar .site-header.is-sticky {
    top: 32px;
}

.nav-menu {
    display: none;
}

@media(min-width: 992px) {
    .nav-menu {
        display: block;
    }
}

.nav-menu__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu__item {
    position: relative;
}

.nav-menu__link {
    display: inline-block;
    padding: .5rem 0;
    font-weight: 600;
    font-size: .9375rem;
    color: #fff !important;
    position: relative;
    transition-property: color;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    transition-property: width;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu__link:hover::after {
    width: 100%;
}

.nav-menu__item.is-active .nav-menu__link {
    color: #45311e;
}

.nav-menu__item.is-active .nav-menu__link::after {
    width: 100%;
}

.mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0);
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu .nav-menu__list,
.mobile-menu__list {
    gap: 0;
}

.mobile-menu .nav-menu__link {
    padding: 10px 0;
}

@media(min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-toggle__bar {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition-property: transform, opacity, background-color;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-toggle[aria-expanded=true] .mobile-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle[aria-expanded=true] .mobile-toggle__bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle[aria-expanded=true] .mobile-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    right: 0;
    background: #fffdf9;
    padding: 40px 20px;
    position: fixed;
    top: 0;
    height: 100vh;
    z-index: 2;
    left: 0;
    max-width: 394px;
    width: 100%;
    overflow: auto;
    transform: translateX(-100%);
    transition: all 0.6s;
    height: 100vh;
    top: 0;
}

.rv-map-section {
    background: #e7e0ce;
    padding: 80px 0;
}

.rv-map-section .rv-map-content {
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.rv-map-section .rv-map-image {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

@media(min-width: 992px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-menu.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu__list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    gap: .25rem;
}

.mobile-menu .nav-menu__list,
.mobile-menu__list {
    flex-direction: column;
    align-items: flex-start;
}

.mobile-menu .nav-menu__link {
    color: #1c1a17;
    font-size: 1.15rem;
    padding: .75rem 0;
}

.mobile-menu .nav-menu__item {
    width: 100%;
    border-bottom: 1px solid #d9d4c9;
}

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

.hero {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    color: #fff;
    background-color: #0d1a0f;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 92px;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 49, 42, 0.55) 0%, rgba(26, 49, 42, 0.72) 60%, rgba(26, 49, 42, 0.92) 100%);
}

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

.hero__content {
    max-width: 720px;
    padding-block: 3rem;
}

.hero__title {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    color: #fff;
    margin-bottom: .5em;
}

.hero__subtitle {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: rgba(255, 255, 255, .9);
    max-width: 570px;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-bottom: 2.5rem;
}

.hero__video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.hero__video video.hero__video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


:root {
    --white: #ffffff;
}

.order-popup {
    max-width: 800px;
    position: relative;
    margin: 50px auto;
}

.popup-body {
    border-radius: 22px;
    background: #45311e;
    box-shadow: 0 8px 15px 0 rgba(149, 157, 165, 0.10);
    overflow: hidden;
    padding: 50px 30px 40px 30px;
}

.order-popup h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.order-form-box h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.order-form-box p {
    color: var(--white);
    margin-bottom: 0;
}

.order-form-box .input-field input {
    height: 50px;
}

.order-form-box .input-row {
    margin-top: 20px;
    margin-bottom: 0;
}

.order-form-box .input-row .input-field {
    margin-bottom: 20px;
}

.order-form-box .input-row .wpcf7-checkbox .wpcf7-list-item {
    width: calc(33.33% - 10px);
    margin: 0;
}

.order-form-box .input-row .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.order-form-box .input-row .wpcf7-checkbox .wpcf7-list-item label {
    display: flex;
    align-items: flex-start;
    color: var(--white);
    cursor: pointer;
    font-weight: 500;
}

.order-form-box .input-row .input-field input[type="checkbox"] {
    height: auto;
    width: 20px;
    height: 20px;
}

.popup-body button.mfp-close {
    position: absolute;
    right: 30px;
    top: 30px;
    width: auto;
    height: auto;
}

.popup-body button.mfp-close svg {
    display: block;
}

.order-form-box .input-row .input-field.full-width.d-flex {
    margin-bottom: 0;
}

.order-popup .field br {
    display: none;
}

.contact-form-card a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
}

.privacy-policy-checkbox span.wpcf7-list-item {
    margin: 0;
}

/*  Park Map css*/
.rules-regulations-main {
    background-color: #e7e0ce;
    padding-top: 50px;
}

.rules-regulations-wrapper {
    text-align: center;
}

.sticky-btn {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.sticky-btn .btn {
    display: block;
    transform: rotate(-90deg) translateX(-100%);
    transform-origin: top left;
    border-radius: 0;
    padding: .5rem 1.4rem .8rem 1.4rem;
    font-size: 14px;
}

.sidebar-overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left: 0;
    top: 0;
    width: 0;
    height: 100vh;
    display: inline-block;
    background-color: rgb(12 13 14 / 50%);
    z-index: 1;
    transition: all 0.8s;
}

.mobile-menu-open .sidebar-overlay {
    opacity: 1;
    visibility: visible;
    width: 100vw;
    display: block;
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 1199px) {
    .sticky-btn a.btn {
        width: auto;
        padding: 10px 15px;
    }

    .about-content-main figure {
        height: auto;
        padding-bottom: 56%;
    }
   body  .about-content-main h2 {
    font-size: 30px;
    max-width: 100%;
}
}

@media only screen and (max-width: 767px) {
    .sticky-btn a.btn {
        width: auto;
        font-size: 12px;
        padding: 8px 12px;
    }

    .mobile-menu {
        max-width: 290px;
    }
    .about-content .container-xl {
    padding: 0;
}

body .about-content-main h2 {
    font-size: 24px;
    line-height: normal;
}

h3.why-pecan-grove-title {
    font-size: 18px;
    margin-bottom: 0;
    line-height: normal;
}

.about-content-main aside {border-radius: 12px;padding: 15px;}

.about-content-main aside svg {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
}
}

@media(min-width: 768px) {
    .hero__stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero__stat {
    border-left: 2px solid rgba(201, 154, 60, .7);
    padding-left: 1rem;
}

.hero__stat-number {
    display: block;
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 2.6vw, 2.5rem);
    font-weight: 600;
    color: #c99a3c;
}

.hero__stat-label {
    font-size: .8125rem;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .85);
}

.hero__scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.4rem;
    animation: wanderhaven-bounce 2.2s ease-in-out infinite;
    z-index: 1;
}

@media(max-width: 767px) {
    .hero__scroll-cue {
        display: none;
    }
}

@keyframes wanderhaven-bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 8px);
    }
}

.about-preview__media img,
.about-content__media img {
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(28, 33, 29, .1);
    aspect-ratio: 4/3;
    object-fit: cover;
    transition-property: transform;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.about-preview__copy {
    max-width: 560px;
    color: #6f7570;
}

.amenities-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

@media(min-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.amenities-grid__item {
    background: #fffdf9;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(28, 33, 29, .1);
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.25rem;
    font-weight: 600;
    font-size: .9375rem;
    transition-property: transform, box-shadow;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: center;
}

.amenities-grid__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(28, 33, 29, .16);
}

.amenities-grid__item i {
    color: #45311e;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.page-banner {
    position: relative;
    padding: calc(92px + 2.5rem) 0 4rem;
    color: #fff;
    background-color: #0d1a0f;
    background-image: var(--banner-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(26, 49, 42, 0.88), rgba(28, 33, 29, 0.72));
}

.page-banner .container-xl {
    position: relative;
    z-index: 1;
}

.page-banner__title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: .4em;
}

.page-banner__subtitle {
    max-width: 560px;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 0;
}

.gallery-preview__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media(min-width: 768px) {
    .gallery-preview__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width: 992px) {
    .gallery-preview__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.gallery-preview__item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 1/1;
}

.gallery-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-property: transform;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media(min-width: 768px) {
    .gallery-preview__item--wide {
        grid-column: span 2;
        aspect-ratio: 2/1;
    }
}

.gallery-preview__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(28, 33, 29, .35);
    opacity: 0;
    color: #fff;
    font-size: 1.5rem;
    transition-property: opacity;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-preview__item:hover .gallery-preview__overlay,
.gallery-full__item:hover .gallery-full__overlay {
    opacity: 1;
}

.gallery-full__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media(min-width: 576px) {
    .gallery-full__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width: 992px) {
    .gallery-full__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.gallery-full__item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 1/1;
}

.gallery-full__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition-property: transform;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-full__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    text-align: center;
    padding: 1rem;
    background: rgba(28, 33, 29, .4);
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition-property: opacity;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-full__caption {
    font-size: .8rem;
    font-weight: 500;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 18, 15, .94);
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__image {
    max-width: min(1100px, 92vw);
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(28, 33, 29, .16);
}

.lightbox__caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .85);
    font-size: .9rem;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition-property: background-color, transform;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: rgba(255, 255, 255, .2);
}

.lightbox__close {
    top: 1.5rem;
    right: 1.5rem;
}

.lightbox__prev {
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__next {
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.cta-band {
    position: relative;
    padding-block: clamp(3.5rem, 8vw, 6.5rem);
    background-color: #0d1a0f;
    background-image: var(--cta-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    background-attachment: fixed;
}

.cta-band__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 49, 42, 0.82), rgba(26, 49, 42, 0.9));
}

.cta-band .container-xl {
    position: relative;
    z-index: 1;
}

.cta-band__content {
    max-width: 640px;
    margin-inline: auto;
}

.cta-band__heading {
    color: #fff;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
}

.cta-band__text {
    color: rgba(255, 255, 255, .88);
    margin-bottom: 2rem;
}

.contact-info-card {
    background: #fffdf9;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(28, 33, 29, .1);
    padding: 2.25rem;
    height: 100%;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0;
    display: grid;
    gap: 1.5rem;
}

.contact-info-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-list i,
.contact-info-list i,
.contact-info-list .business-hours-img {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 42, 23, .08);
    color: #152a17;
    border-radius: 50%;
}

.contact-info-list .business-hours-img img {
    width: 18px;
}

.contact-info-list strong {
    display: block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6f7570;
    margin-bottom: .2rem;
}

.contact-info-list a {
    word-break: break-all;
}

/* .business-hours {
    border-top: 1px solid #d9d4c9;
    padding-top: 1.5rem;
}

.business-hours h3 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.business-hours h3 i {
    color: #45311e;
}

.business-hours__table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9375rem;
}

.business-hours__table td {
    padding: .4rem 0;
    border-bottom: 1px dashed #d9d4c9;
}

.business-hours__table td:last-child {
    text-align: right;
    font-weight: 600;
} */

.contact-form-card {
    background: #fffdf9;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(28, 33, 29, .1);
    padding: 2.25rem;
}

.contact-map {
    margin-top: 3.5rem;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(28, 33, 29, .1);
    line-height: 0;
}

.wanderhaven-form {
    display: grid;
    gap: 1.25rem;
}

.wanderhaven-form p {
    margin: 0;
}

.wanderhaven-form label {
    display: block;
    font-weight: 600;
    font-size: .875rem;
    margin-bottom: .4rem;
}

.wanderhaven-form input[type=text],
.wanderhaven-form input[type=email],
.wanderhaven-form input[type=tel],
.wanderhaven-form input[type=date],
.wanderhaven-form input[type=number],
.wanderhaven-form textarea,
.wanderhaven-form select {
    width: 100%;
    border: 1.5px solid #d9d4c9;
    border-radius: 8px;
    padding: .8rem 1rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .9375rem;
    background: #fff;
    transition-property: border-color, box-shadow;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.wanderhaven-form input[type=text]:focus,
.wanderhaven-form input[type=email]:focus,
.wanderhaven-form input[type=tel]:focus,
.wanderhaven-form input[type=date]:focus,
.wanderhaven-form input[type=number]:focus,
.wanderhaven-form textarea:focus,
.wanderhaven-form select:focus {
    border-color: #152a17;
    box-shadow: 0 0 0 3px rgba(21, 42, 23, .12);
    outline: none;
}

.wanderhaven-form textarea {
    min-height: 140px;
    resize: vertical;
}

.wanderhaven-form input[type=submit] {
    justify-self: start;
    background: #45311e;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: .9rem 2.25rem;
    font-weight: 600;
    cursor: pointer;
    transition-property: background-color, transform;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.wanderhaven-form input[type=submit]:hover {
    background: #2f2114;
    transform: translateY(-2px);
}

.wanderhaven-form .wpcf7-not-valid-tip {
    color: #b3261e;
    font-size: .8rem;
    margin-top: .35rem;
}

.wanderhaven-form .wpcf7-response-output {
    border-radius: 8px;
    margin-top: 1.25rem !important;
}

.site-footer {
    background: #0d1a0f;
    color: rgba(255, 255, 255, .85);
    padding-top: clamp(3rem, 6vw, 5rem);
}

.site-footer__grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.site-main {
    overflow: hidden;
}

@media(min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

@media(min-width: 992px) {
    .site-footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

.site-footer__logo-text {
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    color: #fff;
}

.site-footer__desc {
    margin: 1.25rem 0;
    max-width: 320px;
    color: rgba(255, 255, 255, .72);
}

.site-footer__socials {
    display: flex;
    gap: .75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition-property: background-color, transform;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer__socials a:hover {
    background: #45311e;
    transform: translateY(-3px);
    color: #fff;
}

.site-footer__heading {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .7rem;
}

.site-footer__links a {
    color: rgba(255, 255, 255, .75);
}

.site-footer__links a:hover {
    color: #45311e;
}

.site-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.site-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
}

.site-footer__contact i {
    color: #ffffff;
    margin-right: 8px;
}

.site-footer__contact a {
    color: rgba(255, 255, 255, .85);
}

.site-footer__links a,
.site-footer__contact a,
.site-footer__legal a {
    transition: all .3s;
}

.site-footer__links a:hover,
.site-footer__contact a:hover,
.site-footer__legal a:hover {
    opacity: 0.7;
    color: #fff !important;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 1.5rem;
    font-size: .8125rem;
    color: rgba(255, 255, 255, .6);
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__legal a {
    color: rgba(255, 255, 255, .75);
}

.footer-widget__title {
    color: #fff;
}

.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-block: 6rem;
    background: linear-gradient(180deg, #f6f1e9 0%, #efe6d8 100%);
    text-align: center;
}

.error-404__content {
    max-width: 560px;
    margin-inline: auto;
}

.error-404__code {
    display: block;
    font-family: "Fraunces", Georgia, "Times New Roman", serif;
    font-size: clamp(4.5rem, 12vw, 8rem);
    font-weight: 700;
    color: #45311e;
    line-height: 1;
    margin-bottom: .5rem;
}

.error-404__title {
    margin-bottom: .75rem;
}

.error-404__text {
    color: #6f7570;
    margin-bottom: 2rem;
}

.error-404__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.error-404__search {
    display: flex;
    max-width: 380px;
    margin-inline: auto;
    border: 1.5px solid #d9d4c9;
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

.error-404__search input {
    flex: 1;
    border: none;
    padding: .85rem 1.25rem;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: rgba(0, 0, 0, 0);
}

.error-404__search input:focus {
    outline: none;
}

.error-404__search button {
    border: none;
    background: #152a17;
    color: #fff;
    padding: 0 1.25rem;
    cursor: pointer;
    transition-property: background-color;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.error-404__search button:hover {
    background: #0d1a0f;
}

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(0.4, 0, 0.2, 1), transform .6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate=fade-right] {
    transform: translateX(-28px);
}

[data-animate=fade-left] {
    transform: translateX(28px);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

@media(prefers-reduced-motion: reduce) {
    [data-animate] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    html {
        scroll-behavior: auto;
    }
}

.card-hover {
    transition-property: transform, box-shadow;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(28, 33, 29, .16);
}

.back-to-top {
    position: fixed;
    right: 1.3rem;
    bottom: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #152a17;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition-property: opacity, visibility, transform, background-color;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #45311e;
}

.blog-card {
    background: #fffdf9;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(28, 33, 29, .1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card__media img {
    aspect-ratio: 4/3;
    object-fit: cover;
}

.blog-card__body {
    padding: 1.5rem;
}

.blog-card__title {
    font-size: 1.15rem;
    margin-bottom: .6rem;
}

.blog-card__excerpt {
    color: #6f7570;
    font-size: .9375rem;
    margin-bottom: 1rem;
}

.blog-card__link {
    font-weight: 600;
}

.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0 .25rem;
    border-radius: 50%;
    font-weight: 600;
    color: #1c1a17;
}

.pagination-wrap .page-numbers.current {
    background: #152a17;
    color: #fff;
}

.legal-content .prose {
    margin-inline: auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 56px;
}

.pricing-eyebrow {
    display: block;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #a1a1aa;
    text-transform: uppercase;
    margin-bottom: 16px;
}


.pricing-header h2.section-title {
    margin: 0 auto;
    max-width: 100%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    background: rgb(69 49 30);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(69, 49, 30, 0.35);
    margin-bottom: 20px;
}

.plan-name {
    font-size: 20px;
    font-weight: 600;
    color: rgb(69 49 30);
    margin-bottom: 8px;
}

.plan-price {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0;
}

.plan-price .from {
    font-size: 20px;
    font-weight: 600;
    color: #52525b;
    margin-right: 4px;
}

.plan-desc {
    font-size: 15px;
    color: #71717a;
    line-height: 1.5;
    margin-bottom: 24px;
}

.divider {
    border: none;
    border-top: 1px solid #45321f;
    margin-bottom: 10px;
    margin-top: 10px;
}

.features {
    list-style: none;
    margin-bottom: 0;
    flex-grow: 1;
    padding: 0;
}

.features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #18181b;
    padding: 10px 0;
}

.check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #45321f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-icon svg {
    width: 12px;
    height: 12px;
}

.btn-book:hover {
    background: #27272a;
    transform: translateY(-2px);
}

.pricing-section {
    padding: 80px 0;
}

/* Footer Bottom Menu */
.site-footer__bottom nav.site-footer__legal .site-footer_bottom_links {
    display: flex;
    padding: 0;
    list-style: none;
}

.site-footer__bottom nav.site-footer__legal .site-footer_bottom_links li.menu-item {
    padding: 0 5px;
}

.site-footer__bottom nav.site-footer__legal .site-footer_bottom_links li.menu-item:last-child {
    padding-right: 0;
}

.footer-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 9;
}

.footer-whatsapp a {
    display: block;
    margin-top: 10px;
}

.footer-whatsapp a img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-title {
        font-size: 42px;
    }
}

@media(max-width: 991px) {
    .nav-menu__link {
        color: #45311e !important;
    }

    .site-header .header-cta {
        display: none;
    }

    .mobile-menu .header-cta {
        display: block;
    }

    .mobile-menu .nav-menu__item:last-child {
        border: 0;
    }

    .footer-whatsapp a img {
        width: 35px;
        height: 35px;
        object-fit: contain;
    }

    .back-to-top {
        width: 35px;
        height: 35px;
    }

    .back-to-top i {
        font-size: 15px;
    }
}

@media(max-width: 767px) {
    .contact-form-card {
        padding: 15px;
    }

    .popup-body {
        padding: 20px 10px;
    }

    .contact-form-card .field {
        width: 100%;
        margin-bottom: 10px;
    }

    .wanderhaven-form input[type=text],
    .wanderhaven-form input[type=email],
    .wanderhaven-form input[type=tel],
    .wanderhaven-form input[type=date],
    .wanderhaven-form input[type=number],
    .wanderhaven-form textarea,
    .wanderhaven-form select {
        padding: .4rem 1rem;
        border-radius: 5px;
    }

    .contact-form-card .fields textarea {
        height: 80px;
        min-height: unset;
    }

    .wanderhaven-form input[type=submit] {
        padding: .5rem 1rem;
        font-size: 14px;
    }

    .site-header__logo img,
    .site-footer__logo img {
        max-width: 80px;
    }

    .site-header {
        padding: 5px 0;
    }

    .rv-map-section {
        padding: 50px 0;
    }

    .rv-map-section .rv-map-content {
        margin: 0 auto 30px;
    }

    .rules-regulations-main {
        padding-top: 30px;
    }

    .pricing-section {
        padding: 50px 0;
    }

    .pricing-header {
        margin-bottom: 40px;
    }

    .contact-info-card {
        padding: 12px 12px;
    }

    .contact-info-list {
        gap: 16px;
        margin: 15px 0;
    }

    .contact-info-list li {
        gap: 12px;
    }

    .contact-info-list i,
    .contact-info-list i,
    .contact-info-list .business-hours-img {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .contact-info-list a,
    .business-hours .business-hours-time,
    .contact-address-city-state {
        font-size: 14px;
    }

    .get-in-title {
        font-size: 22px;
    }

    .contact-form-card .section-title {
        font-size: 22px;
    }

    .site-footer__contact li a {
        font-size: 15px;
    }
	.about-content-main {
		gap: 10px !important;
	}
	h3.why-pecan-grove-title {
    	font-size: 18px !important;
	}
	.about-content-main figure {
		height: auto !important;
	}
	.about-content-main .about-content-sub-heading {
		font-size: 15px !important;
	}
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 30px;
    }

    .pricing-card {
        padding: 24px;
    }

    .plan-price {
        font-size: 28px;
    }
}

.about-content-main {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 20px;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e8e8e3;
    border-radius: 20px;
}

.about-content-main h1,
.about-content-main h2,
.about-content-main h3,
.about-content-main p,
.about-content-main ul {
    margin-top: 0;
}

.about-content-main .about-content-heading-h1 {
    margin-bottom: 8px;
    color: #0d1a0f;
    font-size: clamp(38px, 4vw, 58px);
    line-height: .98;
    letter-spacing: -2px;
}

.about-content-main h2 {
    color: #0d1a0f;
    line-height: 1.15;
}

.about-content-main h3 {
    margin-bottom: 7px;
    color: #0d1a0f;
    font-size: 15px;
    line-height: 1.2;
    font-family: "inter";
}

.about-content-main p {
    font-size: 14px;
    line-height: 1.55;
}

.about-content-main .about-content-sub-heading {
    margin-bottom: 10px;
    color: #a47d2f;
    font-size: 17px;
    font-style: italic;
    font-weight: 700;
}

section>div:first-child>p:nth-of-type(2) {
    max-width: 560px;
    margin-bottom: 0;
}

.about-content-main ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.about-content-main li {
    position: relative;
    min-height: 100px;
    padding: 0 0 10px 50px;
    border-bottom: 1px solid var(--border);
}

.about-content-main li:nth-child(n + 3) {
    padding-top: 10px;
}

.about-content-main li:nth-child(5),
.about-content-main li:nth-child(6) {
    border-bottom: 0;
}

.about-content-main li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    padding: 9px;
    border-radius: 50%;
    background: #f4f0df;
    color: #0d1a0f;
}

.about-content-main li:nth-child(n + 3) img {
    top: 18px;
}

.about-content-main li p {
    margin: 0;
    color: #303a35;
    font-size: 13px;
    line-height: 1.45;
}

.about-content-main>div:last-child {
    display: flex;
    flex-direction: column;
}

.about-content-main figure {
    position: relative;
    height: 308px;
}

.about-content-main figure img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

figure img {
    display: block;
    width: 100%;
    aspect-ratio: 1.73 / 1;
    object-fit: cover;
    border-radius: 18px;
}

.about-content-main article {
    margin-bottom: 12px;
    padding: 18px 22px;
    background: #faf8f0;
    border: 1px solid #eee9dc;
    border-radius: 14px;
}

.about-content-main article .rockdale-title-h2 {
    position: relative;
    padding-left: 0;
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 32px;
    color: #0d1a0f;
}

.about-content-main article .rockdale-title-h2 svg {
    position: absolute;
    left: 0;
    top: -2px;
    width: 38px;
    height: 38px;
    color: #0d1a0f;
}

.about-content-main article p {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.4;
}

.about-content-main article p:last-child {
    margin-bottom: 0;
    font-weight: 700;
    color: #0d1a0f;
    margin-top: 10px;
    font-size: 15px;
}

.about-content-main aside {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 62px;
    padding: 12px 20px;
    color: var(--white);
    background: #1d3c22;
    border-radius: 20px;
}

.about-content-main aside {
    padding: 20px;
    align-items: flex-start;
    gap: 10px;
    margin-top: 0;
}

.about-content-main aside h3.rv-guests-title-h2 {
    color: #d7b55f;
}

.about-content-main aside svg {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
}

.about-content-main h2 {
    color: #0d1a0f;
    line-height: 1.15;
    margin-bottom: 10px;
    font-size: 40px;
    max-width: 460px;
}

.about-content-main aside p {
    margin: 0;
    color: #f4f4ee;
    font-size: 12px;
}

h3.why-pecan-grove-title {
    margin-top: 15px;
    font-size: 22px;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .about-content-main {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 20px;
    }

    .about-content-main ul {
        margin-top: 26px;
    }
}

@media (max-width: 620px) {
    main {
        width: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    section {
        padding: 26px 20px;
    }

    .about-content-main .about-content-heading-h1 {
        font-size: 30px;
        letter-spacing: -1.5px;
        line-height: 35px;
    }

    .about-content-main ul {
        grid-template-columns: 1fr;
    }

    .about-content-main li {
        min-height: auto;
        padding-bottom: 18px;
    }

    .about-content-main li:nth-child(n + 3) {
        padding-top: 18px;
    }

    .about-content-main li:nth-child(5),
    .about-content-main li:nth-child(6) {
        border-bottom: 1px solid var(--border);
    }

    .about-content-main li:last-child {
        border-bottom: 0;
    }

    .about-content-main li:nth-child(n + 3) svg {
        top: 18px;
    }

    figure img {
        aspect-ratio: 1.5 / 1;
        border-radius: 14px;
    }

    article {
        padding: 16px;
    }

    aside {
        align-items: flex-start;
    }

    h3.why-pecan-grove-title {
        font-size: 22px;
    }
}