/* ============================================================
   BuildX Homepage Styles
   Hero, Value Props, Tour Promo, Floor Plan Cards, Testimonials
   ============================================================ */

/* -- Hero Section ------------------------------------------------ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: #000000 url('') center/cover no-repeat;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 100%);
    z-index: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1460px;
    margin: 0 auto;
}

.hero__content {
    flex: 1;
    min-width: 0;
}

.hero__media {
    flex: 0 0 480px;
    max-width: 480px;
}

.hero__title {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 600px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* -- Hero Media Header & Footer ---------------------------------- */
.hero__media-header {
    margin-bottom: 14px;
}

.hero__media-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FFB81C;
    margin-bottom: 6px;
}

.hero__media-caption {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Date-driven tour announcement in the dark hero (added 2026-08-20).
   Amber to match the ADU HOME TOUR label and the tour-page notice, but tuned
   for a dark background rather than reusing the light card styling. */
.hero__media-alert {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #FFE9B0;
    background: rgba(255, 184, 28, 0.12);
    border-left: 3px solid #FFB81C;
    border-radius: 0 6px 6px 0;
    padding: 10px 14px;
    margin: 12px 0 0;
}

.hero__media-alert strong {
    color: #FFB81C;
    font-weight: 700;
}

.hero__media-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__media-dates {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.75);
}

.hero__media-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #FFB81C;
    text-decoration: none;
    transition: color 0.2s;
}

.hero__media-link:hover {
    color: #fff;
}

/* -- Hero Video -------------------------------------------------- */
.hero__video {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

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

/* -- Hero Carousel (fallback when no video) ---------------------- */
.hero__carousel {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hero__carousel-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.hero__carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero__carousel-slide.active {
    opacity: 1;
}

.hero__carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__carousel-btn:hover {
    background: rgba(255,184,28,0.8);
}

.hero__carousel-btn--prev { left: 10px; }
.hero__carousel-btn--next { right: 10px; }

.hero__carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero__carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.hero__carousel-dot.active {
    background: #FFB81C;
}

/* -- Value Cards ------------------------------------------------- */
.value-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.value-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.value-card__icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.value-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card__text {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
}

/* -- Tour Promo Section ------------------------------------------ */
.tour-promo {
    background: #000000;
    color: #FFFFFF;
}

.tour-promo__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.tour-promo__title {
    font-size: 2rem;
    font-weight: 700;
    color: #F5A623;
    margin-bottom: 16px;
}

.tour-promo__text {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tour-promo__details {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 3px solid #F5A623;
}

.tour-promo__image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
}

/* -- Card Specs & Price (Floor Plans) ---------------------------- */
.card__specs {
    font-size: 0.875rem;
    color: #595959;
    margin-bottom: 4px;
}

.card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
}

.card__image--placeholder {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* -- Plans Header (Popular Plans) -------------------------------- */
.plans-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    gap: 16px;
    flex-wrap: wrap;
}

.plans-header .section__title {
    margin-bottom: 0;
}

.plans-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* -- Plan Cards -------------------------------------------------- */
.plan-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}

.plan-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.plan-card__image-link {
    display: block;
}

.plan-card__image {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
}

.plan-card__image--placeholder {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
}

.plan-card__body {
    padding: 16px 20px 20px;
}

.plan-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.fp-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1.5px solid;
    line-height: 1.4;
}

