:root {
    --forest: #2f4f3e;
    --deep-forest: #1f3a2e;
    --sage: #dde7df;
    --moss: #afc6a7;
    --off-white: #faf8f2;
    --stone: #e8e1d4;
    --charcoal: #171717;
    --bark: #8a5f3f;
    --white: #ffffff;
    --max: 1240px;
    --gutter: clamp(1rem, 4vw, 3rem);
    --heading: "Fraunces", Georgia, serif;
    --body: "Nunito Sans", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--charcoal);
    background: var(--off-white);
    font-family: var(--body);
    font-size: 1rem;
    line-height: 1.65;
}

section[id] {
    scroll-margin-top: 104px;
}

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

a {
    color: inherit;
}

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

:focus-visible {
    outline: 3px solid var(--moss);
    outline-offset: 4px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 20;
    padding: 0.6rem 0.85rem;
    color: var(--off-white);
    background: var(--deep-forest);
    border-radius: 0.4rem;
    transform: translateY(-180%);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: color-mix(in srgb, var(--off-white) 92%, white);
    border-bottom: 1px solid rgba(47, 79, 62, 0.12);
    backdrop-filter: blur(18px);
}

.header-shell {
    width: min(100%, var(--max));
    min-height: 88px;
    margin: 0 auto;
    padding: 0.8rem var(--gutter);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1.25rem;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 2.1rem);
}

.nav-left a,
.mobile-nav a {
    text-decoration: none;
    color: var(--deep-forest);
    font-weight: 800;
    letter-spacing: 0;
}

.nav-left a {
    position: relative;
    font-size: 0.94rem;
}

.nav-left a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.45rem;
    height: 2px;
    background: var(--moss);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-left a:hover::after {
    transform: scaleX(1);
}

.brand-mark {
    width: clamp(82px, 11vw, 128px);
    padding: 0.15rem;
}

.brand-mark img {
    width: 100%;
    height: auto;
}

.nav-right {
    justify-content: flex-end;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.84rem 1.15rem;
    color: var(--off-white);
    background: var(--forest);
    border: 1px solid var(--forest);
    border-radius: 0.62rem;
    text-decoration: none;
    font-weight: 900;
    line-height: 1;
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
    background: var(--deep-forest);
    border-color: var(--deep-forest);
}

.button-small {
    min-height: 42px;
    padding: 0.72rem 1rem;
}

.button-quiet {
    color: var(--deep-forest);
    background: transparent;
    border-color: rgba(47, 79, 62, 0.35);
}

.button-quiet:hover {
    color: var(--off-white);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(47, 79, 62, 0.25);
    border-radius: 0.55rem;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    margin: 5px auto;
    background: var(--deep-forest);
    transition: transform 0.2s ease;
}

.mobile-nav {
    display: none;
}

.notice-band {
    padding: 0.8rem var(--gutter);
    text-align: center;
    color: var(--off-white);
    background: var(--deep-forest);
}

.notice-band p {
    margin: 0;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2.4rem, 8vw, 6rem) 0 clamp(2.7rem, 7vw, 5.8rem);
    background: linear-gradient(
        105deg,
        rgba(250, 248, 242, 0.98) 0%,
        rgba(250, 248, 242, 0.95) 50%,
        rgba(221, 231, 223, 0.72) 100%
    );
}

.leaf-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.24;
    background-image: url("data:image/svg+xml,%3Csvg width='260' height='180' viewBox='0 0 260 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%232F4F3E' stroke-width='1.2' stroke-linecap='round' opacity='.42'%3E%3Cpath d='M38 62C62 42 84 40 104 50C80 75 58 78 38 62Z'/%3E%3Cpath d='M58 61C68 59 82 55 100 50'/%3E%3Cpath d='M178 36C198 20 221 20 238 30C218 52 197 55 178 36Z'/%3E%3Cpath d='M195 36C204 34 218 31 236 30'/%3E%3Cpath d='M148 132C170 112 194 108 214 118C190 143 168 148 148 132Z'/%3E%3Cpath d='M169 131C180 128 194 123 212 118'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 340px 235px;
    background-position: 3% 4%;
}

.hero-shell,
.section-shell,
.footer-shell,
.footer-lower {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(310px, 0.94fr);
    align-items: center;
    gap: clamp(2rem, 6vw, 5.2rem);
}

