:root {
  --cream: #f7f3ea;
  --paper: #fcfaf5;
  --sand: #e7ddca;
  --sand-deep: #d3c5ad;
  --olive: #4b5b2d;
  --olive-dark: #35421f;
  --olive-soft: #dce1ce;
  --graphite: #292621;
  --muted: #686258;
  --line: #d9cfbd;
  --danger: #93483f;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 18px 55px rgba(55, 48, 36, .10);
  --header: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 20px); }
body { margin: 0; color: var(--graphite); background: var(--cream); font-family: var(--sans); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-color: rgba(75, 91, 45, .55); text-underline-offset: .18em; }
a:hover { text-decoration-color: var(--olive); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #9d7b2f; outline-offset: 3px; }
[hidden] { display: none !important; }

.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px; background: var(--olive-dark); color: #fff; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.shell--narrow { max-width: 900px; }
.section { padding: 50px 0; }
.section--tight { padding: 34px 0; }
.section--paper { background: var(--paper); }
.section--olive { background: var(--olive-dark); color: #fff; }
.section-heading { max-width: 710px; margin-bottom: 25px; }
.section-heading--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.section-heading p { color: var(--muted); font-size: 1.06rem; }
.section-heading--row p { max-width: 560px; margin: 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--olive); text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 700; margin-bottom: 13px; }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.section--olive .eyebrow { color: #d7dfbf; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.1; font-weight: 500; letter-spacing: -.025em; }
h1 { font-size: clamp(2.65rem, 5vw, 4.9rem); }
h2 { font-size: clamp(1.72rem, 2.65vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
p:last-child { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.justify-center { justify-content: center; }
.lead { font-size: clamp(1.12rem, 1.7vw, 1.32rem); line-height: 1.55; color: var(--muted); }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--olive); padding: 11px 22px; font-weight: 650; text-decoration: none; background: transparent; transition: background .2s, color .2s, transform .2s; }
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--olive); color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,.7); }
.button--primary:hover { background: var(--olive-dark); }
.button--outline { background: var(--paper); color: var(--graphite); border-color: #a79a84; }
.button--outline:hover { background: #eee6d7; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--olive-dark); font-weight: 700; text-decoration: none; }
.text-link:hover { gap: 12px; }

.site-header { height: var(--header); background: rgba(252, 250, 245, .96); border-bottom: 1px solid var(--line); position: relative; z-index: 60; }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: block; flex: 0 0 auto; }
.brand img { width: 230px; height: 54px; object-fit: contain; object-position: left center; }
.desktop-nav { flex: 1; min-width: 0; }
.desktop-nav ul { display: flex; align-items: center; justify-content: flex-end; gap: 0; list-style: none; margin: 0; padding: 0; }
.desktop-nav li + li { margin-left: 24px; }
.desktop-nav a { position: relative; display: block; padding: 27px 0; font-size: .82rem; text-decoration: none; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 21px; height: 2px; background: var(--olive); transition: right .2s; }
.desktop-nav a:hover::after, .desktop-nav a[aria-current="page"]::after { right: 0; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 10px 0 10px 12px; align-items: center; gap: 9px; }
.menu-toggle i { font-size: 1.75rem; }
.mobile-menu { position: fixed; inset: var(--header) 0 0; background: var(--paper); padding: 24px; z-index: 55; overflow: auto; }
.mobile-menu ul { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.mobile-menu li { border-bottom: 1px solid var(--line); }
.mobile-menu a:not(.button) { display: flex; justify-content: space-between; align-items: center; padding: 17px 0; font-family: var(--serif); font-size: 1.5rem; text-decoration: none; }
.mobile-menu__contact { padding-top: 28px; }

.hero { min-height: clamp(540px, 55vw, 690px); display: grid; grid-template-columns: minmax(0, 51%) minmax(0, 49%); border-bottom: 1px solid var(--line); background: linear-gradient(110deg, #fbf7ef 0%, #f4ecde 51%, #e0d4c1 51%); }
.hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 68px max(28px, calc((100vw - 1240px)/2)) 70px max(28px, calc((100vw - 1240px)/2)); padding-right: clamp(30px, 5vw, 82px); }
.hero h1 { max-width: 760px; margin-bottom: 20px; font-size: clamp(2.3rem, 4.2vw, 4.6rem); }
.hero .lead { max-width: 620px; margin-bottom: 26px; }
.hero__facts { display: grid; gap: 13px; margin: 0 0 25px; padding: 0; list-style: none; }
.hero__facts li { display: flex; align-items: flex-start; gap: 12px; }
.hero__facts i { color: var(--olive); font-size: 1.55rem; margin-top: 1px; }
.hero__price { border-top: 3px solid var(--olive); padding-top: 14px; max-width: 305px; font-family: var(--serif); font-size: 1.24rem; line-height: 1.35; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero__visual { overflow: hidden; min-width: 0; }
.hero__visual img { width: 100%; height: 100%; object-fit: cover; object-position: 54% center; border-radius: 48% 0 0 48% / 50% 0 0 50%; }

.steps-included { display: grid; grid-template-columns: 1.35fr 1fr; gap: 54px; }
.steps { padding-right: 48px; border-right: 1px solid var(--line); }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { text-align: center; position: relative; }
.step i { display: block; font-size: 2.35rem; color: var(--graphite); margin-bottom: 9px; }
.step strong { display: block; margin-bottom: 6px; }
.step p { font-size: .88rem; color: var(--muted); }
.included-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.included-list li { display: flex; gap: 13px; align-items: center; }
.included-list i { color: var(--olive); font-size: 1.65rem; width: 30px; }

.split-cards { display: grid; grid-template-columns: 1.18fr .82fr; gap: 24px; }
.border-card { border: 1px solid var(--line); background: rgba(252,250,245,.45); padding: 22px; }
.border-card h2, .border-card h3 { margin-bottom: 18px; }
.price-table { border: 1px solid var(--line); }
.price-row { display: grid; grid-template-columns: 1.2fr .8fr .8fr; align-items: center; }
.price-row + .price-row { border-top: 1px solid var(--line); }
.price-row > * { padding: 10px 13px; }
.price-row > * + * { border-left: 1px solid var(--line); text-align: center; }
.price-row strong { font-size: 1.15rem; }
.price-row small { display: block; color: var(--muted); }

.home-programme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 13px; }
.home-programmes-poker { display: grid; grid-template-columns: 1.2fr .8fr; gap: 34px; align-items: start; }
.home-poker { border-left: 1px solid var(--line); padding-left: 34px; }
.home-poker .poker-image { margin-top: 18px; }
.programme-tile { text-decoration: none; }
.programme-tile__image { aspect-ratio: 4 / 2.7; overflow: hidden; margin-bottom: 9px; background: var(--sand); }
.programme-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.programme-tile:hover img { transform: scale(1.025); }
.programme-tile strong { font-family: var(--serif); font-size: 1.08rem; font-weight: 500; }
.programme-tile span { display: block; font-size: .82rem; color: var(--muted); margin-top: 2px; }
.programme-poker { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: start; }
.schedule { margin: 0 0 17px; }
.schedule div { display: grid; grid-template-columns: 120px 1fr; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); }
.schedule div:last-child { border-bottom: 1px solid var(--line); }
.schedule dt { font-weight: 650; }
.schedule dd { margin: 0; }
.poker-note { color: var(--muted); font-size: .9rem; }
.poker-image { aspect-ratio: 4/3; overflow: hidden; }
.poker-image img { width: 100%; height: 100%; object-fit: cover; }

.enquiry-band { border: 1px solid var(--line); margin: 0 auto 0; width: min(1320px, calc(100% - 16px)); background: rgba(252,250,245,.52); padding: 34px; }
.enquiry-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 60px; }
.enquiry-copy address { font-style: normal; margin-top: 28px; }
.contact-lines { display: grid; gap: 12px; margin-top: 24px; }
.contact-lines a { display: flex; gap: 10px; align-items: center; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px 18px; }
.field { min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 650; font-size: .84rem; margin-bottom: 6px; }
.field label span { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; min-height: 46px; border: 1px solid #afa591; background: rgba(255,255,255,.55); border-radius: 0; padding: 10px 12px; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--olive); box-shadow: 0 0 0 2px rgba(75,91,45,.13); outline: none; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--danger); }
.field-error { color: var(--danger); display: block; font-size: .8rem; margin-top: 4px; }
.form-checks { display: grid; gap: 10px; margin-top: 18px; }
.check-row { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; }
.check-row input { width: 19px; height: 19px; accent-color: var(--olive); flex: 0 0 auto; margin-top: 2px; }
.form-submit { margin-top: 19px; min-width: 210px; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 10px; }
.form-alert { background: #f1dfd8; border-left: 3px solid var(--danger); padding: 11px 13px; margin-bottom: 15px; font-size: .9rem; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; }

.page-hero { padding: 74px 0 56px; border-bottom: 1px solid var(--line); background: linear-gradient(115deg, var(--paper), #efe5d5); }
.page-hero__inner { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: center; gap: 68px; }
.page-hero__copy { max-width: 690px; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero__visual { min-height: 470px; overflow: hidden; border-radius: 220px 220px 0 0; }
.page-hero__visual img { width: 100%; height: 100%; object-fit: cover; position: absolute; }
.page-hero__visual { position: relative; }
.breadcrumbs { padding-top: 17px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; gap: 8px; color: var(--muted); font-size: .82rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; }
.breadcrumbs a { text-decoration: none; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { border-top: 3px solid var(--olive); padding: 23px 22px; background: var(--paper); }
.feature-card i { font-size: 2rem; color: var(--olive); }
.feature-card h3 { margin: 16px 0 9px; }
.feature-card p { color: var(--muted); }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-column__image { aspect-ratio: 4/3; overflow: hidden; }
.two-column__image img { width: 100%; height: 100%; object-fit: cover; }
.bullet-list { list-style: none; margin: 22px 0; padding: 0; display: grid; gap: 11px; }
.bullet-list li { display: flex; gap: 11px; }
.bullet-list i { color: var(--olive); font-size: 1.25rem; margin-top: 3px; }
.notice { border-left: 3px solid var(--olive); padding: 17px 19px; background: var(--olive-soft); }

.programme-list { display: grid; gap: 18px; }
.programme-card { display: grid; grid-template-columns: 220px 1fr; border: 1px solid var(--line); background: var(--paper); }
.programme-card__image { min-height: 180px; overflow: hidden; }
.programme-card__image img { width: 100%; height: 100%; object-fit: cover; }
.programme-card__body { padding: 24px 27px; }
.programme-card__top { display: flex; justify-content: space-between; gap: 18px; align-items: start; }
.programme-card h2 { font-size: 1.65rem; margin-bottom: 8px; }
.tag { display: inline-flex; align-items: center; min-height: 28px; padding: 3px 9px; background: var(--olive-soft); color: var(--olive-dark); font-size: .72rem; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.programme-card__meta { display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--muted); font-size: .83rem; margin: 12px 0 0; }
.programme-card__meta span { display: flex; gap: 6px; align-items: center; }
.on-request { display: flex; flex-wrap: wrap; gap: 9px; }
.on-request span { border: 1px solid var(--line); background: var(--paper); padding: 8px 11px; font-size: .88rem; }

.pricing-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; }
.pricing-card { border: 1px solid var(--line); background: var(--paper); padding: 32px; }
.pricing-card--featured { border-top: 5px solid var(--olive); }
.price-big { font-family: var(--serif); font-size: 3.1rem; line-height: 1; margin: 14px 0 7px; }
.price-big span { font-family: var(--sans); font-size: .9rem; color: var(--muted); }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--paper); }
.comparison-table th, .comparison-table td { padding: 16px; border: 1px solid var(--line); text-align: left; }
.comparison-table th { background: #eee6d7; }
.comparison-table td:not(:first-child), .comparison-table th:not(:first-child) { text-align: center; }
.guest-card-visual { border-radius: 210px 210px 0 0; overflow: hidden; }

.faq-section { border-top: 1px solid var(--line); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 20px 0; font-family: var(--serif); font-size: 1.24rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { color: var(--olive); font-size: 1.2rem; flex: 0 0 auto; transition: transform .2s; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item > div { padding: 0 50px 20px 0; color: var(--muted); }

.policy-layout { display: grid; grid-template-columns: 240px 1fr; gap: 70px; align-items: start; }
.policy-nav { position: sticky; top: 24px; border-left: 2px solid var(--line); padding-left: 18px; display: grid; gap: 9px; }
.policy-nav a { color: var(--muted); text-decoration: none; font-size: .9rem; }
.prose { max-width: 780px; }
.prose section { scroll-margin-top: 20px; padding-bottom: 36px; }
.prose h2 { font-size: 2rem; padding-top: 8px; }
.prose h3 { font-size: 1.35rem; margin-top: 26px; }
.prose p, .prose li { color: #4f4a43; }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.prose th, .prose td { border: 1px solid var(--line); padding: 12px; text-align: left; vertical-align: top; }
.prose th { background: #eee6d7; }
.success-card { max-width: 760px; margin: 70px auto; text-align: center; border: 1px solid var(--line); background: var(--paper); padding: 70px 45px; }
.success-card i { font-size: 4rem; color: var(--olive); }

.site-footer { border-top: 1px solid var(--line); background: #f2ecdf; }
.footer-main { display: grid; grid-template-columns: 1.05fr 1fr .85fr; gap: 52px; padding-top: 42px; padding-bottom: 38px; }
.site-footer h2 { font-size: 1.15rem; margin-bottom: 14px; }
.footer-hours ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.footer-hours li { display: grid; grid-template-columns: 22px 1fr auto; gap: 6px; align-items: center; font-size: .82rem; }
.footer-hours strong { font-weight: 500; }
.footer-contact { display: grid; align-content: start; gap: 8px; }
.footer-contact a, .footer-contact p { display: flex; gap: 10px; align-items: flex-start; font-size: .83rem; margin: 0; }
.footer-contact i { margin-top: 3px; }
.footer-brand { display: flex; gap: 17px; align-items: center; border-left: 1px solid var(--line); padding-left: 40px; }
.footer-brand img { width: 70px; height: 70px; object-fit: contain; }
.footer-wordmark { font-family: var(--serif); font-size: 1.55rem; margin-bottom: 2px; }
.footer-brand div > p:last-child { font-size: .82rem; color: var(--muted); }
.footer-links { border-top: 1px solid var(--line); padding-top: 17px; padding-bottom: 17px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .76rem; }
.footer-links nav { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.footer-links button { border: 0; background: transparent; padding: 0; color: inherit; text-decoration: underline; text-underline-offset: .18em; }
.footer-links p { margin: 0; white-space: nowrap; }

.consent-banner { position: fixed; z-index: 100; left: 18px; right: 18px; bottom: 18px; margin: auto; max-width: 1180px; background: var(--paper); border: 1px solid #a99d87; box-shadow: var(--shadow); padding: 22px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; }
.consent-banner p { margin: 0; color: var(--muted); font-size: .9rem; }
.consent-banner__title { font-family: var(--serif); font-size: 1.25rem !important; color: var(--graphite) !important; margin-bottom: 3px !important; }
.consent-actions { display: flex; gap: 8px; }
.consent-actions .button { min-height: 43px; padding: 8px 14px; font-size: .83rem; }
.modal-backdrop { position: fixed; z-index: 120; inset: 0; background: rgba(31,29,25,.58); display: grid; place-items: center; padding: 20px; }
.consent-modal { width: min(650px, 100%); max-height: calc(100vh - 40px); overflow: auto; background: var(--paper); box-shadow: var(--shadow); padding: 32px; }
.modal-heading { display: flex; justify-content: space-between; gap: 20px; }
.modal-heading h2 { margin-bottom: 12px; }
.icon-button { width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; display: grid; place-items: center; font-size: 1.4rem; }
.consent-option { border-top: 1px solid var(--line); padding: 18px 0; display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.consent-option div { display: grid; gap: 3px; }
.consent-option span { color: var(--muted); font-size: .84rem; }
.switch { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch > span { width: 42px; height: 24px; border-radius: 24px; background: #aaa; padding: 3px; }
.switch > span::after { content: ""; display: block; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: transform .2s; }
.switch input:checked + span { background: var(--olive); }
.switch input:checked + span::after { transform: translateX(18px); }
.switch b { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.modal-actions { border-top: 1px solid var(--line); padding-top: 20px; display: flex; align-items: center; gap: 20px; }

@media (max-width: 1100px) {
  .desktop-nav li + li { margin-left: 12px; }
  .desktop-nav a { font-size: .73rem; }
  .brand img { width: 205px; }
  .hero__copy { padding-top: 40px; padding-bottom: 42px; padding-right: 38px; }
  .page-hero__inner { gap: 40px; }
}

@media (max-width: 820px) {
  :root { --header: 74px; }
  .shell { width: min(100% - 32px, 1240px); }
  .section { padding: 56px 0; }
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .brand img { width: 205px; height: 49px; }
  .hero { display: flex; flex-direction: column; min-height: 0; background: linear-gradient(150deg, #fbf7ef, #efe5d5); }
  .hero__copy { padding: 52px 24px 42px; order: 1; }
  .hero__visual { order: 2; height: min(78vw, 550px); margin-left: 24px; }
  .hero__visual img { border-radius: 48% 0 0 0 / 43% 0 0 0; object-position: center; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 4.5rem); }
  .hero__actions .button { flex: 1 1 210px; }
  .step-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 22px; }
  .steps-included { grid-template-columns: 1fr; }
  .steps { padding-right: 0; padding-bottom: 40px; border-right: 0; border-bottom: 1px solid var(--line); }
  .split-cards, .programme-poker, .pricing-hero-grid, .two-column, .home-programmes-poker { grid-template-columns: 1fr; }
  .home-poker { border-left: 0; border-top: 1px solid var(--line); padding: 42px 0 0; }
  .enquiry-layout { grid-template-columns: 1fr; gap: 38px; }
  .home-programme-grid { grid-template-columns: repeat(2, 1fr); }
  .programme-poker__schedule { order: 1; }
  .poker-image { order: 0; }
  .page-hero { padding-top: 50px; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__visual { min-height: 420px; }
  .feature-grid { grid-template-columns: 1fr; }
  .programme-card { grid-template-columns: 170px 1fr; }
  .policy-layout { grid-template-columns: 1fr; gap: 35px; }
  .policy-nav { position: static; display: flex; flex-wrap: wrap; border-left: 0; border-bottom: 1px solid var(--line); padding: 0 0 18px; }
  .consent-banner { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; border-left: 0; border-top: 1px solid var(--line); padding: 24px 0 0; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .shell { width: calc(100% - 28px); }
  .section-heading--row { display: block; }
  .header-inner { width: calc(100% - 28px); }
  .brand img { width: 188px; }
  .menu-toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; }
  .hero__copy { padding-left: 18px; padding-right: 18px; }
  .hero__visual { margin-left: 18px; height: 104vw; max-height: 565px; }
  .hero__facts { font-size: .95rem; }
  .step-grid { gap: 30px 15px; }
  .price-row { grid-template-columns: 1fr 1fr; }
  .price-row > :first-child { grid-column: 1/-1; border-bottom: 1px solid var(--line); }
  .price-row > :nth-child(2) { border-left: 0; }
  .home-programme-grid { gap: 18px 10px; }
  .programme-tile strong { font-size: .98rem; }
  .enquiry-band { width: 100%; border-left: 0; border-right: 0; padding: 38px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-submit { width: 100%; }
  .page-hero__visual { min-height: 330px; border-radius: 150px 150px 0 0; }
  .programme-card { grid-template-columns: 1fr; }
  .programme-card__image { min-height: 220px; }
  .programme-card__top { display: block; }
  .tag { margin-bottom: 10px; }
  .comparison-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .prose { min-width: 0; }
  .prose table { display: block; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-hours li { grid-template-columns: 22px 1fr; }
  .footer-hours strong { grid-column: 2; }
  .footer-brand { grid-column: auto; }
  .footer-links { display: block; }
  .footer-links nav a, .footer-links nav button { display: inline-flex; align-items: center; min-height: 40px; }
  .footer-links p { margin-top: 15px; }
  .consent-banner { inset: auto 8px 8px; padding: 18px; }
  .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .consent-actions .button:first-child { grid-column: 1/-1; }
  .consent-modal { padding: 23px 18px; }
  .consent-option { align-items: flex-start; }
  .modal-actions { align-items: stretch; flex-direction: column; }
  .modal-actions .button { width: 100%; }
}

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