/* =========================================================
   VARIABLES & RESET
   ========================================================= */
:root {
    --gold:        #FBC411;
    --gold-light:  #FFD84D;
    --gold-glow:   rgba(251,196,17,0.35);
    --black:       #0A0A0A;
    --dark:        #111111;
    --dark-2:      #1A1A1A;
    --dark-3:      #161616;
    --white:       #F7F7F7;
    --off-white:   #F0F0F0;
    --grey:        #AAAAAA;
    --font-head:   'Bebas Neue', sans-serif;
    --font-body:   'Plus Jakarta Sans', sans-serif;
    --transition:  0.3s ease;
    --max-width:   1200px;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251,196,17,0.4); }
    50%       { box-shadow: 0 0 0 10px rgba(251,196,17,0); }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    background: #F0F0F0;
    color: var(--black);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =========================================================
   UTILITIES
   ========================================================= */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.gold { color: var(--gold); }

.section-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-style: italic;
    line-height: 1.0;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.section-title.centered { text-align: center; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 40px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251,196,17,0.35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-outline-hero:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn-dark:hover {
    background: var(--dark-2);
    border-color: var(--dark-2);
    transform: translateY(-2px);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease, height 0.3s ease;
}

.site-header.scrolled {
    background: #030303;
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    height: 68px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 92%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-decoration: none;
}

.logo-line1 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    font-style: italic;
}

.logo-line2 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    font-style: italic;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 1.6rem;
}

.nav-menu a {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-menu a:hover { color: var(--gold); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
    font-size: 0.68rem;
    padding: 0.55rem 1.4rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* =========================================================
   WAVE DIVIDERS
   ========================================================= */
.section-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 4;
    pointer-events: none;
}

.section-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.chevron-diamond {
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 9px;
    height: 9px;
    background: var(--gold);
    box-shadow: 0 0 12px rgba(251,196,17,0.75), 0 0 4px rgba(251,196,17,0.5);
    z-index: 6;
}

.chevron-diamond--white {
    background: #fff;
    box-shadow: 0 0 12px rgba(255,255,255,0.6), 0 0 4px rgba(255,255,255,0.4);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #060810 60%, #030303 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background: url('../BookRyan.jpg') 72% 10% / cover no-repeat;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(6,8,16,0.92) 0%,
        rgba(6,8,16,0.75) 42%,
        rgba(6,8,16,0.25) 68%,
        transparent 100%
    );
}

.hero-grain { display: none; }