.eyebrow {
    margin: 0 0 0.85rem;
    color: var(--forest);
    font-size: 0.79rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--deep-forest);
    font-family: var(--heading);
    line-height: 1.04;
    letter-spacing: 0;
}

h1 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 5.8vw, 4.75rem);
    line-height: 0.99;
}

#book-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.95rem, 4.5vw, 3.95rem);
}

h3 {
    font-size: clamp(1.22rem, 1.85vw, 1.62rem);
}

.hero-intro {
    max-width: 58ch;
    margin: 1.4rem 0 0;
    color: rgba(23, 23, 23, 0.78);
    font-size: clamp(1.06rem, 2.2vw, 1.26rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.7rem 0 0;
}

.trust-line {
    margin: 1rem 0 0;
    color: var(--deep-forest);
    font-weight: 900;
}

.hero-visual {
    position: relative;
    min-height: clamp(360px, 45vw, 610px);
}

.hero-image-wrap {
    position: absolute;
    inset: 0 0 2.4rem 2.2rem;
    overflow: hidden;
    border-radius: 10rem 10rem 0.9rem 0.9rem;
    border: 8px solid rgba(255, 255, 255, 0.76);
    background: var(--sage);
}

.hero-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(250, 248, 242, 0.05),
        rgba(31, 58, 46, 0.18)
    );
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% 50%;
}

.hero-badge {
    position: absolute;
    left: 0.45rem;
    bottom: 0.35rem;
    width: min(168px, 42vw);
    aspect-ratio: 1;
    display: grid;
    place-content: center;
    padding: 1rem;
    color: var(--off-white);
    text-align: center;
    background: var(--deep-forest);
    border: 1px solid rgba(250, 248, 242, 0.45);
    border-radius: 50%;
}

.hero-badge span {
    font-family: var(--heading);
    font-size: clamp(2.65rem, 5.6vw, 4.35rem);
    line-height: 0.78;
}

.hero-badge p {
    max-width: 9rem;
    margin: 0.4rem auto 0;
    font-weight: 900;
    line-height: 1.1;
}

.local-strip {
    padding: 1.15rem var(--gutter);
    color: var(--off-white);
    text-align: center;
    background: var(--forest);
}

