:root {
    color-scheme: light;
    --base: #FFF9F6;
    --surface: #E9D9D2;
    --support: #C798BD;
    --primary: #6E4D47;
    --text: #2D3332;
    --accent: #9E6F4D;
    --white: #FFFFFF;
    --base-rgb: 255, 249, 246;
    --surface-rgb: 233, 217, 210;
    --support-rgb: 199, 152, 189;
    --primary-rgb: 110, 77, 71;
    --text-rgb: 45, 51, 50;
    --accent-rgb: 158, 111, 77;
    --font-display: 'Inter', Arial, sans-serif;
    --font-body: 'Inter', Arial, sans-serif;
    --container: 1180px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --shadow-soft: 0 8px 24px rgba(var(--primary-rgb), 0.06);
    --shadow-card: 0 12px 30px rgba(var(--text-rgb), 0.10);
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--base);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.chat-open {
    overflow: hidden;
}

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

h1,
h2,
h3 {
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.14;
}

h1 {
    margin-bottom: 22px;
    font-size: clamp(2.8rem, 5.2vw, 4.8rem);
    letter-spacing: -0.04em;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    letter-spacing: -0.035em;
}

h3 {
    margin-bottom: 14px;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: inherit;
}

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

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--support);
    outline-offset: 4px;
}

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

.section {
    padding: clamp(72px, 8vw, 100px) 0;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--text);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform var(--transition);
}

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

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 38px;
    height: 1px;
    background: var(--accent);
}

.eyebrow-centred {
    justify-content: center;
}

.eyebrow-light {
    color: var(--surface);
}

.eyebrow-light > span {
    background: var(--support);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 52px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.button:hover {
    transform: none;
}

.button-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: none;
}

.button-primary:hover {
    background: var(--text);
    box-shadow: none;
}

.button-light {
    background: var(--base);
    color: var(--primary);
}

.button-light:hover {
    background: var(--surface);
}

.button-full {
    width: 100%;
}

.button-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: currentColor;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover span {
    transform: translate(2px, -2px);
}

.text-link span {
    transition: transform var(--transition);
}

.text-link-dark {
    margin-top: 12px;
    color: var(--text);
}

/* Hero */
.hero {
    position: relative;
    min-height: auto;
    overflow: hidden;
    background: var(--base);
}

.hero::before {
    display: none;
}

.site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.13);
}

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

.brand {
    display: inline-flex;
    flex-direction: column;
    justify-self: start;
    text-decoration: none;
}

.brand-name {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.24rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.brand-role {
    color: rgba(var(--text-rgb), 0.67);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.site-nav a {
    position: relative;
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--primary);
    content: '';
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.site-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-self: end;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.78fr);
    align-items: center;
    gap: clamp(55px, 8vw, 110px);
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 70px;
}

.hero-copy {
    max-width: 720px;
}

.hero-copy h1 em {
    display: block;
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

.hero-lead {
    max-width: 625px;
    margin-bottom: 34px;
    color: rgba(var(--text-rgb), 0.78);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: 42px;
}

.credentials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin: 0;
    padding: 0;
    color: rgba(var(--text-rgb), 0.7);
    font-size: 0.78rem;
    font-weight: 600;
    list-style: none;
}

.credentials li {
    position: relative;
}

.credentials li:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -16px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--support);
    content: '';
    transform: translateY(-50%);
}

.hero-visual {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-md);
    background: transparent;
}

