/* =========================================================
   HOME PAGE — Квадратный апельсин
   /assets/css/home.css
   ========================================================= */


/* =========================================================
   1. VARIABLES
   ========================================================= */

:root {
    --brand: #F2811D;
    --accent: #C2540B;
    --accent-dark: #9B4109;

    --dark: #2B2E33;
    --muted: #6B7280;

    --bg-warm: #FFF8F1;
    --bg-card: #FFFFFF;

    --border: #EFE2D2;
    --track: #F3E7D8;

    --footer-bg: #211F1D;
    --footer-text: #D8D4CE;
    --footer-muted: #9C978F;
    --footer-border: #3A3630;

    --radius: 16px;
    --radius-sm: 10px;

    --shadow-soft: 0 14px 30px rgba(194, 84, 11, .10);
}


/* =========================================================
   2. RESET / BASE
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        'Segoe UI',
        -apple-system,
        BlinkMacSystemFont,
        'Helvetica Neue',
        Arial,
        sans-serif;

    color: var(--dark);
    background: #fff;

    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

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

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

button {
    color: inherit;
}

.wrap {
    width: 100%;
    max-width: 1180px;

    margin: 0 auto;

    padding-left: 24px;
    padding-right: 24px;
}

section {
    padding: 64px 0;
}


/* =========================================================
   3. SHARED SECTION HEAD
   ========================================================= */

.section-head {
    max-width: 640px;

    margin: 0 auto 40px;

    text-align: center;
}

.kicker {
    margin-bottom: 10px;

    color: var(--accent);

    font-size: 13px;
    line-height: 1.3;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .06em;
}

