/* ============================================================
   TOKENS
   ============================================================ */
:root {
    --bg:            #ffffff;
    --bg-2:          #ffffff;
    --bg-3:          #ffffff;
    --surface:       rgba(255, 255, 255, .96);
    --surface-solid: #ffffff;
    --text:          #1a1a1a;
    --muted:         #5f5f5f;
    --line:          rgba(226, 26, 34, .12);
    --accent:        #e21a22;
    --accent-dark:   #b8141b;
    --accent-soft:   rgba(226, 26, 34, .05);
    --accent-2:      #ff6b72;
    --deep:          #7f0f15;
    --deep-soft:     #a3131b;
    --shadow-sm:     0 10px 24px rgba(15, 23, 42, .05);
    --shadow-md:     0 18px 38px rgba(15, 23, 42, .08);
    --shadow-lg:     0 28px 60px rgba(15, 23, 42, .12);
    --radius:        22px;
    --container:     1180px;
    --nav-h:         62px;
    --section-py:    124px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    background: var(--bg);
    color: var(--text);
    font-family: 'Lora', Georgia, serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}


body {
    overflow-x: hidden;
    color: var(--text);
    background: #ffffff;
    letter-spacing: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
p { color: var(--muted); line-height: 1.9; }
ul[role="list"] { list-style: none; }

p,
a,
li,
button,
input,
textarea,
select,
strong,
small {
    letter-spacing: 0;
}

::selection { background: var(--accent-soft); color: var(--text); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.chapter {
    position: relative;
    padding: calc(var(--section-py) - 26px) 0;
}

.chapter-light,
.chapter-soft {
    background: #ffffff;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2 {
    font-family: 'Lora', Georgia, serif;
    color: var(--text);
    line-height: 1.12;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.7rem, 5vw, 5rem);
    font-weight: 600;
    letter-spacing: -.03em;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 500;
    letter-spacing: -.022em;
}

h3 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
}

