:root {
    --green-950: #0e241b;
    --green-900: #153326;
    --green-800: #1c4633;
    --green-700: #2f674a;
    --green-600: #3f7a59;
    --sage-100: #e9efe8;
    --sage-50: #f5f7f3;
    --sand: #d7c29a;
    --cream: #fbfaf6;
    --white: #ffffff;
    --ink: #17211b;
    --muted: #667169;
    --line: #dfe5df;
    --shadow: 0 22px 60px rgba(14, 36, 27, .13);
    --radius-sm: 12px;
    --radius: 22px;
    --radius-lg: 34px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input {
    font: inherit;
}

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

h1,
h2,
h3 {
    font-family: "Manrope", sans-serif;
    line-height: 1.08;
}

h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(3.3rem, 7vw, 6.6rem);
    letter-spacing: -.065em;
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.25rem, 4vw, 4rem);
    letter-spacing: -.05em;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    letter-spacing: -.025em;
}

p {
    color: var(--muted);
}

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

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

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

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

.announcement {
    background: var(--green-950);
    color: rgba(255,255,255,.8);
    font-size: .82rem;
}

.announcement__inner {
    min-height: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.announcement a {
    color: var(--white);
    font-weight: 700;
}

.site-header {
    position: relative;
    z-index: 100;
    background: rgba(251, 250, 246, .97);
    border-bottom: 1px solid rgba(21, 51, 38, .08);
}

.nav-wrap {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand{
    display:flex;
    align-items:center;
    gap:16px;
    text-decoration:none;
}

.site-logo{
    width:70px;
    height:70px;
    object-fit:contain;
    flex-shrink:0;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.brand-text strong{
    font-family:"Manrope",sans-serif;
    font-size:1.6rem;
    font-weight:800;
    color:var(--green-900);
    letter-spacing:-0.03em;
}

.brand-text small{
    margin-top:6px;
    font-size:.82rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.25em;
    color:var(--green-600);
}


.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.primary-nav > a:not(.button) {
    position: relative;
    color: #33433a;
    font-size: .94rem;
    font-weight: 600;
}

.primary-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--green-600);
    content: "";
    transform: scaleX(0);
    transition: transform .22s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
    transform: scaleX(1);
}

.nav-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: var(--sage-100);
    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    width: 22px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: var(--green-900);
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    border: 1px solid var(--green-700);
    border-radius: 999px;
    background: var(--green-700);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(47, 103, 74, .19);
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    background: var(--green-800);
    box-shadow: 0 14px 30px rgba(47, 103, 74, .25);
}

.button--small {
    min-height: 44px;
    padding: 10px 18px;
    font-size: .91rem;
}

.button--large {
    min-height: 60px;
    padding-inline: 30px;
    font-size: 1.08rem;
}

.button--full {
    width: 100%;
}

.button--ghost {
    border-color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.08);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.button--ghost:hover {
    background: rgba(255,255,255,.17);
}

.button--light {
    border-color: var(--white);
    background: var(--white);
    color: var(--green-900);
}

.hero {
    min-height: 720px;
    position: relative;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--green-950);
}

.hero__media,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__media {
    background: linear-gradient(135deg, rgba(43, 80, 55, .5), rgba(9, 31, 23, .06)), url("view.jpg") center 56% / cover no-repeat;
    transform: scale(1.015);
}

.hero__overlay {
    background: linear-gradient(90deg, rgba(8, 27, 20, .88) 0%, rgba(8, 27, 20, .52) 52%, rgba(8, 27, 20, .18) 100%), linear-gradient(0deg, rgba(8, 27, 20, .38), transparent 55%);
}

.hero__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: end;
    gap: 90px;
    padding-block: 105px;
}

.hero__copy {
    color: var(--white);
}

.hero__copy p {
    max-width: 610px;
    margin-bottom: 34px;
    color: rgba(255,255,255,.78);
    font-size: clamp(1.06rem, 2vw, 1.27rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--green-700);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 30px;
    height: 1px;
    background: currentColor;
    content: "";
}

.eyebrow--light {
    color: var(--sand);
}

