:root {
    --green: #3f7b45;
    --green-dark: #234d32;
    --yellow: #f4e266;
    --brown: #31251f;
    --ink: #27312a;
    --muted: #6f776f;
    --line: #e2e7df;
    --bg: #f7f5ec;
    --white: #fff;
    --soft: #fbfaf5;
    --shadow: 0 18px 50px rgba(39, 49, 42, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, textarea, select { font: inherit; }

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 42px;
    padding: 8px clamp(22px, 4vw, 64px);
    background: #2c241f;
    color: rgba(255,255,255,.82);
    font-size: 13px;
}
.topbar__links, .topbar__contacts { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar a { color: var(--yellow); font-weight: 700; }
.topbar b { color: var(--white); white-space: nowrap; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 86px;
    padding: 12px clamp(22px, 4vw, 64px);
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(63, 123, 69, .10);
    backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img {
    display: block;
    width: 176px;
    height: 64px;
    object-fit: contain;
    border-radius: 6px;
    background: var(--yellow);
}
.brand b { display: block; color: var(--brown); line-height: 1.05; }
.brand small { display: block; color: var(--green); font-weight: 700; }
.desktop-nav { display: flex; align-items: center; gap: 24px; color: #344238; font-weight: 800; }
.desktop-nav {
    font-size: 14px;
    letter-spacing: 0;
}
.desktop-nav a { padding: 8px 0; border-bottom: 2px solid transparent; }
.desktop-nav a:hover { border-color: var(--yellow); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.desktop-phone { color: var(--brown); font-weight: 800; white-space: nowrap; }
.mobile-phone, .mobile-only { display: none; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--white); border-radius: 8px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 6px;
    font-weight: 750;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--yellow); color: var(--brown); box-shadow: 0 10px 24px rgba(99, 89, 0, .12); }
.btn-light { background: var(--white); color: var(--green-dark); border: 1px solid var(--line); }
.btn-small { min-height: 38px; padding: 8px 12px; font-size: 14px; background: var(--green); color: var(--white); }

.hero {
    min-height: 340px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    padding: clamp(86px, 10vw, 132px) clamp(22px, 5vw, 80px) clamp(112px, 10vw, 154px);
    background:
        linear-gradient(90deg, rgba(22, 32, 24, .78), rgba(22, 32, 24, .46) 54%, rgba(22, 32, 24, .12)),
        url("../img/hero.png") center/cover no-repeat;
    color: var(--white);
}
.hero__content {
    max-width: 920px;
}
.hero h1, .page-hero h1 {
    max-width: 880px;
    margin: 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: clamp(42px, 5.7vw, 78px);
    line-height: 1.03;
    font-weight: 800;
    color: inherit;
    letter-spacing: 0;
}
.hero p { max-width: 660px; font-size: 19px; color: rgba(255,255,255,.88); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.booking-strip {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
    align-items: center;
    margin: -64px clamp(22px, 5vw, 80px) 0;
    padding: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(45,106,45,.18);
    border-radius: 6px;
    box-shadow: var(--shadow);
}
.booking-strip h2 { margin: 4px 0 0; color: var(--brown); font-size: 21px; line-height: 1.16; }

.lead-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.lead-form--compact { grid-template-columns: repeat(6, minmax(105px, 1fr)); align-items: end; }
.lead-form label { display: grid; gap: 5px; color: var(--muted); font-size: 13px; font-weight: 700; }
.lead-form input, .admin-form input, .admin-form textarea, .admin-form select, .lead-row input, .lead-row textarea, .lead-row select, .admin-login input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 10px 12px;
    background: var(--white);
    color: var(--ink);
}
.lead-form button { grid-column: 1 / -1; }
.lead-form--compact button { grid-column: auto; min-width: 150px; }
.hp { position: absolute; left: -9999px; }

.section {
    padding: clamp(56px, 8vw, 104px) clamp(22px, 5vw, 80px);
}
.section-head {
    display: grid;
    gap: 12px;
    max-width: 820px;
    margin-bottom: 32px;
}
.section h2, .cta-band h2, .form-section h2 {
    margin: 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.12;
    font-weight: 800;
    color: var(--brown);
    letter-spacing: 0;
}
.eyebrow {
    margin: 0;
    color: var(--green);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
}
.benefits {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}
.benefits article, .activity-grid article, .object-card, .link-cards a, .offer, .article-list article, .overview-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(39,49,42,.045);
}
.benefits strong {
    display: block;
    color: var(--green);
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
}
.note { color: var(--muted); margin-top: 18px; }
.section--green { background: #eef3e9; color: var(--ink); }
.section--green h2, .section--green .eyebrow { color: var(--white); }
.section--green h2 { color: var(--brown); }
.section--green .eyebrow { color: var(--green); }
.activity-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}
.activity-grid article { min-height: 176px; background: rgba(255,255,255,.96); color: var(--ink); }
.activity-grid span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #edf5e9;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 800;
}
.activity-grid h3 { margin: 16px 0 6px; color: var(--brown); font-size: 18px; }
.activity-grid p { margin: 0; color: var(--muted); }

.cta-band {
    margin: 0 clamp(22px, 5vw, 80px);
    padding: clamp(28px, 5vw, 48px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    background: var(--green);
    color: var(--white);
    border-radius: 6px;
}
.cta-band h2 { color: var(--white); }
.cta-band div { display: flex; gap: 10px; flex-wrap: wrap; }

.link-cards, .card-grid, .article-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.catalog-overview { background: var(--soft); }
.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.overview-grid article {
    min-height: 230px;
    display: grid;
    align-content: space-between;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.94)),
        linear-gradient(135deg, #f4efcf, #dfeadd);
}
.overview-grid span { color: var(--green); font-weight: 800; font-size: 13px; }
.overview-grid h3 { margin: 8px 0; color: var(--brown); font-size: 25px; line-height: 1.15; }
.overview-grid p { color: var(--muted); }
.overview-grid a { color: var(--green-dark); font-weight: 800; }
.link-cards a { display: grid; gap: 8px; min-height: 130px; }
.link-cards b { color: var(--brown); font-size: 21px; line-height: 1.18; }
.link-cards span { color: var(--muted); }

.page-hero {
    min-height: 42vh;
    padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 76px);
    background:
        linear-gradient(90deg, rgba(35,77,50,.92), rgba(35,77,50,.68)),
        url("../img/hero.png") center/cover no-repeat;
    color: var(--white);
}
.page-hero p:not(.eyebrow) { max-width: 760px; font-size: 20px; color: rgba(255,255,255,.86); }
.object-card { overflow: hidden; padding: 0; }
.photo-placeholder {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    padding: 18px;
    background:
        linear-gradient(135deg, rgba(244,239,207,.86), rgba(223,234,221,.90)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.28) 0 1px, transparent 1px 18px);
    color: var(--green-dark);
    text-align: center;
}
.photo-placeholder span { font-size: 21px; font-weight: 800; color: var(--brown); line-height: 1.18; }
.photo-placeholder small { color: var(--muted); }
.object-card__body { padding: 22px; }
.object-card h3 { margin: 4px 0 8px; color: var(--brown); font-size: 23px; line-height: 1.18; }
.object-card p { color: var(--muted); }
.object-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; }
.promo, .crosslink { font-size: 20px; font-weight: 800; color: var(--green-dark); }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.video-box {
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: #172119;
    color: var(--white);
    font-weight: 900;
}
.offer { max-width: 720px; }
.offer h2 { font-size: clamp(44px, 8vw, 96px); color: var(--green); }
.contacts-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 24px; align-items: stretch; }
.contacts-layout iframe { width: 100%; min-height: 420px; border: 0; border-radius: 8px; }
.form-section { display: grid; grid-template-columns: .65fr 1fr; gap: 28px; align-items: start; background: #eef3e9; }

.site-footer {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 24px;
    padding: 44px clamp(18px, 5vw, 76px);
    background: var(--brown);
    color: rgba(255,255,255,.8);
}
.site-footer b { display: block; color: var(--white); margin-bottom: 10px; }
.site-footer a, .site-footer span { display: block; margin: 7px 0; }

.drawer {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 40;
    width: min(360px, 88vw);
    transform: translateX(100%);
    transition: transform .25s ease;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 22px;
    display: grid;
    align-content: start;
    gap: 14px;
}
.drawer.is-open { transform: translateX(0); }
.drawer__close { justify-self: end; width: 42px; height: 42px; border: 0; border-radius: 8px; background: var(--bg); font-size: 26px; }
.drawer a { font-weight: 800; }
.mobile-tray { display: none; }
.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    max-width: 390px;
    padding: 18px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}