.overline {
    display: block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-sub,
.section-sub-left {
    font-size: 1.04rem;
    line-height: 1.95;
    text-wrap: pretty;
}

.section-sub {
    max-width: 650px;
    margin: 12px auto 0;
}

.section-sub-left {
    max-width: 640px;
    margin-top: 12px;
}

.chapter-head {
    margin-bottom: 58px;
}

.chapter-head.center { text-align: center; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nav.menu-open {
    border-bottom-color: transparent;
}

.nav-shell {
    display: flex;
    flex-direction: column;
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 72px;
    width: 100%;
    padding: 10px 0;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.nav.scrolled .nav-wrap {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.nav-logo {
    text-decoration: none;
    margin-right: auto;
}

.nav-logo-main {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: -.008em;
}

.nav-logo-initial {
    font-size: 1.5em;
    line-height: 0;
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2px;
}

.nav-links a,
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 999px;
    text-decoration: none;
    transition: color .2s, background .2s, border-color .2s;
}

.nav-links a {
    padding: 0 13px;
    font-size: .87rem;
    font-weight: 500;
    color: var(--muted);
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--accent-dark);
    background: var(--accent-soft);
}

.nav-cta {
    padding: 0 16px;
    border: 1px solid rgba(226,26,34,.18);
    background: rgba(226,26,34,.08);
    color: var(--accent-dark);
    font-size: .83rem;
    font-weight: 700;
}

.nav-cta:hover {
    background: rgba(226,26,34,.14);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: transform .3s, opacity .3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none;
    flex-direction: column;
    margin-top: 10px;
    padding: 14px;
    border-radius: 24px;
    border: 1px solid rgba(226,26,34,.14);
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: var(--shadow-md);
    gap: 2px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    color: var(--text);
}

.nav-mobile a:hover {
    background: rgba(226,26,34,.08);
}

/* ============================================================
   BUTTONS / LINKS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1.5px solid var(--accent);
    background: var(--accent);
    color: #f9f7f2;
    text-decoration: none;
    font-size: .92rem;
    font-weight: 700;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 10px 24px rgba(226,26,34,.18);
}

.btn-outline {
    background: transparent;
    color: var(--accent-dark);
}

.btn-outline:hover {
    background: var(--accent);
    color: #f9f7f2;
    border-color: var(--accent);
}

.btn-light {
    background: #f9f7f2;
    color: var(--deep);
    border-color: #f9f7f2;
}

.btn-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--deep);
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-weight: 700;
    color: var(--accent-dark);
    text-decoration: none;
}

.text-link::after {
    content: '→';
    transition: transform .2s;
}

.text-link:hover::after { transform: translateX(2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 56px;
    align-items: center;
    padding: 56px 40px 78px;
}

.hero-copy {
    display: flex;
    flex-direction: column;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(226,26,34,.12);
    box-shadow: var(--shadow-sm);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 22px;
}

.hero-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(226,26,34,.08);
}

.hero-title {
    margin-bottom: 20px;
    max-width: 12ch;
    font-size: clamp(2.45rem, 4.6vw, 4.4rem);
    letter-spacing: -.012em;
    line-height: 1.1;
}

.hero-title em {
    display: inline-block;
    font-style: italic;
    color: var(--accent-2);
    text-shadow: 0 10px 28px rgba(226,26,34,.12);
}

.hero-lead {
    max-width: 570px;
    font-size: 1rem;
    line-height: 1.82;
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-meta-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(226,26,34,.1);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.hero-meta-label {
    font-size: .67rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--accent-dark);
    font-weight: 700;
}

.hero-meta-card strong,
.hero-meta-card a {
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
}

.hero-meta-card a:hover { color: var(--accent-dark); }

.hero-visual {
    position: relative;
}

.hero-photo-frame {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    aspect-ratio: 4 / 5.15;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226,26,34,.1);
}

.hero-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82) contrast(.96) brightness(.98);
}

.hero-photo-frame::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(16, 19, 25, 0) 0%, rgba(16, 19, 25, .66) 100%);
    pointer-events: none;
}

.hero-image-overlay {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: min(320px, calc(100% - 36px));
    z-index: 1;
}

.hero-image-overlay-label {
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.78);
}

.hero-image-overlay strong {
    font-size: .98rem;
    line-height: 1.5;
    color: #ffffff;
    text-shadow: 0 8px 22px rgba(0,0,0,.22);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-a {
    width: 420px;
    height: 420px;
    right: -100px;
    top: 4%;
    background: radial-gradient(circle, rgba(226,26,34,.08), transparent 70%);
}

.hero-orb-b {
    width: 320px;
    height: 320px;
    left: 14%;
    bottom: 6%;
    background: radial-gradient(circle, rgba(226,26,34,.06), transparent 70%);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
    padding: 10px 0 0;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.trust-item {
    padding: 24px 24px;
    border-radius: 22px;
    border: 1px solid rgba(226,26,34,.1);
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.trust-label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.trust-item p {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.72;
}

/* ============================================================
   EDITORIAL / SHIATSU STORY
   ============================================================ */
.editorial-layout {
    display: grid;
    gap: 38px;
    margin-bottom: 48px;
}

.editorial-media-wide {
    overflow: hidden;
    border-radius: 30px;
    aspect-ratio: 21 / 8.5;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226,26,34,.1);
}

.editorial-media-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.78) contrast(.96) brightness(.98);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.1fr .95fr .95fr;
    gap: 20px;
}

.feature-panel {
    padding: 34px 30px;
    border-radius: 26px;
    border: 1px solid rgba(226,26,34,.08);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.feature-panel-dark {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, rgba(250, 247, 247, .96) 100%);
    border: 1px solid rgba(226,26,34,.12);
    box-shadow: var(--shadow-sm);
}

.feature-panel-dark::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    bottom: 1px;
    width: 4px;
    background: var(--accent);
    border-radius: 18px 0 0 18px;
}

.feature-panel-dark p,
.feature-panel-dark h3 { color: var(--text); }
.feature-panel-dark .feature-panel-kicker { color: var(--accent-dark); }

.feature-panel-kicker,
.story-label,
.pathway-label,
.therapist-band-label,
.statute-callout-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .93rem;
    color: var(--muted);
    line-height: 1.72;
}

.feature-list li::before {
    content: '•';
    color: var(--accent-2);
    font-weight: 700;
    flex-shrink: 0;
}

.method-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 34px;
}