.hero-inner {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 5rem;
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-text {
    overflow: visible;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1rem;
}
.hero-eyebrow strong {
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.22em;
}
.hero-eyebrow .eyebrow-divider {
    color: var(--gold);
    margin: 0 0.5em;
    font-weight: 400;
}

.hero-headline {
    font-family: var(--font-head);
    text-transform: uppercase;
    line-height: 0.92;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.hl-white {
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-style: italic;
    color: var(--white);
    letter-spacing: 0.02em;
}

.hl-gold {
    font-size: clamp(3.4rem, 7vw, 7.5rem);
    font-style: italic;
    white-space: nowrap;
    background: linear-gradient(135deg, #FBC411 0%, #FFE065 55%, #FFF8B0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.01em;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(220,220,220,0.82);
    line-height: 1.65;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* Hero bottom fade into video section */

/* AS SEEN IN */
.hero-as-seen {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.as-seen-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
}

.as-seen-logos {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
}

.as-seen-logo {
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
    white-space: nowrap;
}
.as-seen-logo:hover { color: rgba(255,255,255,0.7); }

.as-seen-forbes      { font-family: Georgia, serif; font-size: 1.1rem; font-style: italic; }
.as-seen-tedx        { font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 0.04em; }
.as-seen-success     { font-family: var(--font-head); font-size: 0.9rem; letter-spacing: 0.15em; }
.as-seen-inc         { font-family: Georgia, serif; font-size: 1.1rem; }
.as-seen-entrepreneur { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.06em; }


/* ---- Hero Spinning Badge ---- */
.hero-spin-badge {
    position: absolute;
    bottom: calc(8% + 75px);
    right: 7%;
    width: 160px;
    height: 160px;
    z-index: 2;
    pointer-events: none;
}

.hero-spin-text {
    width: 100%;
    height: 100%;
    animation: hero-spin 16s linear infinite;
    transform-box: fill-box;
    transform-origin: center;
    overflow: visible;
}

.hero-spin-text text {
    fill: rgba(251, 196, 17, 0.8);
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-spin-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-spin-icon svg {
    width: 42px;
    height: 42px;
    filter: drop-shadow(0 0 10px rgba(251,196,17,0.5));
}

@keyframes hero-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}


/* =========================================================
   DECORATIVE DOT GRIDS
   ========================================================= */
.dots-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* — Hero — */
.dots-decor--hero-bl {
    bottom: 60px; left: -10px;
    width: 260px; height: 260px;
    background-image:
        radial-gradient(circle, rgba(251,196,17,0.35) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(251,196,17,0.15) 3.5px, transparent 3.5px);
    background-size: 22px 22px, 66px 66px;
    background-position: 0 0, 11px 11px;
    mask-image: radial-gradient(ellipse at bottom left, black 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at bottom left, black 20%, transparent 72%);
}
.dots-decor--hero-tr {
    top: 90px; right: 0;
    width: 200px; height: 200px;
    background-image:
        radial-gradient(circle, rgba(251,196,17,0.2) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(251,196,17,0.08) 3px, transparent 3px);
    background-size: 24px 24px, 72px 72px;
    background-position: 0 0, 12px 12px;
    mask-image: radial-gradient(ellipse at top right, black 15%, transparent 68%);
    -webkit-mask-image: radial-gradient(ellipse at top right, black 15%, transparent 68%);
}

/* — Programs — */
.dots-decor--programs-tr {
    top: -20px; right: -20px;
    width: 300px; height: 220px;
    background-image:
        radial-gradient(circle, rgba(251,196,17,0.28) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(251,196,17,0.12) 4px, transparent 4px);
    background-size: 24px 24px, 72px 72px;
    background-position: 0 0, 12px 12px;
    mask-image: radial-gradient(ellipse at top right, black 20%, transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at top right, black 20%, transparent 72%);
}
.dots-decor--programs-bl {
    bottom: -20px; left: -20px;
    width: 240px; height: 200px;
    background-image:
        radial-gradient(circle, rgba(251,196,17,0.22) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(251,196,17,0.1) 3.5px, transparent 3.5px);
    background-size: 26px 26px, 78px 78px;
    background-position: 0 0, 13px 13px;
    mask-image: radial-gradient(ellipse at bottom left, black 15%, transparent 68%);
    -webkit-mask-image: radial-gradient(ellipse at bottom left, black 15%, transparent 68%);
}

/* — Testimonials — */
.dots-decor--testimonials-tl {
    top: -20px; left: -20px;
    width: 260px; height: 220px;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.12) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(251,196,17,0.14) 3.5px, transparent 3.5px);
    background-size: 22px 22px, 66px 66px;
    background-position: 0 0, 11px 11px;
    mask-image: radial-gradient(ellipse at top left, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top left, black 20%, transparent 70%);
}
.dots-decor--testimonials-br {
    bottom: -20px; right: -20px;
    width: 260px; height: 220px;
    background-image:
        radial-gradient(circle, rgba(251,196,17,0.2) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(255,255,255,0.08) 3.5px, transparent 3.5px);
    background-size: 22px 22px, 66px 66px;
    background-position: 0 0, 11px 11px;
    mask-image: radial-gradient(ellipse at bottom right, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at bottom right, black 20%, transparent 70%);
}

/* — Why Book — */
.dots-decor--why-tr {
    top: -20px; right: -20px;
    width: 260px; height: 240px;
    background-image:
        radial-gradient(circle, rgba(251,196,17,0.22) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(251,196,17,0.1) 4px, transparent 4px);
    background-size: 24px 24px, 72px 72px;
    background-position: 0 0, 12px 12px;
    mask-image: radial-gradient(ellipse at top right, black 18%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top right, black 18%, transparent 70%);
}
.dots-decor--why-bl {
    bottom: -20px; left: -20px;
    width: 220px; height: 200px;
    background-image:
        radial-gradient(circle, rgba(251,196,17,0.18) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(251,196,17,0.08) 3.5px, transparent 3.5px);
    background-size: 22px 22px, 66px 66px;
    background-position: 0 0, 11px 11px;
    mask-image: radial-gradient(ellipse at bottom left, black 15%, transparent 68%);
    -webkit-mask-image: radial-gradient(ellipse at bottom left, black 15%, transparent 68%);
}


/* =========================================================
   VIDEO BAND
   ========================================================= */
.stats-band {
    background: linear-gradient(to bottom, transparent 0px, transparent 220px, #030303 320px);
    border-top: none;
    padding: 4rem 0 6rem;
    position: relative;
    overflow: visible;
    margin-top: -320px;
    padding-top: 320px;
}

.video-band-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 92%;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 10;
    transform: translateY(-80px);
}

.video-band-text {
    flex: 1;
    text-align: center;
    margin-top: 40px;
}

.video-band-text--left { text-align: right; }
.video-band-text--right { text-align: left; }

.vbt-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}


.vbt-body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    max-width: 240px;
    margin-left: auto;
}

.video-band-text--right .vbt-body {
    margin-left: 0;
    margin-right: auto;
}

.video-embed-wrapper {
    width: 500px;
    height: 300px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(251,196,17,0.2);
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.video-embed-wrapper iframe,
.video-embed-wrapper video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,8,16,0.65);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: opacity 0.35s ease;
    z-index: 2;
    text-align: center;
    padding: 1.5rem;
}

.video-play-overlay.is-playing {
    opacity: 0;
    pointer-events: none;
}

.vpo-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(251,196,17,0.12);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0.75rem 0;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.vpo-play-btn:hover {
    background: rgba(251,196,17,0.28);
    transform: scale(1.1);
    box-shadow: 0 0 28px rgba(251,196,17,0.4);
}

.vpo-play-btn svg { width: 100%; height: 100%; }

.vol-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.vol-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold);
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.vol-name {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 1;
}

.vol-rule {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 0.25rem auto;
}

.vol-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(220,220,220,0.8);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: #0d0d0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.video-placeholder svg { width: 80px; height: 80px; }

.video-placeholder p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #555;
}

/* =========================================================
   VIDEO MODAL
   ========================================================= */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.video-modal.is-open {
    opacity: 1;
    pointer-events: all;
}
.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3,3,3,0.92);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.video-modal-container {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 32px 100px rgba(0,0,0,0.85);
    transform: scale(0.94);
    transition: transform 0.3s ease;
}
.video-modal.is-open .video-modal-container {
    transform: scale(1);
}
.video-modal-container video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}
.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    z-index: 10;
    transition: background 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}
.video-modal-close:hover {
    background: rgba(0,0,0,0.85);
    transform: scale(1.1);
}
.video-modal-close svg { width: 18px; height: 18px; }

/* =========================================================
   TRUSTED BY SECTION
   ========================================================= */
.trusted-by-section {
    background: var(--off-white);
    padding: 1.75rem 0;
    position: relative;
    overflow: hidden;
}

.trusted-by-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.trusted-by-heading {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888;
    white-space: nowrap;
    flex-shrink: 0;
    margin-bottom: 0;
}