.toast button { float: right; border: 0; background: transparent; font-size: 22px; }
.toast a { color: var(--green); font-weight: 900; margin-right: 12px; }

.thanks-page, .admin-login {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 18px;
    background: linear-gradient(135deg, #eff5eb, #ffffff);
}
.thanks-card, .admin-login__box {
    width: min(620px, 100%);
    padding: 34px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}
.thanks-card .brand img { width: 210px; height: 76px; }
.thanks-card h1 { color: var(--brown); font-size: clamp(34px, 5vw, 56px); line-height: 1; }
.thanks-card div { display: flex; gap: 12px; flex-wrap: wrap; }

.admin { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: #f5f7f3; }
.admin-side {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    align-content: start;
    gap: 8px;
    padding: 20px;
    background: var(--white);
    border-right: 1px solid var(--line);
}
.admin-side a:not(.brand) { padding: 12px; border-radius: 8px; font-weight: 800; }
.admin-side a.active, .admin-side a:not(.brand):hover { background: #edf5ea; color: var(--green-dark); }
.admin-main { padding: clamp(18px, 4vw, 42px); min-width: 0; }
.admin-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 18px; }
.lead-list { display: grid; gap: 14px; }
.lead-row {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr repeat(3, .7fr) 1fr auto;
    gap: 12px;
    align-items: end;
    padding: 16px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
}
.lead-row span { display: block; color: var(--muted); font-size: 13px; }
.lead-row label, .admin-form label, .admin-login label { display: grid; gap: 5px; color: var(--muted); font-size: 13px; font-weight: 800; }
.lead-row .wide { grid-column: 1 / -2; }
.lead-row textarea, .admin-form textarea { min-height: 88px; resize: vertical; }
.admin-form {
    display: grid;
    gap: 14px;
    max-width: 900px;
    padding: 18px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    margin-bottom: 22px;
}
.admin-table { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.admin-table > div {
    padding: 16px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--line);
}
.admin-table span { display: block; color: var(--muted); }
.menu-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.alert, .empty { padding: 12px; border-radius: 8px; background: #fff4d0; color: var(--brown); }

/* Sunny-style homepage rhythm */
body { background: #f7f6f1; }
.topbar, .site-header {
    padding-left: max(22px, calc((100vw - 1120px) / 2));
    padding-right: max(22px, calc((100vw - 1120px) / 2));
}
.site-header { position: relative; }
.brand img { width: 136px; height: 52px; }
.desktop-nav { gap: 22px; font-size: 13px; }
.desktop-phone { font-size: 13px; }
.hero {
    min-height: 340px;
    align-items: end;
    padding: 62px max(22px, calc((100vw - 1120px) / 2)) 56px;
    background-position: center 46%;
}
.hero__content { max-width: 620px; }
.hero h1, .page-hero h1 {
    max-width: 620px;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.12;
    font-weight: 800;
}
.hero p { max-width: 580px; margin: 14px 0 0; font-size: 15px; line-height: 1.5; }
.hero__actions { margin-top: 18px; }
.btn { min-height: 38px; padding: 9px 16px; font-size: 13px; }
.booking-strip {
    max-width: 1040px;
    margin: -28px auto 0;
    grid-template-columns: 235px 1fr;
    padding: 14px;
}
.booking-strip h2 { font-size: 18px; }
.lead-form label { font-size: 11px; }
.lead-form input,
.admin-form input,
.admin-form textarea,
.admin-form select,
.lead-row input,
.lead-row textarea,
.lead-row select,
.admin-login input {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 13px;
}
.section {
    padding: 54px 22px;
}
.section > * {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
}
.section-head {
    gap: 8px;
    margin-bottom: 24px;
}
.section-head--center {
    text-align: center;
    justify-items: center;
}
.section h2,
.cta-band h2,
.form-section h2 {
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.18;
    font-weight: 700;
}
.eyebrow {
    font-size: 10px;
    letter-spacing: .12em;
}
.intro-section { background: #fff; }
.benefits {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 820px;
}
.benefits article {
    min-height: 112px;
    padding: 18px;
}
.benefits strong { font-size: 22px; }
.benefits p { margin: 8px 0 0; font-size: 13px; }
.note { max-width: 820px; text-align: center; font-size: 13px; }
.compact-section {
    padding-top: 48px;
    padding-bottom: 48px;
    background:
        radial-gradient(circle at 14% 10%, rgba(228, 244, 255, .72), transparent 26%),
        radial-gradient(circle at 86% 18%, rgba(255, 232, 232, .70), transparent 24%),
        #f8fbf7;
}
.activity-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 820px;
}
.activity-grid article {
    min-height: 118px;
    padding: 16px;
}
.activity-grid span {
    width: auto;
    height: auto;
    display: block;
    border-radius: 0;
    background: transparent;
    color: var(--green);
    font-size: 12px;
}
.activity-grid h3 { margin: 8px 0 5px; font-size: 15px; }
.activity-grid p { font-size: 13px; line-height: 1.4; }
.cta-band {
    max-width: 820px;
    margin: 22px auto 0;
    padding: 24px 30px;
}
.cta-band h2 { max-width: 360px; }
.home-catalog {
    background: #fff;
    padding-top: 42px;
    padding-bottom: 28px;
}
.home-catalog + .home-catalog { padding-top: 22px; }
.tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 760px;
}
.photo-tile {
    position: relative;
    min-height: 174px;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(28, 24, 21, .08), rgba(28, 24, 21, .78)),
        url("../img/hero.png") center/cover no-repeat;
}
.photo-tile:nth-child(2n) { background-position: 58% 42%; }
.photo-tile:nth-child(3n) { background-position: 42% 56%; }
.photo-tile span {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}
.more-link {
    max-width: 760px;
    text-align: center;
    margin-top: 16px;
}
.more-link a {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 7px 18px;
    border: 1px solid #d5c46b;
    color: var(--brown);
    font-size: 12px;
    font-weight: 700;
}
.reviews-section {
    background: #fff;
    padding-top: 42px;
    padding-bottom: 42px;
}
.reviews-panel {
    display: grid;
    grid-template-columns: .95fr 1.25fr;
    gap: 28px;
    align-items: center;
    max-width: 960px;
    padding: 28px;
    background: #2b342d;
    color: #fff;
}
.reviews-panel h2 {
    color: #fff;
    max-width: 420px;
}
.reviews-panel p {
    max-width: 430px;
    color: rgba(255,255,255,.74);
    font-size: 14px;
}
.reviews-panel .eyebrow { color: var(--yellow); }
.reviews-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.reviews-cards article {
    min-height: 176px;
    padding: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
}
.reviews-cards span {
    display: block;
    margin-bottom: 18px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 800;
}
.reviews-cards b {
    display: block;
    font-size: 15px;
}
.reviews-cards p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.70);
    font-size: 13px;
}
.faq-section {
    background: #fafafa;
    padding-top: 52px;
    padding-bottom: 58px;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    max-width: 900px;
}
.faq-grid article {
    padding: 18px 20px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 8px 26px rgba(39,49,42,.035);
}
.faq-grid b {
    color: var(--brown);
    font-size: 15px;
}
.faq-grid p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}
.form-section {
    grid-template-columns: 330px 1fr;
    padding-left: max(22px, calc((100vw - 1040px) / 2));
    padding-right: max(22px, calc((100vw - 1040px) / 2));
}
.form-section > * { max-width: none; }
.site-footer {
    padding-left: max(22px, calc((100vw - 1040px) / 2));
    padding-right: max(22px, calc((100vw - 1040px) / 2));
}