.hero-card {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    background: rgba(247, 246, 240, .94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-card__label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--green-700);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-card h2 {
    margin-bottom: 20px;
    color: var(--ink);
    font-size: 1.65rem;
    letter-spacing: -.04em;
}

.hero-card__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-block: 14px;
    border-top: 1px solid var(--line);
}

.hero-card__row strong {
    color: var(--green-800);
    font-family: "Manrope", sans-serif;
    font-size: 1.12rem;
}

.hero-card .button {
    margin-top: 18px;
}

.hero-card small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    text-align: center;
}

.quick-info {
    position: relative;
    z-index: 3;
    margin-top: -1px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.quick-info__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.quick-info article {
    min-height: 120px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 25px;
    border-right: 1px solid var(--line);
}

.quick-info article:last-child {
    border-right: 0;
}

.quick-info .icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--sage-100);
    color: var(--green-700);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.quick-info strong,
.quick-info span {
    display: block;
}

.quick-info strong {
    color: var(--ink);
    line-height: 1.3;
}

.quick-info article div span {
    margin-top: 3px;
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.35;
}

.section {
    padding-block: 110px;
}

.section--tint {
    background: var(--sage-50);
}

.split {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 100px;
}

.section-copy .lead {
    color: #35443b;
    font-size: 1.2rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green-700);
    font-weight: 800;
}

.text-link span {
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.image-stack {
    min-height: 540px;
    position: relative;
}

.image-stack__main {
    width: calc(100% - 45px);
    height: 100%;
    min-height: 540px;
    margin-left: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.image-placeholder {
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(30, 70, 49, .18), rgba(17, 48, 35, .65)), url("71lb-cat.jpg") center / cover no-repeat;
}

.image-placeholder span,
.gallery-item span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.84);
    color: var(--green-900);
    font-size: .76rem;
    font-weight: 700;
}

.image-stack__badge {
    width: 150px;
    height: 150px;
    position: absolute;
    bottom: 42px;
    left: 0;
    display: grid;
    place-content: center;
    border: 8px solid var(--cream);
    border-radius: 50%;
    background: var(--sand);
    color: var(--green-950);
    text-align: center;
}

.image-stack__badge strong,
.image-stack__badge span {
    display: block;
}

.image-stack__badge strong {
    font-family: "Manrope", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.image-stack__badge span {
    margin-top: 6px;
    font-size: .77rem;
    font-weight: 700;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 48px;
}

.section-heading > p {
    max-width: 460px;
    margin-bottom: 8px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading--center {
    max-width: 720px;
    display: block;
    margin-inline: auto;
    text-align: center;
}

.card-grid {
    display: grid;
    gap: 28px;
}

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

.lake-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 32px rgba(24, 54, 41, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.lake-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.lake-card__image {
    min-height: 310px;
    position: relative;
    background-position: center;
    background-size: cover;
}

.lake-card__image--one {
    background-image: linear-gradient(0deg, rgba(9, 31, 22, .42), transparent 60%), url("24lbcarp.jpg");
}

.lake-card__image--two {
    background-image: linear-gradient(0deg, rgba(9, 31, 22, .42), transparent 60%), url("dnlcat.png");
}

.card-tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.93);
    color: var(--green-900);
    font-size: .76rem;
    font-weight: 800;
}

.lake-card__body {
    padding: 30px;
}

.lake-card__body p {
    margin-bottom: 20px;
}

.feature-list {
    display: grid;
    gap: 9px;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 23px;
    color: #425047;
    font-size: .93rem;
}

.feature-list li::before {
    width: 9px;
    height: 9px;
    position: absolute;
    top: .48em;
    left: 0;
    border-radius: 50%;
    background: var(--sand);
    box-shadow: 0 0 0 4px rgba(215, 194, 154, .26);
    content: "";
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 50px;
}

.facility-card {
    min-height: 240px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.facility-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 34px;
    border-radius: 14px;
    background: var(--sage-100);
    color: var(--green-700);
    font-family: "Manrope", sans-serif;
    font-size: .9rem;
    font-weight: 800;
}

.facility-card p {
    margin-bottom: 0;
    font-size: .92rem;
}

.rules-section {
    overflow: hidden;
    background: radial-gradient(circle at 90% 20%, rgba(215, 194, 154, .16), transparent 26%), var(--green-900);
    color: var(--white);
}

.rules-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 110px;
}

