@font-face {
    font-family: "Ceremivia Serif";
    src: url("/assets/fonts/lm-roman-regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ceremivia Serif";
    src: url("/assets/fonts/lm-roman-bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ceremivia Sans";
    src: url("/assets/fonts/lm-sans-regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Ceremivia Sans";
    src: url("/assets/fonts/lm-sans-bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f3eee4;
    --bg-soft: #f8f5ee;
    --surface: #fffdf8;
    --surface-muted: #e6eadf;
    --text: #30291f;
    --text-soft: #5f5a52;
    --sage: #68795c;
    --sage-dark: #4f6147;
    --sage-pale: #dfe5d8;
    --espresso: #332b23;
    --walnut: #6b5643;
    --line: #bdb3a2;
    --line-dark: #817a70;
    --focus: #2b5d53;
    --error: #9a4036;
    --header-height: 96px;
    --container: 1280px;
    --serif: "Ceremivia Serif", Georgia, "Times New Roman", serif;
    --sans: "Ceremivia Sans", Arial, Helvetica, sans-serif;
    --shadow-soft: 0 24px 70px rgba(48, 41, 31, .12);
}

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

html {
    scroll-behavior: smooth;
    background: var(--bg);
    overflow-x: clip;
}

body {
    margin: 0;
    color: var(--text);
    background-color: var(--bg);
    background-image: url("/assets/images/paper-texture.webp");
    background-size: 512px 512px;
    font-family: var(--sans);
    font-size: 18px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

body.menu-open { overflow: hidden; }

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

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

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

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

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

::selection { background: var(--sage-pale); color: var(--text); }

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.02;
    text-wrap: balance;
    hyphens: auto;
    overflow-wrap: break-word;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 4.55rem); letter-spacing: -.045em; }
h2 { font-size: clamp(1.6rem, 2.95vw, 3.2rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.12rem, 1.55vw, 1.72rem); letter-spacing: -.02em; }

p { max-width: 70ch; }

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 9999;
    transform: translateY(-150%);
    padding: 10px 14px;
    background: var(--espresso);
    color: #fff;
}

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

.container {
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
}

.narrow { width: min(calc(100% - 64px), 880px); margin-inline: auto; }

.section { padding: 96px 0; }
.section--compact { padding: 68px 0; }
.section--sage { background: var(--sage-dark); color: var(--bg-soft); }
.section--light { background: rgba(255, 253, 248, .72); }
.section--espresso { background: var(--espresso); color: var(--bg-soft); }

.eyebrow {
    margin-bottom: 18px;
    color: var(--sage-dark);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.section--sage .eyebrow,
.section--espresso .eyebrow,
.site-footer .eyebrow { color: #d6e0cf; }

.lede {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.4vw, 2.25rem);
    line-height: 1.35;
}

.muted { color: var(--text-soft); }

.site-header {
    position: relative;
    z-index: 100;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(145, 138, 126, .45);
    background: rgba(248, 245, 238, .94);
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(560px, 1.45fr) minmax(280px, .72fr) 1fr;
    align-items: center;
    min-height: var(--header-height);
    padding: 0 36px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.4vw, 44px);
    font-size: 1rem;
    white-space: nowrap;
}

.desktop-nav a {
    position: relative;
    text-decoration: none;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--sage-dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .22s ease;
}

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

.brand {
    justify-self: center;
    width: min(100%, 280px);
}

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

.header-note {
    justify-self: end;
    color: var(--sage-dark);
    font-size: .84rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.menu-toggle { display: none; }

.mobile-menu { display: none; }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 3px;
    padding: 13px 22px;
    cursor: pointer;
    font-family: var(--sans);
    font-size: .98rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    touch-action: manipulation;
}

.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--sage); color: #fff; }
.button--primary:hover { background: var(--sage-dark); }
.button--secondary { border-color: var(--line-dark); background: transparent; color: var(--text); }
.button--secondary:hover { border-color: var(--sage-dark); color: var(--sage-dark); }
.button--light { border-color: var(--bg-soft); background: var(--bg-soft); color: var(--espresso); }
.button--wide { width: 100%; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sage-dark);
    font-weight: 700;
}