.section-head h2 {
    margin: 0 0 12px;

    color: var(--dark);

    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.section-head p {
    margin: 0;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   4. BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 12px 22px;

    border: 2px solid transparent;
    border-radius: 999px;

    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;

    cursor: pointer;
    white-space: nowrap;

    transition:
        transform .15s ease,
        background-color .15s ease,
        color .15s ease,
        border-color .15s ease,
        box-shadow .15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:focus-visible {
    outline: 3px solid rgba(242, 129, 29, .25);
    outline-offset: 3px;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-outline {
    border-color: var(--dark);

    background: transparent;
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: #fff;
}

.btn-outline.light,
.btn-outline.on-orange {
    border-color: #fff;

    color: #fff;
}

.btn-outline.light:hover,
.btn-outline.on-orange:hover {
    background: #fff;
    color: var(--dark);
}

.btn-sm {
    padding: 8px 16px;

    font-size: 13px;
}


/* =========================================================
   5. HEADER
   Supports: header.site / .site-header / .home-header
   ========================================================= */

header.site,
.site-header,
.home-header {
    position: sticky;
    top: 0;
    z-index: 100;

    background: #fff;

    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 16px;

    padding-top: 12px;
    padding-bottom: 12px;
}

.logo.logo-only {
    min-width: 0;

    flex: 0 0 auto;

    display: flex;
    align-items: center;

    gap: 0;

    color: var(--dark);
}

.logo.logo-only .logo-image {
    display: block;

    width: auto;
    height: 52px;

    max-width: 230px;
    max-height: none;

    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    align-items: center;

    gap: 26px;

    color: var(--dark);

    font-size: 14px;
    font-weight: 600;
}

.main-nav-link,
.main-nav > a {
    padding: 6px 0;

    border-bottom: 2px solid transparent;

    transition:
        color .15s ease,
        border-color .15s ease;
}

.main-nav-link:hover,
.main-nav > a:hover {
    border-color: var(--brand);

    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;

    gap: 14px;
}

.phone-link {
    color: var(--dark);

    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;

    white-space: nowrap;
}

.phone-link span,
.phone-link small {
    display: block;

    color: var(--muted);

    font-size: 10px;
    font-weight: 500;
}

.burger {
    width: 38px;
    height: 38px;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.burger span {
    width: 22px;
    height: 2px;

    display: block;

    background: var(--dark);

    transition:
        transform .2s ease,
        opacity .2s ease;
}

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

.burger.open span:nth-child(2) {
    opacity: 0;
}

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


/* Mobile menu */

.mobile-menu {
    display: none;
}

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

.mobile-nav a {
    display: block;

    padding: 12px 0;

    border-bottom: 1px solid var(--border);

    color: var(--dark);

    font-size: 15px;
    font-weight: 700;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;

    gap: 12px;

    margin-top: 20px;
}

.mobile-phone {
    color: var(--dark);

    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   6. HERO
   ========================================================= */

.home-page .hero,
.home-hero,
section.hero {
    padding: 56px 0 64px;

    background: var(--bg-warm);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;

    gap: 48px;

    align-items: center;
}

.hero-content {
    min-width: 0;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 18px;
    padding: 6px 14px;

    border-radius: 999px;

    background: #FCEBD8;
    color: var(--accent-dark);

    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
}

.hero-title,
.hero h1 {
    margin: 0 0 18px;

    color: var(--dark);

    font-size: 40px;
    line-height: 1.15;
    font-weight: 800;

    letter-spacing: -.01em;
}

.hero-title em,
.hero h1 em {
    color: var(--accent);

    font-style: normal;
}

.hero p.lead,
.hero .lead {
    max-width: 520px;

    margin: 0 0 26px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 30px;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;

    gap: 26px;

    padding-top: 22px;

    border-top: 1px solid var(--border);
}

.trust-item {
    color: var(--muted);

    font-size: 13px;
    line-height: 1.35;
}

.trust-item b {
    display: block;

    margin-bottom: 2px;

    color: var(--dark);

    font-size: 20px;
    line-height: 1.15;
    font-weight: 800;
}

.trust-item span {
    display: block;
}

.hero-photo {
    width: 100%;
    height: 420px;

    overflow: hidden;

    border-radius: var(--radius);

    background:
        linear-gradient(
            135deg,
            #FFD9A8,
            #F2811D 55%,
            #C2540B
        );
}

.hero-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   7. WHO
   ========================================================= */

.home-who {
    background: #fff;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.who-card {
    min-width: 0;

    display: flex;
    flex-direction: column;

    padding: 26px 22px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--bg-card);

    transition:
        box-shadow .15s ease,
        transform .15s ease;
}

.who-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 14px 30px rgba(194, 84, 11, .12);
}

.who-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    border-radius: 12px;

    background: #FCEBD8;

    font-size: 22px;
}

.who-icon img {
    width: 24px;
    height: 24px;

    object-fit: contain;
}

.who-card h3 {
    margin: 0 0 8px;

    color: var(--dark);

    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.who-card p {
    flex: 1;

    margin: 0 0 14px;

    color: var(--muted);

    font-size: 13.5px;
    line-height: 1.55;
}

.who-link,
.who-card > a {
    align-self: flex-start;

    color: var(--accent);

    font-size: 13px;
    font-weight: 700;

    transition: color .15s ease;
}

.who-link:hover,
.who-card > a:hover {
    color: var(--accent-dark);
}


/* =========================================================
   8. STEPS
   ========================================================= */

.home-steps {
    background: #fff;
}

.steps {
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 0;
}

.step {
    position: relative;

    padding: 0 26px;

    text-align: center;
}

.step:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 26px;
    right: -10px;

    width: calc(100% - 30px);
    height: 2px;

    background:
        repeating-linear-gradient(
            90deg,
            var(--border) 0 8px,
            transparent 8px 14px
        );
}

.step-num {
    position: relative;
    z-index: 2;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: var(--accent);
    color: #fff;

    font-size: 20px;
    font-weight: 800;
}

.step h3 {
    margin: 0 0 8px;

    color: var(--dark);

    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.step p {
    margin: 0;

    color: var(--muted);

    font-size: 13.5px;
    line-height: 1.55;
}


/* =========================================================
   9. PROGRAMS
   ========================================================= */

.home-programs,
section.programs {
    background: var(--bg-warm);
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 10px;

    margin-bottom: 34px;
}

.chip {
    padding: 9px 18px;

    border: 1px solid var(--border);
    border-radius: 999px;

    background: #fff;
    color: var(--muted);

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}

.chip.active {
    border-color: var(--dark);

    background: var(--dark);
    color: #fff;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.program-card {
    min-width: 0;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: #fff;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.program-card:hover {
    transform: translateY(-3px);

    box-shadow: var(--shadow-soft);
}

.program-image {
    width: 100%;
    height: 190px;

    display: block;

    overflow: hidden;

    background: #FCEBD8;
}

.program-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .3s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.03);
}

.program-body {
    min-width: 0;
    flex: 1;

    display: flex;
    flex-direction: column;

    gap: 10px;

    padding: 20px 20px 22px;
}

.audience-badge {
    align-self: flex-start;

    padding: 5px 10px;

    border-radius: 6px;

    background: #FCEBD8;
    color: var(--accent-dark);

    font-size: 11px;
    line-height: 1.25;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: .02em;
}

.program-body h3 {
    margin: 2px 0 0;

    color: var(--dark);

    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
}

.program-body h3 a {
    transition: color .15s ease;
}

.program-body h3 a:hover {
    color: var(--accent);
}

.program-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 8px 12px;

    color: var(--muted);

    font-size: 12.5px;
    line-height: 1.5;
}

