:root {
    --charcoal: #1B1A17;
    --charcoal-2: #242220;
    --charcoal-3: #2D2B27;
    --concrete: #E4E1D8;
    --concrete-2: #D9D5C8;
    --white: #FAF8F4;
    --rust: #B6451F;
    --rust-light: #D4663D;
    --amber: #E8A33D;
    --steel: #5B5B56;
    --steel-light: #8A8A82;
    --display: 'Vazirmatn', sans-serif;
    --body: 'Vazirmatn', sans-serif;
    --mono: 'Vazirmatn', monospace;
}

@font-face {
    font-family: 'myLalezar';
    src: url('fonts/Lalezar-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}



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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'myLalezar', sans-serif;
    font-family: var(--body);
    background: black;
    color: var(--charcoal);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ---------- noise overlay ---------- */
.noise {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- type helpers ---------- */
.eyebrow {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

h1,
h2,
h3 {
    font-family: var(--display);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.2;
    font-weight: 1000;
}

h2 {
    font-size: clamp(32px, 4.6vw, 52px);
}

h3 {
    font-size: 22px;
    letter-spacing: 0.01em;
}

/* ---------- stamp badge ---------- */
.stamp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 13px;
    border: 1.5px solid currentColor;
    border-radius: 3px;
    white-space: nowrap;
}

.stamp.r1 {
    transform: rotate(2deg);
}

.stamp.r2 {
    transform: rotate(-1.5deg);
}

.stamp.r3 {
    transform: rotate(1deg);
}

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-weight: 600;
    font-size: 14px;
    padding: 16px 26px;
    border-radius: 10px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-primary {
    background: #ffffff;
    color: rgb(255, 255, 255);
    box-shadow: -4px 4px 0 rgba(0, 0, 0, 0.126);
}

.btn-primary:hover {
    transform: translate(2px, -2px);
    box-shadow: -6px 6px 0 var(--charcoal);
    background: var(--rust-light);
}

.btn-primary:active {
    transform: translate(0, 0);
    box-shadow: -2px 2px 0 var(--charcoal);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--steel-light);
}

.btn-ghost:hover {
    border-color: var(--white);
}

/* ---------- nav ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(185, 185, 185, 0.01);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    width: 95%;
    margin-right: 10px;
    margin-top: 10px;
    transition: background .25s ease, padding .25s ease, border-color .25s ease;

}

header.scrolled {
    background: rgba(0, 0, 0, 0.068);
    backdrop-filter: blur(5px);
    border-radius: 100px;
    width: 95%;
    margin-right: 10px;
    margin-top: 10px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    font-family: var(--display);
    font-size: 21px;
    color: white;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo span {
    font-family: var(--mono);
    font-size: 10px;
    color: rgb(0, 0, 0);
    font-weight: 600;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    gap: 34px;
    align-items: center;
}

.nav-links a {
    font-family: var(--mono);
    font-size: 14px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    opacity: 0.85;
    transition: opacity .15s;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--rust-light);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 22px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 26px;
}

.hamburger span {
    height: 2px;
    background: #ffffff;
    width: 100%;
    transition: .2s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(65, 65, 65, 0.088);
    backdrop-filter: blur(10px);
    z-index: 99;
    flex-direction: column;
    padding: 100px 28px 40px;
    gap: 28px;
}

.mobile-menu.open {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu a {
    font-family: var(--display);
    font-size: 25px;
    color: rgb(255, 255, 255);
    font-weight: 1000;
}

/* ---------- hero ---------- */
.main-text {

    animation: fadeIn 2s ease 2s both;
}

.hero {
    position: relative;
    background-image: url(bc1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: var(--white);
    padding: 168px 0 0;
    overflow: hidden;
    height: 100vh;





}

.hero-grid {
    display: grid;


    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 64px;

}

.hero h1 {
    font-family: 'myLalezar';
    font-size: clamp(100px, 6.4vw, 84px);
    font-weight: 1000;
    color: rgb(0, 0, 0);
    text-align: right;
    margin-right: 20%;
    line-height: 70px;

}

.main-text .hero h1 em {
    font-style: normal;
    color: var(--rust-light);
}

.hero-eyebrow {
    color: rgb(255, 255, 255);
    margin-bottom: 10px;
    display: block;
    font-size: 20px;
}

.hero p.lead {
    font-size: 25px;
    color: rgb(0, 0, 0);
    max-width: 480px;
    text-align: right;
    margin-top: 0px;
    margin-right: 20%;
}

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

.hero-actions small {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--steel-light);
}

.badge-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--concrete-2);
}

