:root {
    --ink: #1f2421;
    --muted: #68716a;
    --paper: #fbfaf7;
    --sage: #8fa394;
    --leaf: #536d5c;
    --clay: #c88663;
    --rose: #ead7d0;
    --line: rgba(31, 36, 33, 0.12);
    --white: #ffffff;
    --shadow: 0 22px 60px rgba(31, 36, 33, 0.14);
}

@keyframes heroZoom {
    0% { transform: scale(1.03); }
    100% { transform: scale(1.1); }
}

@keyframes floatGlow {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.48; }
    50% { transform: translate3d(24px, -26px, 0) scale(1.08); opacity: 0.78; }
}

@keyframes statIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes sheen {
    0% { transform: translateX(-120%) skewX(-18deg); }
    100% { transform: translateX(180%) skewX(-18deg); }
}

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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ─── Header ─────────────────────────────────────────────── */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 54px);
    color: var(--white);
    background: linear-gradient(to bottom, rgba(20, 24, 21, 0.56), rgba(20, 24, 21, 0));
    animation: statIn 680ms ease both;
}

.site-header.is-scrolled {
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 2px 20px rgba(31, 36, 33, 0.1);
    transition: background 300ms ease, box-shadow 300ms ease, color 300ms ease;
}
.site-header.is-scrolled .brand-mark {
    border-color: var(--ink);
}
.site-header.is-scrolled .nav-toggle span {
    background: var(--ink);
}
.site-header.is-scrolled .nav-toggle {
    border-color: var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.brand-mark {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    font-size: 0.78rem;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.32);
    transition: box-shadow 220ms ease, transform 220ms ease;
}

.brand:hover .brand-mark {
    transform: rotate(-6deg) scale(1.04);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
}

.nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.4vw, 34px);
    font-size: 0.94rem;
}

.nav a {
    position: relative;
    opacity: 0.9;
}

.nav a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--clay);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
}

.nav a:hover,
.footer a:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.nav a:hover::after,
.nav a.is-active::after {
    transform: scaleX(1);
}

.nav a.is-active {
    opacity: 1;
}

/* ─── Hamburger Toggle ────────────────────────────────────── */

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 240ms ease, opacity 240ms ease;
}

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

/* ─── Mobile Nav Drawer ───────────────────────────────────── */

.mobile-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 200;
    width: min(320px, 85vw);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 20px 24px 32px;
    background: var(--paper);
    box-shadow: -8px 0 40px rgba(31, 36, 33, 0.18);
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav-close {
    align-self: flex-end;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 6px;
    cursor: pointer;
    color: var(--ink);
    margin-bottom: 20px;
    transition: background 180ms ease;
}

.mobile-nav-close:hover {
    background: var(--rose);
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    padding-bottom: 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
}

.mobile-brand-mark {
    color: var(--ink);
    border-color: var(--ink) !important;
    border: 1px solid var(--ink);
    font-size: 0.78rem;
    width: 38px;
    height: 38px;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
    transition: color 180ms ease, padding-left 180ms ease;
}

.mobile-nav-link:hover {
    color: var(--clay);
    padding-left: 6px;
}

.mobile-nav .button {
    width: 100%;
    margin-top: 24px;
    text-align: center;
}

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(31, 36, 33, 0.52);
    opacity: 0;
    pointer-events: none;
    transition: opacity 320ms ease;
}

.nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* ─── Hero ────────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    z-index: -2;
    transform-origin: center;
    animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(22, 26, 22, 0.76), rgba(22, 26, 22, 0.34) 48%, rgba(22, 26, 22, 0.08)),
        linear-gradient(0deg, rgba(31, 36, 33, 0.5), rgba(31, 36, 33, 0));
}

.hero-glow {
    position: absolute;
    z-index: -1;
    width: clamp(180px, 28vw, 420px);
    height: clamp(180px, 28vw, 420px);
    border-radius: 999px;
    pointer-events: none;
    filter: blur(22px);
    mix-blend-mode: screen;
    animation: floatGlow 7s ease-in-out infinite;
}

.hero-glow.one {
    right: 8vw;
    bottom: 16vh;
    background: radial-gradient(circle, rgba(200, 134, 99, 0.58), rgba(200, 134, 99, 0));
}

.hero-glow.two {
    right: 32vw;
    top: 18vh;
    background: radial-gradient(circle, rgba(143, 163, 148, 0.42), rgba(143, 163, 148, 0));
    animation-delay: -2.8s;
}

.hero-content {
    width: min(760px, calc(100% - 36px));
    margin: 0 0 clamp(58px, 10vh, 96px) clamp(18px, 7vw, 88px);
    color: var(--white);
}

.hero-stats {
    position: absolute;
    right: clamp(18px, 5vw, 72px);
    bottom: clamp(18px, 5vw, 48px);
    display: grid;
    grid-template-columns: repeat(3, minmax(108px, 1fr));
    gap: 10px;
    width: min(520px, calc(100% - 36px));
}