.rules-copy p {
    max-width: 520px;
    color: rgba(255,255,255,.68);
}

.rules-list {
    border-top: 1px solid rgba(255,255,255,.18);
}

.rules-list > div {
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.rules-list span {
    color: var(--sand);
    font-family: "Manrope", sans-serif;
    font-size: .78rem;
    font-weight: 800;
}

.rules-list p {
    margin: 0;
    color: var(--white);
    font-size: 1.03rem;
}

.gallery-grid {
    min-height: 560px;
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.gallery-item {
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 18px;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gallery-item--large {
    grid-row: 1 / span 2;
}

.booking-section {
    padding-top: 25px;
}

.booking-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    padding: clamp(38px, 6vw, 70px);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 5% 90%, rgba(215, 194, 154, .2), transparent 26%), var(--green-700);
    color: var(--white);
}

.booking-panel h2 {
    margin-bottom: 14px;
}

.booking-panel p {
    max-width: 670px;
    margin-bottom: 0;
    color: rgba(255,255,255,.72);
}

.booking-panel__actions {
    display: grid;
    gap: 11px;
    justify-items: center;
}

.booking-panel__actions span {
    color: rgba(255,255,255,.72);
    font-size: .78rem;
}

.site-footer {
    margin-top: 100px;
    padding-top: 72px;
    background: var(--green-950);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, .75fr);
    gap: 50px;
    padding-bottom: 60px;
}

.brand--footer {
    color: var(--white);
}

.brand--footer small {
    color: var(--sand);
}

.footer-grid > div:first-child p {
    max-width: 330px;
    margin-top: 22px;
}

.footer-grid h3 {
    margin-bottom: 19px;
    color: var(--sand);
    font-size: .83rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
    display: block;
    margin-bottom: 9px;
    color: rgba(255,255,255,.62);
    font-size: .9rem;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.43);
    font-size: .78rem;
}

.rules-page {
    background: #f5f2e9;
    min-height: 100vh;
}

.rules-hero {
    background: #e9eee4;
    border-bottom: 1px solid rgba(31, 61, 43, 0.10);
    padding: 70px 24px 60px;
}

.rules-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.rules-hero .eyebrow,
.rule-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #75856f;
}

.rules-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1;
    color: #1f3d2b;
    letter-spacing: -0.04em;
}

.rules-hero p {
    max-width: 700px;
    margin: 0;
    color: #5d685f;
    font-size: 1.05rem;
    line-height: 1.75;
}

.rules-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 55px 24px 80px;
}

.rules-notice {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid rgba(31, 61, 43, 0.10);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(31, 61, 43, 0.05);
}

.rules-notice-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #dfe9da;
    color: #315b3f;
}

.rules-notice strong {
    display: block;
    margin-bottom: 5px;
    color: #1f3d2b;
}

.rules-notice p {
    margin: 0;
    color: #69736c;
    line-height: 1.6;
}

.rule-section {
    margin-bottom: 32px;
    padding: 34px;
    background: #fff;
    border: 1px solid rgba(31, 61, 43, 0.10);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(31, 61, 43, 0.06);
}

.rule-section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e7e9e4;
}

.rule-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: #dfe9da;
    color: #315b3f;
    font-size: 1.25rem;
}

.rule-section-heading h2 {
    margin: 0;
    color: #1f3d2b;
    font-size: 1.7rem;
}

.rule-section-heading .rule-label {
    margin-bottom: 4px;
}

.rule-list {
    display: grid;
    gap: 0;
}

.rule-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid #eef0eb;
}

.rule-item:last-child {
    border-bottom: 0;
}

.rule-number {
    width: 38px;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: #edf2e9;
    border-radius: 10px;
    color: #315b3f;
    font-size: 0.82rem;
    font-weight: 800;
}