.program-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-top: auto;
    padding-top: 14px;

    border-top: 1px dashed var(--border);
}

.price {
    color: var(--dark);

    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.price span {
    display: block;

    margin-top: 2px;

    color: var(--muted);

    font-size: 11px;
    line-height: 1.4;
    font-weight: 600;
}

.programs-all {
    margin-top: 32px;

    text-align: center;
}


/* =========================================================
   10. SCHEDULE
   ========================================================= */

.home-schedule {
    background: #fff;
}

.schedule-list {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.sched-row {
    display: grid;
    grid-template-columns:
        74px
        minmax(240px, 1.6fr)
        minmax(120px, 1fr)
        minmax(110px, .8fr)
        minmax(90px, .9fr);

    gap: 16px;

    align-items: center;

    padding: 16px 20px;

    border-bottom: 1px solid var(--border);

    background: #fff;
}

.sched-row:last-child {
    border-bottom: 0;
}

.sched-row:nth-child(even) {
    background: #FFFDFB;
}

.date-badge {
    padding: 8px 4px;

    border-radius: 10px;

    background: var(--accent);
    color: #fff;

    text-align: center;
    line-height: 1.1;
}

.date-badge b {
    display: block;

    font-size: 19px;
    font-weight: 800;
}

.date-badge span {
    display: block;

    margin-top: 2px;

    font-size: 10.5px;

    text-transform: uppercase;

    opacity: .9;
}

.sched-main {
    min-width: 0;
}

.sched-title {
    display: block;

    color: var(--dark);

    font-size: 14.5px;
    line-height: 1.4;
    font-weight: 700;
}

a.sched-title {
    transition: color .15s ease;
}

a.sched-title:hover {
    color: var(--accent);
}

.sched-sub {
    margin-top: 3px;

    color: var(--muted);

    font-size: 12.5px;
    line-height: 1.4;
}

.seats {
    color: var(--accent-dark);

    font-size: 12.5px;
    line-height: 1.4;
    font-weight: 700;
}

.sched-format {
    color: var(--muted);

    font-size: 12.5px;
    line-height: 1.4;
}

.sched-price {
    color: var(--dark);

    font-size: 14px;
    font-weight: 800;

    text-align: right;

    white-space: nowrap;
}

.schedule-all {
    margin-top: 30px;

    text-align: center;
}


/* =========================================================
   11. TRAINERS
   ========================================================= */

.home-trainers {
    background: var(--bg-warm);
}

.trainer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 30px 22px;
}

.trainer-card {
    min-width: 0;

    text-align: center;
}

.trainer-photo {
    width: 100%;
    aspect-ratio: 1 / 1;

    display: block;

    margin-bottom: 14px;

    overflow: hidden;

    border-radius: 50%;

    background: #FCEBD8;
}

.trainer-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform .3s ease;
}

a.trainer-photo:hover img {
    transform: scale(1.03);
}

