:root {
    --paper: #f8f1ea;
    --paper-2: #fffaf6;
    --paper-3: #f4e8df;
    --rose: #ead5d2;
    --rose-2: #f1dfdc;
    --wine: #6f2c37;
    --wine-dark: #4d1c25;
    --olive: #5f6934;
    --olive-dark: #424a23;
    --olive-soft: #dfe2cc;
    --ink: #282321;
    --muted: #655d59;
    --line: #d8c6bc;
    --white: #fff;
    --error: #9c2337;
    --shadow: 0 18px 50px rgba(76, 40, 35, .10);
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Arial, 'Helvetica Neue', sans-serif;
    --shell: min(100% - 32px, 1280px);
}

*, *::before, *::after { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.58;
    text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

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

img { height: auto; }

a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .18em; }

button, input, select, textarea { font: inherit; }

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

button { cursor: pointer; }

:focus-visible {
    outline: 3px solid #1d6fb5;
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    transform: translateY(-150%);
    padding: 10px 16px;
    background: var(--white);
    color: var(--wine-dark);
    border: 2px solid var(--wine);
}

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

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.shell { width: var(--shell); margin-inline: auto; }

.narrow { width: min(100%, 820px); }

.section { padding-block: 56px; }

.section--tight { padding-block: 36px; }

.section--rose { background: var(--rose-2); }

.section--paper-2 { background: var(--paper-2); }

.section--wine { background: var(--wine); color: var(--paper-2); }

.section-heading { margin-bottom: 28px; }

.section-heading--split { display: grid; gap: 16px; }

.section-heading p { max-width: 66ch; }

.eyebrow {
    margin: 0 0 8px;
    color: var(--olive-dark);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.section--wine .eyebrow { color: #dfe2cc; }

h1, h2, h3 {
    color: var(--wine);
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.12;
    text-wrap: balance;
}

h1 { margin: 0 0 20px; font-size: clamp(2.25rem, 7.4vw, 5rem); letter-spacing: -.035em; }
h2 { margin: 0 0 16px; font-size: clamp(1.85rem, 5.4vw, 3.15rem); letter-spacing: -.025em; }
h3 { margin: 0 0 10px; font-size: clamp(1.25rem, 3.5vw, 1.65rem); }
p { margin: 0 0 1em; }

.lede { max-width: 64ch; font-size: clamp(1.05rem, 2vw, 1.25rem); }

.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.65em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose li + li { margin-top: .45rem; }
.prose a, .legal a { overflow-wrap: anywhere; color: var(--wine-dark); }

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 19px;
    border: 1.5px solid transparent;
    border-radius: 5px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.button:hover { transform: translateY(-1px); }
.button--olive { background: var(--olive); color: var(--white); }
.button--olive:hover { background: var(--olive-dark); }
.button--wine { background: var(--wine); color: var(--white); }
.button--wine:hover { background: var(--wine-dark); }
.button--outline { background: transparent; color: var(--wine-dark); border-color: var(--wine); }
.button--outline:hover { background: var(--wine); color: var(--white); }
.button--light { background: var(--paper-2); color: var(--wine-dark); }
.button--light:hover { background: var(--olive-soft); }
.button-icon { width: 21px; height: 21px; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    color: var(--wine-dark);
    font-weight: 700;
}

.text-link svg { width: 20px; height: 20px; }

.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.icon { width: 42px; height: 42px; color: var(--wine); }

/* Header */
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(255, 250, 246, .97);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.header-inner {
    width: var(--shell);
    min-height: 70px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
}

.brand { width: 190px; text-decoration: none; }
.brand-lockup { width: 190px; }
.brand-mark { display: none; }

.nav-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
    color: var(--wine);
}

.nav-toggle span:not(.sr-only) { width: 25px; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.primary-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 16px;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.primary-nav.is-open { display: grid; }
.primary-nav a { min-height: 48px; display: flex; align-items: center; padding: 6px 12px; border-bottom: 1px solid var(--line); text-decoration: none; }
.primary-nav a[aria-current="page"] { color: var(--wine); font-weight: 700; }
.header-cta { display: none; }

@media (max-width: 359px) {
    .brand { width: 48px; }
    .brand-lockup { display: none; }
    .brand-mark { display: block; width: 48px; height: 48px; }
}

/* Hero */
.home-hero { background: var(--wine-dark); }
.hero-pane { position: relative; min-height: 540px; overflow: hidden; }
.hero-pane img { width: 100%; height: 100%; object-fit: cover; }
.hero-pane--copy::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22, 13, 11, .08) 20%, rgba(24, 15, 13, .84) 100%); }
.hero-copy { position: absolute; z-index: 2; left: max(20px, calc((100vw - 1280px) / 2 + 16px)); right: 20px; bottom: 30px; max-width: 620px; color: var(--white); }
.hero-copy h1 { max-width: 13ch; color: var(--white); font-size: clamp(2.5rem, 7vw, 4rem); }
.hero-copy p { max-width: 48ch; font-size: 1.05rem; }
.hero-copy .text-link { color: var(--white); }
.hero-pane--visual { min-height: 330px; }

