:root {
    --color-brand-green: #1d5745;
    --color-brand-green-dark: #164535;
    --color-brand-yellow: #fff66b;
    --color-brand-yellow-hover: #fff9a3;
    --color-brand-pink: #ffc4dc;
    --color-brand-rose: #cf1751;
    --color-brand-rose-dark: #93103a;
    --color-surface: #fffdf8;
    --color-surface-warm: #f5f0f0;
    --color-surface-green: #eaf2ed;
    --color-surface-rose: #f5d1dc;
    --color-text: #17231f;
    --color-text-muted: #52625c;
    --color-text-on-dark: #ffffff;
    --color-border: #cdd9d2;
    --color-field-border: #83948d;
    --color-white: #ffffff;
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --hand: "Segoe Print", "Bradley Hand", "Comic Sans MS", cursive;
    --content: 1180px;
    --shadow: 0 18px 48px rgb(11 48 39 / 10%);
    --space-1: 8px;
    --space-2: 14px;
    --space-3: 22px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 72px;
    --space-7: 96px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-surface);
    color: var(--color-text);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

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

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: var(--color-white);
    color: var(--color-brand-green-dark);
    transform: translateY(-160%);
}

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

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

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

.section {
    padding: var(--space-7) 0;
}

.section-soft {
    background: var(--color-surface-green);
}

.section-dark {
    background: var(--color-brand-green);
    color: var(--color-text-on-dark);
}

.section-rose {
    border-block: 1px solid rgb(207 23 81 / 24%);
    background: var(--color-surface-rose);
    color: var(--color-text);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--color-brand-rose);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-dark .eyebrow,
.section-dark h2 {
    color: var(--color-brand-pink);
}

.section-rose .eyebrow {
    color: var(--color-brand-rose-dark);
}

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

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.08;
}

h1 {
    margin-bottom: 24px;
    font-size: 5.25rem;
}

h2 {
    margin-bottom: 24px;
    font-size: 3.4rem;
}

h3 {
    margin-bottom: 14px;
    font-size: 1.8rem;
}

.lead {
    max-width: 720px;
    color: var(--color-text-muted);
    font-size: 1.22rem;
}

.section-dark .lead {
    color: rgb(255 255 255 / 82%);
}

.prose > * + * {
    margin-top: 1.25em;
}