.trainer-card h3 {
    margin: 0 0 5px;

    color: var(--dark);

    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.trainer-card h3 a {
    transition: color .15s ease;
}

.trainer-card h3 a:hover {
    color: var(--accent);
}

.trainer-specialization,
.trainer-card > p {
    max-width: 230px;

    margin: 0 auto 9px;

    color: var(--muted);

    font-size: 12.5px;
    line-height: 1.5;
}

.cert {
    display: inline-block;

    padding: 4px 9px;

    border-radius: 6px;

    background: #FCEBD8;
    color: var(--accent-dark);

    font-size: 10.5px;
    font-weight: 700;
}

.trainer-link {
    display: block;

    margin-top: 10px;

    color: var(--accent);

    font-size: 12.5px;
    font-weight: 700;

    transition: color .15s ease;
}

.trainer-link:hover {
    color: var(--accent-dark);
}


/* =========================================================
   12. REVIEWS
   ========================================================= */

.home-reviews,
section.results {
    background: var(--dark);
    color: #fff;
}

.home-reviews .section-head h2,
section.results .section-head h2 {
    color: #fff;
}

.home-reviews .section-head p,
section.results .section-head p {
    color: #B9BDC6;
}

.home-reviews .kicker,
section.results .kicker {
    color: #FFB877;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.review-card {
    min-width: 0;

    display: flex;
    flex-direction: column;

    padding: 24px;

    border-radius: var(--radius);

    background: #363B44;
}

.stars {
    margin-bottom: 10px;

    color: #FFB65C;

    font-size: 13px;
    line-height: 1.3;

    letter-spacing: 2px;
}

.review-text,
.review-card > p {
    flex: 1;

    margin: 0 0 18px;

    color: #E7E9ED;

    font-size: 14px;
    line-height: 1.65;
}

.review-who {
    display: flex;
    align-items: center;

    gap: 10px;
}

.review-avatar {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    overflow: hidden;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #FFD9A8,
            #C2540B
        );
}

.review-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.review-avatar--empty {
    background:
        linear-gradient(
            135deg,
            #FFD9A8,
            #C2540B
        );
}

.review-author {
    min-width: 0;
}

.review-name,
.review-who b {
    display: block;

    color: #fff;

    font-size: 13px;
    font-weight: 700;
}

a.review-name {
    transition: color .15s ease;
}

a.review-name:hover {
    color: #FFB877;
}

.review-meta,
.review-who span {
    display: block;

    margin-top: 2px;

    color: #9CA1AC;

    font-size: 11.5px;
    line-height: 1.4;
}


/* Video reviews */

.video-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;

    margin-top: 20px;
}

.video-thumb {
    position: relative;

    height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: var(--radius);

    background: #292D34;
}

.video-thumb > img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .3s ease;
}

.video-thumb:hover > img {
    transform: scale(1.04);
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(0, 0, 0, .25);

    transition: background .2s ease;
}

.video-thumb:hover .video-overlay {
    background: rgba(0, 0, 0, .35);
}

.play {
    position: relative;
    z-index: 2;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, .94);
    color: var(--accent);

    font-size: 17px;

    transition: transform .2s ease;
}

.video-thumb:hover .play {
    transform: scale(1.07);
}

.video-review-info {
    position: absolute;
    z-index: 2;

    left: 16px;
    right: 16px;
    bottom: 14px;

    color: #fff;
}

.video-review-info b {
    display: block;

    font-size: 12.5px;
    font-weight: 700;
}

.video-review-info small {
    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, .8);

    font-size: 10.5px;
    line-height: 1.4;
}

.reviews-all {
    margin-top: 32px;

    text-align: center;
}


/* =========================================================
   13. PRICING
   ========================================================= */

.home-pricing {
    background: #fff;
}