.hero-photo {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.hero-scroll {
    display: none;
}

.hero-scroll span {
    width: 34px;
    height: 1px;
    background: var(--accent);
}

/* About */
.about {
    position: relative;
    background: var(--white);
}

.about::after {
    display: none;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
    align-items: start;
    gap: clamp(60px, 10vw, 140px);
}

.section-heading h2 {
    max-width: 720px;
}

.about .section-heading {
    position: static;
}

.experience-note {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 20px;
    max-width: 315px;
    margin-top: 50px;
    padding-top: 28px;
    border-top: 1px solid rgba(var(--primary-rgb), 0.2);
}

.experience-note strong {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1;
}

.experience-note span {
    color: rgba(var(--text-rgb), 0.68);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.5;
}

.about-photo {
    margin: 32px 0 0;
}

.about-photo img {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.about-copy {
    max-width: 700px;
}

.about-copy p {
    color: rgba(var(--text-rgb), 0.74);
    font-size: 1rem;
    line-height: 1.86;
}

.about-copy .about-opening {
    margin-bottom: 28px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.4vw, 2.05rem);
    line-height: 1.5;
}

.about-copy .about-emphasis {
    margin: 28px 0 20px;
    padding: 18px 20px;
    border-left: 3px solid var(--support);
    background: rgba(var(--surface-rgb), 0.28);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1.14rem;
    font-style: normal;
    line-height: 1.6;
}

/* Recognition */
.recognise {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.recognise::before,
.recognise::after {
    display: none;
}

.recognise::before {
    top: -150px;
    left: -90px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(var(--primary-rgb), 0.13);
}

.recognise::after {
    right: -100px;
    bottom: -210px;
    width: 390px;
    height: 390px;
    background: rgba(var(--support-rgb), 0.15);
}

.recognise-inner {
    position: relative;
    z-index: 1;
}

.section-heading-centred {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading-centred p:last-child {
    max-width: 610px;
    margin: 0 auto;
    color: rgba(var(--text-rgb), 0.72);
}

.recognise-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 950px;
    margin: 0 auto;
}

.recognise-list span {
    padding: 9px 14px;
    border: 1px solid rgba(var(--primary-rgb), 0.16);
    border-radius: 5px;
    background: rgba(var(--base-rgb), 0.66);
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.04rem;
}

/* Benefits */
.coaching {
    background: var(--base);
}

.coaching-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 65px;
}

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

.coaching-heading > p {
    margin-bottom: 7px;
    color: rgba(var(--text-rgb), 0.7);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-card {
    position: relative;
    min-height: 0;
    overflow: hidden;
    padding: 26px 25px;
    border: 1px solid rgba(var(--primary-rgb), 0.11);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.78);
    transition: border-color var(--transition);
}

.benefit-card::after {
    display: none;
}

.benefit-card:hover {
    border-color: rgba(var(--primary-rgb), 0.24);
    box-shadow: none;
}

.card-number {
    display: block;
    margin-bottom: 30px;
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.benefit-card h3 {
    max-width: 285px;
    color: var(--primary);
}

.benefit-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(var(--text-rgb), 0.67);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Approach */
.approach {
    position: relative;
    overflow: hidden;
    background: var(--primary);
    color: var(--base);
}

.approach::after {
    display: none;
}

.approach-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-items: center;
    gap: clamp(48px, 8vw, 110px);
}

.approach-intro {
    position: static;
}

.approach-intro h2 {
    color: var(--base);
    font-size: clamp(2.35rem, 3.7vw, 3.7rem);
}

.approach-summary {
    max-width: 420px;
    margin-bottom: 30px;
    color: rgba(var(--base-rgb), 0.7);
}

.approach-photo {
    margin: 0;
}

.approach-photo img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    border-radius: var(--radius-md);
}

.approach-steps {
    margin: 34px 0 30px;
    padding: 0;
    list-style: none;
}

.approach-steps li {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: baseline;
    gap: 14px;
    padding: 17px 0;
    border-top: 1px solid rgba(var(--surface-rgb), 0.2);
}

.approach-steps li:last-child {
    border-bottom: 1px solid rgba(var(--surface-rgb), 0.2);
}

.approach-steps > li > span {
    margin: 0;
    color: var(--support);
    font-size: 0.69rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.approach-steps h3 {
    margin: 0;
    color: var(--base);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

/* Closing */
.closing {
    position: relative;
    background: var(--base);
}

.closing-card {
    position: relative;
    max-width: 1040px;
    overflow: hidden;
    padding: clamp(65px, 9vw, 110px) clamp(25px, 10vw, 120px);
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: none;
    text-align: center;
}

.closing-card::before,
.closing-card::after {
    display: none;
}

.closing-card::before {
    bottom: -125px;
    left: -90px;
    width: 260px;
    height: 260px;
}

.closing-card::after {
    bottom: -72px;
    left: -38px;
    width: 145px;
    height: 145px;
}

.closing-card h2 {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-inline: auto;
}

.closing-card > p:not(.eyebrow) {
    position: relative;
    z-index: 1;
    max-width: 660px;
    margin-right: auto;
    margin-left: auto;
    color: rgba(var(--text-rgb), 0.72);
}

.closing-card .closing-highlight {
    margin-top: 26px;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 600;
}

.closing-card .button {
    position: relative;
    z-index: 1;
    margin-top: 19px;
}

/* Footer */
.footer {
    position: relative;
    overflow: hidden;
    padding: 90px 0 30px;
    background: var(--primary);
    color: var(--base);
}

.footer::after {
    display: none;
}

.footer-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) 0.65fr 0.8fr;
    gap: clamp(50px, 8vw, 110px);
    padding-bottom: 70px;
}

