:root {
            --paper: #fbf5e8;
            --cream: #f3ead8;
            --ink: #2b2117;
            --muted: #594b3d;
            --olive: #2f4a0f;
            --olive-deep: #1f3307;
            --orange: #8f3f12;
            --brown: #5c210d;
            --gold: #c99025;
            --white: #ffffff;
            --line: rgba(92, 33, 13, .18);
            --shadow: 0 16px 34px rgba(48, 32, 18, .13);
            --max: 1120px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "Montserrat", Arial, sans-serif;
            color: var(--ink);
            background:
                radial-gradient(circle at 50% 0, rgba(201, 144, 37, .07), transparent 28%),
                var(--paper);
            font-size: 15px;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0 auto 0 0;
            width: 44px;
            pointer-events: none;
            opacity: .42;
            background:
                linear-gradient(135deg, transparent 9px, rgba(143, 63, 18, .38) 9px 12px, transparent 12px) 0 0/22px 22px,
                linear-gradient(315deg, transparent 9px, rgba(47, 74, 15, .3) 9px 12px, transparent 12px) 0 0/22px 22px;
            z-index: 0;
        }

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

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

        h1,
        h2,
        h3,
        .serif {
            font-family: "Playfair Display", Georgia, serif;
        }

        p {
            line-height: 1.55;
        }

        .container {
            width: min(calc(100% - 66px), var(--max));
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .site-header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(251, 245, 232, .96);
            border-bottom: 0;
            backdrop-filter: blur(10px);
        }

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

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            min-width: 235px;
        }

        .brand img {
            width: 190px;
            height: auto;
        }

        .brand-title {
            display: none;
        }

        .nav-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: .88rem;
            font-weight: 600;
            color: #15120f;
        }

        .nav-links a {
            position: relative;
            padding: 12px 0;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 6px;
            height: 1px;
            transform: scaleX(0);
            transform-origin: left;
            background: var(--olive);
            transition: transform .2s ease;
        }

        .nav-links a:hover::after,
        .nav-links a:focus::after,
        .nav-links a[aria-current="page"]::after {
            transform: scaleX(1);
        }

        .nav-links a:hover,
        .nav-links a:focus {
            color: var(--orange);
        }

        .nav-toggle {
            position: absolute;
            inline-size: 1px;
            block-size: 1px;
            opacity: 0;
            pointer-events: none;
        }

        .menu-button {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(31, 51, 7, .18);
            border-radius: 14px;
            background: rgba(251, 245, 232, .9);
            color: var(--olive-deep);
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        .menu-button span,
        .menu-button span::before,
        .menu-button span::after {
            content: "";
            display: block;
            width: 20px;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
            transition: transform .2s ease, opacity .2s ease;
        }

        .menu-button span {
            position: relative;
        }

        .menu-button span::before,
        .menu-button span::after {
            position: absolute;
            left: 0;
        }

        .menu-button span::before {
            top: -7px;
        }

        .menu-button span::after {
            top: 7px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 44px;
            padding: 0 28px;
            border-radius: 18px;
            border: 1px solid transparent;
            font-weight: 700;
            line-height: 1;
            transition: transform .2s ease, background .2s ease, color .2s ease;
            white-space: nowrap;
        }

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

        .btn-primary {
            background: var(--olive-deep);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--orange);
        }

        .btn-secondary {
            color: var(--brown);
            border-color: rgba(92, 33, 13, .34);
            background: rgba(251, 245, 232, .78);
        }

        .btn-light {
            background: var(--white);
            color: var(--olive-deep);
        }

        /* Keep CTA buttons inside experience cards compact and consistent. */
        .experience-content .btn {
            font-size: 0.8rem;
            padding: 0 14px;
            min-height: 38px;
            white-space: nowrap;
            max-width: 100%;
        }

        .hero {
            min-height: 378px;
            display: grid;
            align-items: stretch;
            background:
                linear-gradient(90deg, var(--paper) 0 35%, rgba(251, 245, 232, .6) 50%, rgba(251, 245, 232, 0) 70%),
                url("../images/banner.png") center/cover no-repeat,
                var(--paper);
            color: var(--ink);
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            inset: auto 0 0;
            height: 22px;
            background: linear-gradient(180deg, transparent, rgba(47, 74, 15, .08));
        }

        .hero-inner {
            min-height: 378px;
            display: flex;
            align-items: center;
            padding: 34px 0 46px;
        }

        .hero-copy {
            max-width: 540px;
            position: relative;
            z-index: 2;
        }

        .eyebrow,
        .section-kicker {
            margin: 0 0 14px;
            color: var(--brown);
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: .22em;
            text-transform: uppercase;
        }

        .hero h1 {
            margin: 0 0 22px;
            max-width: 610px;
            color: var(--olive);
            font-size: clamp(3.05rem, 5.1vw, 4.65rem);
            line-height: .88;
            letter-spacing: 0;
        }

        .hero h1 span {
            color: var(--brown);
        }

        .hero .lead {
            max-width: 570px;
            margin: 0 0 24px;
            color: #17130f;
            font-size: 1rem;
            font-weight: 500;
        }

        .hero-actions,
        .split-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .hero-badge {
            position: absolute;
            right: 28px;
            bottom: 34px;
            z-index: 3;
            width: 164px;
            aspect-ratio: 1;
            display: grid;
            place-items: center;
            padding: 18px;
            border: 3px solid #a75a16;
            border-radius: 50%;
            background: rgba(251, 245, 232, .93);
            text-align: center;
            box-shadow: 0 12px 26px rgba(48, 32, 18, .2);
        }

        .hero-badge img {
            width: 100px;
            margin: 0 auto 4px;
        }

        .hero-badge strong {
            display: block;
            color: var(--brown);
            font-family: "Playfair Display", Georgia, serif;
            font-size: 1.28rem;
            line-height: 1.05;
        }

        .section {
            padding: 48px 0;
        }

        .section-title {
            max-width: 760px;
            margin: 0 auto 26px;
            text-align: center;
        }

        .section-title h2 {
            margin: 0;
            color: var(--olive);
            font-size: clamp(2.1rem, 3.4vw, 3.25rem);
            line-height: 1;
            letter-spacing: 0;
        }

        .section-title p {
            margin: 16px auto 0;
            color: var(--muted);
            font-size: 1.02rem;
        }

        .experience-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin: -18px auto 18px;
            color: var(--brown);
            font-size: .84rem;
            font-weight: 800;
            letter-spacing: .28em;
            line-height: 1;
            text-align: center;
            text-transform: uppercase;
        }

        .experience-title::before,
        .experience-title::after {
            content: "";
            width: 54px;
            height: 10px;
            flex: 0 0 54px;
            background:
                linear-gradient(45deg, transparent 0 28%, var(--olive) 29% 70%, transparent 71%) 0 50%/10px 10px no-repeat,
                linear-gradient(45deg, transparent 0 28%, var(--gold) 29% 70%, transparent 71%) 22px 50%/10px 10px no-repeat,
                linear-gradient(45deg, transparent 0 28%, var(--brown) 29% 70%, transparent 71%) 44px 50%/10px 10px no-repeat;
        }

        .experience-title::after {
            transform: scaleX(-1);
        }

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

        .experience {
            min-height: 350px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            overflow: hidden;
            border-radius: 12px;
            color: var(--white);
            box-shadow: var(--shadow);
            isolation: isolate;
        }

        .experience img,
        .gallery-item img,
        .program-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .experience::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(90deg, rgba(31, 51, 7, .76) 0 36%, rgba(31, 51, 7, .32) 58%, rgba(31, 51, 7, .03) 100%),
                linear-gradient(180deg, rgba(20, 24, 12, .01), rgba(20, 24, 12, .08));
        }

        .experience-kids::before {
            background:
                linear-gradient(90deg, rgba(143, 63, 18, .76) 0 36%, rgba(143, 63, 18, .34) 60%, rgba(143, 63, 18, .04) 100%),
                linear-gradient(180deg, rgba(20, 24, 12, .01), rgba(20, 24, 12, .06));
        }

        .experience-shack {
            color: var(--ink);
        }

        .experience-shack::before {
            background:
                linear-gradient(90deg, rgba(245, 229, 198, .84) 0 36%, rgba(245, 229, 198, .48) 62%, rgba(245, 229, 198, .04) 100%),
                linear-gradient(180deg, rgba(255, 247, 232, .02), rgba(47, 74, 15, .03));
        }

        .experience-content {
            position: absolute;
            inset: 0 auto 0 0;
            z-index: 2;
            padding: 24px 24px 22px;
            width: min(76%, 285px);
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .experience h3 {
            margin: 0 0 9px;
            max-width: 240px;
            font-size: clamp(2rem, 2.6vw, 2.38rem);
            line-height: .92;
        }

        .card-kicker {
            display: inline-block;
            width: max-content;
            margin: 0 0 14px;
            padding: 6px 13px;
            color: var(--white);
            background: rgba(143, 63, 18, .9);
            font-size: .86rem;
            font-weight: 800;
            letter-spacing: .04em;
            text-transform: uppercase;
            transform: rotate(-4deg);
        }

        .experience p {
            margin: 0 0 14px;
            color: rgba(255, 255, 255, .86);
            font-size: .92rem;
            max-width: 235px;
        }

        .experience-shack p {
            color: rgba(43, 33, 23, .8);
        }

        .feature-list {
            display: grid;
            gap: 7px;
            list-style: none;
            padding: 0;
            margin: 0 0 18px;
            font-size: .78rem;
            font-weight: 600;
            line-height: 1.25;
            max-width: 235px;
        }

        .feature-list li {
            display: grid;
            grid-template-columns: 13px minmax(0, 1fr);
            gap: 9px;
            align-items: start;
        }

        .feature-list li::before {
            content: "";
            display: block;
            width: 13px;
            height: 13px;
            margin-top: 1px;
            border-radius: 50%;
            background: var(--gold);
        }

        .experience-shack .feature-list li::before {
            background: var(--olive);
        }

        .experience-content .btn-light {
            width: 190px;
            min-height: 44px;
            margin-top: auto;
            padding: 0 18px;
            align-self: flex-start;
            text-align: center;
        }

        .experience-content .btn-light::after {
            content: "→";
            margin-left: 10px;
            font-size: 1.08em;
            line-height: 1;
        }

        .experience-shack .btn-light {
            background: var(--olive);
            color: var(--white);
        }

        .experience-kids .btn-light {
            background: rgba(251, 245, 232, 0.96);
            color: rgba(143, 63, 18, 0.96);
        }

        .experience-art .btn-light {
            background: rgba(251, 245, 232, 0.96);
        }

        .about {
            background: transparent;
        }

        .page-hero {
            padding: 72px 0 54px;
            background: var(--paper);
        }

        .page-hero-inner {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 54px;
            align-items: center;
        }

        .page-hero h1 {
            margin: 0 0 18px;
            color: var(--olive);
            font-size: clamp(3rem, 6vw, 5.25rem);
            line-height: .88;
        }

        .page-hero p:not(.section-kicker) {
            max-width: 560px;
            margin: 0;
            color: var(--muted);
            font-size: 1.05rem;
        }

        .page-hero img {
            width: 100%;
            min-height: 360px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .page-cta {
            text-align: center;
            background: var(--paper);
        }

        .page-cta h2 {
            margin: 0 auto 12px;
            max-width: 760px;
            color: var(--olive);
            font-size: clamp(2rem, 4vw, 3.4rem);
            line-height: 1;
        }

        .page-cta p {
            max-width: 620px;
            margin: 0 auto 22px;
            color: var(--muted);
        }

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

        .split h2 {
            margin: 0 0 18px;
            color: var(--olive);
            font-size: clamp(2.1rem, 3.6vw, 3.4rem);
            line-height: 1;
        }

        .split p {
            color: #51483f;
            margin: 0 0 16px;
        }

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

        .image-stack .main-photo {
            width: 78%;
            height: 500px;
            object-fit: cover;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }

        .image-stack .inset-photo {
            position: absolute;
            right: 0;
            bottom: 20px;
            width: 44%;
            aspect-ratio: 1;
            object-fit: cover;
            border: 10px solid var(--cream);
            border-radius: 50%;
            box-shadow: var(--shadow);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            border-top: 1px solid var(--line);
            border-left: 1px solid var(--line);
        }

        .value {
            position: relative;
            min-height: 145px;
            padding: 20px 18px;
            background: transparent;
            text-align: center;
            border-right: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
        }

        .value-art {
            position: relative;
            display: block;
            width: 70px;
            height: 70px;
            margin: 0 auto 10px;
            border-radius: 50%;
            background: rgba(201, 144, 37, .16);
        }

        .value-art::before,
        .value-art::after {
            content: "";
            position: absolute;
            inset: 0;
            margin: auto;
        }

        .value-art.cultural {
            background:
                radial-gradient(circle at 50% 17%, var(--gold) 0 16px, transparent 17px),
                rgba(201, 144, 37, .16);
        }

        .value-art.cultural::before {
            width: 46px;
            height: 30px;
            top: 18px;
            border-radius: 50% 50% 42% 42%;
            background:
                radial-gradient(ellipse at 50% 70%, var(--olive) 0 26px, transparent 27px);
        }

        .value-art.cultural::after {
            width: 4px;
            height: 34px;
            top: 28px;
            border-radius: 999px;
            background: var(--brown);
            box-shadow:
                -13px -8px 0 -1px var(--olive),
                13px -8px 0 -1px var(--olive),
                -22px 12px 0 -2px var(--gold),
                22px 12px 0 -2px var(--brown);
        }

        .value-art.playful::before {
            width: 48px;
            height: 48px;
            border-radius: 45% 55% 48% 52%;
            background:
                radial-gradient(circle at 48% 45%, var(--olive) 0 8px, transparent 9px),
                radial-gradient(circle at 24% 62%, var(--orange) 0 5px, transparent 6px),
                radial-gradient(circle at 70% 66%, var(--gold) 0 5px, transparent 6px);
            border: 4px solid rgba(47, 74, 15, .38);
            transform: rotate(-12deg);
        }

        .value-art.playful::after {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--gold);
            box-shadow:
                -26px -14px 0 -1px var(--orange),
                24px -18px 0 -1px var(--olive),
                30px 18px 0 -2px var(--brown);
        }

        .value-art.book::before {
            width: 48px;
            height: 34px;
            border: 4px solid var(--orange);
            border-radius: 5px 5px 12px 12px;
            background:
                linear-gradient(90deg, transparent 48%, var(--orange) 48% 52%, transparent 52%),
                linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .18));
        }

        .value-art.book::after {
            width: 36px;
            height: 2px;
            top: 18px;
            background: var(--gold);
            box-shadow: 0 9px 0 rgba(201, 144, 37, .75);
        }

        .value-art.zen::before {
            width: 48px;
            height: 42px;
            background:
                radial-gradient(ellipse at 50% 18%, transparent 0 14px, var(--olive) 15px 18px, transparent 19px),
                radial-gradient(ellipse at 25% 64%, transparent 0 13px, var(--olive) 14px 17px, transparent 18px),
                radial-gradient(ellipse at 75% 64%, transparent 0 13px, var(--olive) 14px 17px, transparent 18px);
        }

        .value-art.zen::after {
            width: 36px;
            height: 3px;
            top: 45px;
            border-radius: 999px;
            background: var(--gold);
            box-shadow: 0 8px 0 rgba(143, 63, 18, .65);
        }

        .value-art.face::before {
            width: 44px;
            height: 44px;
            border-radius: 48% 52% 46% 54%;
            background:
                radial-gradient(circle at 34% 38%, var(--olive) 0 3px, transparent 4px),
                radial-gradient(circle at 66% 38%, var(--olive) 0 3px, transparent 4px),
                radial-gradient(ellipse at 50% 66%, transparent 0 10px, var(--brown) 11px 13px, transparent 14px),
                rgba(201, 144, 37, .42);
            border: 4px solid rgba(143, 63, 18, .52);
        }

        .value-art.face::after {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            border: 3px dashed rgba(47, 74, 15, .4);
            transform: rotate(12deg);
        }

        .value strong {
            display: block;
            margin-bottom: 10px;
            color: var(--olive);
            font-family: "Playfair Display", Georgia, serif;
            font-size: 1.18rem;
            line-height: 1.05;
        }

        .value p {
            margin: 0;
            color: var(--muted);
            font-size: .86rem;
        }

        .programs {
            color: var(--white);
            background:
                linear-gradient(rgba(31, 49, 16, .88), rgba(31, 49, 16, .88)),
                url("../images/blog_bg.jpg") center/cover fixed;
        }

        .programs .section-title h2,
        .programs .section-title p {
            color: var(--white);
        }

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

        .program-card {
            display: grid;
            grid-template-rows: 170px 1fr;
            overflow: hidden;
            border-radius: 10px;
            background: rgba(255, 255, 255, .96);
            color: var(--ink);
            box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
        }

        .program-card div {
            padding: 17px;
        }

        .program-card h3 {
            margin: 0 0 8px;
            color: var(--olive);
            font-size: 1.28rem;
            line-height: 1.05;
        }

        .program-card p {
            margin: 0;
            color: var(--muted);
            font-size: .84rem;
            line-height: 1.55;
        }

        .gallery {
            background: var(--paper);
        }

        .gallery-shell {
            display: grid;
            grid-template-columns: 280px 1fr;
            grid-template-rows: auto auto;
            gap: 10px 18px;
            align-items: stretch;
            padding: 20px 22px 18px;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(90deg, rgba(31, 51, 7, .98), rgba(31, 51, 7, .92)),
                radial-gradient(circle at 13% 86%, rgba(201, 144, 37, .18), transparent 30%);
            color: var(--white);
            box-shadow: var(--shadow);
        }

        .gallery-shell::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 92px;
            opacity: .43;
            background:
                linear-gradient(135deg, transparent 10px, rgba(201, 144, 37, .75) 10px 14px, transparent 14px) 0 0/24px 24px,
                linear-gradient(315deg, transparent 10px, rgba(201, 144, 37, .75) 10px 14px, transparent 14px) 0 0/24px 24px;
        }

        .gallery-shell::after {
            content: "";
            position: absolute;
            left: 200px;
            bottom: 26px;
            width: 96px;
            height: 122px;
            opacity: .52;
            background:
                radial-gradient(ellipse at 52% 14%, transparent 0 18px, rgba(201, 144, 37, .72) 19px 22px, transparent 23px),
                linear-gradient(rgba(201, 144, 37, .72), rgba(201, 144, 37, .72)) 45px 30px/3px 90px no-repeat,
                linear-gradient(34deg, transparent 44%, rgba(201, 144, 37, .72) 45% 48%, transparent 49%) 9px 50px/40px 62px no-repeat,
                linear-gradient(146deg, transparent 44%, rgba(201, 144, 37, .72) 45% 48%, transparent 49%) 45px 50px/40px 62px no-repeat;
        }

        .gallery-copy {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 162px;
            padding: 8px 10px 6px 8px;
            position: relative;
            z-index: 1;
        }

        .gallery-copy h2 {
            margin: 0 0 14px;
            max-width: 235px;
            font-size: clamp(1.9rem, 2.7vw, 2.55rem);
            line-height: .94;
        }

        .gallery-copy p {
            margin: 0;
            color: rgba(255, 255, 255, .78);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-auto-rows: 150px;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
            background: rgba(255, 255, 255, .08);
        }

        .gallery-item.tall {
            grid-row: span 1;
        }

        .gallery-subtext {
            grid-column: 2;
            max-width: 560px;
            margin: 0;
            color: rgba(255, 255, 255, .78);
            position: relative;
            z-index: 1;
        }

        .booking {
            background:
                linear-gradient(90deg, rgba(143, 63, 18, .96), rgba(143, 63, 18, .9)),
                url("../images/special_menu_bg.jpg") center/cover;
            color: var(--white);
        }

        .booking-panel {
            display: grid;
            grid-template-columns: .82fr 1.18fr;
            gap: 36px;
            align-items: start;
        }

        .booking h2 {
            margin: 0 0 16px;
            font-size: clamp(2.1rem, 3.3vw, 3.1rem);
            line-height: 1;
        }

        .booking p {
            margin: 0;
            color: rgba(255, 255, 255, .86);
        }

        .booking-form {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            padding: 24px;
            border-radius: 10px;
            background: rgba(255, 255, 255, .96);
            box-shadow: var(--shadow);
        }

        .booking-form label {
            display: grid;
            gap: 7px;
            color: var(--ink);
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .booking-form .wide {
            grid-column: 1 / -1;
        }

        input,
        select,
        textarea {
            width: 100%;
            min-height: 48px;
            border: 1px solid rgba(70, 52, 38, .18);
            border-radius: 6px;
            padding: 12px 14px;
            color: rgba(46, 36, 26, .48);
            background: var(--white);
            font: inherit;
            font-weight: 400;
            font-size: .96rem;
        }

        input::placeholder,
        textarea::placeholder {
            color: rgba(46, 36, 26, .42);
            font-weight: 400;
        }

        textarea {
            min-height: 128px;
            resize: vertical;
        }

        input:invalid,
        select:invalid,
        textarea:invalid {
            border-color: rgba(143, 63, 18, .58);
        }

        input:focus:invalid,
        select:focus:invalid,
        textarea:focus:invalid {
            outline: 2px solid rgba(143, 63, 18, .2);
            outline-offset: 2px;
        }

        .booking-form button {
            justify-self: start;
            cursor: pointer;
        }

        .site-footer {
            padding: 44px 0 28px;
            color: var(--white);
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(rgba(31, 51, 7, .94), rgba(31, 51, 7, .96)),
                linear-gradient(135deg, transparent 10px, rgba(201, 144, 37, .11) 10px 13px, transparent 13px) 0 0/28px 28px,
                linear-gradient(315deg, transparent 10px, rgba(201, 144, 37, .09) 10px 13px, transparent 13px) 0 0/28px 28px,
                radial-gradient(circle at 18% 28%, rgba(201, 144, 37, .09), transparent 24%),
                radial-gradient(circle at 84% 70%, rgba(251, 245, 232, .05), transparent 28%),
                url("../images/footer_background.jpg") center/cover;
        }

        .site-footer::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 170px;
            opacity: .22;
            background:
                linear-gradient(135deg, transparent 12px, var(--gold) 12px 16px, transparent 16px) 0 0/32px 32px,
                linear-gradient(315deg, transparent 12px, var(--gold) 12px 16px, transparent 16px) 0 0/32px 32px;
            pointer-events: none;
        }

        .site-footer::after {
            content: "";
            position: absolute;
            right: 7%;
            bottom: 28px;
            width: 190px;
            height: 190px;
            opacity: .11;
            background:
                radial-gradient(circle at 50% 50%, transparent 0 28px, var(--gold) 29px 33px, transparent 34px),
                radial-gradient(circle at 50% 50%, transparent 0 58px, var(--gold) 59px 62px, transparent 63px),
                linear-gradient(0deg, transparent 47%, var(--gold) 48% 51%, transparent 52%),
                linear-gradient(90deg, transparent 47%, var(--gold) 48% 51%, transparent 52%);
            pointer-events: none;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr .75fr 1fr 1fr;
            gap: 36px;
            position: relative;
            z-index: 1;
        }

        .site-footer h3 {
            margin: 0 0 14px;
            color: var(--gold);
            font-size: 1rem;
            letter-spacing: .12em;
            text-transform: uppercase;
            font-family: "Montserrat", Arial, sans-serif;
        }

        .site-footer p,
        .site-footer li {
            margin: 0 0 9px;
            color: rgba(255, 255, 255, .8);
            line-height: 1.65;
        }

        .site-footer ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .footer-icon-link {
            display: inline-flex;
            align-items: center;
            gap: 9px;
        }

        .footer-icon-link svg {
            width: 18px;
            height: 18px;
            flex: 0 0 18px;
        }

        .footer-logo {
            width: 180px;
            margin-bottom: 18px;
        }

        .copyright {
            margin-top: 34px;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, .14);
            color: rgba(255, 255, 255, .62);
            font-size: .86rem;
            position: relative;
            z-index: 1;
        }

        .reveal {
            animation: rise .7s ease both;
        }

        .experience,
        .program-card,
        .gallery-item,
        .value {
            transition: transform .25s ease, box-shadow .25s ease;
        }

        .experience:hover,
        .program-card:hover,
        .gallery-item:hover {
            transform: translateY(-4px);
        }

        @keyframes rise {
            from {
                opacity: 0;
                transform: translateY(18px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1080px) {
            .nav {
                flex-wrap: wrap;
            }

            .menu-button {
                display: inline-flex;
                order: 2;
            }

            .nav>.btn {
                order: 1;
                margin-left: auto;
            }

            .brand {
                order: 0;
            }

            .nav nav {
                order: 3;
                flex: 0 0 100%;
            }

            .nav-links {
                display: none;
                width: 100%;
                padding: 12px 0 16px;
                gap: 0;
                flex-direction: column;
                align-items: stretch;
                border-top: 1px solid rgba(31, 51, 7, .12);
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 13px 2px;
            }

            .nav-links a::after {
                bottom: 7px;
                right: auto;
                width: 42px;
            }

            .nav-toggle:checked~nav .nav-links {
                display: flex;
            }

            .nav-toggle:checked~.menu-button span {
                transform: rotate(45deg);
            }

            .nav-toggle:checked~.menu-button span::before {
                transform: translateY(7px) rotate(90deg);
            }

            .nav-toggle:checked~.menu-button span::after {
                opacity: 0;
            }

            .experience-grid,
            .split,
            .booking-panel,
            .gallery-shell,
            .footer-grid {
                grid-template-columns: 1fr;
            }

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

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

            .gallery-subtext {
                grid-column: 1;
            }

            .gallery-item.tall {
                grid-row: span 1;
            }
        }

        @media (max-width: 720px) {
            body::before {
                display: none;
            }

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

            .site-header {
                position: static;
            }

            .nav {
                min-height: auto;
                padding: 14px 0;
                gap: 12px;
            }

            .brand {
                min-width: 0;
            }

            .brand img {
                width: 68px;
            }

            .nav .btn {
                min-height: 42px;
                padding: 0 14px;
                font-size: .84rem;
            }

            .menu-button {
                width: 42px;
                height: 42px;
            }

            .hero,
            .hero-inner {
                min-height: 640px;
            }

            .hero {
                background:
                    linear-gradient(180deg, rgba(251, 245, 232, .7) 0%, rgba(251, 245, 232, .5) 47%, rgba(251, 245, 232, .1) 100%),
                    url("../images/banner.png") center/cover no-repeat,
                    var(--paper);
            }

            .hero-inner {
                padding: 58px 0 72px;
            }

            .hero h1 {
                font-size: clamp(3rem, 15vw, 4.5rem);
            }

            .hero-badge {
                right: 14px;
                bottom: 18px;
                width: 126px;
                padding: 14px;
            }

            .hero-badge img {
                width: 76px;
            }

            .hero-badge strong {
                font-size: 1rem;
            }

            .section {
                padding: 66px 0;
            }

            .experience-grid,
            .values-grid,
            .program-grid,
            .gallery-grid,
            .booking-form {
                grid-template-columns: 1fr;
            }

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

            .experience {
                min-height: 520px;
            }

            .experience-content {
                width: min(82%, 300px);
                padding: 24px 20px;
            }

            .image-stack {
                min-height: auto;
                display: grid;
                gap: 14px;
            }

            .image-stack .main-photo,
            .image-stack .inset-photo {
                position: static;
                width: 100%;
                height: auto;
                aspect-ratio: 1;
                border: 0;
            }

            .gallery-shell,
            .booking-form {
                padding: 18px;
            }
        }