.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.section--sage .text-link,
.section--espresso .text-link,
.section--sage .prose a,
.section--espresso .prose a { color: #e2e9dc; }

.home-hero {
    position: relative;
    display: grid;
    min-height: min(900px, calc(100svh - var(--header-height)));
    grid-template-columns: 61.5% 38.5%;
    overflow: hidden;
}

.home-hero__content {
    position: relative;
    z-index: 2;
    min-width: 0;
    padding: clamp(52px, 4vw, 68px) clamp(34px, 4.6vw, 74px) 360px;
}

.home-hero__content h1 {
    max-width: 790px;
    margin-bottom: 22px;
    font-size: clamp(2.6rem, 3.5vw, 3.45rem);
}

.home-hero__facts {
    margin-bottom: 24px;
    color: var(--sage-dark);
    font-size: clamp(1rem, 1.45vw, 1.35rem);
}

.compliance-note {
    display: inline-block;
    max-width: 560px;
    margin: 0;
    border: 1px solid var(--sage);
    border-radius: 4px;
    padding: 12px 18px;
    background: rgba(248, 245, 238, .86);
    color: #485142;
    font-size: .92rem;
    line-height: 1.45;
}

.compliance-note--section { margin-top: 28px; }
.scenario .compliance-note,
.theme-group .compliance-note { width: 100%; margin: 0 0 22px; font-size: .82rem; }
.theme-group .compliance-note { margin-top: 20px; padding: 10px 12px; }

.home-hero__photo {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 59%;
    min-height: 450px;
}

.home-hero__photo::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(48, 41, 31, .02);
    pointer-events: none;
}

.home-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }

.home-hero__form {
    position: relative;
    z-index: 3;
    align-self: start;
    margin: 52px 54px 70px 0;
}

.enquiry-card {
    width: 100%;
    min-width: 0;
    border: 1px solid #c4c09d;
    border-radius: 32px;
    padding: clamp(28px, 3vw, 48px);
    background: rgba(255, 253, 248, .96);
    box-shadow: var(--shadow-soft);
}

.enquiry-card h2 {
    max-width: 480px;
    margin-bottom: 26px;
    font-size: clamp(1.6rem, 2.25vw, 2.52rem);
}

.home-hero .enquiry-card h2 { font-size: clamp(1.48rem, 1.96vw, 1.93rem); }
.home-hero .form-grid { grid-template-columns: 1fr; gap: 15px; }
.home-hero .field--full { grid-column: auto; }
.home-hero .field textarea { min-height: 140px; }
.home-hero .field-hint { display: none; }
.home-hero .button[type="submit"] { min-height: 64px; margin-top: 12px; }
.home-hero .privacy-check { margin-top: 26px; }

.enquiry-card__intro { color: var(--text-soft); font-size: .96rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field label {
    position: absolute;
    z-index: 1;
    top: 8px;
    left: 15px;
    color: var(--text-soft);
    font-size: .73rem;
    line-height: 1;
    pointer-events: none;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line-dark);
    border-radius: 2px;
    padding: 23px 14px 8px;
    background: rgba(255, 255, 255, .4);
    color: var(--text);
    line-height: 1.3;
    transition: border-color .2s ease, background-color .2s ease;
}

.field input,
.field select { min-height: 58px; }
.field textarea { min-height: 116px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--sage-dark); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--focus); background: #fff; outline: 2px solid rgba(43, 93, 83, .22); outline-offset: 0; }
.field [aria-invalid="true"] { border-color: var(--error); }
.field-hint { display: block; margin-top: 5px; color: var(--text-soft); font-size: .76rem; }
.field-error { display: block; margin-top: 3px; color: var(--error); font-size: .76rem; line-height: 1.2; }
.field-error:empty { display: none; }

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0 8px;
    font-size: .84rem;
    line-height: 1.4;
}