.prose h2,
.prose h3 {
    margin-top: 1.7em;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 12px 22px;
    background: var(--color-brand-yellow);
    color: var(--color-brand-green-dark);
    font-size: 0.93rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
    background: var(--color-brand-yellow-hover);
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.button:disabled,
.button[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

.button-secondary {
    border-color: currentColor;
    background: transparent;
    color: inherit;
}

.button-secondary:hover {
    background: var(--color-white);
    color: var(--color-brand-green-dark);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid currentColor;
    font-weight: 750;
    line-height: 1.5;
    text-decoration: none;
    transition: color 180ms ease;
}

.text-link:hover {
    color: var(--color-brand-rose);
}

:is(.hero, .page-hero, .section-dark, .site-footer) :focus-visible {
    outline-color: var(--color-brand-pink);
}

:is(.hero, .page-hero, .section-dark) .text-link:hover {
    color: var(--color-brand-pink);
}

.site-header {
    position: relative;
    z-index: 100;
    border-bottom: 1px solid rgb(18 63 51 / 10%);
    background: rgb(255 253 248 / 96%);
}

.header-inner {
    display: grid;
    min-height: 76px;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-brand-green-dark);
    font-weight: 850;
    text-decoration: none;
    text-transform: uppercase;
}

.brand img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.brand span {
    white-space: nowrap;
}

.site-nav {
    justify-self: center;
}

.site-nav ul {
    display: flex;
    margin: 0;
    padding: 0;
    gap: 26px;
    align-items: center;
    list-style: none;
}

.site-nav a {
    padding: 10px 0;
    color: var(--color-text);
    font-size: 0.84rem;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    border-bottom: 2px solid var(--color-brand-rose);
    color: var(--color-brand-green);
}

.nav-booking {
    display: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    padding: 9px;
    background: transparent;
    color: var(--color-brand-green-dark);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    display: grid;
    min-height: min(720px, calc(100svh - 76px));
    overflow: hidden;
    background: var(--color-brand-green);
    color: var(--color-white);
}

.hero::after {
    position: absolute;
    inset: 0 50% 0 43%;
    background: var(--color-brand-green);
    content: "";
    pointer-events: none;
}

.hero-image {
    position: absolute;
    inset: 0 0 0 50%;
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 34%;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 570px;
    padding: 80px 0;
    flex-direction: column;
    justify-content: center;
}

.hero-accent {
    margin-bottom: 10px;
    color: var(--color-brand-yellow);
    font-family: var(--hand);
    font-size: 3.55rem;
    line-height: 1;
    transform: rotate(-3deg);
}

.hero h1 {
    max-width: 660px;
    font-size: 5.45rem;
}

.hero-signature {
    max-width: 510px;
    margin-bottom: 24px;
    color: var(--color-brand-pink);
    font-family: var(--serif);
    font-size: 1.5rem;
    line-height: 1.35;
    text-wrap: balance;
}

.hero .lead {
    max-width: 600px;
    margin-bottom: 34px;
    color: rgb(255 255 255 / 88%);
}

.outcomes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.outcome {
    display: flex;
    min-height: 190px;
    padding: 38px 30px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.outcome + .outcome {
    border-left: 1px solid var(--color-border);
}

.outcome-number {
    display: grid;
    width: 42px;
    height: 42px;
    margin: 0 auto 18px;
    border: 1px solid var(--color-brand-rose);
    border-radius: 50%;
    place-items: center;
    color: var(--color-brand-rose-dark);
    font-family: var(--serif);
    font-size: 1.25rem;
}

.outcome h2 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.outcome p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.94rem;
    line-height: 1.5;
}

.section-heading {
    display: flex;
    margin-bottom: 46px;
    gap: 36px;
    align-items: end;
    justify-content: space-between;
}

.section-heading > div {
    max-width: 780px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.method-grid,
.card-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.method-grid::before {
    position: absolute;
    top: 24px;
    right: 24px;
    left: 24px;
    height: 1px;
    background: var(--color-brand-rose);
    content: "";
}

.method-step {
    position: relative;
    display: flex;
    padding-top: 68px;
    flex-direction: column;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-brand-yellow);
    color: var(--color-brand-green-dark);
    font-weight: 850;
    place-items: center;
    z-index: 1;
    box-shadow: 0 0 0 10px var(--color-surface-green);
}

.method-step:nth-child(2) .step-number {
    background: var(--color-brand-rose);
    color: var(--color-text-on-dark);
}

.method-step p {
    min-height: 84px;
    margin-bottom: 26px;
    color: var(--color-text-muted);
}

.method-step figure {
    margin: auto 0 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-white);
}

.method-step img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-step:nth-child(2) img,
.method-step:nth-child(3) img {
    object-fit: cover;
}

.offer-card {
    display: flex;
    min-width: 0;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-brand-rose);
    border-radius: 2px;
    background: var(--color-white);
    flex-direction: column;
}

.offer-card img {
    width: 100%;
    height: 250px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.offer-card-content {
    display: flex;
    padding: var(--space-4);
    flex: 1;
    flex-direction: column;
}

.offer-card-content p {
    color: var(--color-text-muted);
}

.offer-card-content .text-link {
    margin-top: auto;
    align-self: flex-start;
}

.testimonial {
    position: relative;
    min-height: 360px;
}

.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: max(0px, calc((100% - var(--content)) / 2 - 24px));
    width: 8px;
    background: var(--color-brand-rose);
    content: "";
}

.testimonial-slide {
    display: none;
    grid-template-columns: 160px 1fr;
    gap: 48px;
    align-items: center;
}

.testimonial-slide.active {
    display: grid;
}

.testimonial-art {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 7px var(--color-brand-rose), 0 0 0 12px var(--color-surface);
}

.testimonial blockquote {
    position: relative;
    margin: 0;
}

.testimonial blockquote::before {
    position: absolute;
    top: -54px;
    left: -20px;
    color: rgb(207 23 81 / 28%);
    content: "\201C";
    font-family: var(--serif);
    font-size: 8rem;
    line-height: 1;
    pointer-events: none;
}

.testimonial blockquote p {
    max-width: 780px;
    margin-bottom: 20px;
    font-family: var(--serif);
    font-size: 2.45rem;
    font-style: italic;
    line-height: 1.2;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 750;
}