.local-strip p {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.activities-section,
.experience-section,
.trust-section,
.founder-section,
.closing-cta {
    padding: clamp(4rem, 9vw, 7.5rem) 0;
}

.activities-section {
    background:
        linear-gradient(
            180deg,
            var(--off-white),
            #f3f6ef 52%,
            var(--off-white)
        ),
        repeating-linear-gradient(
            45deg,
            rgba(47, 79, 62, 0.03) 0 1px,
            transparent 1px 18px
        );
}

.activities-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.party-intro {
    max-width: 930px;
    margin-bottom: clamp(2rem, 5vw, 4.2rem);
}

.party-intro p:not(.eyebrow) {
    max-width: 72ch;
    color: rgba(23, 23, 23, 0.74);
    font-size: clamp(1.08rem, 2vw, 1.24rem);
}

.party-package {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
}

.mini-heading {
    margin: 0 0 0.9rem;
    color: var(--forest);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-heading {
    position: sticky;
    top: 116px;
}

.section-heading p:not(.eyebrow),
.experience-copy p,
.trust-layout p,
.founder-copy p,
.closing-cta p {
    color: rgba(23, 23, 23, 0.74);
    font-size: clamp(1.04rem, 1.9vw, 1.18rem);
}

.activity-panel {
    position: relative;
}

.activity-image {
    overflow: hidden;
    height: clamp(210px, 29vw, 360px);
    margin: 0 0 1.6rem;
    border-radius: 0.8rem;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
}

.activity-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(47, 79, 62, 0.22);
}

.activity-list li {
    display: grid;
    grid-template-columns: 3.6rem minmax(0, 1fr);
    gap: clamp(1rem, 2.4vw, 1.8rem);
    align-items: start;
    padding: 1.35rem 0 1.45rem;
    border-bottom: 1px solid rgba(47, 79, 62, 0.22);
}

.activity-list span {
    color: var(--bark);
    font-family: var(--heading);
    font-size: 1.22rem;
    font-weight: 750;
    font-variant-numeric: tabular-nums;
    line-height: 1.04;
    padding-top: 0.14rem;
}

.activity-list p {
    margin: 0.32rem 0 0;
    color: rgba(23, 23, 23, 0.7);
    max-width: 48rem;
}

.included-panel {
    position: sticky;
    top: 116px;
    padding: clamp(1.25rem, 3vw, 2rem);
    color: var(--off-white);
    background: linear-gradient(
        145deg,
        rgba(31, 58, 46, 0.98),
        rgba(47, 79, 62, 0.95)
    );
    border: 1px solid rgba(250, 248, 242, 0.22);
    border-radius: 0.8rem;
}

.included-panel .mini-heading,
.included-panel h3,
.included-panel .venue-note {
    color: var(--off-white);
}

.included-panel .woven-list {
    margin-top: 1.2rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.included-panel .woven-list li {
    color: var(--off-white);
}

.included-panel .venue-note {
    margin: 1.35rem 0 0;
    font-size: 1rem;
}

.experience-section {
    color: var(--off-white);
    background:
        linear-gradient(135deg, rgba(31, 58, 46, 0.98), rgba(47, 79, 62, 0.96)),
        radial-gradient(
            circle at 10% 10%,
            rgba(175, 198, 167, 0.3),
            transparent 30%
        );
}

.experience-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: clamp(2rem, 7vw, 6rem);
    align-items: center;
}

.experience-section .eyebrow,
.experience-section h2,
.experience-section p,
.experience-section .venue-note {
    color: var(--off-white);
}

.experience-copy p {
    max-width: 56ch;
}

.venue-note {
    padding-left: 1.1rem;
    border-left: 3px solid var(--moss);
    font-weight: 900;
}

.woven-list {
    margin: 0;
    padding: clamp(1.2rem, 3vw, 2rem);
    list-style: none;
    border: 1px solid rgba(250, 248, 242, 0.28);
    border-radius: 0.8rem;
    background: rgba(250, 248, 242, 0.08);
}

.woven-list li {
    position: relative;
    padding: 0.85rem 0 0.85rem 2rem;
    color: var(--off-white);
    font-weight: 900;
    border-bottom: 1px solid rgba(250, 248, 242, 0.16);
}

.woven-list li:last-child {
    border-bottom: 0;
}

.woven-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.32rem;
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--moss);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

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

.trust-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 0.92fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.4rem;
    margin: 0.25rem 0 0;
    padding: clamp(1rem, 2.8vw, 1.45rem) clamp(1rem, 3vw, 1.65rem);
    list-style: none;
    background: rgba(250, 248, 242, 0.62);
    border: 1px solid rgba(47, 79, 62, 0.16);
    border-radius: 0.75rem;
}

.trust-points li {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0.72rem 0 0.72rem 1.55rem;
    color: var(--deep-forest);
    border-bottom: 1px solid rgba(47, 79, 62, 0.16);
    font-weight: 900;
    position: relative;
}

.trust-points li:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.trust-points li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 0.52rem;
    height: 0.52rem;
    background: var(--forest);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.founder-section {
    background: var(--off-white);
}

.founder-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.founder-copy {
    max-width: 620px;
}

.founder-placeholder {
    min-height: 430px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.8rem;
    padding: clamp(2rem, 5vw, 3rem);
    color: var(--deep-forest);
    text-align: center;
    background:
        linear-gradient(
            135deg,
            rgba(221, 231, 223, 0.94),
            rgba(250, 248, 242, 0.9)
        ),
        url("data:image/svg+xml,%3Csvg width='260' height='180' viewBox='0 0 260 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%232F4F3E' stroke-width='1.2' stroke-linecap='round' opacity='.35'%3E%3Cpath d='M38 62C62 42 84 40 104 50C80 75 58 78 38 62Z'/%3E%3Cpath d='M58 61C68 59 82 55 100 50'/%3E%3Cpath d='M178 36C198 20 221 20 238 30C218 52 197 55 178 36Z'/%3E%3Cpath d='M195 36C204 34 218 31 236 30'/%3E%3Cpath d='M148 132C170 112 194 108 214 118C190 143 168 148 148 132Z'/%3E%3Cpath d='M169 131C180 128 194 123 212 118'/%3E%3C/g%3E%3C/svg%3E");
    background-size:
        auto,
        330px 230px;
    border: 1px solid rgba(47, 79, 62, 0.16);
    border-radius: 0.8rem;
}

