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

:root {
    --black:     #0D0D0D;
    --white:     #FFFFFF;
    --amber:     #E87C32;
    --amber-dim: rgba(232,124,50,0.10);
    --gray-1:    #F7F6F4;
    --gray-2:    #EDECEA;
    --text-1:    #0D0D0D;
    --text-2:    #4A4A47;
    --text-3:    #9A9A97;
    --font:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max:       1080px;
    --pad:       clamp(24px, 5vw, 80px);
    --py-lg:     clamp(80px, 10vw, 140px);
    --py-md:     clamp(56px, 7vw, 96px);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--white);
    color: var(--text-1);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

/* ── FLOATING NAV ── */
.fl-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 200;
}
.fl-nav__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 8px 14px 8px 10px;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--black);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.2s;
}
.fl-nav__toggle:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.14); }
.fl-nav__compass { flex-shrink: 0; width: 22px; height: 22px; }
.fl-nav__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    opacity: 0;
    transform: scale(0.95) translateY(-8px);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}
.fl-nav.open .fl-nav__menu {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}
.fl-nav__link {
    display: block;
    padding: 11px 20px;
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--black);
    text-decoration: none;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.fl-nav__link:last-child { border-bottom: none; }
.fl-nav__link:hover { background: var(--gray-1); }

/* ── HERO ── */
.m-hero {
    padding: var(--py-lg) var(--pad);
    max-width: var(--max);
    margin: 0 auto;
}
.m-hero__h1 {
    font-size: clamp(3.2rem, 9vw, 7.5rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
}
.m-hero__h1 .accent { color: var(--amber); }
.m-hero__sub {
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    line-height: 1.72;
    color: var(--text-2);
    max-width: 580px;
    margin-bottom: 40px;
}
.m-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: 1.5px solid var(--gray-2);
    border-radius: 4px;
    padding: 13px 22px;
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-1);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.m-video-btn:hover { border-color: var(--amber); background: var(--amber-dim); }
.m-video-btn__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ── VIDEO LIGHTBOX ── */
.m-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 999;
    align-items: center;
    justify-content: center;
}
.m-overlay.active { display: flex; }
.m-overlay__box {
    position: relative;
    width: min(90vw, 400px);
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}
.m-overlay__box iframe { width: 100%; height: 100%; border: 0; }
.m-overlay__close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    opacity: 0.7;
    line-height: 1;
    padding: 4px;
}
.m-overlay__close:hover { opacity: 1; }

/* ── SHARED LABELS / HEADINGS ── */
.s-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 20px;
}
.s-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 60px;
}
.s-h2--tight { margin-bottom: 36px; }

/* ── DARK SECTION ── */
.s-dark {
    background: var(--black);
    color: var(--white);
    padding: var(--py-lg) var(--pad);
}
.s-dark .s-label { color: var(--amber); }
.s-dark h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 40px;
}
.s-dark p {
    font-size: 1.08rem;
    line-height: 1.82;
    color: rgba(255,255,255,0.68);
    max-width: 660px;
    margin-bottom: 22px;
}
.s-dark p:last-child { margin-bottom: 0; }
.s-dark strong { color: #fff; font-weight: 600; }

/* ── WHAT THIS ISN'T ── */
.s-white { background: var(--white); padding: var(--py-lg) var(--pad); }
.not-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.not-item {
    padding: 40px 48px 40px 0;
    border-top: 2px solid var(--amber);
}
.not-item + .not-item {
    padding-left: 40px;
    border-left: 1px solid var(--gray-2);
}
.not-item__label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    display: block;
    margin-bottom: 12px;
}
.not-item h3 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.not-item p {
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--text-2);
}

/* ── PROSE ── */
.s-prose { background: var(--gray-1); padding: var(--py-lg) var(--pad); }
.s-prose__inner { max-width: 680px; }
.s-prose p {
    font-size: 1.06rem;
    line-height: 1.85;
    color: var(--text-2);
    margin-bottom: 22px;
}
.s-prose p:last-child { margin-bottom: 0; }
.s-prose strong { color: var(--text-1); font-weight: 600; }