.rule-item p {
    margin: 5px 0 0;
    color: #58635b;
    line-height: 1.7;
}

.rule-important {
    margin-top: 6px;
    padding: 16px;
    border: 1px solid #d8c28c;
    border-radius: 12px;
    background: #fbf4df;
}

.rule-important .rule-number {
    background: #eadba9;
    color: #5f522b;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.info-card {
    padding: 30px;
    background: #fff;
    border: 1px solid rgba(31, 61, 43, 0.10);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(31, 61, 43, 0.05);
}

.info-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 13px;
    background: #dfe9da;
    color: #315b3f;
}

.info-card h3 {
    margin: 0 0 14px;
    color: #1f3d2b;
    font-size: 1.3rem;
}

.info-card p,
.info-card li {
    color: #626c65;
    line-height: 1.7;
}

.info-card p:last-child {
    margin-bottom: 0;
}

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

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

.policy-section {
    padding: 34px;
    background: #1f3d2b;
    border-radius: 18px;
    color: #fff;
}

.policy-section .rule-label {
    color: #b8c7b6;
}

.policy-section h2 {
    margin: 0 0 28px;
    font-size: 1.8rem;
}

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

.policy-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    background: rgba(255,255,255,0.05);
}

.policy-item i {
    margin-top: 3px;
    color: #c7d8c1;
    font-size: 1.1rem;
}

.policy-item strong {
    display: block;
    margin-bottom: 6px;
}

.policy-item p {
    margin: 0;
    color: #cbd4cd;
    line-height: 1.6;
}

.rules-footer-note {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-top: 32px;
    padding: 26px;
    background: #e4ebdf;
    border-radius: 16px;
    color: #315b3f;
}

.rules-footer-note > i {
    margin-top: 4px;
    font-size: 1.3rem;
}

.rules-footer-note strong {
    display: block;
    margin-bottom: 6px;
    color: #1f3d2b;
}

.rules-footer-note p {
    margin: 0;
    color: #637064;
    line-height: 1.6;
}

.prices-page {
    min-height: 100vh;
    background: #f5f2e9;
}

.prices-hero {
    padding: 70px 24px 60px;
    background: #e9eee4;
    border-bottom: 1px solid rgba(31, 61, 43, 0.10);
}

.prices-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.prices-hero .eyebrow,
.price-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #75856f;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.prices-hero h1 {
    margin: 0 0 16px;
    color: #1f3d2b;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.prices-hero p {
    max-width: 680px;
    margin: 0;
    color: #5d685f;
    font-size: 1.05rem;
    line-height: 1.75;
}

.prices-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 55px 24px 80px;
}

.prices-notice {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid rgba(31, 61, 43, .10);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(31, 61, 43, .05);
}

.prices-notice-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #dfe9da;
    border-radius: 50%;
    color: #315b3f;
}

.prices-notice strong {
    display: block;
    margin-bottom: 5px;
    color: #1f3d2b;
}

.prices-notice p {
    margin: 0;
    color: #69736c;
    line-height: 1.6;
}

.price-section {
    margin-bottom: 32px;
    padding: 34px;
    background: #fff;
    border: 1px solid rgba(31, 61, 43, .10);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(31, 61, 43, .06);
}

.price-section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e7e9e4;
}

.price-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #dfe9da;
    border-radius: 14px;
    color: #315b3f;
    font-size: 1.25rem;
}

.price-section-heading .price-label {
    margin-bottom: 4px;
}

.price-section-heading h2 {
    margin: 0;
    color: #1f3d2b;
    font-size: 1.7rem;
}

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

.price-card {
    position: relative;
    padding: 30px;
    background: #f7f8f4;
    border: 1px solid #e4e8df;
    border-radius: 16px;
    text-align: center;
}

.price-card.featured {
    background: #edf3e9;
    border-color: #cad8c5;
}

.price-card-label {
    display: block;
    margin-bottom: 16px;
    color: #687468;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.price-amount {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #1f3d2b;
    line-height: 1;
}

.price-amount .currency {
    margin-top: 8px;
    margin-right: 2px;
    font-size: 1.35rem;
    font-weight: 700;
}

