/* Amersham Sports Massage — premium editorial theme */

:root {
    --ink: #1a1614;
    --ink-soft: #3a332e;
    --cream: #f6f1e8;
    --cream-deep: #ece4d4;
    --paper: #fbf8f2;
    --sage: #7d8a6a;
    --sage-deep: #5f6b4f;
    --amber: #b57d4c;
    --amber-deep: #8f5e33;
    --line: rgba(26, 22, 20, 0.12);
    --line-strong: rgba(26, 22, 20, 0.25);
    --shadow-sm: 0 1px 2px rgba(26, 22, 20, 0.06), 0 2px 8px rgba(26, 22, 20, 0.04);
    --shadow-md: 0 4px 12px rgba(26, 22, 20, 0.08), 0 16px 32px rgba(26, 22, 20, 0.06);
    --shadow-lg: 0 10px 30px rgba(26, 22, 20, 0.12), 0 30px 60px rgba(26, 22, 20, 0.08);

    --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --wrap: min(1240px, 100% - 48px);
    --wrap-narrow: min(880px, 100% - 48px);
    --header-h: 88px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.2rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.02em; }

p { margin-bottom: 1.1em; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--amber-deep); }

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

.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber-deep);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.eyebrow::before {
    content: '';
    width: 32px; height: 1px; background: var(--amber);
}

.wrap { width: var(--wrap); margin: 0 auto; }
.wrap-narrow { width: var(--wrap-narrow); margin: 0 auto; }

/* ——— BUTTONS ——— */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.btn--primary {
    background: var(--ink);
    color: var(--cream);
}
.btn--primary:hover {
    background: var(--amber-deep);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
}
.btn--ghost:hover {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}
.btn--cream {
    background: var(--cream);
    color: var(--ink);
}
.btn--cream:hover {
    background: var(--amber);
    color: var(--cream);
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ——— HEADER ——— */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(251, 248, 242, 0.85);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease);
}
.site-header.scrolled {
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.site-header__inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
}
.brand__logo {
    height: 44px;
    width: auto;
    display: block;
    transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.brand:hover .brand__logo {
    transform: translateY(-1px);
    opacity: 0.9;
}
.footer-brand__logo {
    height: 52px;
    width: auto;
    display: block;
    margin-bottom: 14px;
}
.footer-brand__tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin-bottom: 20px;
    display: block;
}

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 1px;
    background: var(--amber);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.active { color: var(--ink); }
.nav a.active::after { transform: scaleX(1); }

.nav-group { display: flex; align-items: center; gap: 24px; }

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line-strong);
    width: 44px; height: 44px;
    cursor: pointer;
    align-items: center; justify-content: center;
}
.nav-toggle span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--ink);
    transition: all 0.3s var(--ease);
    position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0; width: 18px; height: 1.5px;
    background: var(--ink);
    transition: all 0.3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle.active span { background: transparent; }
.nav-toggle.active span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active span::after { top: 0; transform: rotate(-45deg); }

/* ——— PATTERNS / TEXTURES ——— */
:root {
    --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1, 0 0 0 0 0.085, 0 0 0 0 0.078, 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    --rule-editorial: linear-gradient(90deg, transparent 0, transparent 14%, rgba(26,22,20,0.08) 14%, rgba(26,22,20,0.08) 86%, transparent 86%);
}

/* ——— HERO ——— */
.hero {
    position: relative;
    padding-top: calc(var(--header-h) + 80px);
    padding-bottom: 120px;
    background:
        radial-gradient(ellipse 60% 50% at 85% 10%,  rgba(201, 149, 109, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 70% 55% at 15% 90%,  rgba(125, 138, 106, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 50% 50%,  rgba(236, 228, 212, 0.45) 0%, transparent 60%),
        linear-gradient(180deg, var(--paper) 0%, #f8f2e6 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--grain);
    opacity: 0.6;
    mix-blend-mode: multiply;
    pointer-events: none;
}
/* Editorial horizontal rules — wide spacing, magazine-style */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        var(--rule-editorial) 0 calc(var(--header-h) + 40px) / 100% 1px no-repeat,
        var(--rule-editorial) 0 calc(100% - 60px)         / 100% 1px no-repeat;
    pointer-events: none;
}
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
}
.hero__eyebrow { margin-bottom: 24px; }
.hero__title {
    margin-bottom: 32px;
}
.hero__title em {
    font-style: italic;
    color: var(--sage-deep);
}
.hero__lead {
    font-size: 1.2rem;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 48px;
}
.hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 48px;
}
.hero__meta {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.hero__meta-item { }
.hero__meta-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin-bottom: 4px;
}
.hero__meta-value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--ink);
}

