:root {
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --gold: #c9a862;
    --gold-light: #e4d4a5;
    --gold-dark: #9e7e3a;
    --white: #fefefe;
    --white-soft: #f5f4f0;
    --gray: #6a6a6a;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============ NAVIGATION ============ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--black);
    padding: 0 40px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.nav.scrolled {
    height: 65px;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav__logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
    text-decoration: none;
}

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

.nav__logo-img {
    height: 40px;
    width: auto;
}

.footer__logo-img {
    height: 34px;
    width: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav__link {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav__link:hover::after {
    width: 100%;
}

.nav__phone {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.nav__phone:hover {
    color: var(--gold-light);
}

.nav__phone svg {
    width: 16px;
    height: 16px;
}

/* Mobile Menu Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero__image.active {
    opacity: 1;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.4) 50%,
        rgba(10, 10, 10, 0.6) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    padding: 12px 28px;
    border: 1px solid var(--gold);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease 0.3s both;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero__title em {
    font-style: italic;
    color: var(--gold);
}

.hero__subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--white-soft);
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 40px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero__cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 98, 0.3);
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.6;
    animation: fadeIn 1s ease 1.2s both;
}

.hero__scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}

/* ============ INTRO TEXT SECTION ============ */
.intro {
    padding: 120px 40px;
    background: var(--white);
    text-align: center;
}

.intro__container {
    max-width: 800px;
    margin: 0 auto;
}

.intro__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 25px;
}

.intro__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 30px;
}

.intro__title em {
    font-style: italic;
    color: var(--gold-dark);
}

.intro__divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 30px;
}

.intro__text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.9;
    max-width: 650px;
    margin: 0 auto;
}

/* ============ VIDEO SECTION ============ */
.video {
    position: relative;
    padding: 100px 40px;
    background: var(--black);
    overflow: hidden;
}

.video__bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 98, 0.03));
    pointer-events: none;
}

.video__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.video__content {
    position: relative;
    z-index: 10;
}

.video__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}

.video__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 25px;
}

.video__title em {
    font-style: italic;
}

.video__text {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 35px;
}

.video__features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.video__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.05em;
}

.video__feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video__feature-icon svg {
    width: 10px;
    height: 10px;
    color: var(--black);
}

.video__player {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--black-light);
    border: 1px solid rgba(201, 168, 98, 0.2);
    overflow: hidden;
}

.video__player video,
.video__player iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video__play-btn:hover {
    background: var(--gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.video__play-btn svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    margin-left: 4px;
    transition: color 0.3s ease;
}

.video__play-btn:hover svg {
    color: var(--black);
}

/* ============ ABOUT / CREDENTIALS SECTION ============ */
.about {
    padding: 120px 40px;
    background: var(--white-soft);
}

.about__container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 25px;
}

.about__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 20px;
}

.about__divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 40px;
}

.about__text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.about__card {
    background: var(--white);
    padding: 50px 35px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.about__card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 25px;
    color: var(--gold);
}

.about__card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 15px;
}

.about__card-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}

/* ============ CONTACT SECTION ============ */
.contact {
    padding: 120px 40px;
    background: var(--black);
    position: relative;
}

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

.contact__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact__info {
    padding-right: 40px;
}

.contact__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
}

.contact__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.contact__divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 35px;
}

.contact__text {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact__detail-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(201, 168, 98, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact__detail-content h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.contact__detail-content p,
.contact__detail-content a {
    font-size: 1rem;
    font-weight: 300;
    color: var(--white);
    text-decoration: none;
    line-height: 1.6;
}

.contact__detail-content a:hover {
    color: var(--gold);
}

.contact__map {
    position: relative;
    height: 100%;
    min-height: 450px;
    border: 1px solid rgba(201, 168, 98, 0.2);
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.3s ease;
}

.contact__map:hover iframe {
    filter: grayscale(50%) contrast(1.05);
}

/* ============ FOOTER ============ */
.footer {
    padding: 40px;
    background: var(--black-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--white);
}

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

.footer__copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer__links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.footer__link {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ============ ANIMATIONS ============ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1.2);
        opacity: 1;
    }
}

/* ============ MOBILE STYLES ============ */
/* ============ PAGE HERO (interior pages) ============ */
.page-hero {
    position: relative;
    height: 45vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.page-hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.page-hero__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
}

.page-hero__title em {
    font-style: italic;
    color: var(--gold);
}

/* ============ CONTENT SECTIONS (interior pages) ============ */
.content-section {
    padding: 80px 40px;
}

.content-section--alt {
    background: var(--white-soft);
}

.content-section--dark {
    background: var(--black);
    color: var(--white);
}

.content-section__container {
    max-width: 900px;
    margin: 0 auto;
}

.content-section__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.content-section--dark .content-section__label {
    color: var(--gold);
}

.content-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 15px;
}

.content-section--dark .content-section__title {
    color: var(--white);
}

.content-section__title em {
    font-style: italic;
    color: var(--gold-dark);
}

.content-section--dark .content-section__title em {
    color: var(--gold);
}

.content-section__divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 30px;
}