.trusted-by-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.tb-logo {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.4;
    color: #aaa;
    transition: color var(--transition);
    max-width: 130px;
    filter: grayscale(1);
}
.tb-logo:hover { color: #444; }

.tb-logo-img {
    max-height: 48px;
    width: auto;
    filter: grayscale(100%) contrast(0.6);
    opacity: 0.65;
    mix-blend-mode: multiply;
    transition: opacity var(--transition), filter var(--transition);
}
.tb-logo-img--lg { max-height: 120px; }
.tb-logo-img:hover { opacity: 1; filter: grayscale(100%) contrast(1); }


/* =========================================================
   PROGRAMS — PANEL LAYOUT
   ========================================================= */
.programs {
    background: #F0F0F0;
    position: relative;
    padding-bottom: 3rem;
}

/* ---- Header ---- */
.programs-header {
    position: relative;
    text-align: center;
    padding: 5rem 1.5rem 3rem;
    overflow: hidden;
    background: linear-gradient(160deg, #0e0e12 0%, #16141a 100%);
}

.programs-header::before,
.programs-header::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 280px;
    height: 300%;
    background: repeating-linear-gradient(
        -55deg,
        transparent 0px,
        transparent 22px,
        rgba(251,196,17,0.05) 22px,
        rgba(251,196,17,0.05) 32px
    );
    pointer-events: none;
    z-index: 0;
}
.programs-header::before {
    left: -50px;
    mask-image: linear-gradient(to right, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
}
.programs-header::after {
    right: -50px;
    mask-image: linear-gradient(to left, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
}

.programs-header-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.programs-header-inner {
    position: relative;
    z-index: 2;
}

.programs-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.programs-eyebrow-line {
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
    opacity: 0.7;
}
.programs-eyebrow-line:last-child {
    background: linear-gradient(270deg, transparent, var(--gold));
}

.programs-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-style: italic;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #FBC411 0%, #ffffff 55%, #FBC411 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.programs-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Decorative floating diamonds */
.programs-header-diamonds {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.phd {
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    opacity: 0.18;
}

.phd--1 { top: 22%; left: 8%; }
.phd--2 { top: 55%; right: 10%; width: 5px; height: 5px; opacity: 0.12; }
.phd--3 { bottom: 15%; left: 18%; width: 4px; height: 4px; opacity: 0.1; }

/* ---- Panels ---- */
.programs-panels {
    display: flex;
    min-height: 52vh;
    gap: 10px;
    margin: 0 40px 4rem;
    overflow: hidden;
    border-radius: 8px;
}

.panel {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    border-radius: 6px;
}
.panel:last-child { border-right: none; }

.panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.15) 100%
    );
    transition: opacity 0.5s ease;
    z-index: 1;
}

.panel:hover::before {
    opacity: 0.55;
}

.programs-panels:has(.panel:hover) .panel:not(:hover)::before {
    opacity: 1.2;
    background: linear-gradient(
        to top,
        rgba(0,0,0,1) 0%,
        rgba(0,0,0,0.9) 100%
    );
}

/* Gold left-edge accent */
.panel::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--gold), rgba(251,196,17,0.3));
    transition: height 0.5s ease;
    z-index: 3;
}
.panel:hover::after { height: 100%; }

/* Large faded panel number */
.panel-num {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-head);
    font-size: 5.5rem;
    line-height: 1;
    color: rgba(255,255,255,0.06);
    z-index: 2;
    transition: color 0.5s ease;
    user-select: none;
}

.panel:hover .panel-num {
    color: rgba(251,196,17,0.12);
}

/* Icon */
.panel-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    z-index: 3;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.panel-icon svg {
    width: 100%;
    height: 100%;
    stroke: none;
    filter: drop-shadow(3px 8px 18px rgba(0,0,0,0.9));
}

.panel:hover .panel-icon {
    opacity: 1;
    transform: translateY(0);
}

.panel-content {
    position: absolute;
    bottom: 2.8rem;
    left: 2.2rem;
    right: 1.5rem;
    z-index: 3;
}

.panel-title {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 3.2vw, 4rem);
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    line-height: 0.92;
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.panel:hover .panel-title {
    color: var(--white);
}

.panel-sub {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.7rem;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease 0.06s, transform 0.4s ease 0.06s;
}

.panel:hover .panel-sub {
    opacity: 1;
    transform: translateY(0);
}

.panel-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    border-bottom: 1px solid rgba(251,196,17,0.35);
    padding-bottom: 2px;
}

.panel:hover .panel-link {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
    background: #030303 url('../images/Testimonial.png') center center / cover no-repeat;
    padding: 5.5rem 0 6rem;
    border-top: 1px solid rgba(251,196,17,0.15);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.92) 65%, rgba(0,0,0,1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ---- Decorative quote mark ---- */
.t-quote-mark {
    position: absolute;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28rem;
    line-height: 1;
    top: 50%;
    left: 50%;
    transform: translate(-48%, -58%);
    background: linear-gradient(135deg, rgba(251,196,17,0.35) 0%, rgba(251,196,17,0.08) 50%, rgba(251,196,17,0.35) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    animation: t-quote-shimmer 5s ease-in-out infinite;
}
@keyframes t-quote-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}


.testimonials > .container {
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header .section-label {
    display: block;
    text-align: center;
}

.testimonials-header .section-title {
    margin-bottom: 0;
    color: var(--white);
}

.testimonials-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.testimonials-track-outer {
    flex: 1;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    min-width: 100%;
    padding: 2rem 3.5rem;
    border: 1.5px solid rgba(251,196,17,0.55);
    border-radius: 12px;
}

.testimonial-card--featured {
    border-top-color: var(--gold);
}

.t-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}

.t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--black);
    flex-shrink: 0;
}

.t-avatar--mg { background: var(--gold); }
.t-avatar--ph { background: #a78bfa; }
.t-avatar--yp { background: #34d399; }

.t-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
}

.testimonial-card p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;
    margin-bottom: 1.8rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.15rem;
}