.fp-badge--beds     { color: #2E7D32; border-color: #C8E6C9; background: #F1F8E9; }
.fp-badge--baths    { color: #1565C0; border-color: #BBDEFB; background: #E3F2FD; }
.fp-badge--sqft     { color: #BF4500; border-color: #FFE0B2; background: #FFF3E0; }
.fp-badge--feature  { color: #6A1B9A; border-color: #E1BEE7; background: #F3E5F5; }

.plan-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.plan-card__title a {
    color: #000000;
    text-decoration: none;
}

.plan-card__title a:hover {
    color: #000000;
}

.plan-card__desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* -- Learning Center Cards --------------------------------------- */
.lr-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
}

.lr-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.lr-card__image-link {
    display: block;
}

.lr-card__image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}

.lr-card__image--placeholder {
    background:
        radial-gradient(circle at 30% 25%, rgba(245, 166, 35, 0.20), transparent 55%),
        linear-gradient(135deg, #141414 0%, #000000 100%);
    position: relative;
}

/* Awaiting-artwork state: branded panel rather than a flat gray box, so a card
   with no image yet still looks deliberate beside cards that have one. Replaced
   automatically once the record gets an "image" key. */
.lr-card__image--placeholder::after {
    content: "BuildX";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(245, 166, 35, 0.55);
}

/* Pinned ("featured") card -- matches the Learning Center grid treatment. */
.lr-card--featured {
    border: 2px solid #F5A623;
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.18);
}

.lr-card--featured:hover {
    box-shadow: 0 8px 28px rgba(245, 166, 35, 0.26);
}

.lr-badge--featured {
    color: #111111;
    border-color: #F5A623;
    background: #F5A623;
}

.lr-card__body {
    padding: 16px 20px 20px;
}

.lr-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.lr-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1.5px solid;
    line-height: 1.4;
}

.lr-badge--type     { color: #BF4500; border-color: #FFE0B2; background: #FFF3E0; }
.lr-badge--cat      { color: #1565C0; border-color: #BBDEFB; background: #E3F2FD; }

.lr-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
}

.lr-card__title a {
    color: #000000;
    text-decoration: none;
}

.lr-card__title a:hover {
    color: #000000;
}

.lr-card__excerpt {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* -- Podcast Feature --------------------------------------------- */
.podcast-feature {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.podcast-feature__content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.podcast-feature__placeholder {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* -- Video Carousel (Real BuildX ADUs) --------------------------- */
.video-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.video-carousel__track {
    position: relative;
    width: 100%;
}

.video-carousel__slide {
    display: none;
}

.video-carousel__slide.active {
    display: block;
}

.video-carousel__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-carousel__embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

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

/* YouTube facade -- thumbnail + play button, loads real player on click */
.yt-facade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    cursor: pointer;
    background: #000;
    display: block;
    overflow: hidden;
}
.yt-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.yt-facade:hover img,
.yt-facade:focus-visible img {
    transform: scale(1.04);
    opacity: 0.92;
}
.yt-facade__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0,0,0,0.65);
    transition: background 0.2s ease;
}
.yt-facade:hover .yt-facade__play,
.yt-facade:focus-visible .yt-facade__play {
    background: #F5A623;
}
.yt-facade__play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 11px 0 11px 19px;
    border-color: transparent transparent transparent #fff;
}
.yt-facade:focus-visible {
    outline: 3px solid #F5A623;
    outline-offset: 2px;
}

.video-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.video-carousel__nav:hover {
    background: #F5A623;
}

.video-carousel__nav--prev { left: -22px; }
.video-carousel__nav--next { right: -22px; }


/* Portrait video (YouTube Shorts) - 9:16 aspect ratio */
.video-carousel__embed--portrait {
    padding-bottom: 177.78% !important; /* 9:16 */
    max-width: 360px;
    margin: 0 auto;
}


/* Video carousel captions */
.video-carousel__caption {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #333;
    margin: 12px 0 0;
    padding: 0;
}

.video-carousel__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.video-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D0D0D0;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.video-carousel__dot.active {
    background: #F5A623;
}

/* -- Full-Width Module (100-Day Guarantee, Pricing) --------------- */
.full-width-module {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.full-width-module__content {
    text-align: left;
    max-width: 720px;
    margin: 0 auto;
}

.full-width-module__content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

.full-width-module__content p:last-child {
    margin-bottom: 0;
}

.full-width-module__fine {
    font-size: 0.875rem;
    color: #777;
    font-style: italic;
    margin-top: 16px;
}

/* -- Section 8: About BuildX ------------------------------------- */
.about-buildx__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-buildx__heading {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-buildx__subheading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 16px;
}

.about-buildx__text {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-buildx__link {
    color: #F5A623;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.about-buildx__link:hover {
    color: #FFD580;
}

.about-buildx__edge-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
    margin-top: 24px;
}

.about-buildx__edge-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.about-buildx__arrow {
    color: #F5A623;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.about-buildx__edge-item strong {
    color: #FFFFFF;
}

.about-buildx__edge-text {
    color: rgba(255,255,255,0.8);
}

/* -- Proof block: completed ADU count + Lt. Governor quote ---------
   Added 2026-08-30. Two assets that existed everywhere EXCEPT the homepage:
   the completed-ADU count (previously zero occurrences sitewide) and Lt. Gov.
   Kim Driscoll's reaction to the 100-day build. Sits inside the dark About
   section, so it uses the established palette (#F5A623 gold on dark) rather
   than introducing a new one.
   Fluid sizing throughout -- no fixed pixel widths, which only ever look right
   at the width they were tuned on. */
.about-buildx__proof {
    display: flex;
    align-items: stretch;
    gap: clamp(16px, 2.2vw, 28px);
    margin: 28px 0 24px;
    padding: clamp(18px, 2vw, 24px);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(245,166,35,0.32);
    border-radius: 12px;
}

.about-buildx__proof-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-right: clamp(16px, 2.2vw, 28px);
    border-right: 1px solid rgba(255,255,255,0.14);
    min-width: 7.5rem;
}

.about-buildx__proof-num {
    font-size: clamp(2.75rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1;
    color: #F5A623;
    letter-spacing: -0.02em;
}

.about-buildx__proof-label {
    margin-top: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about-buildx__proof-quote {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-buildx__proof-quote p {
    margin: 0 0 8px;
    font-size: clamp(1.375rem, 2.4vw, 1.75rem);
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
}

.about-buildx__proof-quote cite {
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.72);
}

.about-buildx__proof-link {
    margin-top: 10px;
    align-self: flex-start;
    font-size: 0.875rem;
    font-weight: 600;
    color: #F5A623;
    text-decoration: none;
    border-bottom: 1px solid rgba(245,166,35,0.45);
    transition: color 0.2s, border-color 0.2s;
}

.about-buildx__proof-link:hover {
    color: #FFD580;
    border-bottom-color: #FFD580;
}

@media (max-width: 640px) {
    .about-buildx__proof {
        flex-direction: column;
        gap: 18px;
    }
    .about-buildx__proof-stat {
        flex-direction: row;
        gap: 14px;
        padding-right: 0;
        padding-bottom: 16px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.14);
        min-width: 0;
    }
    .about-buildx__proof-label {
        margin-top: 0;
        text-align: left;
    }
}

/* -- Section 9: Our Process -------------------------------------- */
.our-process__steps {
    max-width: 720px;
    margin: 0 auto;
}

.our-process__step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
}

.our-process__number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #F5A623;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
}