/* ── ABOUT ── */
.s-about { background: var(--white); padding: var(--py-lg) var(--pad); }
.about-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    align-items: start;
}
.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    background: var(--gray-2);
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-text p {
    font-size: 1rem;
    line-height: 1.82;
    color: var(--text-2);
    margin-bottom: 18px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--text-1); font-weight: 600; }
.about-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}
.about-cred {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-3);
    background: var(--gray-1);
    padding: 6px 12px;
    border-radius: 3px;
}

/* ── TESTIMONIALS ── */
.s-testi { background: var(--gray-1); padding: var(--py-lg) var(--pad); }
.testi-nav-wrap {
    position: relative;
    margin: 48px -56px 0;
    padding: 0 56px;
}
.testi-nav-wrap .testi-swiper {
    margin-top: 0;
    padding-bottom: 40px;
}
.testi-swiper .swiper-slide { height: auto; }
.testi-card {
    background: var(--white);
    padding: 32px;
    border-radius: 4px;
    border-top: 3px solid var(--amber);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testi-play-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--amber);
    color: var(--amber);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
}
.testi-play-btn:hover {
    background: var(--amber);
    color: var(--white);
}
.testi-play-btn svg { width: 14px; height: 14px; }
.testi-play-btn.playing {
    background: var(--amber);
    color: var(--white);
    animation: pulse-amber 2s infinite;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gray-2);
}

.testi-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testi-card__name { font-weight: 700; color: var(--text-1); font-size: 0.95rem; }
.testi-card__role { font-size: 0.8rem; color: var(--text-3); }

@keyframes pulse-amber {
    0% { box-shadow: 0 0 0 0 rgba(232, 124, 50, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(232, 124, 50, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 124, 50, 0); }
}
.testi-card__quote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-2);
    font-style: italic;
    margin-bottom: 28px;
}
.testi-card__name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-1);
    display: block;
}
.testi-card__role {
    font-size: 0.8rem;
    color: var(--text-3);
    display: block;
    margin-top: 3px;
}
.testi-nav-wrap .swiper-button-prev,
.testi-nav-wrap .swiper-button-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--gray-2);
    transition: border-color 0.2s, box-shadow 0.2s;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -20px;
}
.testi-nav-wrap .swiper-button-prev { left: 0; }
.testi-nav-wrap .swiper-button-next { right: 0; }
.testi-nav-wrap .swiper-button-prev:hover,
.testi-nav-wrap .swiper-button-next:hover {
    border-color: var(--amber);
    box-shadow: 0 2px 12px rgba(232,124,50,0.2);
}
.testi-nav-wrap .swiper-button-prev::after,
.testi-nav-wrap .swiper-button-next::after {
    font-size: 13px;
    font-weight: 800;
    color: var(--black);
}
.testi-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--gray-2);
    opacity: 1;
}
.testi-swiper .swiper-pagination-bullet-active { background: var(--amber); opacity: 1; }