.testimonial-full {
    max-width: 780px;
    margin-top: var(--space-3);
    font-family: var(--sans);
    font-style: normal;
}

.testimonial-full summary {
    width: fit-content;
    border-bottom: 1px solid currentColor;
    color: var(--color-brand-rose-dark);
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 800;
}

.testimonial-full summary:hover {
    color: var(--color-brand-rose);
}

.testimonial blockquote .testimonial-full p {
    margin: var(--space-3) 0 0;
    color: var(--color-text-muted);
    font-family: var(--sans);
    font-size: 1rem;
    font-style: normal;
    line-height: 1.65;
}

.section-rose .testimonial blockquote .testimonial-full p {
    color: var(--color-text);
}

.testimonial-controls {
    display: flex;
    margin-top: 34px;
    gap: 10px;
    justify-content: flex-end;
}

.icon-button {
    display: grid;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-brand-rose-dark);
    border-radius: 50%;
    background: transparent;
    color: var(--color-brand-rose-dark);
    font-size: 1.35rem;
    cursor: pointer;
    place-items: center;
}

.icon-button:hover {
    background: var(--color-brand-rose-dark);
    color: var(--color-text-on-dark);
}

.about-split,
.content-split,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 64px;
    align-items: center;
}

.about-split img,
.content-split img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
}

.about-home img {
    box-shadow: -18px 18px 0 var(--color-surface-rose);
}

.about-note {
    margin-top: 30px;
    color: var(--color-brand-rose);
    font-family: var(--hand);
    font-size: 1.45rem;
    transform: rotate(-2deg);
}

.final-cta {
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    position: absolute;
    width: 420px;
    height: 90px;
    top: -24px;
    left: -80px;
    background: var(--color-brand-yellow);
    clip-path: polygon(0 30%, 100% 0, 93% 55%, 100% 100%, 4% 74%);
    content: "";
    opacity: 0.92;
    transform: rotate(-4deg);
}

.final-cta::after {
    position: absolute;
    right: -60px;
    bottom: 18px;
    width: 250px;
    height: 34px;
    background: var(--color-brand-rose);
    clip-path: polygon(2% 32%, 100% 0, 94% 74%, 0 100%);
    content: "";
    opacity: 0.9;
    transform: rotate(-5deg);
}

.final-cta-inner {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.final-cta h2 {
    margin-bottom: 8px;
}

.page-hero {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: var(--color-brand-green);
    color: var(--color-white);
    border-bottom: 8px solid var(--color-brand-rose);
}

.booking-hero {
    border-bottom: 8px solid var(--color-brand-rose);
}

.page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.54;
}

.page-hero::after {
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--color-brand-green-dark) 72%, transparent);
    content: "";
}

.page-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 470px;
    padding-block: 72px;
    flex-direction: column;
    justify-content: end;
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 14px;
}

.page-hero .lead {
    margin-bottom: 0;
    color: rgb(255 255 255 / 88%);
}

.page-hero .eyebrow {
    color: var(--color-brand-pink);
}

.package-section + .package-section {
    border-top: 1px solid var(--color-border);
}

.package-header {
    display: grid;
    margin-bottom: 38px;
    grid-template-columns: 240px 1fr;
    gap: 36px;
}

.package-header h2 {
    font-size: 2.2rem;
}

.package-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.package {
    display: flex;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-brand-rose);
    border-radius: 2px;
    padding: var(--space-4);
    background: var(--color-white);
    flex-direction: column;
}

.package-tag {
    margin-bottom: 10px;
    color: var(--color-brand-rose);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.package ul,
.check-list {
    padding-left: 1.2em;
}

.package li,
.check-list li {
    margin-bottom: 8px;
}

.package-price {
    margin-top: auto;
    padding-top: var(--space-3);
    border-top: 1px solid var(--color-border);
    color: var(--color-brand-green);
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 700;
}

.process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    counter-reset: process;
}

.process-item {
    position: relative;
    padding: 28px 28px 28px 72px;
    border-top: 1px solid var(--color-border);
    counter-increment: process;
}

.process-item::before {
    position: absolute;
    top: 28px;
    left: 18px;
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-brand-yellow);
    content: counter(process);
    font-weight: 800;
    place-items: center;
}