.founder-placeholder img {
    width: clamp(96px, 15vw, 148px);
}

.founder-placeholder span {
    color: var(--forest);
    font-family: var(--heading);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.04;
}

.founder-placeholder p {
    margin: 0;
    font-weight: 900;
}

.nic-trust-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 1.2rem;
    margin: 1.6rem 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(47, 79, 62, 0.18);
}

.nic-trust-list li {
    position: relative;
    padding: 0.85rem 0 0.85rem 1.45rem;
    color: var(--deep-forest);
    border-bottom: 1px solid rgba(47, 79, 62, 0.18);
    font-weight: 900;
}

.nic-trust-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.42rem;
    width: 0.48rem;
    height: 0.48rem;
    background: var(--forest);
    border-radius: 50%;
}

.closing-cta {
    background:
        linear-gradient(
            90deg,
            rgba(250, 248, 242, 0.95),
            rgba(232, 225, 212, 0.55)
        ),
        radial-gradient(
            circle at 88% 20%,
            rgba(175, 198, 167, 0.62),
            transparent 28%
        );
}

.cta-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-layout div {
    max-width: 760px;
}

.enquiry-section,
.book-hero {
    padding: clamp(4rem, 9vw, 7.5rem) 0;
    background: var(--off-white);
}

.enquiry-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.enquiry-copy {
    position: sticky;
    top: 116px;
}

.enquiry-copy p {
    color: rgba(23, 23, 23, 0.74);
    font-size: clamp(1.04rem, 1.9vw, 1.18rem);
}

.privacy-note {
    padding-left: 1rem;
    border-left: 3px solid var(--moss);
    font-weight: 900;
}

.enquiry-form,
.login-panel,
.admin-panel {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(47, 79, 62, 0.16);
    border-radius: 0.8rem;
}

.enquiry-form {
    padding: clamp(1.1rem, 3vw, 2rem);
}

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

label {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1rem;
    color: var(--deep-forest);
    font-weight: 900;
}

label span small {
    color: rgba(23, 23, 23, 0.55);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 0.72rem 0.78rem;
    color: var(--charcoal);
    background: var(--white);
    border: 1px solid rgba(47, 79, 62, 0.24);
    border-radius: 0.45rem;
    font: inherit;
}

textarea {
    resize: vertical;
}

label em,
.form-error {
    color: #8b241f;
    font-style: normal;
    font-weight: 800;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.checkbox-row input {
    width: 1.1rem;
    min-height: 1.1rem;
    margin-top: 0.28rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-success,
.admin-alert {
    margin: 0 0 1.2rem;
    padding: 0.9rem 1rem;
    color: var(--deep-forest);
    background: var(--sage);
    border: 1px solid rgba(47, 79, 62, 0.18);
    border-radius: 0.55rem;
    font-weight: 900;
}

.error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1rem;
    padding: var(--gutter);
    text-align: center;
}

.error-page img {
    width: 130px;
}

.admin-body {
    background: #f4f6ef;
}

.admin-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem var(--gutter);
    background: rgba(250, 248, 242, 0.96);
    border-bottom: 1px solid rgba(47, 79, 62, 0.16);
}

.admin-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--deep-forest);
    text-decoration: none;
    font-weight: 900;
}

.admin-brand img {
    width: 56px;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.admin-nav a,
.admin-header button,
.inline-action button,
.action-row button {
    color: var(--deep-forest);
    background: transparent;
    border: 1px solid rgba(47, 79, 62, 0.24);
    border-radius: 0.45rem;
    padding: 0.55rem 0.75rem;
    text-decoration: none;
    font: inherit;
    font-weight: 900;
}

.admin-main {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 3rem) var(--gutter) clamp(3rem, 7vw, 5rem);
}

.admin-title {
    margin-bottom: 1.4rem;
}

.admin-title h1,
.login-panel h1 {
    font-size: clamp(2.1rem, 5vw, 4rem);
}

.admin-grid,
.admin-two-column {
    display: grid;
    gap: 1rem;
}

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

.admin-two-column {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    align-items: start;
    margin-bottom: 1rem;
}