/* ── OFFER ── */
.s-offer { background: var(--white); padding: var(--py-lg) var(--pad); }
.offer-intro {
    font-size: 1.06rem;
    color: var(--text-2);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 56px;
}
.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.offer-box {
    border: 1.5px solid var(--gray-2);
    border-radius: 6px;
    padding: 40px;
}
.offer-box--primary {
    border-color: var(--black);
    background: var(--black);
    color: var(--white);
}
.offer-box__type {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amber);
    display: block;
    margin-bottom: 14px;
}
.offer-box h3 {
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
    color: inherit;
}
.offer-box--primary h3 { color: var(--white); }
.offer-box__price {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 4px;
}
.offer-box__note {
    font-size: 0.82rem;
    color: var(--text-3);
    display: block;
    margin-bottom: 24px;
}
.offer-box--primary .offer-box__note { color: rgba(255,255,255,0.38); }
.offer-box p {
    font-size: 0.93rem;
    line-height: 1.72;
    color: var(--text-2);
    margin-bottom: 24px;
}
.offer-box--primary p { color: rgba(255,255,255,0.68); }
.offer-box__list {
    list-style: none;
    margin-bottom: 32px;
}
.offer-box__list li {
    font-size: 0.88rem;
    color: var(--text-2);
    padding: 9px 0;
    border-bottom: 1px solid var(--gray-1);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.offer-box__list li::before {
    content: '—';
    color: var(--amber);
    flex-shrink: 0;
    font-weight: 700;
    margin-top: 1px;
}
.offer-box--primary .offer-box__list li {
    color: rgba(255,255,255,0.72);
    border-color: rgba(255,255,255,0.08);
}
.offer-box__cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.offer-box .offer-box__cta { background: var(--black); color: var(--white); }
.offer-box .offer-box__cta:hover { background: #333; }
.offer-box--primary .offer-box__cta { background: var(--amber); color: var(--white); }
.offer-box--primary .offer-box__cta:hover { background: #ce6e28; }

/* ── BOOKING CTA ── */
.s-book { background: var(--black); padding: var(--py-lg) var(--pad); text-align: center; }
.s-book__inner { max-width: 680px; margin: 0 auto; }
.s-book__badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    border: 1px solid rgba(232,124,50,0.35);
    border-radius: 100px;
    padding: 6px 20px;
    margin-bottom: 44px;
}
.s-book__h {
    font-size: clamp(2.6rem, 7vw, 5.2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 28px;
}
.s-book__sub {
    font-size: 1.08rem;
    line-height: 1.72;
    color: rgba(255,255,255,0.5);
    max-width: 480px;
    margin: 0 auto 52px;
}
.s-book__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--amber);
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 18px 44px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.18s, transform 0.18s;
    box-shadow: 0 6px 28px rgba(232,124,50,0.32);
}
.s-book__cta:hover { background: #ce6e28; transform: translateY(-2px); }
.s-book__alt {
    margin-top: 28px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.28);
}
.s-book__alt a { color: rgba(255,255,255,0.38); text-decoration: underline; text-underline-offset: 3px; }

/* ── FAQ ── */
.s-faq { background: var(--white); padding: var(--py-lg) var(--pad); }
.s-faq + .s-faq { padding-top: 0; }
.faq-list { max-width: 680px; margin-top: 48px; }
.faq-item {
    border-bottom: 1px solid var(--gray-2);
    padding: 28px 0;
}
.faq-item:first-child { border-top: 1px solid var(--gray-2); }
.faq-q {
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    user-select: none;
}
.faq-q::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--amber);
    flex-shrink: 0;
    transition: transform 0.25s ease;
    line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--text-2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
    max-height: 800px;
    opacity: 1;
    padding-top: 12px;
}

/* ── FOOTER ── */
.m-footer {
    background: var(--black);
    color: rgba(255,255,255,0.38);
    padding: 28px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 12px;
}
.m-footer a { color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.2s; }
.m-footer a:hover { color: rgba(255,255,255,0.75); }
.m-footer__links { display: flex; gap: 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .not-grid { grid-template-columns: 1fr; }
    .not-item { padding: 32px 0 !important; border-left: none !important; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img { width: 200px; aspect-ratio: 1; }
    .offer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .m-hero__h1 { font-size: 2.8rem; }
    .s-h2 { font-size: 1.9rem; margin-bottom: 40px; }
    .s-dark h2 { font-size: 1.9rem; }
    .testi-card { padding: 28px; }
    .offer-box { padding: 28px; }
    .m-footer { flex-direction: column; align-items: flex-start; }
    .testi-nav-wrap { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
    .testi-nav-wrap .swiper-button-prev,
    .testi-nav-wrap .swiper-button-next { display: none; }
}