.page-hero { padding-block: 54px; background: var(--rose-2); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 13ch; }
.page-hero--image { padding: 0; background: var(--wine-dark); color: var(--white); }
.page-hero-grid { display: grid; }
.page-hero-copy { padding: 48px 16px; align-self: center; }
.page-hero-copy h1, .page-hero-copy .eyebrow { color: var(--paper-2); }
.page-hero-image { min-height: 330px; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* Home sections */
.intro-pricing { display: grid; gap: 24px; }
.intro-copy { padding: 8px 4px; }
.steps { list-style: none; padding: 0; margin: 24px 0 0; }
.steps li { display: flex; gap: 10px; align-items: flex-start; margin-top: 10px; }
.steps svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--olive); }

.pricing-panel {
    padding: 26px 20px;
    background: linear-gradient(135deg, #fffaf6 0%, #f1dfdc 100%);
    border: 1px solid #ead6d0;
    border-radius: 10px;
}

.price-columns { display: grid; gap: 0; margin: 24px 0 18px; }
.price-column { padding: 20px 8px; text-align: center; }
.price-column + .price-column { border-top: 1px solid #bd8f93; }
.price-column h3 { font-family: var(--sans); font-size: .95rem; font-weight: 700; }
.price-label { display: block; color: var(--muted); font-size: .84rem; }
.price-value { display: block; margin: 3px 0 8px; color: var(--wine-dark); font-family: var(--serif); font-size: clamp(2rem, 10vw, 3.15rem); line-height: 1; }
.price-minute { font-family: var(--serif); font-size: 1.5rem; color: var(--wine-dark); }

.card-note { display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: center; padding: 17px; background: rgba(216, 174, 173, .32); border-radius: 8px; }
.card-note-icon { width: 56px; height: 56px; display: grid; place-items: center; background: var(--wine); color: var(--white); border-radius: 50%; }
.card-note-icon svg { width: 30px; height: 30px; }
.card-note p { margin: 0; font-size: .92rem; }

.included-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 14px; }
.included-item { text-align: center; }
.included-item .icon { margin: 0 auto 10px; }
.included-item strong { display: block; font-family: var(--serif); color: var(--wine-dark); font-size: 1.1rem; }
.included-item span { display: block; margin-top: 4px; color: var(--muted); font-size: .88rem; }

.arched-visual { overflow: hidden; border-radius: 48% 48% 6px 6px / 38% 38% 6px 6px; }
.arched-visual picture { display: block; width: 100%; height: 100%; }
.arched-visual img { width: 100%; height: 100%; object-fit: cover; }

.included-layout { display: grid; gap: 28px; align-items: center; }
.included-photo { min-height: 290px; }

.activity-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.activity-card { min-width: 0; overflow: hidden; background: var(--rose); border: 1px solid rgba(111, 44, 55, .18); text-decoration: none; transition: transform .18s ease, border-color .18s ease; }
.activity-card picture { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.activity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.activity-card h3 { min-height: 52px; display: grid; place-items: center; margin: 0; padding: 9px 8px; background: var(--wine); color: var(--white); font-size: 1.08rem; text-align: center; }
.activity-card:nth-child(2n) h3 { background: var(--olive); }
.activity-card:nth-child(3n) h3 { background: #8f6b68; }
.activity-card:hover { transform: translateY(-2px); border-color: var(--wine); }
.activity-card:hover img { transform: scale(1.025); }

.poker-feature { display: grid; background: linear-gradient(135deg, #f4e5df, #ead2d2); border-radius: 10px; overflow: hidden; }
.poker-feature-image { min-height: 300px; }
.poker-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.graphic-panel { display: grid; place-content: center; gap: 18px; padding: 40px; background: var(--wine); color: var(--paper-2); text-align: center; }
.graphic-icon { width: 120px; height: 120px; margin-inline: auto; color: var(--paper-2); }
.graphic-panel span { font-family: var(--serif); font-size: clamp(1.5rem, 5vw, 2.8rem); letter-spacing: .08em; }
.poker-feature-copy { padding: 28px 22px; }
.schedule-preview { display: grid; gap: 6px; margin: 20px 0; }
.schedule-preview div { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding-block: 8px; border-bottom: 1px solid rgba(111, 44, 55, .23); }
.schedule-preview dt { font-weight: 700; }
.schedule-preview dd { margin: 0; }
.poker-line { margin: 18px 0; padding: 12px 14px; background: rgba(255, 250, 246, .7); border-left: 3px solid var(--wine); font-weight: 700; }

.week-grid { display: grid; gap: 10px; }
.day-card { padding: 17px; background: var(--paper-2); border: 1px solid var(--line); }
.day-card:nth-child(3n) { background: #efd5d3; }
.day-card:nth-child(4n) { background: #ece3d2; }
.day-card h3 { font-family: var(--sans); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.schedule-item { min-height: 58px; display: flex; justify-content: space-between; gap: 8px; padding: 10px 0; border-top: 1px solid rgba(111, 44, 55, .14); text-decoration: none; }
.schedule-item strong { font-size: .88rem; line-height: 1.3; }
.schedule-item span { flex: 0 0 auto; color: var(--muted); font-size: .85rem; }

.journey-location { display: grid; gap: 16px; }
.journey-panel, .location-panel { padding: 24px 20px; background: var(--paper-2); border: 1px solid var(--line); }
.journey-photo { min-height: 260px; }
.number-list { list-style: none; counter-reset: step; padding: 0; margin: 0; }
.number-list li { counter-increment: step; display: grid; grid-template-columns: 30px 1fr; gap: 10px; margin-top: 10px; }
.number-list li::before { content: counter(step); width: 26px; height: 26px; display: grid; place-items: center; background: var(--olive); color: var(--white); border-radius: 50%; font-size: .8rem; font-weight: 700; }
.contact-list { list-style: none; padding: 0; margin: 18px 0 0; }
.contact-list li { display: flex; gap: 10px; margin-top: 10px; }
.contact-list svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--wine); }

/* General layouts */
.two-column { display: grid; gap: 28px; align-items: start; }
.three-column { display: grid; gap: 18px; }
.info-card { padding: 24px 20px; background: var(--paper-2); border: 1px solid var(--line); }
.info-card .icon { margin-bottom: 14px; }
.info-card p:last-child { margin-bottom: 0; }
.fact-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.fact-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; }
.fact-list svg { width: 22px; height: 22px; color: var(--olive); }
.coffee-visual { min-height: 310px; overflow: hidden; border-radius: 48% 48% 6px 6px / 35% 35% 6px 6px; }
.coffee-visual picture { display: block; width: 100%; height: 100%; }
.coffee-visual img { width: 100%; height: 100%; object-fit: cover; }

.hours-list { margin: 0; }
.hours-list div { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.hours-list dt { font-weight: 700; }
.hours-list dd { margin: 0; white-space: nowrap; }

.programme-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.programme-nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 8px 13px; border: 1px solid var(--wine); border-radius: 999px; color: var(--wine-dark); text-decoration: none; }
.programme-nav a:hover { background: var(--wine); color: var(--white); }

.programme-group + .programme-group { margin-top: 48px; }
.programme-list { display: grid; gap: 14px; }
.programme-detail { scroll-margin-top: 130px; padding: 22px 18px; background: var(--paper-2); border: 1px solid var(--line); }
.programme-detail:target { box-shadow: 0 0 0 4px rgba(95, 105, 52, .35); }
.programme-title-row { display: grid; grid-template-columns: 45px 1fr; gap: 14px; align-items: start; }
.programme-title-row .icon { width: 42px; height: 42px; }
.programme-title-row h3 { margin: 0; }
.programme-meta { display: grid; gap: 10px; margin-top: 16px; }
.programme-meta div { padding-top: 10px; border-top: 1px solid var(--line); }
.programme-meta dt { color: var(--muted); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.programme-meta dd { margin: 3px 0 0; }
.status-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.status { display: inline-flex; align-items: center; min-height: 32px; padding: 5px 9px; background: var(--olive-soft); color: #303718; font-size: .78rem; font-weight: 700; }
.status--rose { background: var(--rose); color: var(--wine-dark); }

.rule-block { padding: 24px 20px; background: var(--wine); color: var(--white); }
.rule-block h2, .rule-block h3 { color: var(--white); }
.rule-block ul { margin-bottom: 0; }

.timeline { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: timeline; }
.timeline li { counter-increment: timeline; position: relative; display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding-bottom: 24px; }
.timeline li::before { content: counter(timeline); position: relative; z-index: 2; width: 40px; height: 40px; display: grid; place-items: center; background: var(--olive); color: var(--white); border-radius: 50%; font-weight: 700; }
.timeline li:not(:last-child)::after { content: ''; position: absolute; top: 40px; bottom: 0; left: 19px; width: 2px; background: var(--line); }
.timeline h3 { margin: 3px 0 7px; }

.poker-hero-simple { display: grid; gap: 24px; align-items: center; padding-block: 28px; }
.poker-hero-simple .page-hero-copy { padding-inline: 0; }
.poker-hero-visual { min-height: 310px; margin: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .32); border-radius: 48% 48% 6px 6px / 28% 28% 6px 6px; }
.poker-hero-visual picture { display: block; height: 100%; }
.poker-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.card-showcase { display: grid; gap: 30px; align-items: center; }
.card-art { display: block; filter: drop-shadow(0 22px 30px rgba(77, 28, 37, .18)); }
.card-art img { width: 100%; border-radius: 10px; }
.card-methods { display: grid; gap: 16px; }
.method-card { padding: 24px; background: var(--paper-2); border: 1px solid var(--line); }
.method-number { display: block; margin-bottom: 12px; color: var(--olive-dark); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.method-value { display: block; color: var(--wine-dark); font-family: var(--serif); font-size: clamp(2rem, 8vw, 3.4rem); line-height: 1; }

.calculator { padding: 24px; background: var(--rose-2); border: 1px solid #d9b9b7; }
.calculator-grid { display: grid; gap: 18px; }
.calculator label { display: block; font-weight: 700; }
.calculator input[type="range"] {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 44px;
    margin: 6px 0 0;
    accent-color: var(--olive);
    cursor: pointer;
    pointer-events: auto;
    touch-action: pan-y;
}
.calc-result { padding: 18px; background: var(--paper-2); }
.calc-result strong { display: block; color: var(--wine-dark); font-family: var(--serif); font-size: 2rem; }

.map-link { min-height: 310px; display: grid; place-items: center; padding: 28px; background: linear-gradient(135deg, #ead5d2 0%, #e2e0c8 100%); border: 1px solid var(--line); text-align: center; text-decoration: none; }
.map-link svg { width: 64px; height: 64px; margin: 0 auto 18px; color: var(--wine); }
.map-link strong { display: block; font-family: var(--serif); color: var(--wine-dark); font-size: 1.6rem; }
.map-link span { display: block; margin-top: 8px; }

/* Form */
.form-section { width: var(--shell); margin: 20px auto 54px; padding: 28px 18px; background: linear-gradient(135deg, #f3e2df 0%, #ead2d2 100%); border: 1px solid #e3c7c4; border-radius: 10px; }
.form-heading { max-width: 650px; margin-bottom: 22px; }
.form-heading p:last-child { margin-bottom: 0; }
.form-alert { display: grid; gap: 3px; margin-bottom: 20px; padding: 14px 16px; background: #fff5f5; border: 2px solid var(--error); color: #6f1323; }
.enquiry-form { display: grid; gap: 16px; }
.field { min-width: 0; }
.field label:not(.check-row) { display: block; margin-bottom: 6px; font-weight: 700; }
.field input:not([type="checkbox"]), .field select, .field textarea {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    padding: 11px 12px;
    border: 1px solid #9c8580;
    border-radius: 4px;
    background: var(--white);
    color: var(--ink);
}
.field textarea { min-height: 128px; resize: vertical; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border: 2px solid var(--error); }
.field-error { display: block; margin-top: 5px; color: #7b1728; font-size: .9rem; font-weight: 700; }
.check-row { display: grid; grid-template-columns: 24px 1fr; gap: 11px; align-items: start; }
.check-row input { width: 21px; height: 21px; margin: 2px 0 0; accent-color: var(--olive); }
.check-row a { color: var(--wine-dark); font-weight: 700; }
.poker-confirmation { padding: 16px; background: rgba(255, 250, 246, .72); border-left: 4px solid var(--wine); }
.poker-confirmation.is-hidden { display: none; }
.form-submit { display: grid; gap: 12px; align-items: center; }
.form-submit p { margin: 0; color: var(--muted); font-size: .88rem; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* FAQ */
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 56px; display: grid; grid-template-columns: 1fr 26px; gap: 16px; align-items: center; padding: 15px 4px; color: var(--wine-dark); font-weight: 700; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { content: ''; }
.summary-icon { width: 24px; height: 24px; transition: transform .2s ease; }
.faq-list details[open] .summary-icon { transform: rotate(180deg); }
.faq-list details > div { max-width: 74ch; padding: 0 4px 16px; }

/* Legal */
.legal-wrap { display: grid; gap: 26px; }
.legal-nav { padding: 18px; background: var(--rose-2); border: 1px solid var(--line); }
.legal-nav h2 { font-size: 1.25rem; }
.legal-nav ul { list-style: none; margin: 0; padding: 0; }
.legal-nav a { min-height: 42px; display: flex; align-items: center; border-bottom: 1px solid var(--line); text-decoration: none; }
.legal { min-width: 0; max-width: 78ch; }
.legal h2 { margin-top: 1.6em; }
.legal h3 { margin-top: 1.4em; }
.legal address { font-style: normal; }
.table-wrap { max-width: 100%; overflow-x: auto; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; min-width: 680px; background: var(--paper-2); }
th, td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: var(--rose-2); color: var(--wine-dark); }

.error-page, .success-page { min-height: 62vh; display: grid; place-items: center; padding-block: 60px; text-align: center; }
.error-code { color: var(--rose); font-family: var(--serif); font-size: clamp(6rem, 30vw, 15rem); line-height: .75; }

/* Footer */
.site-footer { background: var(--wine-dark); color: #f9efea; }
.footer-main { display: grid; gap: 30px; padding-block: 48px 34px; }
.footer-brand p { max-width: 34ch; margin-top: 12px; color: #e8d6d0; }
.footer-logo { width: 230px; }
.site-footer h2 { margin: 0 0 12px; color: var(--paper-2); font-family: var(--sans); font-size: .9rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: 7px; }
.site-footer a, .footer-link { color: #f9efea; }
.site-footer address { font-style: normal; }
.footer-link { min-height: 44px; padding: 0; border: 0; background: transparent; text-decoration: underline; text-underline-offset: .2em; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-block: 18px; border-top: 1px solid rgba(255, 255, 255, .25); font-size: .88rem; }
.footer-bottom p { margin: 0; }

/* Consent */
.consent-banner { position: fixed; z-index: 300; right: 12px; bottom: 12px; left: 12px; max-width: 1160px; max-height: calc(100vh - 24px); overflow-y: auto; margin-inline: auto; padding: 18px; background: var(--paper-2); border: 2px solid var(--wine); box-shadow: 0 20px 80px rgba(0, 0, 0, .25); pointer-events: auto; }
.consent-banner h2 { font-size: 1.45rem; }
.consent-banner p { margin-bottom: 0; }
.consent-actions { display: grid; gap: 9px; margin-top: 16px; }
.consent-dialog { width: min(calc(100% - 24px), 680px); max-height: calc(100vh - 24px); padding: 0; border: 0; background: transparent; }
.consent-dialog::backdrop { background: rgba(33, 21, 18, .68); }
.consent-panel { max-height: calc(100vh - 24px); overflow-y: auto; padding: 22px; background: var(--paper-2); color: var(--ink); }
.dialog-heading { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: start; }
.icon-button { width: 46px; height: 46px; border: 1px solid var(--wine); background: transparent; color: var(--wine); font-size: 1.7rem; line-height: 1; }
.consent-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-top: 1px solid var(--line); }
.consent-row strong, .consent-row span { display: block; }
.consent-row span { color: var(--muted); font-size: .9rem; }
.switch input { position: absolute; opacity: 0; }
.switch > span:first-of-type { position: relative; width: 52px; height: 30px; background: #857b77; border-radius: 999px; transition: background .18s ease; }
.switch > span:first-of-type::after { content: ''; position: absolute; top: 4px; left: 4px; width: 22px; height: 22px; background: var(--white); border-radius: 50%; transition: transform .18s ease; }
.switch input:checked + span { background: var(--olive); }
.switch input:checked + span::after { transform: translateX(22px); }
.switch input:focus-visible + span { outline: 3px solid #1d6fb5; outline-offset: 3px; }
.switch input:disabled + span { opacity: .72; }
.dialog-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line); }

@media (min-width: 600px) {
    :root { --shell: min(100% - 48px, 1280px); }
    .included-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .activity-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .price-columns { grid-template-columns: 1fr 1fr; }
    .price-column + .price-column { border-top: 0; border-left: 1px solid #bd8f93; }
    .journey-location { grid-template-columns: 1fr 1fr; }
    .journey-photo { grid-column: 1 / -1; }
    .three-column { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .programme-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .enquiry-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .field--wide { grid-column: 1 / -1; }
    .form-submit { grid-template-columns: 1fr auto; }
    .consent-actions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 820px) {
    .section { padding-block: 76px; }
    .section-heading--split { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: end; }
    .home-hero { display: grid; grid-template-columns: 1fr 1fr; }
    .hero-pane { min-height: 640px; }
    .hero-pane--visual { min-height: 640px; }
    .hero-copy { left: max(28px, calc((100vw - 1280px) / 2 + 24px)); bottom: 48px; right: 36px; }
    .page-hero-grid { grid-template-columns: .82fr 1.18fr; min-height: 520px; }
    .page-hero-copy { padding: 70px max(32px, calc((100vw - 1280px) / 2 + 24px)); padding-right: 48px; }
    .intro-pricing { grid-template-columns: .75fr 1.25fr; align-items: start; }
    .pricing-panel { padding: 34px; }
    .included-layout { grid-template-columns: 1.55fr .85fr; }
    .included-photo { min-height: 400px; }
    .activity-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .activity-card h3 { min-height: 58px; }
    .poker-feature { grid-template-columns: .8fr 1.2fr; }
    .poker-feature-image { min-height: 430px; }
    .poker-feature-copy { padding: 42px; }
    .week-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); }
    .day-card { padding: 14px 12px; }
    .schedule-item { display: block; min-height: 90px; }
    .schedule-item span { display: block; margin-top: 6px; }
    .two-column { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; }
    .journey-location { grid-template-columns: 1.1fr .78fr .92fr; align-items: stretch; }
    .journey-photo { grid-column: auto; min-height: 100%; }
    .poker-hero-simple { grid-template-columns: 1.05fr .95fr; min-height: 520px; padding-block: 34px; }
    .poker-hero-visual { min-height: 450px; }
    .programme-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .programme-detail { padding: 26px; }
    .card-showcase { grid-template-columns: 1.15fr .85fr; }
    .card-methods { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .calculator-grid { grid-template-columns: 1fr .7fr .7fr; align-items: end; }
    .legal-wrap { grid-template-columns: 240px minmax(0, 1fr); align-items: start; }
    .legal-nav { position: sticky; top: 138px; }
    .footer-main { grid-template-columns: 1.25fr repeat(3, minmax(0, .75fr)); }
    .consent-banner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 22px 24px; }
    .consent-actions { min-width: 520px; margin: 0; }
}

@media (min-width: 980px) {
    .site-header { position: relative; }
    .header-inner { min-height: 116px; grid-template-columns: 1fr auto 1fr; grid-template-rows: 62px 54px; gap: 0 22px; }
    .brand { grid-column: 2; grid-row: 1; justify-self: center; width: 250px; }
    .brand-lockup { width: 250px; }
    .nav-toggle { display: none; }
    .primary-nav { position: static; grid-column: 1 / -1; grid-row: 2; display: flex !important; justify-content: center; align-items: stretch; max-height: none; overflow: visible; padding: 0 190px 0 0; background: transparent; border: 0; box-shadow: none; }
    .primary-nav a { min-height: 54px; padding: 6px 14px; border: 0; font-size: .88rem; }
    .primary-nav a:hover { color: var(--wine); }
    .primary-nav a[aria-current="page"] { position: relative; }
    .primary-nav a[aria-current="page"]::after { content: ''; position: absolute; right: 14px; bottom: 8px; left: 14px; height: 2px; background: var(--wine); }
    .header-cta { position: absolute; right: 0; bottom: 10px; display: inline-flex; }
    .form-section { padding: 40px; }
}

@media (min-width: 1280px) {
    body { font-size: 17px; }
    .header-cta { right: calc((100vw - 1280px) / 2); }
    .primary-nav a { padding-inline: 18px; }
    .page-hero-copy { padding-left: max(32px, calc((100vw - 1280px) / 2)); }
}

@media (min-width: 1600px) {
    :root { --shell: min(100% - 96px, 1440px); }
    .header-inner { width: var(--shell); }
    .header-cta { right: calc((100vw - 1440px) / 2); }
    .hero-copy { left: max(48px, calc((100vw - 1440px) / 2)); }
}

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

@media print {
    .site-header, .site-footer, .consent-banner, .consent-dialog, .form-section, .actions { display: none !important; }
    body { background: #fff; color: #000; }
    a { text-decoration: none; }
    .section { padding-block: 20px; }
}
