@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800;900&display=swap');

:root {
    --cream: #fbf6ec;
    --sand: #ead9bd;
    --brown: #8b6b43;
    --green: #49b45a;
    --green-2: #1f6f3b;
    --forest: #102f20;
    --blue: #1599e8;
    --sky: #dff4ff;
    --yellow: #ffd43b;
    --orange: #ff8a00;
    --red: #ff4d4d;
    --dark: #111827;
    --muted: #64748b;
    --white: #ffffff;
    --radius: 30px;
    --shadow: 0 26px 80px rgba(15, 23, 42, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    background: var(--cream);
    color: var(--dark);
}

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

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

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

.narrow { width: min(900px, calc(100% - 34px)); }

.site-header {
    position: fixed;
    z-index: 99;
    top: 18px;
    left: 0;
    right: 0;
    pointer-events: none;
}

.header-inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 999px;
    background: rgba(16, 24, 32, .62);
    backdrop-filter: blur(22px);
    box-shadow: 0 18px 60px rgba(0,0,0,.24);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.brand-logo {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: linear-gradient(135deg, #c49a5a, #f3ddb0);
    color: #261c12;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

.brand-deer {
    transform: rotate(-8deg);
    font-size: 27px;
    font-weight: 900;
}

.brand-text {
    display: grid;
    line-height: 1.05;
}

.brand-text strong {
    font-size: 17px;
    letter-spacing: -.02em;
}

.brand-text small {
    margin-top: 5px;
    color: rgba(255,255,255,.75);
    font-size: 12px;
    font-weight: 700;
}

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

.menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu a {
    display: inline-flex;
    padding: 12px 13px;
    border-radius: 999px;
    color: rgba(255,255,255,.92);
    font-size: 13px;
    font-weight: 900;
    transition: .2s ease;
}

.menu a:hover {
    background: rgba(255,255,255,.14);
    color: var(--yellow);
}

.nav-cta {
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--yellow), #ffad1f);
    color: #19140a;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(255, 212, 59, .28);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 18px;
    background: rgba(255,255,255,.14);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    border-radius: 4px;
}

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-home {
    min-height: 100vh;
    padding: 146px 0 170px;
    display: flex;
    align-items: center;
}

.hero-bg,
.hero-bg img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.1);
}

.hero-overlay {
    background:
        radial-gradient(circle at 82% 22%, rgba(255, 212, 59, .3), transparent 32%),
        radial-gradient(circle at 60% 88%, rgba(73, 180, 90, .48), transparent 34%),
        linear-gradient(90deg, rgba(7, 18, 25, .92) 0%, rgba(7, 18, 25, .63) 48%, rgba(7, 18, 25, .2) 100%);
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    align-items: center;
    gap: 44px;
}

.hero-pill,
.hero-kicker,
.eyebrow,
.section-head span,
.highlight-text span,
.cta-box span,
.page-hero span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
}

.hero-pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
}

.hero-pill span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #52ff74;
    box-shadow: 0 0 0 7px rgba(82,255,116,.13);
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(48px, 7.5vw, 92px);
    line-height: .9;
    letter-spacing: -0.075em;
    font-weight: 900;
}

.hero p {
    max-width: 670px;
    margin: 25px 0 0;
    color: rgba(255,255,255,.86);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.62;
    font-weight: 650;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--yellow), #ffad1f);
    color: #17120a;
    box-shadow: 0 18px 40px rgba(255, 212, 59, .28);
}

.btn-glass {
    background: rgba(255,255,255,.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,.34);
    backdrop-filter: blur(12px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 640px;
    margin-top: 42px;
}

.hero-stats div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
}

.hero-stats strong {
    display: block;
    font-size: 31px;
    line-height: 1;
    color: #fff;
    font-weight: 900;
}

.hero-stats span {
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,.75);
    font-size: 12px;
    font-weight: 800;
}

.hero-showcase {
    position: relative;
    min-height: 610px;
}

.showcase-card {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.32);
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(18px);
    box-shadow: 0 28px 80px rgba(0,0,0,.28);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-card-main {
    right: 0;
    top: 30px;
    width: 78%;
    height: 470px;
    border-radius: 44px;
    transform: rotate(2.5deg);
}

.showcase-card-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.72));
}

.showcase-card-main div {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
}

.showcase-card-main strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -.05em;
}

.showcase-card-main span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.8);
    font-weight: 800;
}

.showcase-card-small {
    width: 210px;
    height: 170px;
    border-radius: 30px;
}