.content-section__text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 20px;
}

.content-section--dark .content-section__text {
    color: rgba(255, 255, 255, 0.7);
}

.content-section__subtitle {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 12px;
    margin-top: 35px;
}

.content-section--dark .content-section__subtitle {
    color: var(--white);
}

/* ============ PROCEDURE CARDS (procedure landing pages) ============ */
.procedure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.procedure-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.procedure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.procedure-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 12px;
}

.procedure-card__text {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.procedure-card__link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.procedure-card__link:hover {
    color: var(--gold);
}

/* ============ CTA BANNER ============ */
.cta-banner {
    padding: 80px 40px;
    background: var(--black);
    text-align: center;
}

.cta-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-banner__title em {
    font-style: italic;
    color: var(--gold);
}

.cta-banner__text {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.cta-banner__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    transition: all 0.3s ease;
}

.cta-banner__btn--primary {
    background: var(--gold);
    color: var(--black);
}

.cta-banner__btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.cta-banner__btn--secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.cta-banner__btn--secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

/* ============ NAV DROPDOWN ============ */
.nav__item {
    position: relative;
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    border: 1px solid rgba(201, 168, 98, 0.15);
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    list-style: none;
}

.nav__item:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.nav__dropdown li a {
    display: block;
    padding: 10px 25px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav__dropdown li a:hover {
    color: var(--gold);
    background: rgba(201, 168, 98, 0.05);
}

/* ============ REVIEW CARDS ============ */
.review-card {
    background: var(--white);
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--gold);
}

.review-card__stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 15px;
}

.review-card__category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

/* ============ BIO SECTION ============ */
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.bio-image {
    width: 100%;
    border: 1px solid rgba(201, 168, 98, 0.2);
}

.bio-credentials {
    list-style: none;
    padding: 0;
}

.bio-credentials li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.bio-credentials li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}


@media (max-width: 1024px) {
    .video__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .video__content {
        text-align: center;
    }

    .video__features {
        justify-content: center;
    }

    .contact__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact__info {
        padding-right: 0;
        text-align: center;
    }

    .contact__divider {
        margin: 0 auto 35px;
    }

    .contact__details {
        align-items: center;
    }

    .contact__detail {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact__map {
        min-height: 350px;
    }

    .about__cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


@media (max-width: 768px) {
    .nav {
        padding: 0 20px;
    }

    .nav__links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav__links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__phone {
        display: none;
    }

    .hero {
        min-height: 600px;
    }

    .hero__badge {
        padding: 10px 20px;
        font-size: 0.6rem;
    }

    .intro,
    .about,
    .contact {
        padding: 80px 20px;
    }

    .video {
        padding: 80px 20px;
    }

    .footer__container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .page-hero {
        height: 35vh;
        min-height: 280px;
    }

    .content-section {
        padding: 60px 20px;
    }

    .cta-banner {
        padding: 60px 20px;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


@media (max-width: 480px) {
    .nav__logo {
        font-size: 1.1rem;
    }

    .nav__logo-img {
        height: 32px;
    }

    .footer__logo-img {
        height: 28px;
    }

    .hero__cta {
        padding: 15px 30px;
        font-size: 0.7rem;
    }

    .video__play-btn {
        width: 60px;
        height: 60px;
    }

    .about__card {
        padding: 40px 25px;
    }
}

/* ============ RATINGS / ACCOLADES BAR ============ */
.ratings {
    padding: 60px 40px;
    background: var(--black);
    border-top: 1px solid rgba(201, 168, 98, 0.15);
    border-bottom: 1px solid rgba(201, 168, 98, 0.15);
}

.ratings__container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.ratings__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
}

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

.ratings__card {
    display: block;
    padding: 30px 20px;
    border: 1px solid rgba(201, 168, 98, 0.15);
    text-align: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ratings__card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ratings__score {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.ratings__out-of {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.ratings__stars {
    position: relative;
    display: inline-block;
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.15);
}

.ratings__stars-filled {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--gold);
}

.ratings__count {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.ratings__source {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
}

.ratings__source a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .ratings { padding: 40px 20px; }
    .ratings__grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
        margin: 0 auto;
    }
    .ratings__score { font-size: 2.2rem; }
}

/* ============ FAQ ACCORDION ============ */
.faq-category {
    margin-bottom: 50px;
}

.faq-category__title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold);
}

.content-section--dark .faq-category__title {
    color: var(--white);
}

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

.content-section--dark .faq-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.faq-item__question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 40px 20px 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--black);
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.content-section--dark .faq-item__question {
    color: var(--white);
}

.faq-item__question:hover {
    color: var(--gold);
}

.faq-item__question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-item__question::after {
    content: '-';
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: 0 0 20px 0;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
}

.content-section--dark .faq-item__answer p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============ VIDEO GRID ============ */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.video-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.video-card__embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-card__embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card__info {
    padding: 20px;
}

.video-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 6px;
}

.video-card__desc {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.6;
}

.video-note {
    margin-top: 40px;
    padding: 25px 30px;
    background: var(--white-soft);
    border-left: 3px solid var(--gold);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}

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