.hero__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 480px;
    margin-left: auto;
}
.hero__portrait {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--cream-deep);
    box-shadow: var(--shadow-lg);
}
.hero__portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero__badge {
    position: absolute;
    bottom: -40px; left: -40px;
    background: var(--ink);
    color: var(--cream);
    padding: 28px 36px;
    z-index: 2;
    box-shadow: var(--shadow-md);
}
.hero__badge-num {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    line-height: 1;
    color: var(--amber);
}
.hero__badge-txt {
    font-size: 0.76rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 8px;
    color: var(--cream-deep);
}

/* ——— SECTION LAYOUT ——— */
.section {
    padding: 120px 0;
    position: relative;
}
.section--dark {
    background: var(--ink);
    color: var(--cream);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark p { color: rgba(246, 241, 232, 0.75); }
.section--dark .eyebrow { color: var(--amber); }
.section--dark .eyebrow::before { background: var(--amber); }

.section--cream { background: var(--cream); }

.section-head {
    max-width: 760px;
    margin-bottom: 80px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head__eyebrow { margin-bottom: 24px; }
.section-head h2 em { font-style: italic; color: var(--sage-deep); }
.section--dark .section-head h2 em { color: var(--amber); }
.section-head__lead {
    font-size: 1.15rem;
    line-height: 1.65;
    margin-top: 24px;
    color: var(--ink-soft);
}
.section--dark .section-head__lead { color: rgba(246, 241, 232, 0.8); }

/* ——— SERVICES GRID ——— */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}
.service-card {
    background: var(--paper);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(125, 138, 106, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.service-card:hover { background: var(--cream); }
.service-card:hover::before { opacity: 1; }
.service-card__num {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: var(--amber-deep);
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}
.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 16px;
    line-height: 1.25;
}
.service-card__desc {
    color: var(--ink-soft);
    margin-bottom: 32px;
    flex: 1;
    font-size: 0.98rem;
}
.service-card__link {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s var(--ease);
}
.service-card__link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.service-card:hover .service-card__link { color: var(--amber-deep); gap: 16px; }

/* ——— INTRO / ABOUT ——— */
.intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 96px;
    align-items: center;
}
.intro__visual {
    position: relative;
    aspect-ratio: 3 / 4;
}
.intro__visual img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.intro__frame {
    position: absolute;
    top: 24px; left: 24px; right: -24px; bottom: -24px;
    border: 1px solid var(--amber);
    z-index: -1;
}
.intro__content h2 { margin-bottom: 32px; }
.intro__content h2 em { font-style: italic; color: var(--sage-deep); }
.intro__quals {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
}
.intro__qual-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin-bottom: 6px;
}
.intro__qual-value {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1.3;
}

/* ——— TESTIMONIAL ——— */
.testimonial {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.testimonial__mark {
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 1;
    color: var(--amber);
    opacity: 0.5;
    margin-bottom: 24px;
}
.testimonial__quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    line-height: 1.45;
    color: var(--cream);
    margin-bottom: 40px;
}
.section--dark .testimonial__quote { color: var(--cream); }
.testimonial__author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.testimonial__author-name {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--cream);
}
.testimonial__author-role {
    font-size: 0.82rem;
    color: var(--amber);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ——— BENEFITS / FEATURES ——— */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}
.benefit {
    position: relative;
    padding-top: 24px;
}
.benefit::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 40px; height: 2px;
    background: var(--amber);
}
.benefit__title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--ink);
}
.section--dark .benefit__title { color: var(--cream); }
.benefit__text {
    font-size: 0.98rem;
}

/* ——— CTA STRIP ——— */
.cta-strip {
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(181, 125, 76, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-strip__inner {
    position: relative;
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
}
.cta-strip h2 { color: var(--cream); margin-bottom: 16px; }
.cta-strip h2 em { font-style: italic; color: var(--amber); }
.cta-strip p { color: rgba(246, 241, 232, 0.75); font-size: 1.1rem; }
.cta-strip__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cta-strip__phone {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--cream);
    text-decoration: none;
    line-height: 1;
}
.cta-strip__phone:hover { color: var(--amber); }
.cta-strip__phone-label {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 8px;
    display: block;
}

/* ——— FOOTER ——— */
.site-footer {
    background: var(--paper);
    border-top: 1px solid var(--line);
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}
.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin-bottom: 24px;
}
.footer-col p, .footer-col a {
    font-size: 0.95rem;
    color: var(--ink-soft);
    margin-bottom: 10px;
    display: block;
    line-height: 1.6;
}
.footer-col a:hover { color: var(--ink); }
.footer-brand__name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink);
    margin-bottom: 16px;
    display: block;
}
.footer-brand__text {
    color: var(--ink-soft);
    font-size: 0.98rem;
    max-width: 340px;
    line-height: 1.65;
}
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.footer-bottom a { color: var(--ink-soft); display: inline; }
.footer-bottom a:hover { color: var(--ink); }