.footer-kicker {
    margin-bottom: 12px;
    color: var(--support);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-brand h2 {
    margin-bottom: 15px;
    color: var(--base);
    font-size: clamp(2.4rem, 3.6vw, 3.5rem);
}

.footer-brand > p:last-child {
    max-width: 470px;
    margin: 0;
    color: rgba(var(--base-rgb), 0.68);
    font-size: 0.9rem;
}

.footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
}

.footer-column h3 {
    margin-bottom: 15px;
    color: var(--surface);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column span {
    color: rgba(var(--base-rgb), 0.75);
    font-size: 0.82rem;
    line-height: 1.55;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 28px;
    border-top: 1px solid rgba(var(--surface-rgb), 0.17);
}

.footer-bottom p {
    margin: 0;
    color: rgba(var(--base-rgb), 0.52);
    font-size: 0.72rem;
}

.footer-bottom div {
    display: flex;
    gap: 24px;
}

.footer-bottom a {
    color: rgba(var(--base-rgb), 0.65);
    font-size: 0.72rem;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--white);
}

/* Contact prompt */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 52px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(var(--text-rgb), 0.18);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background var(--transition), opacity var(--transition), transform var(--transition);
}

.whatsapp-float:hover {
    background: var(--text);
    transform: translateY(-3px);
}

.whatsapp-float svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

body.chat-open .whatsapp-float {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.chat-backdrop {
    position: fixed;
    z-index: 1250;
    inset: 0;
    visibility: hidden;
    background: transparent;
    opacity: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: opacity var(--transition), visibility var(--transition);
}

.chat-backdrop.show {
    visibility: visible;
    opacity: 1;
}

.contact-card {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1300;
    width: min(390px, calc(100vw - 32px));
    visibility: hidden;
    padding: 30px;
    border: 1px solid rgba(var(--primary-rgb), 0.12);
    border-radius: var(--radius-sm);
    background: var(--base);
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 280ms ease, transform 280ms ease, visibility 280ms ease;
}

.contact-card.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-card-close {
    position: absolute;
    top: 15px;
    right: 17px;
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(var(--surface-rgb), 0.7);
    color: var(--primary);
    cursor: pointer;
    font: 400 1.5rem/1 var(--font-body);
    place-items: center;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    padding-right: 25px;
}

.contact-initials {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--surface);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    place-items: center;
}

.contact-kicker {
    margin: 0 0 2px;
    color: var(--accent);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-card h2 {
    margin: 0;
    color: var(--primary);
    font-size: 1.65rem;
}

.contact-card > p {
    margin-bottom: 22px;
    color: rgba(var(--text-rgb), 0.7);
    font-size: 0.85rem;
    line-height: 1.65;
}

.contact-card .button {
    min-height: 52px;
    padding-inline: 18px;
    font-size: 0.82rem;
}

/* Legal pages */
.privacy-body {
    background: var(--base);
}

.privacy-page {
    min-height: 100vh;
}

.privacy-hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 85px;
    background: var(--primary);
    color: var(--base);
}

.privacy-hero::after {
    display: none;
}

.privacy-hero .container {
    position: relative;
    z-index: 1;
}

.privacy-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 65px;
    color: rgba(var(--base-rgb), 0.75);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

.privacy-back-link:hover {
    color: var(--white);
}