.hero-stats div {
    position: relative;
    overflow: hidden;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.11);
    color: var(--white);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}

.hero-stats div::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: sheen 4.8s ease-in-out infinite;
}

.hero-stats strong,
.hero-stats span {
    position: relative;
    z-index: 1;
    display: block;
}

.hero-stats strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1;
}

.hero-stats span {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--clay);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero h1 {
    margin: 0;
    max-width: 740px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 9vw, 7rem);
    line-height: 0.94;
}

.hero-copy {
    max-width: 610px;
    margin: 24px 0 0;
    font-size: clamp(1.05rem, 2vw, 1.32rem);
    color: rgba(255, 255, 255, 0.88);
}

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

/* ─── Buttons ─────────────────────────────────────────────── */

.button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: translateX(-120%) skewX(-18deg);
    transition: transform 520ms ease;
}

.button:hover { transform: translateY(-2px); }
.button:hover::after { transform: translateX(160%) skewX(-18deg); }

.button.primary { background: var(--clay); color: var(--white); }

.button.secondary {
    border-color: rgba(255, 255, 255, 0.72);
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.button.full { width: 100%; }

/* ─── Section helpers ─────────────────────────────────────── */

.section,
.section-band,
.split-section,
.contact-section,
.trainer-section {
    padding: clamp(56px, 8vw, 108px) clamp(18px, 6vw, 80px);
}

.section-heading {
    width: min(780px, 100%);
    margin-bottom: 30px;
}

.section-title-block {
    position: relative;
}

.section-title-block::before {
    position: absolute;
    top: -18px;
    left: 0;
    width: 54px;
    height: 3px;
    content: "";
    border-radius: 999px;
    background: linear-gradient(90deg, var(--clay), var(--sage));
}

h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.02;
}

h3 { margin: 0 0 10px; font-size: 1.18rem; }

/* ─── About ───────────────────────────────────────────────── */

.intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: clamp(28px, 6vw, 84px);
    align-items: end;
    background: var(--white);
}

.about-copy,
.feature-panel p,
.contact-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.about-copy { display: grid; gap: 16px; }
.about-copy p { margin: 0; }

/* ─── Services ────────────────────────────────────────────── */

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

.service-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(31, 36, 33, 0.06);
    transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 140px;
}

.service-card::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(200, 134, 99, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(143, 163, 148, 0.18), transparent 56%);
    opacity: 0;
    transition: opacity 220ms ease;
}

.service-card::after {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 34px;
    height: 34px;
    content: "";
    border-top: 2px solid rgba(83, 109, 92, 0.28);
    border-right: 2px solid rgba(83, 109, 92, 0.28);
    transform: translate(-8px, 8px);
    transition: transform 240ms ease, border-color 240ms ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 134, 99, 0.42);
    box-shadow: 0 24px 54px rgba(31, 36, 33, 0.13);
}

.service-card:hover::before { opacity: 1; }

.service-card:hover::after {
    border-color: var(--clay);
    transform: translate(0, 0);
}

.service-card h3,
.service-card p {
    position: relative;
    z-index: 1;
}

.service-card p,
.review-card blockquote,
.faq-list p {
    margin: 0;
    color: var(--muted);
}

.service-card p { font-size: 0.9rem; }

/* ─── Trainer ─────────────────────────────────────────────── */

.trainer-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: clamp(28px, 6vw, 84px);
    align-items: center;
    background: var(--white);
}

.trainer-image-wrap {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 5;
}

.trainer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 640ms ease;
}

.trainer-image-wrap:hover .trainer-img { transform: scale(1.04); }

.trainer-body h2 { margin-bottom: 20px; }

.trainer-body p {
    color: var(--muted);
    font-size: 1.05rem;
    margin: 0 0 16px;
}

.trainer-certs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.cert-badge {
    padding: 6px 14px;
    border-radius: 999px;
    background: #edf1eb;
    color: var(--leaf);
    font-size: 0.84rem;
    font-weight: 700;
    border: 1px solid rgba(83, 109, 92, 0.2);
}

/* ─── Studio Split ────────────────────────────────────────── */

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    background: #edf1eb;
}

.feature-panel h2 { margin-bottom: 20px; }

.feature-list { display: grid; gap: 12px; }

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-bottom: 1px solid rgba(83, 109, 92, 0.22);
    color: var(--ink);
    font-weight: 700;
    transition: transform 220ms ease, background 220ms ease;
}

.feature-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.38);
}

.check {
    width: 12px;
    height: 12px;
    flex: 0 0 12px;
    border-radius: 50%;
    background: var(--leaf);
    box-shadow: 0 0 0 6px rgba(83, 109, 92, 0.12);
}