.privacy-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--sage-dark); }
.form-status { display: block; min-height: 1.35em; color: var(--error); font-size: .84rem; }
.form-status:empty { min-height: 0; }
.form-trap { display: none !important; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.page-hero {
    display: grid;
    min-height: 600px;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    border-bottom: 1px solid var(--line);
}

.page-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 86px clamp(48px, 5vw, 90px) 86px max(52px, calc((100vw - var(--container)) / 2));
}

.page-hero__content h1 { max-width: 760px; margin-bottom: 25px; font-size: clamp(2.38rem, 4.2vw, 4.48rem); }
.page-hero__content .lede { max-width: 680px; }
.page-hero__image { min-height: 520px; overflow: hidden; }
.page-hero__image img { width: 100%; height: 100%; object-fit: cover; }

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: clamp(42px, 7vw, 108px);
    align-items: start;
}

.intro-grid h2 { margin-bottom: 0; }
.prose > * + * { margin-top: 1.25em; }
.prose h2, .prose h3 { margin-top: 1.7em; margin-bottom: .55em; }
.prose ul, .prose ol { padding-left: 1.25em; }
.prose li + li { margin-top: .6em; }
.prose a { color: var(--sage-dark); }

.facts-row {
    display: grid;
    margin-top: 60px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
}

.fact { padding: 30px; text-align: center; }
.fact + .fact { border-left: 1px solid var(--line); }
.fact strong { display: block; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 400; line-height: 1; }
.fact span { display: block; margin-top: 8px; color: var(--text-soft); font-size: .88rem; }

.service-index { border-top: 1px solid var(--line); }
.service-row {
    display: grid;
    grid-template-columns: 120px minmax(280px, .65fr) 1.1fr 40px;
    gap: 30px;
    align-items: center;
    min-height: 144px;
    border-bottom: 1px solid var(--line);
    text-decoration: none;
    transition: background-color .22s ease;
}

.service-row:hover { background: rgba(255, 253, 248, .62); }
.service-row__number { color: var(--sage-dark); font-family: var(--serif); font-size: 2.2rem; }
.service-row h3 { margin: 0; }
.service-row p { margin: 0; color: var(--text-soft); }
.service-row__arrow { font-size: 1.7rem; transition: transform .2s ease; }
.service-row:hover .service-row__arrow { transform: translateX(5px); }

.journey {
    display: grid;
    margin-top: 62px;
    border-top: 1px solid rgba(255,255,255,.38);
    grid-template-columns: repeat(4, 1fr);
}