.our-process__content {
    flex: 1;
}

.our-process__heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 6px;
    line-height: 1.3;
}

.our-process__desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.our-process__divider {
    border: none;
    border-top: 1px solid #E5E5E5;
    margin: 0;
}

/* -- Section 10: Home Tour Promo --------------------------------- */
.home-tour-promo__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.home-tour-promo__title {
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
    color: #F5A623;
    line-height: 1.2;
    margin-bottom: 16px;
}

.home-tour-promo__text {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

.home-tour-promo__details {
    border-left: 3px solid #F5A623;
    padding-left: 16px;
    margin-bottom: 24px;
}

.home-tour-promo__details p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 4px;
}

.home-tour-promo__details strong {
    color: #FFFFFF;
}

.home-tour-promo__iframe-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
}

.home-tour-promo__iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* -- Section 13: Client Testimonial ------------------------------ */

/* Reduce spacing on client testimonial section */
.client-testimonial.section {
    padding: 48px 0 32px;
}

.client-testimonial__quote-wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0;
}

.client-testimonial__quote {
    font-size: 1.375rem;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin: 0 0 24px;
    border: none;
    padding: 0;
}

.client-testimonial__attribution {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0;
}

/* -- CTA Section ------------------------------------------------- */
.cta-section {
    text-align: center;
    padding: 32px 0;
}

.cta-section__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #F5A623;
    margin-bottom: 12px;
}

.cta-section__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section__text {
    font-size: 1.0625rem;
    color: #555;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 24px;
}

.cta-section__subtext {
    display: block;
    margin-top: 12px;
    font-size: 0.9375rem;
    color: #555;
}

/* -- Responsive -------------------------------------------------- */
@media (max-width: 1024px) {
    .hero__inner {
        flex-direction: column;
        text-align: center;
    }
    .hero__content {
        order: 1;
    }
    .hero__media {
        order: 2;
        flex: 0 0 auto;
        max-width: 560px;
        width: 100%;
    }
    .hero__title {
        max-width: 100%;
    }
    .hero__subtitle {
        max-width: 100%;
    }
    .hero__actions {
        justify-content: center;
    }
    .tour-promo__inner {
        grid-template-columns: 1fr;
    }
    .tour-promo__image {
        order: -1;
    }
    .podcast-feature {
        grid-template-columns: 1fr;
    }
    .podcast-feature__placeholder {
        display: none;
    }
    /* Video carousel nav inside on tablet */
    .video-carousel__nav--prev { left: 8px; }
    .video-carousel__nav--next { right: 8px; }
    /* New sections responsive */
    .about-buildx__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .home-tour-promo__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }
    .hero__inner {
        padding: 40px 16px 32px;
        gap: 24px;
    }
    .hero__title {
        font-size: 2.25rem;
        margin-bottom: 12px;
    }
    .hero__subtitle {
        font-size: 1.0625rem;
        margin-bottom: 20px;
    }
    .hero__actions {
        flex-direction: column;
    }
    .hero__actions .btn {
        width: 100%;
    }
    .hero__media {
        max-width: 100%;
    }
    .hero__media-header {
        margin-bottom: 8px;
    }
    .hero__media-footer {
        flex-direction: column;
        align-items: center;
        margin-top: 8px;
    }
    /* Video carousel mobile */
    .video-carousel__nav {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
    .video-carousel__nav--prev { left: 6px; }
    .video-carousel__nav--next { right: 6px; }

    .full-width-module__content p {
        font-size: 1rem;
    }

    /* New sections mobile */
    .about-buildx__heading {
        font-size: 1.625rem;
    }
    .about-buildx__subheading {
        font-size: 1.25rem;
    }
    .home-tour-promo__title {
        font-size: 1.625rem;
    }
    .client-testimonial__quote {
        font-size: 1.125rem;
    }
    .our-process__step {
        padding: 18px 0;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.875rem;
    }
    .hero__inner {
        padding: 32px 14px 24px;
        gap: 20px;
    }
}