.process-item h3 {
    font-size: 1.25rem;
}

.method-feature {
    position: relative;
    display: grid;
    padding: 72px 0;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    gap: 70px;
    align-items: center;
}

.method-feature:nth-child(2) {
    border-left: 6px solid var(--color-brand-rose);
    padding-inline: 40px;
    background: rgb(245 209 220 / 54%);
}

.method-feature + .method-feature {
    border-top: 1px solid var(--color-border);
}

.method-visual {
    display: grid;
    min-height: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-surface-green);
    place-items: center;
}

.method-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.principles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--color-brand-rose);
}

.principle {
    padding: 34px;
    background: var(--color-surface-warm);
}

.trust-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgb(255 255 255 / 24%);
}

.trust-item {
    padding: 30px;
    background: var(--color-brand-green);
}

.trust-item strong {
    display: block;
    color: var(--color-brand-pink);
    font-family: var(--serif);
    font-size: 1.7rem;
}

.contact-layout {
    align-items: start;
}

.contact-details {
    border-top: 5px solid var(--color-brand-rose);
    padding: 36px;
    background: var(--color-surface-rose);
}

.contact-details address {
    font-style: normal;
}

.contact-details a {
    font-weight: 700;
}

.form {
    display: grid;
    gap: var(--space-3);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.field {
    display: grid;
    gap: 7px;
}

.field label,
.fieldset legend {
    font-size: 0.9rem;
    font-weight: 750;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--color-field-border);
    border-radius: 2px;
    padding: 11px 13px;
    background: var(--color-white);
    color: var(--color-text);
}

.field textarea {
    min-height: 140px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--color-brand-rose-dark);
    box-shadow: 0 0 0 3px rgb(207 23 81 / 16%);
    outline: 0;
}

.checkbox {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 0.9rem;
}

.checkbox input {
    width: 19px;
    height: 19px;
    margin-top: 3px;
    accent-color: var(--color-brand-rose-dark);
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.form-note,
.fine-print {
    color: var(--color-text-muted);
    font-size: 0.86rem;
}

.fieldset {
    min-width: 0;
    margin: 0;
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-brand-rose);
    padding: 20px;
}

.radio-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
}

.radio-grid label {
    display: flex;
    gap: 9px;
    align-items: start;
}

.radio-grid input {
    margin-top: 5px;
    accent-color: var(--color-brand-rose-dark);
}

.site-footer {
    border-top: 8px solid var(--color-brand-rose);
    background: var(--color-brand-green-dark);
    color: var(--color-white);
}

.footer-grid {
    display: grid;
    padding: var(--space-6) 0 var(--space-5);
    grid-template-columns: 1.35fr 0.75fr 0.9fr;
    gap: 60px;
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 18px;
    align-items: center;
    gap: 12px;
    font-weight: 850;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-brand img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
}

.footer-grid h2 {
    margin-bottom: 14px;
    color: var(--color-brand-yellow);
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid li + li {
    margin-top: 7px;
}

.footer-grid a:hover {
    color: var(--color-brand-yellow);
}

.footer-bottom {
    display: flex;
    padding: 20px 0 28px;
    border-top: 1px solid rgb(255 255 255 / 18%);
    color: rgb(255 255 255 / 70%);
    gap: 24px;
    justify-content: space-between;
    font-size: 0.82rem;
}

.notice {
    border-left: 5px solid var(--color-brand-yellow);
    padding: 20px 24px;
    background: var(--color-surface-green);
}

.comparison-grid,
.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.fact,
.case-item {
    border-top: 3px solid var(--color-brand-rose);
    padding-top: 20px;
}

.fact strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-brand-green);
    font-family: var(--serif);
    font-size: 1.5rem;
}