/* ——— INNER PAGE HEADER ——— */
.page-header {
    padding-top: calc(var(--header-h) + 80px);
    padding-bottom: 80px;
    background:
        radial-gradient(ellipse 65% 55% at 20% 20%, rgba(201, 149, 109, 0.16) 0%, transparent 60%),
        radial-gradient(ellipse 70% 60% at 90% 80%, rgba(125, 138, 106, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, var(--paper) 0%, #f9f3e7 100%);
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--grain);
    opacity: 0.55;
    mix-blend-mode: multiply;
    pointer-events: none;
}
.page-header__inner { position: relative; text-align: center; }
.breadcrumb {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 32px;
}
.breadcrumb a { color: var(--amber-deep); }
.breadcrumb span { color: var(--line-strong); margin: 0 12px; }
.page-header h1 em { font-style: italic; color: var(--sage-deep); }
.page-header__lead {
    max-width: 680px;
    margin: 24px auto 0;
    font-size: 1.2rem;
    color: var(--ink-soft);
}

/* ——— PROSE (long content) ——— */
.prose {
    max-width: 780px;
    margin: 0 auto;
    font-size: 1.08rem;
    line-height: 1.75;
}
.prose h2 {
    margin-top: 64px;
    margin-bottom: 24px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    margin-top: 48px;
    margin-bottom: 16px;
    font-size: 1.45rem;
}
.prose p { margin-bottom: 1.2em; color: var(--ink-soft); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol {
    margin-bottom: 1.2em;
    padding-left: 0;
    list-style: none;
}
.prose li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--ink-soft);
}
.prose ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.8em;
    width: 14px; height: 1px;
    background: var(--amber);
}
.prose ol { counter-reset: prose-counter; }
.prose ol li {
    counter-increment: prose-counter;
}
.prose ol li::before {
    content: counter(prose-counter, decimal-leading-zero);
    position: absolute;
    left: 0; top: 0;
    font-family: var(--font-serif);
    color: var(--amber-deep);
    font-size: 0.95rem;
}
.prose blockquote {
    margin: 48px 0;
    padding: 40px 48px;
    background: var(--cream);
    border-left: 3px solid var(--amber);
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--ink);
}
.prose blockquote cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--amber-deep);
    text-transform: uppercase;
}

.prose__figure {
    margin: 48px 0;
}
.prose__figure img {
    width: 100%;
    box-shadow: var(--shadow-md);
}
.prose__figure figcaption {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-top: 12px;
    font-style: italic;
    text-align: center;
}

/* ——— CONTACT PAGE ——— */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info__block {
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}
.contact-info__block:first-child { padding-top: 0; }
.contact-info__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber-deep);
    margin-bottom: 8px;
}
.contact-info__value {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--ink);
}
.contact-info__value a { text-decoration: none; }

.form {
    background: var(--cream);
    padding: 48px;
}
.form__row { margin-bottom: 24px; }
.form__label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
}
.form__input,
.form__textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    transition: border-color 0.25s var(--ease);
    font-weight: 400;
}
.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--amber);
}
.form__textarea { min-height: 140px; resize: vertical; font-family: var(--font-sans); }
.form__submit { width: 100%; margin-top: 8px; justify-content: center; }

/* ——— RESPONSIVE ——— */
@media (max-width: 960px) {
    :root { --header-h: 72px; }
    .nav { display: none; }
    .nav-toggle { display: flex; }

    .nav.open {
        display: flex;
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        flex-direction: column;
        background: var(--paper);
        padding: 40px 24px;
        gap: 20px;
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        min-height: calc(100vh - var(--header-h));
    }
    .nav.open a { font-size: 1.4rem; font-family: var(--font-serif); }
    .nav.open a::after { display: none; }

    .hero { padding-top: calc(var(--header-h) + 48px); padding-bottom: 80px; }
    .hero__inner { grid-template-columns: 1fr; gap: 64px; }
    .hero__visual { order: -1; max-width: 380px; margin: 0 auto; }
    .hero__badge { bottom: -24px; left: -16px; padding: 20px 24px; }
    .hero__badge-num { font-size: 2rem; }

    .section { padding: 80px 0; }
    .services { grid-template-columns: 1fr; }
    .intro { grid-template-columns: 1fr; gap: 48px; }
    .intro__visual { max-width: 440px; margin: 0 auto; }
    .cta-strip__inner { grid-template-columns: 1fr; gap: 48px; padding: 64px 0; }

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

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .form { padding: 32px 24px; }
}