.testimonial-author span {
    font-size: 0.72rem;
    color: var(--grey);
}

/* Carousel arrows */
.carousel-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.carousel-arrow svg {
    width: 18px;
    height: 18px;
}

.carousel-arrow:hover {
    border-color: var(--gold);
    background: rgba(251,196,17,0.1);
    color: var(--gold);
}

/* Value props */
.value-props {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 2.5rem;
}

.vp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1.5rem 1rem;
}

.vp-item svg {
    width: 45px;
    height: 45px;
    stroke: none;
    filter: drop-shadow(3px 8px 18px rgba(0,0,0,0.9));
}

.vp-item strong {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.3;
}

/* =========================================================
   WHY BOOK RYAN
   ========================================================= */
.why-book {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.why-book-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.why-book-photo {
    position: relative;
    overflow: hidden;
}

.why-book-photo img {
    width: 100%;
    height: calc(115% + 120px);
    margin-top: -7.5%;
    object-fit: cover;
    clip-path: inset(0 0 120px 0);
    object-position: center top;
    display: block;
    filter: contrast(1.05) brightness(1.02);
    will-change: transform;
}

.why-book-content {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-book-heading {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 3.5vw, 3.5rem);
    font-style: italic;
    text-transform: uppercase;
    color: #111;
    line-height: 1;
    margin-bottom: 1rem;
}

.why-book-divider {
    width: 60px;
    height: 4px;
    background: var(--gold);
    margin-bottom: 2.5rem;
    border-radius: 2px;
}

.why-book-reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.reason-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.reason-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    border: 2.5px solid #FBC411;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.reason-icon svg {
    width: 33px;
    height: 33px;
    stroke: none;
    filter: drop-shadow(3px 8px 18px rgba(0,0,0,0.35));
}

.reason-body strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 0.35rem;
}

.reason-body p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   CTA GOLD BAND
   ========================================================= */
.cta-gold {
    background: var(--gold);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-gold::before,
.cta-gold::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 320px;
    height: 300%;
    background: repeating-linear-gradient(
        -55deg,
        transparent 0px,
        transparent 22px,
        rgba(255,255,255,0.08) 22px,
        rgba(255,255,255,0.08) 32px
    );
    pointer-events: none;
    z-index: 0;
}
.cta-gold::before {
    left: -60px;
    mask-image: linear-gradient(to right, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
}
.cta-gold::after {
    right: -60px;
    mask-image: linear-gradient(to left, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
}

.cta-gold-inner {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.cta-gold-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-gold-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--black);
}

.cta-gold-text { flex: 1; }

.cta-gold-text h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-style: italic;
    text-transform: uppercase;
    color: var(--black);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.cta-gold-text p {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.65);
    line-height: 1.5;
}