.showcase-card-small::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.62));
}

.showcase-card-small strong {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 17px;
    font-size: 22px;
    font-weight: 900;
}

.showcase-card-small.one {
    left: 8px;
    top: 80px;
    transform: rotate(-7deg);
}

.showcase-card-small.two {
    left: 52px;
    bottom: 48px;
    transform: rotate(6deg);
}

.wave {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.wave-bottom { bottom: -1px; }

.wave svg {
    width: 100%;
    height: 120px;
}

.wave path { fill: var(--cream); }

.section {
    position: relative;
    padding: 104px 0;
}

.attractions-section {
    background:
        radial-gradient(circle at top left, rgba(255,212,59,.35), transparent 25%),
        var(--cream);
}

.section-head {
    max-width: 790px;
    margin-bottom: 46px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-head h2,
.section-text h2,
.highlight-text h2,
.cta-box h2 {
    margin: 0;
    font-size: clamp(35px, 5vw, 62px);
    line-height: .98;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.section-head p,
.section-text p,
.highlight-text p,
.cta-box p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.72;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.service-card {
    overflow: hidden;
    border-radius: 34px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
    border: 1px solid rgba(139, 107, 67, .14);
    transition: transform .25s ease, box-shadow .25s ease;
}

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

.service-image {
    position: relative;
    display: block;
    height: 230px;
    overflow: hidden;
    margin: 12px 12px 0;
    border-radius: 25px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.6));
}

.service-image span {
    position: absolute;
    z-index: 2;
    left: 14px;
    bottom: 14px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    color: var(--dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.service-content {
    padding: 24px 22px 26px;
    text-align: left;
}

.service-content h3 {
    min-height: 72px;
    margin: 0;
    font-size: 25px;
    line-height: 1.07;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.service-content p {
    min-height: 104px;
    margin: 15px 0 22px;
    color: #4b5563;
    line-height: 1.62;
    font-weight: 650;
}

.card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.nature-section {
    background:
        radial-gradient(circle at 18% 12%, rgba(255,212,59,.28), transparent 26%),
        linear-gradient(135deg, #0d271a, #1f6f3b 62%, #49b45a);
    color: #fff;
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 58px;
}

.section-text p {
    color: rgba(255,255,255,.78);
}

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

.feature {
    min-height: 190px;
    padding: 26px;
    border-radius: 30px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
}

.feature.premium {
    background: rgba(255, 212, 59, .2);
}

.feature span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 17px;
    border-radius: 17px;
    background: rgba(255,255,255,.18);
    font-size: 25px;
}

.feature strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.feature p {
    margin: 0;
    color: rgba(255,255,255,.78);
    line-height: 1.6;
    font-weight: 600;
}

.dmuchance-highlight {
    background:
        linear-gradient(180deg, var(--cream), #fff);
}

.highlight-card {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 36px;
    align-items: center;
    padding: 22px;
    border-radius: 46px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139, 107, 67, .12);
}

.highlight-image {
    overflow: hidden;
    border-radius: 34px;
    height: 490px;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-text {
    padding: 24px 26px 24px 0;
}

.mini-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 26px 0;
}

.mini-list div {
    padding: 12px 13px;
    border-radius: 16px;
    background: #f2f8ee;
    color: var(--green-2);
    font-weight: 900;
    text-align: center;
}

.cta-section {
    padding-top: 40px;
    background: #fff;
}

.cta-box {
    text-align: center;
    padding: 66px 28px;
    border-radius: 48px;
    background:
        radial-gradient(circle at 16% 12%, rgba(255,212,59,.58), transparent 30%),
        radial-gradient(circle at 86% 82%, rgba(21,153,232,.35), transparent 32%),
        linear-gradient(135deg, #174b2c, #49b45a);
    color: #fff;
    box-shadow: var(--shadow);
}

.cta-box p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,.86);
}

.cta-box .hero-actions {
    justify-content: center;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 170px 0 125px;
    background:
        radial-gradient(circle at 76% 20%, rgba(255,212,59,.34), transparent 26%),
        linear-gradient(135deg, #0d271a, #1599e8);
    color: #fff;
}

.page-hero h1 {
    margin: 0;
    max-width: 950px;
    font-size: clamp(42px, 7vw, 82px);
    line-height: .96;
    letter-spacing: -.06em;
    font-weight: 900;
}

.content-page {
    background: #fff;
    border-radius: 36px;
    padding: clamp(28px, 5vw, 58px);
    box-shadow: 0 18px 65px rgba(15, 23, 42, .08);
}

.content-page h2,
.content-page h3 {
    letter-spacing: -.04em;
}

.content-page p,
.content-page li {
    color: #475569;
    font-size: 17px;
    line-height: 1.82;
}

.not-found {
    min-height: 70vh;
    display: grid;
    align-items: center;
    text-align: center;
}

.not-found h1 {
    margin: 0;
    font-size: 96px;
    line-height: 1;
}

.site-footer {
    background:
        radial-gradient(circle at top left, rgba(196,154,90,.16), transparent 24%),
        #292727;
    color: #fff;
    padding: 78px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 52px;
}

.footer-logo {
    display: grid;
    place-items: center;
    width: 104px;
    height: 104px;
    border-radius: 30px;
    background: linear-gradient(135deg, #c49a5a, #f3ddb0);
    color: #292727;
    font-size: 36px;
    font-weight: 900;
}

.footer-brand h3 {
    margin: 22px 0 8px;
    font-size: 30px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #c0a078;
}

.site-footer h4 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 16px;
}

.site-footer h4:not(:first-child) {
    margin-top: 28px;
}

.site-footer p,
.site-footer a {
    color: rgba(255,255,255,.82);
    line-height: 1.75;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.socials a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-weight: 900;
}

.socials a:last-child {
    background: linear-gradient(135deg, #f97316, #db2777, #7c3aed);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 72px;
    color: rgba(255,255,255,.64);
    font-size: 14px;
}

.footer-bottom a { text-decoration: underline; }

@media (max-width: 1120px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        display: none;
    }

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

    .service-content h3,
    .service-content p {
        min-height: auto;
    }

    .split,
    .highlight-card {
        grid-template-columns: 1fr;
    }

    .highlight-text {
        padding: 10px;
    }
}

@media (max-width: 860px) {
    .site-header { top: 10px; }

    .header-inner {
        border-radius: 28px;
        align-items: center;
    }

    .brand-text small {
        display: none;
    }

    .nav-toggle {
        display: block;
        flex: 0 0 auto;
    }

    .main-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        padding: 18px;
        border-radius: 26px;
        background: rgba(16, 24, 32, .97);
        box-shadow: 0 18px 50px rgba(0,0,0,.22);
    }

    .main-nav.is-open {
        display: grid;
        gap: 18px;
    }

    .menu {
        display: grid;
        gap: 4px;
    }

    .menu a {
        display: flex;
        padding: 14px;
    }

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

    .hero-home {
        padding-top: 138px;
        padding-bottom: 140px;
        min-height: auto;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

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

    .services-grid,
    .feature-grid,
    .mini-list {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 78px 0;
    }

    .highlight-image {
        height: 330px;
    }

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

    .footer-bottom {
        justify-content: flex-start;
    }
}


/* === V4 CUSTOM PAGE TEMPLATES === */

.sub-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding: 150px 0 130px;
}

.sub-hero-bg,
.sub-hero-bg img,
.sub-hero-overlay {
    position: absolute;
    inset: 0;
}

.sub-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-hero-overlay {
    background:
        radial-gradient(circle at 78% 22%, rgba(255,212,59,.27), transparent 30%),
        linear-gradient(90deg, rgba(8, 18, 24, .92), rgba(8, 18, 24, .58), rgba(8, 18, 24, .22));
}

.sub-hero-inner {
    position: relative;
    z-index: 3;
}

.sub-hero-copy {
    max-width: 820px;
}

.sub-hero h1 {
    margin: 0;
    font-size: clamp(46px, 7vw, 88px);
    line-height: .92;
    letter-spacing: -.075em;
    font-weight: 900;
}

.sub-hero p {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.86);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.65;
    font-weight: 650;
}

.service-intro {
    background: #fff;
}

.two-col {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.two-col.reverse {
    grid-template-columns: 1.05fr .95fr;
}

.two-col h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 62px);
    line-height: .98;
    letter-spacing: -.06em;
    font-weight: 900;
}

.two-col p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.image-stack {
    position: relative;
    overflow: hidden;
    min-height: 460px;
    border-radius: 42px;
    box-shadow: var(--shadow);
}

.image-stack img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.info-band {
    background:
        radial-gradient(circle at 12% 10%, rgba(255,212,59,.25), transparent 28%),
        var(--cream);
}

.info-band.dark {
    background:
        radial-gradient(circle at 16% 10%, rgba(255,212,59,.22), transparent 26%),
        linear-gradient(135deg, #111827, #273244);
    color: #fff;
}

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

.info-card {
    min-height: 250px;
    padding: 32px;
    border-radius: 34px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(139,107,67,.13);
    box-shadow: 0 18px 55px rgba(15,23,42,.08);
}

.info-band.dark .info-card {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.16);
}

.info-card span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--yellow), #ffad1f);
    color: #17120a;
    font-weight: 900;
}