/* barbell illustration */
.bb-wrap {

    width: 1100px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Keep SVG ltr to avoid breaking layout */
}

.bb-wrap svg {
    width: 700px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1.5s ease 1s both;
}

.plate {
    transform-origin: center;
}

.plate.left-3 {
    animation: slideL .7s cubic-bezier(.2, .8, .2, 1) .1s both;
}

.plate.left-2 {
    animation: slideL .7s cubic-bezier(.2, .8, .2, 1) .22s both;
}

.plate.left-1 {
    animation: slideL .7s cubic-bezier(.2, .8, .2, 1) .34s both;
}

.plate.right-3 {
    animation: slideR .7s cubic-bezier(.2, .8, .2, 1) .1s both;
}

.plate.right-2 {
    animation: slideR .7s cubic-bezier(.2, .8, .2, 1) .22s both;
}

.plate.right-1 {
    animation: slideR .7s cubic-bezier(.2, .8, .2, 1) .34s both;
}

.bar {
    animation: fadeIn .5s ease .05s both;
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}






/* ---------- stat strip ---------- */
.stat-strip {
    background: var(--rust);
    color: var(--white);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 30px 0;
}

.stat-grid div {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0 14px;
}

.stat-grid div:first-child {
    border-right: none;
}

.stat-num {
    font-family: var(--display);
    font-size: clamp(24px, 3vw, 34px);
    display: block;
    direction: ltr;
    /* Keep numbers LTR */
}

.stat-label {
    font-family: var(--mono);
    font-size: 12px;
    opacity: 0.85;
    margin-top: 4px;
    display: block;
}

/* ---------- section shells ---------- */
section {
    padding: 96px 0;
}

.section-head {
    max-width: 600px;
    margin-bottom: 56px;
}

.section-head h2 {
    color: white;
}

.section-head .eyebrow {
    color: white;
    display: block;
    margin-bottom: 14px;
}

.section-head p {
    color: white;
    font-size: 16.5px;
    margin-top: 14px;
    max-width: 480px;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}



/* ---------- gallery ---------- */


.gallery .eyebrow {
    color: var(--amber);
}

.gallery h2 {
    color: rgb(255, 255, 255);
}

.gallery .section-head p {
    color: rgb(206, 206, 206);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
    grid-auto-flow: dense;
    gap: 14px;
}

.gallery-tile {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    text-align: right;
    color: var(--white);
    transition: transform .25s ease;
}

.gallery-tile:hover {
    transform: scale(0.98);
}

.gallery-tile:focus-visible {
    outline: 2px solid var(--amber);
    outline-offset: 3px;
}

.gallery-tile .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.22;
    color: var(--white);
}

.gallery-tile .icon svg {
    width: 56px;
    height: 56px;
}