.price-amount strong {
    font-size: 4rem;
    letter-spacing: -.06em;
}

.price-amount .decimal {
    margin-top: 8px;
    font-size: 1.25rem;
    font-weight: 800;
}

.price-duration {
    margin: 14px 0 5px;
    color: #344d3b;
    font-weight: 700;
}

.price-note {
    margin: 0;
    color: #788178;
    font-size: .9rem;
}

.deposit-box {
    display: flex;
    gap: 18px;
    margin-top: 24px;
    padding: 22px;
    background: #fbf4df;
    border: 1px solid #e2d29d;
    border-radius: 14px;
}

.deposit-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #eadba9;
    border-radius: 12px;
    color: #62552d;
}

.deposit-box strong {
    color: #544a2d;
}

.deposit-box p {
    margin: 5px 0 0;
    color: #6c644e;
    line-height: 1.6;
}

.cabin-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.cabin-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 35px;
    background: #f7f8f4;
    border-radius: 16px;
}

.cabin-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cabin-big-price {
    color: #1f3d2b;
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: -.05em;
}

.cabin-price span:last-child {
    margin-top: 5px;
    color: #6d776f;
    font-size: .9rem;
}

.plus-sign {
    color: #9aa39a;
    font-size: 2rem;
    font-weight: 300;
}

.cabin-example {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: #1f3d2b;
    border-radius: 16px;
    color: #fff;
    text-align: center;
}

.example-label {
    margin-bottom: 10px;
    color: #becbbc;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.example-total {
    margin: 12px 0 5px;
    font-size: 2.3rem;
    font-weight: 800;
}

.cabin-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.cabin-info {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #f8f9f6;
    border: 1px solid #e8ebe5;
    border-radius: 13px;
}

.cabin-info i {
    margin-top: 4px;
    color: #56705d;
}

.cabin-info strong {
    display: block;
    color: #2a4934;
}

.cabin-info p {
    margin: 5px 0 0;
    color: #737d75;
    font-size: .9rem;
    line-height: 1.5;
}

.peg-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 35px;
    margin-bottom: 32px;
    padding: 32px;
    background: #e6ece1;
    border-radius: 18px;
}

.peg-section h2 {
    margin: 0 0 10px;
    color: #1f3d2b;
}

.peg-section p {
    margin: 0;
    color: #647066;
    line-height: 1.7;
}

.peg-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: center;
}

.peg-tags span {
    padding: 9px 13px;
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(31,61,43,.10);
    border-radius: 30px;
    color: #385541;
    font-size: .85rem;
    font-weight: 700;
}

.heron-price-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.heron-main-price,
.heron-discount {
    padding: 30px;
    background: #f7f8f4;
    border: 1px solid #e4e8df;
    border-radius: 16px;
    text-align: center;
}

.heron-main-price p,
.heron-discount p {
    margin: 12px 0 0;
    color: #717a72;
}

.small-price {
    color: #1f3d2b;
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -.04em;
}

.heron-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 22px;
}

.heron-info > div {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 10px;
    padding: 18px;
    background: #edf2e9;
    border-radius: 12px;
}

.heron-info i {
    grid-row: span 2;
    color: #52705b;
}

.heron-info strong {
    color: #31513a;
}

.heron-info span {
    color: #748078;
    font-size: .88rem;
}

.prices-footer-note {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 26px;
    background: #e4ebdf;
    border-radius: 16px;
    color: #315b3f;
}

.prices-footer-note > i {
    margin-top: 4px;
    font-size: 1.3rem;
}

.prices-footer-note strong {
    display: block;
    margin-bottom: 6px;
    color: #1f3d2b;
}

.prices-footer-note p {
    margin: 0;
    color: #637064;
}

.gallery2-page {
    min-height: 100vh;
    background: #f5f2e9;
}

.gallery2-hero {
    padding: 70px 24px 60px;
    background: #e9eee4;
    border-bottom: 1px solid rgba(31, 61, 43, .10);
}