.story-card {
    padding: 34px 30px;
    border-radius: 28px;
    border: 1px solid rgba(226,26,34,.08);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.story-card h3 { margin-bottom: 12px; }
.story-note { color: var(--accent-2); font-style: italic; margin-top: 12px; }

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

.therapy-step {
    padding: 28px 26px;
    border-radius: 24px;
    border: 1px solid rgba(226,26,34,.08);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.therapy-step-num {
    display: inline-block;
    margin-bottom: 14px;
    font-family: 'Lora', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: rgba(226,26,34,.42);
}

.therapy-step h3 { margin-bottom: 10px; }

/* ============================================================
   ASSOCIATION / STATUTE
   ============================================================ */
.association-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 38px;
    align-items: start;
}

.association-copy {
    padding-right: 10px;
}

.value-list {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.value-item {
    padding: 22px 22px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(226,26,34,.08);
    box-shadow: var(--shadow-sm);
}

.value-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
    font-size: .96rem;
}

.association-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.association-photo-card {
    grid-column: 1 / -1;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(226,26,34,.1);
    box-shadow: var(--shadow-md);
    aspect-ratio: 16 / 10;
    background: #ffffff;
}

.association-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.association-stat-card,
.statute-callout {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(226,26,34,.1);
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.association-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.association-stat {
    min-width: 0;
    min-height: 112px;
    padding: 18px 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(226,26,34,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}

.association-stat-num {
    display: block;
    margin-bottom: 0;
    font-family: 'Lora', Georgia, serif;
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    color: var(--accent-2);
}

.association-stat-label {
    max-width: 12ch;
    margin: 0 auto;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: .72rem;
    line-height: 1.48;
    color: var(--muted);
    text-wrap: balance;
}

.statute-callout h3 { margin-bottom: 10px; }
.statute-callout p {
    margin-bottom: 20px;
    color: var(--text);
    font-size: .96rem;
    line-height: 1.84;
}

/* ============================================================
   THERAPISTS
   ============================================================ */
.region-group {
    margin-bottom: 52px;
    scroll-margin-top: 120px;
}

.region-group:last-child { margin-bottom: 0; }

.region-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--line);
    font-family: 'Lora', Georgia, serif;
    font-size: 1.15rem;
    letter-spacing: .04em;
    text-transform: none;
    color: var(--accent-dark);
}

.region-title::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
}

.therapist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.therapist-card {
    display: flex;
    gap: 14px;
    padding: 24px 22px 22px;
    border-radius: 22px;
    border: 1px solid rgba(226,26,34,.08);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: transform .2s, box-shadow .2s, border-color .2s;
    position: relative;
    overflow: hidden;
}

.therapist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(226,26,34,.92), rgba(226,26,34,.24));
}

.therapist-card:hover {
    transform: translateY(-2px);
    border-color: rgba(226,26,34,.16);
    box-shadow: var(--shadow-md);
}

.therapist-initials {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid rgba(226,26,34,.18);
    color: var(--accent-dark);
    font-size: .8rem;
    font-weight: 700;
}

.therapist-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.therapist-name {
    margin-bottom: 4px;
    font-size: .98rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.28;
}

.therapist-qual {
    margin-bottom: 10px;
    color: var(--muted);
    font-size: .8rem;
    line-height: 1.5;
    font-style: italic;
}

.therapist-location {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(226,26,34,.12);
    margin-bottom: 8px;
    color: var(--muted);
    font-size: .8rem;
}