.gallery-tile .tile-cap {
    position: relative;
    z-index: 2;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.gallery-tile .expand {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .2s ease;
}

.gallery-tile:hover .expand {
    opacity: 1;
}

.gallery-tile.t1 {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(to top, rgba(27, 26, 23, 0.9) 0%, rgba(27, 26, 23, 0.1) 60%), url("1Gooo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90%;

}

.gallery-tile.t2 {
    background: linear-gradient(to top, rgba(27, 26, 23, 0.9) 0%, rgba(27, 26, 23, 0.2) 60%), url("1Go.jpg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-tile.t3 {
    grid-row: span 2;
    background: linear-gradient(to top, rgba(27, 26, 23, 0.9) 0%, rgba(27, 26, 23, 0.2) 60%), url("3Go.jpg");
    background-size: cover;
    background-position: center;
}

.gallery-tile.t4 {
    background: linear-gradient(to top, rgba(27, 26, 23, 0.9) 0%, rgba(27, 26, 23, 0.2) 60%), url('imagico1.JPG');
    background-size: cover;
    background-position: center;
}

.gallery-tile.t5 {
    grid-column: span 2;
    background: linear-gradient(to top, rgba(27, 26, 23, 0.9) 0%, rgba(27, 26, 23, 0.2) 60%), url('imagico2.jpg');
    background-size: cover;
    background-position: center;
}

.gallery-tile.t6 {
    background: linear-gradient(to top, rgba(27, 26, 23, 0.9) 0%, rgba(27, 26, 23, 0.2) 60%), url('https://images.unsplash.com/photo-1534368959876-26514f136ea6?q=80&w=800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.gallery-tile.t7 {
    background: linear-gradient(to top, rgba(27, 26, 23, 0.9) 0%, rgba(27, 26, 23, 0.2) 60%), url('https://images.unsplash.com/photo-1581009137042-c552e48ce52f?q=80&w=800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.gallery-tile.t8 {
    background: linear-gradient(to top, rgba(27, 26, 23, 0.9) 0%, rgba(27, 26, 23, 0.2) 60%), url('https://images.unsplash.com/photo-1556817411-31ae72fa3ea8?q=80&w=800&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 9, 8, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-visual {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 6px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lightbox-visual .icon {
    color: var(--white);
    opacity: 0.3;
}

.lightbox-visual .icon svg {
    width: 90px;
    height: 90px;
}

.lightbox-caption {
    font-family: var(--mono);
    color: var(--concrete-2);
    font-size: 14px;
    text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: background .15s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.18);
}

.lightbox-close {
    top: 28px;
    left: 28px;
}

.lightbox-prev {
    right: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

.lightbox-next {
    left: 24px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

/* ---------- why / reassurance band ---------- */
.why {
    font-family: 'Vazirmatn';
    background-image: url(bc1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: rgb(247, 247, 247);
    position: relative;

}


.why h2 {
    color: rgb(255, 255, 255);
    max-width: 760px;
    margin-bottom: 20px;
    font-weight: 1000;

}



.reassure-grid {
    margin-top: 20%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
}

.reassure-item {

    /* background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(5px);
    border: 0.5px solid rgb(35, 35, 35);
    border-radius: 30px; */
    padding: 10px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.reassure-item span {
    display: none;
    color: #FFA600;

    font-size: 70px;

    font-weight: 1000;
    font-family: 'myLalezar';
}

.reassure-item .icon {
    color: #ffae00;
    margin-bottom: 16px;


}

.reassure-item h4 {

    color: rgb(255, 255, 255);
    font-weight: 1000;
    font-size: 40px;
    width: 100%;
    line-height: 50px;
    margin-bottom: 0px;
    padding: 10px;
    text-align: center;
}

.reassure-item p {
    font-weight: 50;
    color: rgb(255, 255, 255);
    font-size: 17px;
    padding-top: 0px;
    padding-right: 10px;
    width: 90%;
    text-align: center;
}




/* ---------- testimonials ---------- */
.testi {
    background: rgb(25, 25, 25);
    color: var(--white);
}

.testi h2 {
    color: var(--white);
}

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

.testi-card {
    background: black;
    border-radius: 4px;
    padding: 28px 24px;
    border-right: 3px solid rgb(52, 69, 255);
}

.testi-card p.quote {
    font-size: 15.5px;
    color: var(--concrete-2);
    margin-bottom: 20px;
}

.testi-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.testi-name {
    font-weight: 700;
    font-size: 15.5px;
}

.testi-since {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--steel-light);
}

.testi-stat {
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--amber);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 14px;
}

/* ---------- pricing ---------- */
#pricing {
    background-image: url(bc3.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.price-card {
    background: #9a9a9a17;
    backdrop-filter: blur(10px);
    border: 0.5px solid rgb(84, 84, 84);
    border-radius: 20px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card.featured {
    border-color: rgb(74, 74, 74);
    background-color: rgba(0, 0, 0, 0.173);
    backdrop-filter: blur(10px);

}

.price-card .stamp {
    position: absolute;
    top: -14px;
    right: 24px;
    background: rgb(255, 200, 0);
    color: rgb(255, 255, 255);
    border: none;

}

.price-name {
    font-family: var(--mono);
    font-size: 14px;
    color: rgb(255, 255, 255);
    margin-bottom: 14px;
}

.price-amt {
    font-family: var(--display);
    font-size: 60px;
    font-weight: 1000;
    margin-bottom: 4px;
    color: rgb(255, 255, 255);
    direction: ltr;
    text-align: right;
}

.price-amt span {
    font-family: var(--mono);
    font-size: 14px;
    color: rgb(255, 255, 255);
    letter-spacing: 0;
}

.price-sub {
    color: rgb(255, 255, 255);
    font-size: 14.5px;
    margin-bottom: 24px;
}

.price-feats {
    margin-bottom: 28px;
    flex: 1;
}

.price-feats li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14.5px;
    color: rgb(255, 255, 255);
    padding: 16px 0;
    border-top: 0.5px solid rgb(188, 188, 188);
}

.price-feats li:first-child {
    border-top: none;
}

.price-feats li .check {
    color: rgb(255, 200, 0);
    flex-shrink: 0;
    margin-top: 2px;
}

.price-card .btn {
    font-size: 15px;
    font-weight: 1000;
    justify-content: center;
    width: 100%;
}

.price-card .btn-outline {
    background: white;
    color: rgb(0, 0, 0);
    border: 0.5px solid rgb(45, 45, 45);
    border-radius: 50px;
    box-shadow: none;
}

.price-card .btn-outline:hover {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    transform: none;
}

/* ---------- FAQ ---------- */
.faq-list {

    max-width: 760px;
    color: rgb(255, 255, 255);
}

.faq-item {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 4px;
    text-align: right;
    font-family: var(--body);
    background-color: blue;
    font-weight: 600;
    font-size: 16.5px;
    color: rgb(255, 255, 255);
}

.faq-q .plus {
    font-family: var(--mono);
    font-size: 20px;
    color: rgb(255, 255, 255);
    transition: transform .25s ease;
    flex-shrink: 0;
    margin-right: 20px;
}

#faq {
    background-color: blue;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#faq .eyebrow {
    color: rgb(255, 255, 255);
}

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

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-a p {
    color: rgb(255, 255, 255);
    font-size: 15px;
    padding: 0 4px 24px;
    max-width: 600px;
}

/* ---------- final cta ---------- */
.final-cta {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta h2 {
    color: rgb(255, 255, 255);
    max-width: 680px;
    margin: 0 auto 18px;
}

.final-cta .lead {
    color: rgb(255, 255, 255);
    font-size: 17px;
    margin-bottom: 36px;
}

.final-cta .btn-primary {
    font-size: 15px;
    padding: 19px 36px;
}

.final-cta small {
    display: block;
    margin-top: 16px;
    font-family: var(--mono);
    font-size: 13px;
    color: var(--steel-light);
}

/* ---------- footer ---------- */
footer {
    background: black;
    color: var(--concrete-2);
    padding: 64px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--display);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 14px;
    font-weight: 800;
}

.footer-grid p {
    font-size: 15px;
    color: var(--steel-light);
    line-height: 1.7;
}

.footer-col h5 {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--steel-light);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14.5px;
    color: var(--concrete-2);
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--rust-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12.5px;
    color: var(--steel-light);
}

/* ---------- responsive ---------- */
@media (max-width:880px) {


    .nav-links,
    .nav-cta .btn-ghost {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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



    .bb-wrap {
        height: 150px;
        width: 400px;
        order: -1;
    }

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

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
    }

    .stat-grid div:nth-child(3) {
        border-right: none;
    }

    .reassure-grid,
    .coach-grid,
    .testi-grid,
    .price-grid {
        grid-template-columns: 1fr;
    }

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

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

    .gallery-tile.t1 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-tile.t3 {
        grid-row: span 1;
    }

    .gallery-tile.t5 {
        grid-column: span 2;
    }

    .lightbox-prev {
        right: 8px;
    }

    .lightbox-next {
        left: 8px;
    }
}

@media (max-width:560px) {
    .program-grid {
        grid-template-columns: 1fr;
    }

    .main-text {
        display: flex;
        flex-direction: column;
        margin-right: 0%;
        margin-top: 10%;
    }

    section {
        padding: 72px 0;
    }

    .hero {
        background-image: url(bc02.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding-top: 120px;
        margin-top: -50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-grid {

        margin: 20px;

    }

    .bb-wrap {
        transform: translateY(50px);
        height: 200px;
        width: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        order: -1;
    }

    .bb-wrap svg {

        width: 600px;
        animation: fadeIn 1.5s ease 1s both;
    }



    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 120px;
    }

    .gallery {
        background-image: url(bc04.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .gallery-tile.t1 {
        grid-column: span 2;
        grid-row: span 2;
    }

    .why {
        background-image: url(bc01.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .final-cta {
        background-image: url(bc02.jpg);
        background-repeat: no-repeat;
        background-position: 20% 80%;
        background-size: cover;
    }

    #pricing {
        background-image: url(bc01.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }
}