@media (max-width: 1180px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: inline-grid; place-items: center; }
    .activity-grid, .benefits { grid-template-columns: repeat(3, 1fr); }
    .booking-strip { grid-template-columns: 1fr; }
    .lead-form--compact { grid-template-columns: repeat(3, 1fr); }
    .lead-row { grid-template-columns: repeat(2, 1fr); }
    .lead-row .wide { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    body { padding-bottom: 62px; }
    .topbar { display: none; }
    .site-header { min-height: 70px; padding: 10px 14px; }
    .brand img { width: 132px; height: 48px; }
    .desktop-phone, .desktop-only { display: none !important; }
    .mobile-phone, .mobile-only { display: inline-flex; }
    .hero { min-height: 360px; grid-template-columns: 1fr; padding: 46px 16px 50px; }
    .hero h1, .page-hero h1 { font-size: 30px; }
    .hero p, .page-hero p:not(.eyebrow) { font-size: 14px; }
    .booking-strip { margin: -52px 16px 0; padding: 16px; }
    .lead-form, .lead-form--compact, .form-section, .contacts-layout { grid-template-columns: 1fr; }
    .lead-form--compact button { grid-column: 1 / -1; }
    .benefits, .activity-grid, .link-cards, .card-grid, .article-list, .video-grid, .site-footer, .admin-table, .overview-grid { grid-template-columns: 1fr; }
    .cta-band { margin: 0 16px; display: grid; }
    .cta-band div { display: grid; }
    .section { padding: 44px 16px; }
    .object-card__foot { align-items: stretch; flex-direction: column; }
    .mobile-tray {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 50;
        display: grid;
        grid-template-columns: 1fr 1fr;
        background: var(--white);
        border-top: 1px solid var(--line);
    }
    .mobile-tray a {
        display: grid;
        place-items: center;
        min-height: 58px;
        font-weight: 900;
    }
    .mobile-tray a:first-child { background: var(--yellow); color: var(--brown); }
    .mobile-tray a:last-child { background: var(--green); color: var(--white); }
    .toast { left: 12px; right: 12px; bottom: 72px; }
    .admin { grid-template-columns: 1fr; }
    .admin-side { position: static; height: auto; }
    .lead-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .site-header { position: relative; }
    .hero {
        min-height: 360px;
        padding: 46px 16px 50px;
        align-items: end;
    }
    .hero h1, .page-hero h1 { font-size: 30px; line-height: 1.12; }
    .hero p, .page-hero p:not(.eyebrow) { font-size: 14px; }
    .booking-strip {
        margin: 0 12px;
        transform: translateY(-18px);
    }
    .section { padding: 38px 16px; }
    .section h2, .cta-band h2, .form-section h2 { font-size: 26px; }
    .benefits, .activity-grid, .tile-grid, .faq-grid, .reviews-panel, .reviews-cards { grid-template-columns: 1fr; }
    .tile-grid, .more-link { max-width: 100%; }
    .photo-tile { min-height: 168px; }
    .cta-band {
        max-width: none;
        margin: 12px;
        padding: 22px;
    }
    .form-section {
        padding-left: 16px;
        padding-right: 16px;
    }
    .reviews-panel {
        padding: 22px;
    }
    .reviews-cards article { min-height: auto; }
}