@media (max-width: 560px) {
    .services { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero__meta { gap: 24px; }
    .prose blockquote { padding: 24px 20px; font-size: 1.15rem; }
}

/* ——— TREATMENT MOSAIC — three-photo editorial feature ——— */
.mosaic {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.mosaic::before {
    content: '';
    position: absolute; inset: 0;
    background-image: var(--grain);
    opacity: 0.35;
    mix-blend-mode: multiply;
    pointer-events: none;
}
.mosaic__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}
.mosaic__art {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    position: relative;
}
.mosaic__art img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: transform 0.5s var(--ease);
}
.mosaic__art img:hover { transform: translateY(-6px); }
.mosaic__art img:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
    aspect-ratio: 3 / 5;
}
.mosaic__art img:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    margin-top: 40px;
}
.mosaic__art img:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}
.mosaic__content h2 { margin-bottom: 28px; }
.mosaic__content h2 em { font-style: italic; color: var(--sage-deep); }
.mosaic__content p {
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 1.1em;
}
.mosaic__content strong { color: var(--ink); }

/* ——— CREDENTIALS BAR (ISRM / SMA / LSSM) ——— */
.credentials {
    padding: 48px 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.credentials__inner {
    display: grid;
    grid-template-columns: auto 1fr auto auto auto;
    align-items: center;
    gap: 48px;
}
.credentials__label {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--amber-deep);
    line-height: 1.4;
    max-width: 200px;
}
.credentials__line {
    height: 1px;
    background: linear-gradient(90deg, var(--amber), transparent);
    opacity: 0.5;
}
.credential {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    transition: transform 0.3s var(--ease);
}
.credential:hover { transform: translateY(-3px); }
.credential img {
    height: 56px;
    width: auto;
    filter: grayscale(0.3);
    transition: filter 0.3s var(--ease);
}
.credential:hover img { filter: grayscale(0) contrast(1.05); }
.credential__name {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

/* ——— EDITORIAL SPLIT (image | content) ——— */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
    position: relative;
}
.split--reverse { grid-template-areas: "content img"; }
.split--reverse .split__visual { grid-area: img; }
.split--reverse .split__content { grid-area: content; }
.split__visual {
    position: relative;
    min-height: 560px;
    overflow: hidden;
}
.split__visual img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.split__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, rgba(26, 22, 20, 0.4) 100%);
}
.split__content {
    padding: 96px 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.split__content h2 { color: var(--cream); margin-bottom: 24px; }
.split__content h2 em { color: var(--amber); font-style: italic; }
.split__content p { color: rgba(246, 241, 232, 0.8); font-size: 1.1rem; margin-bottom: 1.1em; }
.split__content .eyebrow { color: var(--amber); }
.split__content .eyebrow::before { background: var(--amber); }

/* ——— STATS BAND ——— */
.stats-band {
    padding: 80px 0;
    background:
        radial-gradient(ellipse at top, rgba(125, 138, 106, 0.08) 0%, transparent 60%),
        var(--cream);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat__num {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
    color: var(--ink);
    margin-bottom: 16px;
}
.stat__num em { font-style: italic; color: var(--amber-deep); }
.stat__label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

/* ——— TESTIMONIAL TRIO ——— */
.testimonial-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--cream);
    padding: 40px 36px;
    position: relative;
    border: 1px solid var(--line);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--amber);
}
.testimonial-card__mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 0.8;
    color: var(--amber);
    opacity: 0.5;
    margin-bottom: 16px;
}
.testimonial-card__quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 28px;
}
.testimonial-card__author-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    display: block;
    margin-bottom: 4px;
}
.testimonial-card__author-role {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-deep);
}

@media (max-width: 960px) {
    .credentials__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; justify-items: center; }
    .credentials__line { display: none; }
    .split { grid-template-columns: 1fr; }
    .split__visual { min-height: 320px; }
    .split__content { padding: 56px 28px; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
    .testimonial-trio { grid-template-columns: 1fr; }
}

/* ——— SCROLL REVEAL ——— */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].visible {
    opacity: 1;
    transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