.art-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.art-strip img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.image-caption {
    margin-top: 10px;
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

.success-panel {
    max-width: 760px;
    margin: 0 auto;
    padding: 72px 0;
    text-align: center;
}

.success-mark {
    display: grid;
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--color-brand-yellow);
    color: var(--color-brand-green-dark);
    font-size: 2rem;
    font-weight: 900;
    place-items: center;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media (max-width: 1080px) {
    h1 {
        font-size: 4.4rem;
    }

    h2 {
        font-size: 3rem;
    }

    .hero h1 {
        font-size: 4.65rem;
    }

    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        width: 100%;
        border-top: 1px solid var(--color-border);
        padding: 18px 20px 28px;
        background: var(--color-surface);
        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: block;
    }

    .site-nav ul {
        width: min(100%, var(--content));
        margin-inline: auto;
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
    }

    .site-nav a {
        display: block;
        padding: 12px 4px;
        font-size: 1rem;
    }

    .site-nav a:hover,
    .site-nav a[aria-current="page"] {
        border-bottom: 0;
        color: var(--color-brand-rose);
    }

    .site-nav .nav-booking {
        display: block;
        margin-top: 12px;
    }

    .site-nav .nav-booking .button,
    .site-nav .nav-booking .button:hover,
    .site-nav .nav-booking .button[aria-current="page"] {
        display: flex;
        min-height: 48px;
        padding: 0 20px;
        border: 2px solid var(--color-brand-yellow);
        background: var(--color-brand-yellow);
        color: var(--color-brand-green-dark);
    }

    .outcomes,
    .process-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcome:nth-child(3),
    .process-item:nth-child(3) {
        border-left: 0;
    }

    .outcome:nth-child(n + 3) {
        border-top: 1px solid var(--color-border);
    }
}

@media (max-width: 820px) {
    body {
        font-size: 16px;
    }

    .container,
    .narrow {
        width: min(calc(100% - 32px), var(--content));
    }

    .section {
        padding: var(--space-6) 0;
    }

    h1 {
        font-size: 3.55rem;
    }

    h2 {
        font-size: 2.7rem;
    }

    .hero {
        min-height: auto;
        padding-bottom: 0;
    }

    .hero::after {
        display: none;
    }

    .hero-image {
        position: relative;
        inset: auto;
        width: 100%;
        height: min(68vw, 520px);
        margin-top: 8px;
        grid-row: 2;
        object-position: 50% 28%;
    }

    .hero-content {
        max-width: none;
        padding: 64px 0 52px;
    }

    .hero h1 {
        font-size: 3.8rem;
    }

    .section-heading,
    .final-cta-inner {
        align-items: start;
        flex-direction: column;
    }

    .method-grid,
    .card-grid,
    .package-list,
    .principles,
    .trust-band,
    .process-row,
    .comparison-grid,
    .facts-grid {
        grid-template-columns: 1fr;
    }

    .method-step p {
        min-height: 0;
    }

    .method-grid::before {
        display: none;
    }

    .method-step + .method-step {
        border-top: 1px solid var(--color-border);
    }

    .about-split,
    .content-split,
    .contact-layout,
    .method-feature,
    .package-header {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .method-feature:nth-child(even) .method-visual {
        grid-row: auto;
    }

    .testimonial-slide,
    .testimonial-slide.active {
        grid-template-columns: 100px 1fr;
        gap: 26px;
    }

    .testimonial-art {
        width: 100px;
        height: 100px;
    }

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

    .footer-grid > :first-child {
        grid-column: 1 / -1;
    }

    .art-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .brand span {
        font-size: 0.84rem;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    h1 {
        font-size: 2.7rem;
        overflow-wrap: anywhere;
    }

    h2 {
        font-size: 2.25rem;
        overflow-wrap: anywhere;
    }

    h3 {
        font-size: 1.55rem;
    }

    .hero h1 {
        font-size: 3.05rem;
    }

    .hero-accent {
        font-size: 2.2rem;
    }

    .hero-content {
        padding: 42px 0 36px;
    }

    .hero-image {
        height: 220px;
        object-position: 50% 24%;
    }

    .outcomes,
    .process-row,
    .form-row,
    .radio-grid {
        grid-template-columns: 1fr;
    }

    .outcome + .outcome {
        border-top: 1px solid var(--color-border);
        border-left: 0;
    }

    .outcome {
        padding: 18px 30px 30px;
    }

    .process-item {
        padding-right: 8px;
    }

    .offer-card img {
        height: 220px;
    }

    .testimonial {
        min-height: 0;
    }

    .testimonial-slide,
    .testimonial-slide.active {
        grid-template-columns: 1fr;
    }

    .testimonial blockquote p {
        font-size: 1.55rem;
    }

    .testimonial blockquote .testimonial-full p {
        font-size: 1rem;
    }

    .testimonial-controls {
        justify-content: start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-grid > :first-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}