.cta-gold-btn {
    flex-shrink: 0;
    font-size: 0.78rem;
    padding: 1rem 2.4rem;
    animation: pulse-gold 2.8s ease-in-out infinite;
}
.cta-gold-btn:hover { animation: none; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: #030303;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
}
.site-footer::before,
.site-footer::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 280px;
    height: 300%;
    background: repeating-linear-gradient(
        -55deg,
        transparent 0px,
        transparent 22px,
        rgba(255,255,255,0.01) 22px,
        rgba(255,255,255,0.01) 32px
    );
    pointer-events: none;
    z-index: 0;
}
.site-footer::before {
    left: -40px;
    mask-image: linear-gradient(to right, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
}
.site-footer::after {
    right: -40px;
    mask-image: linear-gradient(to left, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
}

.footer-logo-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateY(-50px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    line-height: 1.1;
    gap: 0;
}
.flw-line1 {
    font-family: var(--font-head);
    font-size: 11vw;
    font-style: italic;
    font-weight: 700;
    color: #888;
    white-space: nowrap;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.flw-line2 {
    font-family: var(--font-head);
    margin-top: -2.5vw;
    font-size: 6.6vw;
    font-style: italic;
    font-weight: 400;
    color: #888;
    white-space: nowrap;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-inner {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3.5rem 0 6.625rem;
}

/* Large social circles */
.footer-social-circles {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem;
    flex: 1;
}
.fsc-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold);
    color: #030303;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}
.fsc-btn svg {
    width: 26px;
    height: 26px;
}
.fsc-btn:hover {
    background: var(--white);
    color: #030303;
}

/* Footer spin badge */
.footer-spin-badge {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.footer-spin-text {
    width: 100%;
    height: 100%;
    animation: hero-spin 16s linear infinite;
    transform-box: fill-box;
    transform-origin: center;
}
.footer-spin-text text {
    fill: rgba(251,196,17,0.7);
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.footer-spin-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-spin-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 10px rgba(251,196,17,0.5));
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.footer-logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.footer-logo-line1 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
}

.footer-logo-line2 {
    font-family: var(--font-head);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.footer-tagline {
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.7;
    margin-top: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(251,196,17,0.08);
}

.footer-col-title {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    font-size: 0.84rem;
    color: var(--grey);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-col--subscribe {}

.footer-subscribe-text {
    font-size: 0.84rem;
    color: var(--grey);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.footer-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-subscribe-form input {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--white);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.84rem;
    outline: none;
    border-radius: 4px;
    transition: border-color var(--transition);
}
.footer-subscribe-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer-subscribe-form input:focus { border-color: var(--gold); }

.footer-subscribe-form .btn-gold {
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.7rem;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.4rem 0;
    text-align: center;
    background: #030303;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.visible { opacity: 1 !important; transform: none !important; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
    .video-embed-wrapper { width: 90%; max-width: 500px; height: 280px; }
    .video-band-inner { flex-direction: column; gap: 2rem; }
    .video-band-text--left,
    .video-band-text--right { text-align: center; }
    .video-band-text--left .vbt-body,
    .video-band-text--right .vbt-body { margin: 0 auto; }
    .programs-panels { flex-direction: column; min-height: unset; }
    .panel { min-height: 220px; }
    .why-book-reasons { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
    .why-book-inner { grid-template-columns: 1fr; }
    .why-book-photo { padding: 3rem 2rem; }
    .why-book-circle { width: 280px; height: 280px; }
    .why-book-content { padding: 3rem 2.5rem; }
    .why-book-reasons { grid-template-columns: 1fr 1fr; }
    .value-props { grid-template-columns: repeat(2, 1fr); }
    .cta-gold-inner { flex-wrap: wrap; }
    .testimonials-track { grid-template-columns: 1fr; }
    .carousel-arrow { display: none; }
}

@media (max-width: 768px) {
    .hero-bg-img { background-position: 80% 10%; }

    .nav-toggle { display: flex; }

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        gap: 0;
        transition: right var(--transition);
        border-left: 1px solid rgba(251,196,17,0.15);
        z-index: 999;
    }

    .primary-nav.open { right: 0; }

    .nav-menu {
        flex-direction: column;
        gap: 1.4rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .nav-menu a { font-size: 0.9rem; }

    .hero-inner { padding-top: 90px; padding-bottom: 4rem; }
    .hero-text { max-width: 100%; }

    .trusted-by-inner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        text-align: center;
        width: 100%;
    }
    .trusted-by-heading {
        white-space: normal;
        text-align: center;
        width: 100%;
    }
    .trusted-by-grid {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
    }
    .tb-logo-img {
        display: block;
        margin: 0 auto;
    }

    .panel { min-height: 180px; }

    .testimonials-track { gap: 1rem; }

    .why-book-reasons { grid-template-columns: 1fr; }

    .cta-gold-icon { display: none; }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding-bottom: 3rem;
    }
    .footer-brand {
        align-items: center;
    }
    .footer-spin-badge { display: none; }
    .footer-social-circles {
        order: 3;
        justify-content: center;
        flex: none;
        gap: 0.75rem;
    }
    .fsc-btn { width: 48px; height: 48px; }
    .fsc-btn svg { width: 20px; height: 20px; }
}

@media (max-width: 520px) {
    .hero-spin-badge { display: none; }
    .hero-ctas { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .hero-as-seen { flex-direction: column; align-items: flex-start; }
    .value-props { grid-template-columns: 1fr 1fr; }
    .why-book-circle { width: 220px; height: 220px; }
    .why-book-content { padding: 2rem 1.5rem; }

    .hero-headline .hl-white { font-size: 2rem; }
    .hero-headline .hl-gold  { font-size: 2.2rem; }
}

@media (max-width: 360px) {
    .hero-headline .hl-white { font-size: 1.7rem; }
    .hero-headline .hl-gold  { font-size: 1.9rem; }
}

/* =========================================================
   ACTIVE NAV STATE
   ========================================================= */
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: var(--gold);
}
.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after {
    width: 100%;
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */

/* Hero */
.svc-hero {
    position: relative;
    background: linear-gradient(to bottom, #0d0d0d 60%, #111 100%);
    padding: 180px 0 100px;
    overflow: hidden;
}

.svc-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.svc-hero-headline {
    font-family: var(--font-head);
    text-transform: uppercase;
    line-height: 0.92;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.svc-hero-headline .hl-white { font-size: clamp(2.8rem, 5.5vw, 6rem); }
.svc-hero-headline .hl-gold  { font-size: clamp(3.2rem, 6.5vw, 7rem); }

.svc-hero-sub {
    font-size: 1.05rem;
    color: rgba(220,220,220,0.82);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.svc-hero-cta { margin-top: 0.5rem; }

/* Services Grid */
.svc-grid-section {
    position: relative;
    background: var(--dark);
    padding: 100px 0 120px;
    overflow: hidden;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.svc-card {
    position: relative;
    background: var(--dark-2);
    padding: 3rem 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: background var(--transition);
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s ease;
}

.svc-card:hover { background: #1c1c1c; }
.svc-card:hover::before { height: 100%; }

.svc-card-num {
    font-family: var(--font-head);
    font-size: 5rem;
    line-height: 1;
    color: rgba(251,196,17,0.08);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    letter-spacing: -0.02em;
    transition: color var(--transition);
    pointer-events: none;
}
.svc-card:hover .svc-card-num { color: rgba(251,196,17,0.14); }

.svc-card-icon {
    width: 54px;
    height: 54px;
    background: rgba(251,196,17,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    transition: background var(--transition);
}
.svc-card:hover .svc-card-icon { background: rgba(251,196,17,0.18); }

.svc-card-icon svg {
    width: 28px;
    height: 28px;
}

.svc-card-body { flex: 1; }

.svc-card-title {
    font-family: var(--font-head);
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-style: italic;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.svc-card-desc {
    font-size: 0.92rem;
    color: rgba(240,240,240,0.65);
    line-height: 1.7;
    margin-bottom: 1.4rem;
}

.svc-card-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.svc-card-list li {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(240,240,240,0.55);
    padding-left: 1.2rem;
    position: relative;
}

.svc-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.svc-card-cta {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: auto;
    transition: color var(--transition), gap var(--transition);
    gap: 0.3rem;
}
.svc-card-cta:hover { color: var(--gold-light); gap: 0.6rem; }

/* Process Strip */
.svc-process {
    background: var(--off-white);
    padding: 100px 0;
}

.svc-process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.svc-process-header .section-label { display: block; text-align: center; }

.svc-process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.svc-step {
    flex: 1;
    max-width: 220px;
    text-align: center;
}

.svc-step-num {
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-style: italic;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 20px rgba(251,196,17,0.35);
}

.svc-step-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-style: italic;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
}

.svc-step-desc {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
}

.svc-step-divider {
    flex-shrink: 0;
    padding: 0 1rem;
    margin-top: 17px;
    opacity: 0.7;
}

.svc-step-divider svg {
    width: 40px;
    height: 12px;
}

/* =========================================================
   SERVICES PAGE — RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .svc-grid { grid-template-columns: 1fr; }
    .svc-process-steps { flex-wrap: wrap; gap: 2.5rem; justify-content: center; }
    .svc-step-divider { display: none; }
    .svc-step { max-width: 100%; text-align: left; display: flex; gap: 1.2rem; align-items: flex-start; }
    .svc-step-num { flex-shrink: 0; margin: 0; }
}

@media (max-width: 640px) {
    .svc-hero { padding: 140px 0 70px; }
    .svc-card { padding: 2rem 1.5rem 2rem; }
    .svc-process-steps { flex-direction: column; align-items: center; gap: 2.5rem; }
    .svc-step { flex-direction: column; text-align: center; width: 100%; max-width: 300px; flex: none; }
    .svc-step-num { margin: 0 auto; }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

/* Hero */
.about-hero {
    position: relative;
    background: url('../images/RB Hero Fin.png') 52% 35% / auto 120% no-repeat;
    background-color: #060810;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,  rgba(6,8,16,0.95) 0%, rgba(6,8,16,0.75) 35%, rgba(6,8,16,0.20) 58%, transparent 72%),
        linear-gradient(to bottom, rgba(6,8,16,0.92) 0%, rgba(6,8,16,0.60) 9%, transparent 22%),
        linear-gradient(to top,    rgba(6,8,16,0.85) 0%, transparent 25%);
    z-index: 1;
}

.about-hero-inner { position: relative; z-index: 2; }

.about-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.about-hero-headline {
    font-family: var(--font-head);
    text-transform: uppercase;
    line-height: 0.88;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
}
.about-hero-headline .hl-white { font-size: clamp(3rem, 5.5vw, 6rem); }
.about-hero-headline .hl-gold  { font-size: clamp(3.5rem, 7vw, 7.5rem); }

.about-hero-subtitle {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.8rem;
}

.about-hero-desc {
    font-size: 1.05rem;
    color: rgba(220,220,220,0.82);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.about-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Photo column */
.about-hero-photo {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-photo-glow {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251,196,17,0.22) 0%, rgba(251,196,17,0.07) 50%, transparent 72%);
    pointer-events: none;
}

.about-photo-ring {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1.5px solid rgba(251,196,17,0.2);
    pointer-events: none;
}

.about-photo-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.6));
}

/* Story Section */
.about-story {
    background: var(--off-white);
    padding: 110px 0;
}

.about-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-story-media {
    position: relative;
}

.about-story-img {
    width: 100%;
    border-radius: 4px;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.about-story-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gold);
    color: var(--black);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
    box-shadow: 0 8px 32px rgba(251,196,17,0.4);
}

.asb-num {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.02em;
}

.asb-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.3;
}

.about-story-content p {
    font-size: 0.98rem;
    color: #3a3a3a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-story-content p em {
    font-style: italic;
    color: var(--black);
    font-weight: 600;
}

/* Core Values */
.about-values {
    position: relative;
    background: var(--dark);
    padding: 110px 0;
    overflow: hidden;
}

.about-values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-values-header .section-label { display: block; text-align: center; }
.about-values-header .section-title { color: var(--white); }

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
}

.av-card {
    background: var(--dark-2);
    padding: 2.5rem 2rem;
    position: relative;
    transition: background var(--transition);
    overflow: hidden;
}

.av-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.av-card:hover { background: #1c1c1c; }
.av-card:hover::after { width: 100%; }

.av-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(251,196,17,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: background var(--transition);
}
.av-card:hover .av-card-icon { background: rgba(251,196,17,0.18); }

.av-card-icon svg {
    width: 26px;
    height: 26px;
}

.av-card-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-style: italic;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.8rem;
    letter-spacing: 0.03em;
}

.av-card-desc {
    font-size: 0.88rem;
    color: rgba(240,240,240,0.6);
    line-height: 1.7;
}

/* Community Section */
.about-community {
    background: var(--black);
    padding: 110px 0;
}

.about-community-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-community-content p {
    font-size: 0.98rem;
    color: rgba(240,240,240,0.7);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.about-community-content .section-title { color: var(--white); }

.about-community-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.ac-stat {
    display: flex;
    flex-direction: column;
}

.ac-stat-num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}

.ac-stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(240,240,240,0.45);
    margin-top: 0.3rem;
}

.about-community-photo img {
    width: 100%;
    border-radius: 4px;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* =========================================================
   ABOUT PAGE — RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .about-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 130px;
    }
    .about-hero-text { order: 1; }
    .about-hero-photo { order: 2; margin-top: 2rem; }
    .about-hero-desc { margin-left: auto; margin-right: auto; }
    .about-hero-ctas { justify-content: center; }
    .about-photo-img { max-width: 320px; }
    .about-photo-glow { width: 320px; height: 320px; }
    .about-photo-ring { width: 260px; height: 260px; }
    .about-story-inner,
    .about-community-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-story-badge { right: 0; bottom: -1rem; }
}

@media (max-width: 640px) {
    .about-values-grid { grid-template-columns: 1fr; }
    .about-community-stats { gap: 1.5rem; }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

/* Hero */
.contact-hero {
    position: relative;
    background: linear-gradient(to bottom, #0d0d0d 60%, #111 100%);
    padding: 180px 0 100px;
    overflow: hidden;
}

.contact-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.contact-hero-headline {
    font-family: var(--font-head);
    text-transform: uppercase;
    line-height: 0.88;
    margin-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
}
.contact-hero-headline .hl-white { font-size: clamp(3rem, 6vw, 6.5rem); }
.contact-hero-headline .hl-gold  { font-size: clamp(3.8rem, 8vw, 8.5rem); }

.contact-hero-sub {
    font-size: 1.05rem;
    color: rgba(220,220,220,0.82);
    line-height: 1.65;
    max-width: 520px;
}

/* Body layout */
.contact-body {
    background: var(--off-white);
    padding: 100px 0 120px;
}

.contact-body-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 5rem;
    align-items: flex-start;
}

/* Notices */
.contact-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-notice svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-notice strong { display: block; font-weight: 700; margin-bottom: 0.2rem; }
.contact-notice p { margin: 0; opacity: 0.8; }

.contact-notice--success {
    background: #e6f9f0;
    border: 1px solid #52c98a;
    color: #1a6640;
}
.contact-notice--success svg { stroke: #52c98a; }

.contact-notice--error {
    background: #fdf0ef;
    border: 1px solid #e56b5f;
    color: #7a2920;
}
.contact-notice--error svg { stroke: #e56b5f; }

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.cf-row {
    display: flex;
    gap: 1.4rem;
}

.cf-row--2 > .cf-field { flex: 1; }

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cf-field label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
}

.cf-req { color: var(--gold); }

.cf-field input,
.cf-field select,
.cf-field textarea {
    width: 100%;
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    padding: 0.85rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--black);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.cf-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(251,196,17,0.15);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder { color: #bbb; }

.cf-field textarea { resize: vertical; min-height: 130px; }

.cf-submit {
    align-self: flex-start;
    margin-top: 0.5rem;
    padding: 1rem 2.2rem;
}

/* Info column */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--black);
    border-radius: 8px;
    overflow: hidden;
    padding: 2.5rem 2rem;
    position: sticky;
    top: 110px;
}

.ci-block {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ci-block:first-child { padding-top: 0; }
.ci-block:last-of-type { border-bottom: none; }

.ci-icon {
    width: 40px;
    height: 40px;
    background: rgba(251,196,17,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
}

.ci-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.25rem;
}

.ci-value {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    font-weight: 500;
    word-break: break-word;
}

a.ci-value:hover { color: var(--gold); }

.ci-social {
    padding-top: 1.6rem;
    margin-top: 0.4rem;
}

.ci-social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.ci-social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: background var(--transition), color var(--transition);
}

.ci-social-btn svg { width: 16px; height: 16px; }

.ci-social-btn:hover {
    background: var(--gold);
    color: var(--black);
}

/* =========================================================
   CONTACT PAGE — RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
    .contact-body-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info { position: static; }
}

@media (max-width: 640px) {
    .contact-hero { padding: 140px 0 70px; }
    .cf-row--2 { flex-direction: column; }
    .cf-submit { width: 100%; justify-content: center; }
}

/* =========================================================
   BOOK RYAN PAGE
   ========================================================= */

/* Hero */
.br-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #060810;
    overflow: hidden;
}

.br-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.br-hero-bg-img {
    position: absolute;
    inset: 0;
    background: url('../BookRyan.jpg') 62% center / cover no-repeat;
}

.br-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,0,0,0.40), rgba(0,0,0,0.40)),
        linear-gradient(
            to right,
            rgba(6,8,16,0.88) 0%,
            rgba(6,8,16,0.55) 38%,
            rgba(6,8,16,0.10) 56%,
            transparent 68%
        );
}