.therapist-contact {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.therapist-contact a {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(226,26,34,.1);
    color: var(--muted);
    text-decoration: none;
    font-size: .8rem;
    overflow-wrap: anywhere;
}

.therapist-contact a:hover {
    color: var(--accent-dark);
    background: #ffffff;
    border-color: rgba(226,26,34,.2);
}

.region-group.is-filtered-out {
    display: none;
}

/* ============================================================
   PATHWAYS
   ============================================================ */
.pathways-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.pathway-card {
    padding: 34px 30px;
    border-radius: 28px;
    border: 1px solid rgba(226,26,34,.08);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.pathway-card h3 { margin-bottom: 12px; }
.pathway-card p { margin-bottom: 18px; }

.pathway-card-accent {
    background: linear-gradient(145deg, #e21a22 0%, #b8141b 100%);
    border-color: rgba(226,26,34,.18);
    box-shadow: var(--shadow-lg);
}

.pathway-accent-note {
    margin-bottom: 18px;
    color: rgba(255,255,255,.82) !important;
}

.event-mini-list {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.event-mini-item {
    padding: 16px 16px 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(226,26,34,.08);
}

.event-mini-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: .9rem;
    color: var(--text);
}

.event-mini-item span {
    color: var(--muted);
    font-size: .86rem;
    line-height: 1.62;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: .94fr 1.06fr;
    gap: 34px;
    align-items: start;
}

.contact-panel {
    display: grid;
    gap: 18px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 22px;
    border-radius: 24px;
    border: 1px solid rgba(226,26,34,.08);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}

.contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(226,26,34,.16);
    box-shadow: var(--shadow-md);
}

.contact-card-info:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(226,26,34,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    flex-shrink: 0;
}

.contact-label {
    display: block;
    margin-bottom: 4px;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent-dark);
}

.contact-value {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
}

.contact-note {
    padding: 24px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(226,26,34,.08);
    box-shadow: var(--shadow-sm);
}

.contact-note strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    padding: 52px 0 58px;
    border-top: 1px solid rgba(226,26,34,.12);
    background: linear-gradient(160deg, #d81921 0%, #8f0f15 100%);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.08rem;
    font-weight: 600;
    color: #fff9f2;
}

/* ============================================================
   CUSTOM WEBSITE THEME OVERRIDES
   ============================================================ */
.chapter-light,
.chapter-soft,
.hero,
.trust-strip {
    background: #ffffff;
}

.chapter > .container {
    position: relative;
    padding: 42px 46px;
    border-radius: 36px;
    border: 1px solid rgba(226,26,34,.08);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .06);
    overflow: hidden;
}

.chapter > .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    pointer-events: none;
}

.chapter > .container > * {
    position: relative;
    z-index: 1;
}

#o-shiatsu > .container::before {
    background: var(--accent);
}

#zdruzenje > .container::before {
    background: var(--accent);
}

#terapevti > .container::before {
    background: var(--accent);
}

#dogodki > .container::before {
    background: var(--accent);
}

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

.hero::before {
    background: #ffffff;
}

.hero-orb-a,
.hero-orb-b {
    display: none;
}

.hero-kicker,
.hero-meta-card,
.trust-item,
.feature-panel,
.story-card,
.therapy-step,
.value-item,
.association-photo-card,
.association-stat-card,
.statute-callout,
.therapist-card,
.pathway-card,
.event-mini-item,
.contact-card,
.contact-note {
    background: #ffffff;
    border-color: rgba(226,26,34,.1);
    box-shadow: var(--shadow-sm);
}

.pathway-card-accent,
.footer {
    background: linear-gradient(145deg, #e21a22 0%, #b8141b 100%);
    border-color: rgba(226,26,34,.22);
}

.pathway-card-accent .pathway-label,
.pathway-card-accent p,
.pathway-card-accent h3,
.pathway-card-accent .pathway-accent-note,
.footer-brand-name,
.footer-brand-sub,
.footer-copy,
.footer-nav a,
.footer-legal a {
    color: #ffffff;
}

.hero-title em,
.association-stat-num,
.therapy-step-num {
    color: var(--accent);
    text-shadow: none;
}

.hero-photo-frame,
.editorial-media-wide {
    border-color: rgba(226,26,34,.1);
}

.therapist-contact a:hover,
.text-link,
.hero-meta-card a:hover {
    color: var(--accent);
}

.association-stat {
    background: rgba(226,26,34,.06);
}

.therapist-band-label,
.feature-panel-kicker,
.story-label,
.pathway-label,
.statute-callout-label,
.trust-label,
.hero-badge-label,
.hero-meta-label,
.contact-label,
.overline {
    color: var(--accent-dark);
}

.hero-kicker-dot {
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(226,26,34,.08);
}

.contact-icon,
.therapist-initials {
    background: rgba(226,26,34,.08);
    border-color: rgba(226,26,34,.16);
    color: var(--accent-dark);
}

.btn {
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: var(--accent-dark);
}

.btn-light {
    color: var(--accent-dark);
}

.footer .nav-logo-initial {
    color: rgba(255,255,255,.92);
}

.footer-nav a:hover,
.footer-legal a:hover {
    color: #ffffff;
    background: rgba(255,255,255,.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.18);
}

.region-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.15rem;
    letter-spacing: .04em;
    text-transform: none;
    color: var(--accent-dark);
}