.admin-panel {
    padding: clamp(1rem, 2.5vw, 1.4rem);
}

.admin-panel h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.admin-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(47, 79, 62, 0.14);
}

.admin-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(47, 79, 62, 0.14);
}

.admin-list a {
    display: grid;
    gap: 0.12rem;
    text-decoration: none;
}

.admin-list strong {
    color: var(--deep-forest);
}

.admin-list span,
.admin-list small,
.muted {
    color: rgba(23, 23, 23, 0.68);
}

.detail-list {
    display: grid;
    grid-template-columns: 10rem minmax(0, 1fr);
    gap: 0.65rem 1rem;
    margin: 0;
}

.detail-list dt {
    color: var(--deep-forest);
    font-weight: 900;
}

.detail-list dd {
    margin: 0;
    color: rgba(23, 23, 23, 0.76);
}

.inline-action {
    margin-top: 1rem;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.span-two {
    grid-column: span 2;
}

.login-panel {
    width: min(92vw, 430px);
    margin: 10vh auto;
    padding: 2rem;
}

.login-panel img {
    width: 96px;
    margin-bottom: 1rem;
}

.site-footer {
    padding: clamp(2.5rem, 6vw, 4rem) 0 1.4rem;
    color: var(--off-white);
    background: var(--deep-forest);
}

.footer-shell {
    display: grid;
    grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.footer-brand img {
    width: 118px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 18rem;
    margin: 1rem 0 0;
    color: rgba(250, 248, 242, 0.78);
}

.footer-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.footer-details span {
    color: var(--moss);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-details p,
.footer-details a,
.footer-lower p {
    color: rgba(250, 248, 242, 0.78);
}

.footer-details p {
    margin: 0.35rem 0 0;
}

.footer-lower {
    padding-top: 2rem;
}

.footer-lower p {
    margin: 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(250, 248, 242, 0.14);
    font-size: 0.92rem;
}

@media (max-width: 900px) {
    .header-shell {
        grid-template-columns: 1fr auto 1fr;
        min-height: 78px;
    }

    .nav-left {
        display: none;
    }

    .brand-mark {
        width: 88px;
    }

    .nav-right .button {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-header.is-open .nav-toggle span:first-child {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-open .nav-toggle span:last-child {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav {
        display: grid;
        max-height: 0;
        overflow: hidden;
        padding: 0 var(--gutter);
        border-top: 1px solid transparent;
        transition:
            max-height 0.22s ease,
            padding 0.22s ease;
    }

    .site-header.is-open .mobile-nav {
        max-height: 280px;
        padding-top: 0.5rem;
        padding-bottom: 1rem;
        border-top-color: rgba(47, 79, 62, 0.12);
    }

    .mobile-nav a {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(47, 79, 62, 0.1);
    }

    .hero-shell,
    .activities-layout,
    .party-package,
    .experience-layout,
    .trust-layout,
    .founder-layout,
    .enquiry-layout,
    .admin-grid,
    .admin-two-column {
        grid-template-columns: 1fr;
    }

    .section-heading {
        position: static;
    }

    .included-panel {
        position: static;
    }

    .enquiry-copy {
        position: static;
    }

    .hero-visual {
        min-height: 430px;
    }

    .hero-image-wrap {
        inset: 0 0 2.4rem 1rem;
    }

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

    .cta-layout {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 0.98rem;
    }

    .header-shell {
        padding-block: 0.55rem;
    }

    h1 {
        max-width: 9ch;
    }

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

    .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 360px;
    }

    .hero-image-wrap {
        border-width: 7px;
        border-radius: 7rem 7rem 0.8rem 0.8rem;
    }

    .hero-badge {
        width: 154px;
    }

    .activity-list li {
        grid-template-columns: 3.4rem 1fr;
    }

    .founder-placeholder {
        min-height: 320px;
    }

    .trust-points {
        grid-template-columns: 1fr;
    }

    .nic-trust-list {
        grid-template-columns: 1fr;
    }

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

    .span-two {
        grid-column: span 1;
    }

    .detail-list {
        grid-template-columns: 1fr;
    }

    .trust-points li:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(47, 79, 62, 0.16);
    }

    .trust-points li:last-child {
        border-bottom: 0;
    }
}