.info-card h3 {
    margin: 0 0 12px;
    font-size: 26px;
    letter-spacing: -.04em;
    font-weight: 900;
}

.info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 600;
}

.info-band.dark .info-card p {
    color: rgba(255,255,255,.74);
}

.big-attractions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.big-attraction-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: .96fr 1.04fr;
    gap: 0;
    border-radius: 38px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139,107,67,.13);
}

.big-attraction-image {
    min-height: 330px;
    overflow: hidden;
}

.big-attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.big-attraction-content {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.big-attraction-content h3 {
    margin: 0;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -.055em;
    font-weight: 900;
}

.big-attraction-content p {
    color: var(--muted);
    line-height: 1.72;
    font-weight: 600;
}

.big-attraction-content a {
    display: inline-flex;
    justify-content: center;
    margin-top: 12px;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--green-2));
    color: #fff;
    font-weight: 900;
}

.pricing-section {
    background: #fff;
}

.pricing-box {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
    align-items: center;
    padding: 42px;
    border-radius: 42px;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,212,59,.22), transparent 28%),
        linear-gradient(135deg, #102f20, #1f6f3b);
    color: #fff;
    box-shadow: var(--shadow);
}

.pricing-box h2 {
    margin: 0;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1;
    letter-spacing: -.06em;
    font-weight: 900;
}