.price-table-wrap {
    width: 100%;

    overflow-x: auto;

    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.price-table {
    width: 100%;
    min-width: 720px;

    border-collapse: collapse;
}

.price-table th {
    padding: 14px 18px;

    background: var(--dark);
    color: #fff;

    text-align: left;

    font-size: 12.5px;
    line-height: 1.35;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .03em;
}

.price-table td {
    padding: 16px 18px;

    border-bottom: 1px solid var(--border);

    background: #fff;
    color: var(--dark);

    font-size: 14px;
    line-height: 1.5;

    vertical-align: middle;
}

.price-table tr:last-child td {
    border-bottom: 0;
}

.price-table td.fmt {
    font-weight: 800;
}

.price-table td.fmt a {
    transition: color .15s ease;
}

.price-table td.fmt a:hover {
    color: var(--accent);
}

.price-table td.amount {
    color: var(--accent-dark);

    font-weight: 800;

    white-space: nowrap;
}

.tag-inst {
    display: inline-block;

    margin-left: 8px;
    padding: 3px 8px;

    border-radius: 6px;

    background: #FCEBD8;
    color: var(--accent-dark);

    font-size: 11px;
    font-weight: 700;

    white-space: nowrap;
}

.pricing-note {
    max-width: 720px;

    margin: 16px auto 0;

    color: var(--muted);

    text-align: center;

    font-size: 12px;
    line-height: 1.5;
}

.pricing-all {
    margin-top: 30px;

    text-align: center;
}


/* =========================================================
   14. FAQ
   ========================================================= */

.home-faq {
    background: var(--bg-warm);
}

.faq {
    max-width: 760px;

    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;

    padding: 20px 4px;

    border: 0;

    background: transparent;
    color: var(--dark);

    text-align: left;

    font-size: 15.5px;
    line-height: 1.4;
    font-weight: 700;

    cursor: pointer;
}

.faq-q-text {
    flex: 1;
}

.faq-q .ic {
    flex: 0 0 auto;

    color: var(--accent);

    font-size: 22px;
    line-height: 1;

    transition: transform .2s ease;
}

.faq-item.open .faq-q .ic {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;

    overflow: hidden;

    transition: max-height .3s ease;
}

.faq-a-inner {
    padding: 0 4px 20px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.65;
}

.faq-a-inner p {
    margin-top: 0;
}

.faq-a-inner p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   15. FINAL CTA
   ========================================================= */

.home-cta,
section.final-cta {
    background:
        linear-gradient(
            120deg,
            #F2811D,
            #C2540B
        );

    color: #fff;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;

    gap: 40px;

    align-items: center;
}

.cta-content {
    min-width: 0;
}

.home-cta h2,
.final-cta h2 {
    margin: 0 0 14px;

    color: #fff;

    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

.cta-text,
.home-cta .cta-content > p,
.final-cta .cta-content > p {
    max-width: 460px;

    margin: 0 0 22px;

    color: rgba(255, 255, 255, .95);

    font-size: 15px;
    line-height: 1.6;
}

.home-cta .cta-trust {
    border-top-color: rgba(255, 255, 255, .3);
}

.home-cta .trust-item {
    color: rgba(255, 255, 255, .9);
}

.home-cta .trust-item b {
    color: #fff;
}

.mini-form {
    padding: 26px;

    border-radius: var(--radius);

    background: #fff;
    color: var(--dark);

    box-shadow: 0 18px 45px rgba(60, 25, 0, .15);
}

.mini-form h3 {
    margin: 0 0 18px;

    color: var(--dark);

    font-size: 17px;
    line-height: 1.3;
    font-weight: 800;
}

.home-cta-form .field,
.mini-form .field {
    margin-bottom: 12px;
}

.home-cta-form .field label,
.mini-form .field label {
    display: block;

    margin-bottom: 5px;

    color: var(--muted);

    font-size: 12px;
    font-weight: 700;
}

.home-cta-form .field input,
.mini-form .field input {
    width: 100%;

    padding: 12px 13px;

    border: 1px solid var(--border);
    border-radius: 10px;

    outline: 0;

    background: #FBF7F2;
    color: var(--dark);

    font-size: 14px;

    transition:
        border-color .15s ease,
        box-shadow .15s ease,
        background .15s ease;
}

.home-cta-form .field input:focus,
.mini-form .field input:focus {
    border-color: var(--accent);

    background: #fff;

    box-shadow: 0 0 0 3px rgba(194, 84, 11, .08);
}

.home-cta-form .btn,
.mini-form .btn {
    width: 100%;

    margin-top: 6px;
}

.form-note {
    margin-top: 10px;

    color: var(--muted);

    text-align: center;

    font-size: 11px;
    line-height: 1.5;
}

.form-note a {
    color: var(--accent-dark);

    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-note a:hover {
    text-decoration: none;
}


/* =========================================================
   16. FOOTER
   Supports original mockup + HOME-FOOTER naming
   ========================================================= */

footer,
.home-footer,
.site-footer {
    padding: 52px 0 24px;

    background: var(--footer-bg);
    color: var(--footer-text);
}

.foot-grid,
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;

    gap: 40px;

    margin-bottom: 36px;
}

.foot-logo,
.footer-logo,
.footer-brand-title {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 12px;

    color: #fff;

    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
}

.footer-logo img,
.foot-logo img {
    width: auto;
    max-width: 180px;
    max-height: 54px;

    object-fit: contain;
}

footer p,
.home-footer p,
.site-footer p,
.footer-text,
.footer-company-info {
    color: var(--footer-muted);

    font-size: 13px;
    line-height: 1.6;
}

footer h4,
.home-footer h4,
.site-footer h4,
.footer-title {
    margin: 0 0 16px;

    color: #fff;

    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .04em;
}

footer ul,
.home-footer ul,
.site-footer ul,
.footer-nav {
    margin: 0;
    padding: 0;

    list-style: none;
}

footer ul,
.home-footer ul,
.site-footer ul {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

footer ul a,
.home-footer ul a,
.site-footer ul a,
.footer-nav a,
.footer-contact-link {
    color: #C7C2BA;

    font-size: 13.5px;
    line-height: 1.45;

    transition: color .15s ease;
}

footer ul a:hover,
.home-footer ul a:hover,
.site-footer ul a:hover,
.footer-nav a:hover,
.footer-contact-link:hover {
    color: #fff;
}

.social-row,
.footer-socials {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;

    margin-top: 16px;
}

.footer-social,
.social-row a,
.social-row span {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;

    background: #332F2B;

    color: #fff;

    font-size: 13px;

    transition:
        background .15s ease,
        transform .15s ease;
}

.footer-social:hover,
.social-row a:hover {
    transform: translateY(-2px);

    background: #464038;
}

.footer-social img {
    width: 16px;
    height: 16px;

    object-fit: contain;
}

.foot-bottom,
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

    gap: 12px;

    padding-top: 22px;

    border-top: 1px solid var(--footer-border);

    color: #8A857D;

    font-size: 12px;
    line-height: 1.5;
}

.footer-legal,
.footer-legal-links {
    display: flex;
    flex-wrap: wrap;

    gap: 8px 16px;
}

.footer-legal a,
.footer-legal-links a,
.foot-bottom a {
    color: #A49F97;

    transition: color .15s ease;
}

.footer-legal a:hover,
.footer-legal-links a:hover,
.foot-bottom a:hover {
    color: #fff;
}


/* =========================================================
   17. TABLET — <= 980px
   ========================================================= */

@media (max-width: 980px) {

    /* Header */

    .main-nav {
        display: none;
    }

    .header-actions .phone-link {
        display: none;
    }

    .header-actions > .btn {
        display: none;
    }

    .burger {
        display: flex;
    }

    header.site,
    .site-header,
    .home-header {
        position: sticky;
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 95;

        padding: 20px 24px 24px;

        border-top: 1px solid var(--border);

        background: #fff;

        box-shadow: 0 16px 30px rgba(0, 0, 0, .08);
    }

    .mobile-menu.open {
        display: block;
    }

    .mobile-menu-actions .btn {
        width: 100%;
    }


    /* Hero */

    .hero-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .hero-photo {
        height: 320px;

        order: -1;
    }


    /* Who */

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


    /* Steps */

    .steps {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .step {
        max-width: 520px;

        margin: 0 auto;
    }

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


    /* Programs */

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


    /* Schedule */

    .sched-row {
        grid-template-columns: 64px 1fr auto;

        grid-template-areas:
            "date main price"
            "date seats price"
            "date format price";
    }

    .date-badge {
        grid-area: date;
    }

    .sched-main {
        grid-area: main;
    }

    .seats {
        grid-area: seats;
    }

    .sched-format {
        grid-area: format;
    }

    .sched-price {
        grid-area: price;
    }


    /* Trainers */

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


    /* Reviews */

    .review-grid,
    .video-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    /* Footer */

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

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


/* =========================================================
   18. MOBILE — <= 600px
   ========================================================= */

@media (max-width: 600px) {

    .wrap {
        padding-left: 18px;
        padding-right: 18px;
    }

    section {
        padding: 48px 0;
    }


    /* Section head */

    .section-head {
        margin-bottom: 30px;
    }

    .section-head h2 {
        font-size: 26px;
    }

    .section-head p {
        font-size: 14px;
    }


    /* Header */

    .header-inner {
        min-height: 62px;

        padding-top: 10px;
        padding-bottom: 10px;
    }
    .logo.logo-only .logo-image {
        width: auto;
        height: 44px;

        max-width: 190px;
        max-height: none;
    }

    .mobile-menu {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* Hero */

    .home-page .hero,
    .home-hero,
    section.hero {
        padding: 34px 0 48px;
    }

    .hero-grid {
        gap: 28px;
    }

    .hero-photo {
        height: 250px;
    }

    .eyebrow {
        margin-bottom: 14px;

        font-size: 11.5px;
    }

    .hero-title,
    .hero h1 {
        margin-bottom: 16px;

        font-size: 31px;
    }

    .hero p.lead,
    .hero .lead {
        font-size: 15.5px;
    }

    .hero-ctas {
        flex-direction: column;

        margin-bottom: 26px;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .trust-bar {
        gap: 18px 22px;
    }

    .trust-item {
        min-width: calc(50% - 11px);

        font-size: 12px;
    }

    .trust-item b {
        font-size: 18px;
    }


    /* Who */

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

    .who-card {
        padding: 22px 20px;
    }


    /* Steps */

    .steps {
        gap: 24px;
    }

    .step {
        padding: 0;
    }

    .step-num {
        width: 48px;
        height: 48px;

        margin-bottom: 14px;

        font-size: 18px;
    }

    .step h3 {
        font-size: 15px;
    }

    .step p {
        font-size: 13px;
    }


    /* Programs */

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

    .program-image {
        height: 200px;
    }

    .program-foot {
        flex-direction: column;
        align-items: flex-start;

        gap: 10px;
    }

    .program-foot .btn {
        width: 100%;
    }


    /* Schedule */

    .schedule-list {
        display: flex;
        flex-direction: column;

        gap: 12px;

        overflow: visible;

        border: 0;
        border-radius: 0;
    }

    .sched-row {
        grid-template-columns: 56px 1fr;

        grid-template-areas:
            "date main"
            "date seats"
            "date format"
            "date price";

        padding: 16px;

        border: 1px solid var(--border);
        border-radius: var(--radius);

        background: #fff;
    }

    .sched-row:nth-child(even) {
        background: #fff;
    }

    .sched-price {
        margin-top: 4px;

        text-align: left;
    }


    /* Trainers */

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

        gap: 26px 16px;
    }

    .trainer-card h3 {
        font-size: 14px;
    }

    .trainer-specialization,
    .trainer-card > p {
        font-size: 11.5px;
    }


    /* Reviews */

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

    .review-card {
        padding: 20px;
    }

    .video-thumb {
        height: 210px;
    }


    /* Pricing */

    .price-table-wrap {
        overflow: visible;

        border: 0;
        border-radius: 0;
    }

    .price-table {
        min-width: 0;
    }

    .price-table thead {
        display: none;
    }

    .price-table,
    .price-table tbody,
    .price-table tr,
    .price-table td {
        display: block;
        width: 100%;
    }

    .price-table tbody {
        display: flex;
        flex-direction: column;

        gap: 12px;
    }

    .price-table tr {
        padding: 18px;

        border: 1px solid var(--border);
        border-radius: var(--radius);

        background: #fff;
    }

    .price-table td {
        padding: 4px 0;

        border: 0;

        background: transparent;
    }

    .price-table td.fmt {
        margin-bottom: 6px;

        font-size: 16px;
    }

    .price-table td.amount {
        margin-top: 7px;

        font-size: 15px;
    }

    .tag-inst {
        margin-left: 6px;
    }


    /* FAQ */

    .faq-q {
        gap: 16px;

        padding: 18px 0;

        font-size: 14.5px;
    }

    .faq-a-inner {
        padding: 0 0 18px;

        font-size: 13.5px;
    }


    /* CTA */

    .home-cta h2,
    .final-cta h2 {
        font-size: 26px;
    }

    .cta-grid {
        gap: 28px;
    }

    .mini-form {
        padding: 20px;
    }

    .home-cta .cta-trust {
        gap: 18px 22px;
    }


    /* Footer */

    footer,
    .home-footer,
    .site-footer {
        padding-top: 42px;
    }

    .foot-grid,
    .footer-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }

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

    .foot-bottom,
    .footer-bottom {
        flex-direction: column;
    }
}


/* =========================================================
   19. SMALL MOBILE — <= 420px
   ========================================================= */

@media (max-width: 420px) {

    .hero-title,
    .hero h1 {
        font-size: 28px;
    }

    .trainer-grid {
        gap: 22px 12px;
    }

    .cert {
        font-size: 10px;
    }

    .trust-item {
        min-width: 100%;
    }
}


/* =========================================================
   20. ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}