.journey-step { position: relative; padding: 34px 26px; }
.journey-step + .journey-step { border-left: 1px solid rgba(255,255,255,.3); }
.journey-step__number { display: block; margin-bottom: 30px; color: #cbd5c2; font-family: var(--serif); font-size: 2rem; }
.journey-step h3 { margin-bottom: 14px; font-size: 1.4rem; }
.journey-step p { color: rgba(255,255,255,.78); font-size: .96rem; }

.split-media {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(50px, 8vw, 120px);
    align-items: center;
}

.split-media--reverse { grid-template-columns: .9fr 1.1fr; }
.split-media--reverse .split-media__image { order: 2; }
.split-media__image { min-height: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.split-media__image img { width: 100%; height: 100%; object-fit: cover; }
.split-media__copy h2 { margin-bottom: 28px; }

.included-list {
    display: grid;
    margin: 36px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
    grid-template-columns: 1fr 1fr;
}

.included-list li { padding: 15px 6px; border-bottom: 1px solid var(--line); }
.included-list li:nth-child(odd) { padding-right: 24px; }
.included-list li:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }

.theme-directory {
    display: grid;
    margin-top: 55px;
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(3, 1fr);
}

.theme-group { padding: 38px; border-bottom: 1px solid var(--line); }
.theme-group + .theme-group { border-left: 1px solid var(--line); }
.theme-group:nth-child(4) { border-left: 0; }
.theme-group h3 { font-size: 1.4rem; }
.theme-group ul { margin: 0; padding-left: 1.1em; color: var(--text-soft); }
.theme-group li + li { margin-top: 7px; }

.scenario-grid { display: grid; margin-top: 54px; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.scenario {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 34px;
    background: rgba(255,253,248,.52);
}
.scenario h3 { font-size: 1.4rem; }
.scenario__meta { margin-bottom: 22px; color: var(--sage-dark); font-weight: 700; }
.scenario ol { padding-left: 1.2em; }
.scenario .text-link { margin-top: auto; padding-top: 20px; }

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    grid-template-rows: 390px 290px;
    gap: 14px;
}

.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: var(--surface-muted); }
.gallery-grid figure:first-child { grid-row: 1 / 3; }
.gallery-grid figure:nth-child(4) { grid-column: 2 / 4; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(48,41,31,.76);
    color: #fff;
    font-size: .85rem;
}

.benefit-grid { display: grid; margin-top: 55px; border-top: 1px solid var(--line); grid-template-columns: repeat(3, 1fr); }
.benefit { padding: 36px 30px; border-bottom: 1px solid var(--line); }
.benefit + .benefit { border-left: 1px solid var(--line); }
.benefit:nth-child(4) { border-left: 0; }
.benefit h3 { font-size: 1.4rem; }

.faq-list { margin-top: 45px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    cursor: pointer;
    font-family: var(--serif);
    font-size: clamp(1.3rem, 2vw, 1.9rem);
    line-height: 1.2;
    list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--sage-dark); font-family: var(--sans); font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 850px; padding: 0 60px 30px 0; color: var(--text-soft); }

.enquiry-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(45px, 7vw, 100px); align-items: start; }
.enquiry-section__intro { position: sticky; top: 32px; }
.enquiry-section .enquiry-card { box-shadow: none; }