.gallery2-hero-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.gallery2-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #75856f;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.gallery2-hero h1 {
    margin: 0 0 16px;
    color: #1f3d2b;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.gallery2-hero p {
    max-width: 680px;
    margin: 0;
    color: #5d685f;
    font-size: 1.05rem;
    line-height: 1.75;
}

.gallery2-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 55px 24px 80px;
}

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

.gallery2-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #e3e7df;
    border: 0;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(31,61,43,.07);
}

.gallery2-item > img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    border: 0;
    border-radius: 0;
    transform: none;
    transition: transform .35s ease;
}

.gallery2-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    opacity: 1;
    transform: none;
    pointer-events: none;
    transition: background .3s ease;
}

.gallery2-zoom {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: rgba(255,255,255,.92);
    border: 0;
    border-radius: 50%;
    color: #1f3d2b;
    font-size: 1rem;
    opacity: 0;
    transform: scale(.85);
    transition: opacity .3s ease, transform .3s ease;
}

.gallery2-item:hover > img {
    transform: scale(1.045);
}

.gallery2-item:hover .gallery2-overlay {
    background: rgba(17,35,24,.22);
}

.gallery2-item:hover .gallery2-zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery2-item:focus-visible {
    outline: 3px solid #66866e;
    outline-offset: 3px;
}

.gallery2-help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 30px;
    color: #748078;
    font-size: .9rem;
}

.gallery2-help i {
    color: #52705b;
}

.gallery2-empty {
    padding: 70px 25px;
    background: #fff;
    border: 1px solid rgba(31,61,43,.10);
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 12px 34px rgba(31,61,43,.05);
}

.gallery2-empty-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: #dfe9da;
    border-radius: 50%;
    color: #315b3f;
    font-size: 1.4rem;
}

.gallery2-empty h2 {
    margin: 0 0 10px;
    color: #1f3d2b;
}

.gallery2-empty p {
    margin: 0;
    color: #727d74;
}

.gallery2-lightbox {
    position: fixed;
    inset:0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px;
    background: rgba(0,0,0,.96);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: opacity .25s ease, visibility .25s ease;
}

.gallery2-lightbox.gallery2-active {
    opacity: 1;
    visibility: visible;
}


.gallery2-lightbox > img {
    display: block;
    width: auto;
    height: auto;
    max-width: 95%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 50px rgba(0,0,0,.5);
    transform: scale(.96);
    transition: transform .25s ease;
}

.gallery2-lightbox.gallery2-active > img {
    transform: scale(1);
}


.gallery2-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
}

.gallery2-lightbox-close:hover {
    background: rgba(255,255,255,.22);
}


body.gallery2-open {
    overflow: hidden;
}


@media (max-width: 900px) {

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

}


@media (max-width: 600px) {

    .gallery2-hero {
        padding: 52px 20px 45px;
    }

    .gallery2-wrap {
        padding: 35px 18px 60px;
    }

    .gallery2-grid {
        gap: 12px;
    }

    .gallery2-item {
        border-radius: 11px;
    }

    .gallery2-lightbox {
        padding: 18px;
    }

    .gallery2-lightbox > img {
        max-width: 100%;
        max-height: 85%;
    }

    .gallery2-lightbox-close {
        top: 14px;
        right: 14px;
    }

}


@media (max-width: 420px) {

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

}
/* MOBILE */

@media (max-width: 760px) {

    .prices-hero {
        padding: 52px 20px 45px;
    }

    .prices-wrap {
        padding: 35px 18px 60px;
    }

    .price-section {
        padding: 24px 20px;
    }

    .price-cards,
    .cabin-layout,
    .cabin-info-grid,
    .peg-section,
    .heron-price-layout,
    .heron-info {
        grid-template-columns: 1fr;
    }

    .cabin-main {
        flex-direction: column;
        gap: 16px;
    }

    .plus-sign {
        line-height: 1;
    }

    .price-amount strong {
        font-size: 3.3rem;
    }

}
/* Mobile */