.br-hero-inner {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 110px;
    padding-bottom: 3rem;
}

.br-hero-text { max-width: 580px; }

/* Spin badge position override for Book Ryan hero */
.br-hero-spin-badge {
    bottom: auto;
    right: auto;
    left: 56%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.br-hero-headline {
    font-family: var(--font-head);
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}
.br-hero-headline .hl-white { font-size: clamp(3rem, 6vw, 6.5rem); }
.br-hero-headline .hl-gold  { font-size: clamp(3.8rem, 8vw, 8.5rem); }

.br-hero-sub {
    font-size: 1.05rem;
    color: rgba(220,220,220,0.82);
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.br-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Stats bar */
.br-hero-stats {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(251,196,17,0.15);
    padding: 1.8rem 0;
}

.br-hero-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.br-stat {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.br-stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
    letter-spacing: 0.02em;
}

.br-stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.br-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

/* Engagement Cards */
.br-engagements {
    position: relative;
    background: var(--dark);
    padding: 110px 0;
    overflow: hidden;
}

.br-engagements-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.br-engagements-header .section-label { display: block; text-align: center; }
.br-engagements-header .section-title { color: var(--white); }

.br-engagement-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
}

.br-ec {
    position: relative;
    background: var(--dark-2);
    padding: 2.8rem 2.2rem;
    display: flex;
    flex-direction: column;
    transition: background var(--transition);
}

.br-ec:hover { background: #1c1c1c; }

.br-ec--featured {
    background: var(--gold);
}
.br-ec--featured:hover { background: var(--gold-light); }

.br-ec-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--black);
    color: var(--gold);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.br-ec-icon {
    width: 54px;
    height: 54px;
    background: rgba(0,0,0,0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.br-ec:not(.br-ec--featured) .br-ec-icon { background: rgba(251,196,17,0.1); }
.br-ec:not(.br-ec--featured):hover .br-ec-icon { background: rgba(251,196,17,0.18); }

.br-ec-icon svg { width: 28px; height: 28px; }

.br-ec-title {
    font-family: var(--font-head);
    font-size: 1.7rem;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 0.9rem;
    color: var(--white);
}

.br-ec--featured .br-ec-title { color: var(--black); }

.br-ec-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.4rem;
    flex: 1;
    color: rgba(240,240,240,0.65);
}

.br-ec--featured .br-ec-desc { color: rgba(10,10,10,0.75); }

.br-ec-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.br-ec-list li {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(240,240,240,0.5);
    padding-left: 1.2rem;
    position: relative;
}

.br-ec--featured .br-ec-list li { color: rgba(10,10,10,0.6); }

.br-ec-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.br-ec--featured .br-ec-list li::before { background: var(--black); }

.br-ec-cta {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: auto;
    transition: color var(--transition);
}

.br-ec-cta:hover { color: var(--gold-light); }
.br-ec--featured .br-ec-cta { color: var(--black); }
.br-ec--featured .br-ec-cta:hover { color: #333; }

/* Booking Form */
.br-form-section {
    position: relative;
    background: var(--off-white);
    padding: 110px 0 120px;
    overflow: hidden;
}

.br-form-inner {
    max-width: 760px;
}

.br-form-heading {
    margin-bottom: 3rem;
}

.br-form-heading .section-title { margin-bottom: 0.75rem; }

.br-form-sub {
    font-size: 0.98rem;
    color: #555;
    line-height: 1.7;
}

.br-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.cf-row--3 {
    display: flex;
    gap: 1.4rem;
}

.cf-row--3 > .cf-field { flex: 1; }

.br-submit {
    align-self: flex-start;
    padding: 1rem 2.4rem;
    font-size: 0.8rem;
}

/* FAQ */
.br-faq {
    background: var(--dark);
    padding: 110px 0 120px;
}

.br-faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.br-faq-header .section-label { display: block; text-align: center; }
.br-faq-header .section-title { color: var(--white); }

.br-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.br-faq-item {
    background: var(--dark-2);
    overflow: hidden;
}

.br-faq-item:first-child { border-radius: 6px 6px 0 0; }
.br-faq-item:last-child  { border-radius: 0 0 6px 6px; }

.br-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.4rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    transition: background var(--transition), color var(--transition);
    user-select: none;
}

.br-faq-q::-webkit-details-marker { display: none; }
.br-faq-item[open] .br-faq-q { color: var(--gold); background: #1c1c1c; }

.br-faq-arrow svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform var(--transition);
    stroke: currentColor;
}
.br-faq-item[open] .br-faq-arrow svg { transform: rotate(180deg); }

.br-faq-a {
    padding: 0 1.8rem 1.6rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.br-faq-a p {
    font-size: 0.92rem;
    color: rgba(240,240,240,0.65);
    line-height: 1.8;
    margin-top: 1rem;
}

/* =========================================================
   BOOK RYAN PAGE — RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
    .br-engagement-cards { grid-template-columns: 1fr; }
    .br-hero-stats-inner { flex-wrap: wrap; gap: 1.5rem; }
    .br-stat-divider { display: none; }
    .cf-row--3 { flex-direction: column; }
    .br-hero-spin-badge { display: none; }
}

@media (max-width: 640px) {
    .br-submit { width: 100%; justify-content: center; }
    .br-faq-q { padding: 1.2rem 1.2rem; font-size: 0.88rem; }
    .br-faq-a { padding: 0 1.2rem 1.4rem; }
    .br-hero-bg-img { background-position: 80% 10%; }
}

/* =========================================================
   TESTIMONIALS PAGE
   ========================================================= */

.tm-hero {
    position: relative;
    background: linear-gradient(to bottom, #0d0d0d 60%, #111 100%);
    padding: 180px 0 100px;
    overflow: hidden;
}

.tm-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.tm-hero-headline {
    font-family: var(--font-head);
    text-transform: uppercase;
    line-height: 0.88;
    margin-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
}
.tm-hero-headline .hl-white { font-size: clamp(3rem, 6vw, 6.5rem); }
.tm-hero-headline .hl-gold  { font-size: clamp(3.8rem, 8vw, 8.5rem); }

.tm-hero-sub {
    font-size: 1.05rem;
    color: rgba(220,220,220,0.82);
    line-height: 1.65;
    max-width: 520px;
}

/* Letters section */
.tm-letters-section {
    background: var(--off-white);
    padding: 100px 0 120px;
}

.tm-letters-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 780px;
}

.tm-letter {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    overflow: hidden;
}

.tm-letter-header {
    background: var(--black);
    padding: 1.1rem 2.2rem;
    display: flex;
    align-items: center;
}

.tm-letter-org-badge {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.tm-letter-body {
    padding: 2.4rem 2.8rem 2.6rem;
    color: #1a1a1a;
    font-size: 0.97rem;
    line-height: 1.78;
}

.tm-letter-body p {
    margin: 0 0 1.1rem;
}

.tm-letter-body p:last-child {
    margin-bottom: 0;
}

.tm-salutation {
    font-style: italic;
    color: #555;
}

.tm-signature {
    margin-top: 1.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid #e8e8e8;
}

.tm-sig-close {
    font-style: italic;
    color: #555;
    margin-bottom: 0.3rem !important;
}

.tm-sig-name {
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--black);
    margin-bottom: 0.15rem !important;
}

.tm-sig-title {
    font-size: 0.88rem;
    color: #666;
    margin-bottom: 0 !important;
}

/* CTA */
.tm-cta-section {
    background: var(--black);
    padding: 100px 0 110px;
    text-align: center;
}

.tm-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.tm-cta-heading {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 5vw, 5rem);
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    margin: 0;
}

/* Testimonials page — responsive */
@media (max-width: 640px) {
    .tm-hero { padding: 140px 0 70px; }
    .tm-letter-body { padding: 1.8rem 1.4rem 2rem; }
    .tm-letter-header { padding: 1rem 1.4rem; }
}

/* =========================================================
   BOOK RYAN — VIDEO SECTION
   ========================================================= */

.br-video-section {
    background: var(--dark);
    padding: 100px 0 110px;
}

.br-video-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
}

.br-video-inner .section-title { color: var(--white); }

.br-video-embed {
    width: 100%;
    max-width: 840px;
    height: 473px;
}

@media (max-width: 900px) {
    .br-video-embed { height: 400px; }
}

@media (max-width: 640px) {
    .br-video-embed { height: 220px; }
}