/* ─── Gallery ─────────────────────────────────────────────── */

.gallery-section { background: var(--paper); }

.gallery-grid {
    columns: 3;
    column-gap: 12px;
}

.gallery-item {
    break-inside: avoid;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 520ms ease;
}

.gallery-item:hover img { transform: scale(1.05); }

/* ─── Reviews ─────────────────────────────────────────────── */

.reviews { background: var(--paper); }

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

.review-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 32px rgba(31, 36, 33, 0.06);
    min-height: 180px;
    margin: 0;
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(31, 36, 33, 0.1);
}

.review-card blockquote {
    font-size: 1.08rem;
    line-height: 1.65;
    font-style: italic;
    color: var(--ink);
    margin: 0;
}

.review-card figcaption {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 20px;
}

.review-card figcaption strong {
    color: var(--leaf);
    font-weight: 800;
}

.review-label {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ─── FAQ ─────────────────────────────────────────────────── */

.faq { background: var(--white); }

.faq-list { display: grid; gap: 10px; }

details {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    transition: padding 220ms ease, background 220ms ease;
}

details[open] {
    padding: 20px;
    border-radius: 8px;
    background: #fbfaf7;
}

summary {
    cursor: pointer;
    font-weight: 800;
    list-style-position: outside;
}

summary::marker { color: var(--clay); }

.faq-list p {
    padding-top: 12px;
    max-width: 780px;
}

/* ─── Contact ─────────────────────────────────────────────── */

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 480px);
    gap: clamp(30px, 6vw, 90px);
    align-items: start;
    background: var(--leaf);
    color: var(--white);
}

.contact-copy h2 { margin-bottom: 20px; }

.contact-copy p,
.contact-lines {
    color: rgba(255, 255, 255, 0.78);
}

.contact-lines {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.contact-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.96rem;
    line-height: 1.5;
}

.contact-line:hover { color: var(--white); }

.contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.7;
}

/* ─── Working Hours ───────────────────────────────────────── */

.working-hours {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.working-hours-title {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.working-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
    font-size: 0.94rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

.working-hours-row:last-child { border-bottom: none; }

/* ─── Contact Form ────────────────────────────────────────── */

.contact-form {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
}

.contact-form::before {
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    content: "";
    background: linear-gradient(90deg, var(--clay), var(--sage), var(--leaf));
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 800;
}

.field-trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 13px 14px;
    color: var(--ink);
    font: inherit;
    resize: vertical;
    background: #fbfbf9;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(200, 134, 99, 0.22);
    border-color: var(--clay);
}

.form-alert {
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 700;
}

.form-alert.success { background: #e8f4ec; color: #2f6846; }
.form-alert.error   { background: #f9e1dc; color: #8a3325; }
.form-alert.info    { background: #eef2f6; color: #3c5368; }

.kvkk-note {
    margin: 0;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.55;
}

/* ─── Footer ──────────────────────────────────────────────── */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px clamp(18px, 6vw, 80px);
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
}

.footer-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ─── WhatsApp Float ──────────────────────────────────────── */

.wa-float {
    position: fixed;
    right: 24px;
    bottom: 84px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.38);
    transition: transform 200ms ease, box-shadow 200ms ease;
    text-decoration: none;
}

.wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.52);
}

/* ─── Back to Top ─────────────────────────────────────────── */

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--leaf);
    color: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(83, 109, 92, 0.38);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 240ms ease, transform 240ms ease, background 180ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover { background: var(--ink); }

/* ─── Scroll Reveal ───────────────────────────────────────── */

.js .reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

/* ─── Responsive: 860px ───────────────────────────────────── */

@media (max-width: 860px) {
    .site-header {
        position: absolute;
        align-items: center;
    }

    .nav { display: none; }

    .nav-toggle { display: flex; }

    .hero { min-height: 96vh; }

    .hero-content {
    width: 100%;
    margin: 0;
    padding: 0 18px;
}

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

    .intro,
    .split-section,
    .contact-section,
    .trainer-section {
        grid-template-columns: 1fr;
    }

    .trainer-image-wrap { aspect-ratio: unset; }
    .trainer-img { height: auto; object-fit: contain; }

    .service-grid,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
}

.hero-content { margin-bottom: 0; }

.hero-stats {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 18px 28px;
}

.hero-stats div { padding: 12px 14px; }

/* ─── Responsive: 480px ───────────────────────────────────── */

@media (max-width: 480px) {
    .brand span:last-child {
        max-width: 150px;
        line-height: 1.15;
    }

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

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

    .service-card,
    .review-card,
    .contact-form { padding: 20px; }

    .footer { flex-direction: column; }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item--large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .wa-float {
        right: 16px;
        bottom: 76px;
        padding: 13px 15px;
    }

    .wa-label { display: none; }

    .back-to-top { right: 16px; bottom: 16px; }
}