.region-title::before {
    height: 2px;
    background: var(--accent);
}

.footer-brand-sub {
    color: rgba(255,255,255,.72);
    font-size: .82rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.footer-nav a {
    padding: 6px 13px;
    border-radius: 999px;
    color: rgba(255,255,255,.84);
    text-decoration: none;
    font-size: .86rem;
}

.footer-nav a:hover {
    color: #fff9f2;
    background: rgba(255,250,244,.08);
}

.footer-bottom {
    width: 100%;
    max-width: 740px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copy {
    color: rgba(255,255,255,.76);
    font-size: .82rem;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-legal a {
    color: rgba(255,255,255,.88);
    text-decoration: none;
    font-size: .82rem;
}

.footer-legal a:hover { color: #fff9f2; }

/* ============================================================
   COL SPAN UTILITY
   ============================================================ */
.col-span-2 {
    grid-column: span 2;
}

/* ============================================================
   REVEAL
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s ease, transform .85s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity;
}

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

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    [data-reveal] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 980px) {
    :root {
        --section-py: 90px;
    }

    .container { padding: 0 28px; }

    .chapter > .container {
        padding: 32px 28px;
        border-radius: 28px;
    }

    .nav-cta { display: none; }

    .hero-grid,
    .editorial-grid,
    .method-story-grid,
    .therapy-flow,
    .trust-strip-grid,
    .association-grid,
    .pathways-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .association-side {
        grid-template-columns: 1fr;
    }

    .col-span-2 {
        grid-column: auto;
    }

    .hero-grid {
        gap: 38px;
        padding: 40px 28px 60px;
    }

    .hero-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-photo-frame {
        aspect-ratio: 16 / 10;
    }

    .editorial-media-wide { aspect-ratio: 16 / 10; }
    .association-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
    :root {
        --section-py: 72px;
        --nav-h: 58px;
    }

    h1, h2 { line-height: 1.22; }

    .container { padding: 0 18px; }

    .chapter {
        padding: 54px 0;
    }

    .chapter > .container {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .nav { top: 0; }
    .nav-wrap { min-height: 62px; padding: 8px 0; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .nav-mobile { margin-top: 0; }

    .hero-copy {
        align-items: center;
        text-align: center;
    }

    .hero-grid {
        gap: 26px;
        padding: 30px 18px 40px;
    }

    .hero-kicker {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: .63rem;
    }

    .hero-title {
        max-width: 11ch;
        font-size: clamp(2.15rem, 10.4vw, 3.3rem);
        letter-spacing: -.01em;
        line-height: 1.22;
        text-align: center;
    }

    .hero-lead {
        font-size: 1rem;
        line-height: 1.9;
        margin-bottom: 28px;
        text-align: center;
    }

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

    .hero-actions .btn { width: 100%; }
    .hero-meta { grid-template-columns: 1fr; }

    .hero-photo-frame {
        aspect-ratio: 4 / 5;
        border-radius: 24px;
    }

    .hero-image-overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
    }

    .hero-image-overlay strong {
        font-size: .92rem;
        line-height: 1.45;
    }

    .trust-strip-grid {
        margin-top: -8px;
        gap: 12px;
    }

    .chapter-head { margin-bottom: 36px; }

    .editorial-media-wide {
        aspect-ratio: 4 / 3;
        border-radius: 22px;
    }

    .feature-panel,
    .story-card,
    .therapy-step,
    .association-photo-card,
    .association-stat-card,
    .statute-callout,
    .therapist-card,
    .pathway-card,
    .contact-card,
    .contact-note,
    .trust-item {
        padding-left: 20px;
        padding-right: 20px;
        border-radius: 20px;
    }

    .association-stats { grid-template-columns: 1fr; }
    .therapist-grid { grid-template-columns: 1fr; }


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