.contact-cards { display: grid; margin-top: 42px; border-top: 1px solid var(--line); }
.contact-card { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-card span { display: block; color: var(--text-soft); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-card a, .contact-card address { display: block; margin-top: 8px; font-style: normal; font-size: 1.08rem; }
.contact-card a, .footer-main a, .footer-main address, .legal-content a { overflow-wrap: anywhere; }

.legal-layout { display: grid; grid-template-columns: 280px minmax(0, 760px); gap: 80px; align-items: start; }
.legal-nav { position: sticky; top: 28px; padding: 24px; border: 1px solid var(--line); background: rgba(255,253,248,.6); }
.legal-nav a { display: block; padding: 8px 0; color: var(--sage-dark); font-size: .9rem; }
.legal-content h1 { margin-bottom: 28px; font-size: clamp(2.17rem, 4.2vw, 3.92rem); }
.legal-content h2 { margin-top: 1.7em; font-size: clamp(1.4rem, 2.1vw, 2.1rem); }
.legal-content h3 { margin-top: 1.5em; font-size: 1.19rem; }
.legal-content table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.legal-content th, .legal-content td { border: 1px solid var(--line); padding: 12px; text-align: left; vertical-align: top; }
.legal-content th { background: var(--sage-pale); }

.thank-you {
    display: grid;
    min-height: calc(100svh - var(--header-height));
    place-items: center;
    padding: 80px 24px;
    text-align: center;
}
.thank-you__inner { max-width: 780px; }
.thank-you h1 { font-size: clamp(2.38rem, 4.9vw, 4.55rem); }
.thank-you p { margin-inline: auto; }

.site-footer { background: var(--espresso); color: var(--bg-soft); }
.footer-cta {
    display: grid;
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
    padding: 88px 0;
    border-bottom: 1px solid rgba(255,255,255,.24);
    grid-template-columns: 1fr 1.5fr auto;
    gap: 42px;
    align-items: end;
}
.footer-cta h2 { margin: 0; font-size: clamp(1.61rem, 2.8vw, 3.08rem); }
.footer-cta .eyebrow { align-self: start; }
.footer-main {
    display: grid;
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
    padding: 70px 0;
    grid-template-columns: 1.45fr repeat(3, 1fr);
    gap: 55px;
}
.footer-brand img { width: 240px; margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,.67); }
.footer-main h3 { margin-bottom: 22px; color: #cad3c2; font-family: var(--sans); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-main a, .footer-main address, .footer-main span, .footer-link-button { display: block; margin: 9px 0; color: rgba(255,255,255,.76); font-size: .9rem; font-style: normal; text-decoration: none; }
.footer-main a:hover, .footer-link-button:hover { color: #fff; text-decoration: underline; }
.footer-link-button { border: 0; padding: 0; cursor: pointer; background: none; text-align: left; }
.footer-legal { display: flex; justify-content: space-between; gap: 32px; padding: 22px max(32px, calc((100vw - var(--container)) / 2)); border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.64); font-size: .77rem; }
.footer-legal p { margin: 0; }

.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 900;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: end;
    border: 1px solid var(--line-dark);
    padding: 26px;
    background: var(--surface);
    box-shadow: 0 14px 60px rgba(48,41,31,.22);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { margin-bottom: 10px; font-size: 1.4rem; }
.cookie-banner p { margin-bottom: 8px; font-size: .87rem; line-height: 1.5; }
.cookie-banner .eyebrow { margin-bottom: 8px; }
.cookie-info-link { color: var(--sage-dark); font-size: .85rem; }
.cookie-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.button--consent { min-width: 135px; border-color: var(--sage-dark); background: transparent; color: var(--sage-dark); }
.button--consent:hover { background: var(--sage-dark); color: #fff; }

.cookie-modal { position: fixed; inset: 0; z-index: 950; display: grid; place-items: center; padding: 20px; }
.cookie-modal[hidden] { display: none; }
.cookie-modal__backdrop { position: absolute; inset: 0; background: rgba(32,27,22,.72); }
.cookie-modal__panel { position: relative; z-index: 1; width: min(100%, 700px); max-height: calc(100svh - 40px); overflow: auto; border: 1px solid var(--line); padding: 38px; background: var(--surface); }
.cookie-modal__close { position: absolute; top: 18px; right: 18px; border: 0; cursor: pointer; background: none; color: var(--sage-dark); font-size: .82rem; text-decoration: underline; }
.cookie-modal__close { min-width: 48px; min-height: 44px; }
.cookie-modal__panel h2 { font-size: 1.96rem; }
.cookie-modal__panel > p { color: var(--text-soft); font-size: .9rem; }
.cookie-category { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 22px 0; border-top: 1px solid var(--line); }
.cookie-category h3 { margin-bottom: 8px; font-family: var(--sans); font-size: 1.05rem; font-weight: 700; }
.cookie-category p { margin: 0; color: var(--text-soft); font-size: .83rem; }
.switch { display: flex; align-items: center; gap: 8px; font-size: .82rem; }
.switch input { width: 20px; height: 20px; accent-color: var(--sage-dark); }
.cookie-modal__actions { display: flex; justify-content: flex-end; gap: 10px; padding-top: 28px; border-top: 1px solid var(--line); }

@media (max-width: 1260px) {
    .site-header__inner { grid-template-columns: minmax(510px, 1.5fr) minmax(230px, .7fr) .4fr; padding: 0 24px; }
    .desktop-nav { gap: 20px; font-size: .9rem; }
    .header-note { display: none; }
    .home-hero__content { padding-left: 48px; padding-right: 36px; }
    .home-hero__form { margin-right: 28px; }
    .enquiry-card { padding: 34px; }
    .enquiry-card .form-grid { grid-template-columns: 1fr; }
    .enquiry-card .field--full { grid-column: auto; }
    .page-hero__content { padding-inline: 48px; }
}

@media (max-width: 1100px) {
    :root { --header-height: 76px; }
    .site-header { position: sticky; top: 0; }
    .site-header__inner { display: flex; min-height: var(--header-height); justify-content: space-between; padding: 0 20px; }
    .desktop-nav, .header-note { display: none; }
    .brand { width: 205px; margin-left: -12px; }
    .menu-toggle { display: inline-flex; min-width: 48px; min-height: 48px; align-items: center; gap: 12px; border: 0; padding: 10px 0; cursor: pointer; background: none; color: var(--text); }
    .menu-toggle__label { font-size: .86rem; text-transform: uppercase; letter-spacing: .1em; }
    .menu-toggle__lines { display: grid; width: 26px; gap: 7px; }
    .menu-toggle__lines i { display: block; height: 1px; background: currentColor; transition: transform .2s ease; }
    .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child { transform: translateY(-4px) rotate(-45deg); }
    .mobile-menu { position: fixed; inset: var(--header-height) 0 0; z-index: 90; display: flex; flex-direction: column; overflow: auto; padding: 34px 24px 100px; background: var(--bg-soft); }
    .mobile-menu[hidden] { display: none; }
    .mobile-menu > a { display: flex; min-height: 52px; align-items: center; border-bottom: 1px solid var(--line); padding: 10px 0; font-family: var(--serif); font-size: 1.8rem; text-decoration: none; }
    .mobile-menu__contact { margin-top: 32px; }
    .mobile-menu__contact a { display: flex; min-height: 44px; align-items: center; margin: 0; color: var(--sage-dark); }
}

@media (max-width: 960px) {
    :root { --header-height: 76px; }
    body { font-size: 17px; }
    .site-header { position: sticky; top: 0; }
    .site-header__inner { display: flex; min-height: var(--header-height); justify-content: space-between; padding: 0 20px; }
    .desktop-nav, .header-note { display: none; }
    .brand { width: 205px; margin-left: -12px; }
    .menu-toggle { display: inline-flex; align-items: center; gap: 12px; border: 0; padding: 10px 0; cursor: pointer; background: none; color: var(--text); }
    .menu-toggle__label { font-size: .86rem; text-transform: uppercase; letter-spacing: .1em; }
    .menu-toggle__lines { display: grid; width: 26px; gap: 7px; }
    .menu-toggle__lines i { display: block; height: 1px; background: currentColor; transition: transform .2s ease; }
    .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child { transform: translateY(4px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child { transform: translateY(-4px) rotate(-45deg); }
    .mobile-menu { position: fixed; inset: var(--header-height) 0 0; z-index: 90; display: flex; flex-direction: column; overflow: auto; padding: 34px 24px 100px; background: var(--bg-soft); }
    .mobile-menu[hidden] { display: none; }
    .mobile-menu > a { border-bottom: 1px solid var(--line); padding: 10px 0; font-family: var(--serif); font-size: 1.8rem; text-decoration: none; }
    .mobile-menu__contact { margin-top: 32px; }
    .mobile-menu__contact a { display: block; margin: 8px 0; color: var(--sage-dark); }

    .home-hero { display: grid; grid-template-columns: 1fr; grid-template-areas: "copy" "photo" "form"; overflow: visible; }
    .home-hero__content { grid-area: copy; padding: 54px 24px 38px; }
    .home-hero__content h1 { max-width: 760px; }
    .home-hero__photo { position: relative; grid-area: photo; min-height: 0; height: clamp(430px, 64vw, 570px); }
    .home-hero__form { grid-area: form; margin: -44px 20px 72px; }
    .home-hero__form .enquiry-card { max-width: 720px; margin-inline: auto; }
    .home-hero__form .form-grid { grid-template-columns: 1fr; }
    .home-hero__form .field--full { grid-column: 1 / -1; }

    .page-hero { grid-template-columns: 1fr; }
    .page-hero__content { padding: 70px 32px; }
    .page-hero__image { min-height: 0; height: clamp(430px, 64vw, 560px); }
    .intro-grid, .split-media, .split-media--reverse, .enquiry-section { grid-template-columns: 1fr; }
    .split-media--reverse .split-media__image { order: 0; }
    .enquiry-section__intro { position: static; }
    .journey { grid-template-columns: 1fr 1fr; }
    .journey-step:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.3); }
    .journey-step:nth-child(4) { border-top: 1px solid rgba(255,255,255,.3); }
    .scenario-grid, .theme-directory, .benefit-grid { grid-template-columns: 1fr 1fr; }
    .theme-group:nth-child(4), .benefit:nth-child(4) { border-left: 1px solid var(--line); }
    .theme-group:nth-child(odd), .benefit:nth-child(odd) { border-left: 0; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 260px 260px; }
    .gallery-grid figure:first-child { grid-row: 1 / 3; }
    .gallery-grid figure:nth-child(4) { grid-column: 1 / 3; }
    .footer-cta { grid-template-columns: 1fr 1fr; }
    .footer-cta .button { grid-column: 2; justify-self: start; }
    .footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-main > div:last-child { grid-column: 2 / 4; }
    .legal-layout { grid-template-columns: 1fr; gap: 38px; }
    .legal-nav { position: static; }
}

@media (max-width: 720px) {
    body { font-size: 16px; line-height: 1.6; }
    .container, .narrow { width: min(calc(100% - 40px), var(--container)); }
    .section { padding: 64px 0; }
    .section--compact { padding: 48px 0; }
    h1 { font-size: clamp(1.9rem, 8.4vw, 2.8rem); }
    h2 { font-size: clamp(1.55rem, 7vw, 2.32rem); }
    .brand { width: 178px; }

    .home-hero__content { padding-top: 46px; }
    .home-hero__content h1 { font-size: clamp(2.1rem, 9.1vw, 2.66rem); }
    .home-hero__facts { font-size: 1rem; }
    .compliance-note { width: 100%; padding: 12px 14px; font-size: .82rem; }
    .home-hero__photo { min-height: 0; height: clamp(320px, 100vw, 430px); max-height: none; }
    .home-hero__photo img { object-position: 45% center; }
    .home-hero__form { margin: -34px 14px 62px; }
    .enquiry-card { border-radius: 26px; padding: 28px 20px; }
    .enquiry-card h2 { font-size: 1.75rem; }
    .home-hero__form .form-grid, .form-grid { grid-template-columns: 1fr; }
    .home-hero__form .field--full, .field--full { grid-column: auto; }

    .page-hero { min-height: auto; }
    .page-hero__content { padding: 56px 20px; }
    .page-hero__content h1 { font-size: clamp(2.1rem, 9.1vw, 3.15rem); }
    .page-hero__image { min-height: 0; height: clamp(300px, 86vw, 390px); }

    .facts-row { grid-template-columns: 1fr; }
    .fact { padding: 24px 10px; }
    .fact + .fact { border-top: 1px solid var(--line); border-left: 0; }

    .service-row { grid-template-columns: 44px minmax(0, 1fr) 26px; grid-template-rows: auto auto; min-height: 0; gap: 8px 12px; padding: 20px 0; }
    .service-row__number { grid-row: 1 / 3; align-self: start; }
    .service-row h3 { grid-column: 2; grid-row: 1; }
    .service-row p { display: block; grid-column: 2; grid-row: 2; font-size: .92rem; line-height: 1.45; }
    .service-row__arrow { grid-column: 3; grid-row: 1 / 3; align-self: center; }
    .service-row__number { font-size: 1.6rem; }
    .service-row h3 { font-size: 1.16rem; }

    .journey { grid-template-columns: 1fr; }
    .journey-step + .journey-step, .journey-step:nth-child(3), .journey-step:nth-child(4) { border-top: 1px solid rgba(255,255,255,.3); border-left: 0; }
    .journey-step { padding: 28px 0; }
    .journey-step__number { margin-bottom: 18px; }

    .split-media__image { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
    .included-list { grid-template-columns: 1fr; }
    .included-list li:nth-child(odd), .included-list li:nth-child(even) { padding: 14px 0; border-left: 0; }

    .scenario-grid, .theme-directory, .benefit-grid { grid-template-columns: 1fr; }
    .theme-group, .benefit { padding: 28px 0; border-left: 0 !important; }
    .scenario { padding: 26px; }

    .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; overflow: visible; gap: 12px; padding-bottom: 0; }
    .gallery-grid figure { width: 100%; min-width: 0; height: clamp(280px, 92vw, 420px); }
    .gallery-grid figure:first-child, .gallery-grid figure:nth-child(4) { grid-row: auto; grid-column: auto; }

    .faq-list summary { min-height: 78px; padding: 12px 0; font-size: 1.35rem; }
    .faq-list details p { padding-right: 0; }

    .legal-content h1 { font-size: clamp(2.03rem, 9.1vw, 3.01rem); }
    .legal-content table { display: block; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

    .footer-cta { width: calc(100% - 40px); padding: 62px 0; grid-template-columns: 1fr; gap: 20px; }
    .footer-cta .button { grid-column: auto; justify-self: stretch; }
    .footer-main { width: calc(100% - 40px); padding: 54px 0; grid-template-columns: 1fr; gap: 36px; }
    .footer-main > div:last-child { grid-column: auto; }
    .footer-main a, .footer-link-button { display: flex; min-height: 44px; align-items: center; margin: 0; }
    .footer-legal { flex-direction: column; padding: 20px; gap: 8px; }

    .cookie-banner { right: 10px; bottom: 10px; left: 10px; grid-template-columns: 1fr; gap: 18px; padding: 20px; max-height: calc(100svh - 20px); overflow: auto; }
    .cookie-actions { grid-template-columns: 1fr; }
    .button--consent { width: 100%; }
    .cookie-modal { padding: 10px; }
    .cookie-modal__panel { max-height: calc(100svh - 20px); padding: 30px 20px 24px; }
    .cookie-modal__panel h2 { font-size: 1.58rem; }
    .cookie-category { grid-template-columns: 1fr; gap: 12px; }
    .cookie-modal__actions { flex-direction: column-reverse; }
    .cookie-modal__actions .button { width: 100%; }
}

@media (max-width: 430px) {
    .container, .narrow { width: min(calc(100% - 32px), var(--container)); }
    .site-header__inner { padding-inline: 16px; }
    .brand { width: 164px; margin-left: -8px; }
    .menu-toggle__label { font-size: .8rem; }
    .home-hero__content { padding: 38px 16px 30px; }
    .home-hero__form { margin: -24px 8px 52px; }
    .home-hero__content h1, .page-hero__content h1 { overflow-wrap: break-word; }
    .home-hero__facts { margin-bottom: 16px; }
    .page-hero__content { padding: 46px 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .enquiry-card { border-radius: 22px; padding: 24px 16px; }
    .enquiry-card h2 { font-size: 1.55rem; }
    .field input, .field select, .field textarea { min-width: 0; }
    .scenario { padding: 22px 18px; }
    .cookie-banner { right: 6px; bottom: 6px; left: 6px; padding: 18px 14px; max-height: calc(100svh - 12px); }
    .cookie-modal { padding: 6px; }
    .cookie-modal__panel { max-height: calc(100svh - 12px); padding: 54px 16px 20px; }
    .footer-cta, .footer-main { width: calc(100% - 32px); }
}

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