.pricing-box p {
    color: rgba(255,255,255,.76);
    line-height: 1.7;
}

.price-list {
    display: grid;
    gap: 12px;
}

.price-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 20px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
}

.price-list strong {
    font-weight: 900;
}

.price-list span {
    color: var(--yellow);
    font-weight: 900;
}

.custom-page-section {
    background: var(--cream);
}

.custom-page-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 26px;
    align-items: start;
}

.content-page-wide {
    width: 100%;
}

.side-contact {
    position: sticky;
    top: 120px;
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, #102f20, #1f6f3b);
    color: #fff;
    box-shadow: var(--shadow);
}

.side-contact h3 {
    margin: 0 0 10px;
    font-size: 26px;
    letter-spacing: -.04em;
}

.side-contact p {
    color: rgba(255,255,255,.76);
    line-height: 1.65;
}

.side-contact a {
    display: block;
    margin-top: 10px;
    padding: 13px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.12);
    font-weight: 900;
}

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

.contact-card {
    padding: 38px;
    border-radius: 38px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(139,107,67,.13);
}

.contact-card.dark {
    background: linear-gradient(135deg, #102f20, #1f6f3b);
    color: #fff;
}

.contact-card.wide {
    grid-column: 1 / -1;
}

.contact-card span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--green-2);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 900;
}

.contact-card.dark span {
    color: var(--yellow);
}

.contact-card h2 {
    margin: 0 0 20px;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1;
    letter-spacing: -.06em;
    font-weight: 900;
}

.contact-big {
    display: block;
    margin: 12px 0;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.1;
    font-weight: 900;
    color: var(--green-2);
}

.contact-card.dark .contact-big {
    color: #fff;
}

.contact-card p {
    color: var(--muted);
    line-height: 1.7;
    font-weight: 600;
}

.contact-card.dark p {
    color: rgba(255,255,255,.75);
}

.address {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: var(--dark) !important;
}

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

@media (max-width: 1100px) {
    .two-col,
    .two-col.reverse,
    .pricing-box,
    .custom-page-layout {
        grid-template-columns: 1fr;
    }

    .big-attractions-grid {
        grid-template-columns: 1fr;
    }

    .side-contact {
        position: static;
    }
}

@media (max-width: 820px) {
    .sub-hero {
        min-height: auto;
        padding: 140px 0 120px;
    }

    .cards-3,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-box {
        padding: 26px;
        border-radius: 32px;
    }

    .price-list div {
        flex-direction: column;
    }

    .image-stack,
    .image-stack img {
        min-height: 330px;
    }
}

.brand {
    display: flex;
    align-items: center;
}

.brand-image {
    display: block;
    width: 150px;
    max-height: 58px;
    object-fit: contain;
}

@media (max-width: 760px) {
    .brand-image {
        width: 120px;
        max-height: 52px;
    }
}