.privacy-kicker {
    display: block;
    margin-bottom: 17px;
    color: var(--support);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.privacy-hero h1 {
    max-width: 850px;
    margin-bottom: 20px;
    color: var(--base);
    font-size: clamp(3rem, 6vw, 5.4rem);
}

.privacy-hero > .container > p:not(.privacy-updated) {
    max-width: 700px;
    color: rgba(var(--base-rgb), 0.75);
    font-size: 1rem;
}

.privacy-updated {
    margin: 30px 0 0;
    color: rgba(var(--base-rgb), 0.55);
    font-size: 0.73rem;
}

.privacy-content {
    padding: 80px 0 110px;
}

.privacy-content .container {
    max-width: 940px;
}

.privacy-card {
    padding: 34px 38px;
    border: 1px solid rgba(var(--primary-rgb), 0.11);
    border-radius: var(--radius-sm);
    background: var(--white);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.04);
}

.privacy-card + .privacy-card {
    margin-top: 18px;
}

.privacy-card h2 {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
}

.privacy-card h3 {
    margin: 26px 0 10px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.93rem;
    font-weight: 700;
}

.privacy-card p,
.privacy-card li {
    color: rgba(var(--text-rgb), 0.73);
    font-size: 0.91rem;
    line-height: 1.75;
}

.privacy-card p:last-child,
.privacy-card ul:last-child {
    margin-bottom: 0;
}

.privacy-card ul {
    margin-bottom: 1.25rem;
    padding-left: 21px;
}

.privacy-card li + li {
    margin-top: 8px;
}

.privacy-card a {
    color: var(--primary);
    font-weight: 600;
    text-underline-offset: 3px;
}

.privacy-actions {
    margin-top: 35px;
    text-align: center;
}

/* Motion */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
        gap: 48px;
    }

    .hero-visual {
        min-height: 0;
        padding: 0;
    }

    .about-grid {
        gap: 60px;
    }

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

    .approach-grid {
        gap: 70px;
    }

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

    .footer-column:last-child {
        grid-column: 2;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section {
        padding: 86px 0;
    }

    h1 {
        font-size: clamp(2.8rem, 13vw, 4.2rem);
    }

    h2 {
        font-size: clamp(2.35rem, 11vw, 3.5rem);
    }

    .header-inner {
        min-height: 77px;
    }

    .brand-role {
        display: none;
    }

    .header-contact {
        font-size: 0.78rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 55px;
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 90px;
    }

    .hero-copy h1 em {
        display: inline;
    }

    .hero-visual {
        width: min(100%, 460px);
        min-height: 0;
        margin-inline: auto;
        border-radius: var(--radius-md);
    }

    .hero-scroll {
        display: none;
    }

    .about-grid,
    .coaching-heading,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .about .section-heading,
    .approach-intro {
        position: static;
    }

    .about-grid {
        gap: 45px;
    }

    .experience-note {
        margin-top: 32px;
    }

    .coaching-heading {
        gap: 22px;
        margin-bottom: 45px;
    }

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

    .benefit-card {
        min-height: 0;
    }

    .card-number {
        margin-bottom: 38px;
    }

    .approach-grid {
        gap: 55px;
    }

    .approach-steps li {
        grid-template-columns: 37px 1fr;
        gap: 16px;
    }

    .closing-card {
        width: calc(100% - 32px);
        border-radius: var(--radius-md);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-actions .text-link {
        justify-content: center;
    }

    .credentials {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .credentials li:not(:last-child)::after {
        display: none;
    }

    .hero-visual {
        min-height: 0;
        padding: 0;
    }

    .recognise-list {
        align-items: stretch;
        flex-direction: column;
    }

    .recognise-list span {
        text-align: center;
    }

    .about-copy .about-emphasis {
        padding: 22px 20px;
    }

    .benefit-card {
        padding: 29px 25px;
    }

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

    .footer-brand,
    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom div {
        flex-wrap: wrap;
        gap: 10px 20px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-float span {
        display: none;
    }

    .contact-card {
        right: 16px;
        bottom: 16px;
        padding: 27px 23px 23px;
    }

    .privacy-hero {
        padding: 45px 0 65px;
    }

    .privacy-back-link {
        margin-bottom: 45px;
    }

    .privacy-content {
        padding: 55px 0 80px;
    }

    .privacy-card {
        padding: 27px 23px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