@media (max-width: 760px) {

    .rules-hero {
        padding: 52px 20px 45px;
    }

    .rules-wrap {
        padding: 35px 18px 60px;
    }

    .rule-section {
        padding: 24px 20px;
    }

    .rules-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .rule-item {
        grid-template-columns: 40px 1fr;
        gap: 12px;
    }

    .rule-number {
        width: 34px;
        min-height: 34px;
    }

    .rules-notice {
        padding: 18px;
    }

    .policy-section {
        padding: 26px 20px;
    }

}

@media (max-width: 1000px) {
    .primary-nav {
        gap: 18px;
    }

    .hero__content {
        grid-template-columns: minmax(0, 1fr) 310px;
        gap: 45px;
    }

    .quick-info__grid,
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-info article:nth-child(2) {
        border-right: 0;
    }

    .quick-info article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }

    .split,
    .rules-layout {
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 820px) {

    .site-logo{
        width:52px;
        height:52px;
    }

    .brand-text strong{
        font-size:1.25rem;
    }

    .brand-text small{
        font-size:.7rem;
        letter-spacing:.18em;
    }

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

    .nav-wrap {
        min-height: 74px;
    }

    .nav-toggle {
        display: grid;
    }

    .primary-nav {
        position: fixed;
        top: 110px;
        right: 14px;
        left: 14px;
        max-height: calc(100vh - 125px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: var(--cream);
        box-shadow: var(--shadow);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav > a:not(.button) {
        padding: 15px 10px;
        border-bottom: 1px solid var(--line);
        font-size: 1rem;
    }

    .primary-nav > a:not(.button)::after {
        display: none;
    }

    .primary-nav .button {
        margin-top: 14px;
    }

    .hero {
        min-height: auto;
    }

    .hero__overlay {
        background: linear-gradient(0deg, rgba(8, 27, 20, .9) 0%, rgba(8, 27, 20, .55) 68%, rgba(8, 27, 20, .34) 100%);
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-block: 88px 58px;
    }

    .hero-card {
        max-width: 470px;
    }

    .section {
        padding-block: 78px;
    }

    .split,
    .rules-layout {
        grid-template-columns: 1fr;
    }

    .split {
        gap: 52px;
    }

    .image-stack {
        min-height: 450px;
    }

    .image-stack__main {
        min-height: 450px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p,
    .section-heading > .text-link {
        margin-top: 22px;
    }

    .card-grid--two {
        grid-template-columns: 1fr;
    }

    .rules-layout {
        gap: 48px;
    }

    .gallery-grid {
        min-height: 720px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 1.3fr 1fr 1fr;
    }

    .gallery-item--large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .booking-panel {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .booking-panel__actions {
        justify-items: start;
    }

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

@media (max-width: 560px) {
    .announcement__inner {
        justify-content: center;
    }

    .announcement__inner > span {
        display: none;
    }

    .primary-nav {
        top: 100px;
    }

    h1 {
        font-size: clamp(3.2rem, 16vw, 4.5rem);
    }

    h2 {
        font-size: clamp(2rem, 11vw, 2.8rem);
    }

    .hero__content {
        padding-block: 75px 32px;
    }

    .hero__copy p {
        font-size: 1rem;
    }

    .hero__actions,
    .hero__actions .button {
        width: 100%;
    }

    .quick-info__grid,
    .facility-grid {
        grid-template-columns: 1fr;
    }

    .quick-info article {
        min-height: 96px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .quick-info article:nth-child(3) {
        border-bottom: 1px solid var(--line);
    }

    .quick-info article:last-child {
        border-bottom: 0;
    }

    .image-stack {
        min-height: 390px;
    }

    .image-stack__main {
        width: 100%;
        min-height: 390px;
    }

    .image-stack__badge {
        width: 125px;
        height: 125px;
        bottom: -25px;
        left: 14px;
    }

    .lake-card__image {
        min-height: 240px;
    }

    .facility-card {
        min-height: auto;
    }

    .facility-card__icon {
        margin-bottom: 22px;
    }

    .gallery-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .gallery-item {
        min-height: 250px;
    }

    .gallery-item--large {
        grid-column: auto;
    }

    .booking-panel {
        padding: 34px 24px;
    }

    .booking-panel__actions,
    .booking-panel__actions .button {
        width: 100%;
    }

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

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}