/* ==========================================================================
   TWO FARM TOURS — HOME
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HERO
   --------------------------------------------------------------------------
   Built in depth layers, back to front:
     sky gradient → stars → sun disc → far ridge → photo → near ridge → copy
   Each layer parallaxes at a different rate, so scrolling the hero feels
   like driving past a dune field.
   -------------------------------------------------------------------------- */
.tft-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    padding-top: clamp(7rem, 14vh, 11rem);
    overflow: hidden;
    background: var(--ink-900);
    color: var(--bone-100);
    isolation: isolate;
}

/* --- Sky --------------------------------------------------------------- */
.tft-hero-sky {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg,
            #070a0e 0%,
            #0d1219 26%,
            #1b1c24 48%,
            #3a2a26 68%,
            #6d3d26 84%,
            #a5501f 100%);
}

/* Starfield — dark-sky country. Two sizes, radial-gradient dots. */
.tft-hero-stars {
    position: absolute;
    inset: 0 0 40% 0;
    z-index: 1;
    opacity: 0.75;
    background-image:
        radial-gradient(1.4px 1.4px at 12% 18%, rgba(255, 252, 245, 0.95), transparent 100%),
        radial-gradient(1.2px 1.2px at 28% 44%, rgba(255, 252, 245, 0.75), transparent 100%),
        radial-gradient(1.6px 1.6px at 44% 12%, rgba(255, 252, 245, 0.9), transparent 100%),
        radial-gradient(1px 1px at 58% 32%, rgba(255, 252, 245, 0.7), transparent 100%),
        radial-gradient(1.5px 1.5px at 72% 22%, rgba(255, 252, 245, 0.85), transparent 100%),
        radial-gradient(1.1px 1.1px at 86% 40%, rgba(255, 252, 245, 0.7), transparent 100%),
        radial-gradient(1.3px 1.3px at 8% 52%, rgba(255, 252, 245, 0.6), transparent 100%),
        radial-gradient(1px 1px at 36% 62%, rgba(255, 252, 245, 0.55), transparent 100%),
        radial-gradient(1.7px 1.7px at 64% 54%, rgba(255, 252, 245, 0.8), transparent 100%),
        radial-gradient(1.2px 1.2px at 92% 14%, rgba(255, 252, 245, 0.75), transparent 100%),
        radial-gradient(1px 1px at 20% 30%, rgba(255, 252, 245, 0.5), transparent 100%),
        radial-gradient(1.4px 1.4px at 78% 66%, rgba(255, 252, 245, 0.6), transparent 100%);
    animation: tft-twinkle 7s ease-in-out infinite alternate;
}

@keyframes tft-twinkle {
    from {
        opacity: 0.55;
    }

    to {
        opacity: 0.9;
    }
}

/* --- Sun -------------------------------------------------------------- */
.tft-hero-sun {
    position: absolute;
    left: 50%;
    bottom: 20%;
    width: clamp(20rem, 46vw, 42rem);
    aspect-ratio: 1;
    z-index: 2;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%,
            rgba(255, 214, 148, 0.6) 0%,
            rgba(240, 154, 66, 0.34) 30%,
            rgba(196, 84, 42, 0.16) 52%,
            transparent 70%);
    filter: blur(10px);
    animation: tft-hero-sun-in 2.4s var(--ease-out) both;
}

@keyframes tft-hero-sun-in {
    from {
        transform: translateX(-50%) translateY(18%) scale(0.86);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) translateY(0) scale(1);
        opacity: 1;
    }
}

/* --- Photograph ------------------------------------------------------- */
.tft-hero-photo {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.tft-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    /*
     * Fade the top of the photograph out so it dissolves into the painted
     * sky and starfield instead of sitting on top of them as a hard edge.
     * A mask is used rather than a blend mode so the result is the same in
     * every browser.
     */
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 22%, #000 55%);
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 22%, #000 55%);
    filter: saturate(1.08) contrast(1.04);
    animation: tft-kenburns 26s var(--ease-in-out) infinite alternate;
}

@keyframes tft-kenburns {
    from {
        transform: scale(1.04) translate3d(-1%, 1%, 0);
    }

    to {
        transform: scale(1.16) translate3d(1.5%, -1.5%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tft-hero-photo img {
        animation: none;
        transform: scale(1.05);
    }

    .tft-hero-sun,
    .tft-hero-stars {
        animation: none;
    }
}

/* --- Ridgelines ------------------------------------------------------- */
.tft-hero-ridge {
    position: absolute;
    left: -5%;
    width: 110%;
    z-index: 4;
    line-height: 0;
    pointer-events: none;
}

.tft-hero-ridge svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Far ridge — hazy, high up */
.tft-hero-ridge--far {
    bottom: 30%;
    opacity: 0.5;
    filter: blur(1.5px);
}

/* Mid ridge */
.tft-hero-ridge--mid {
    bottom: 14%;
    opacity: 0.78;
    z-index: 5;
}

/* Near ridge — solid, meets the next section */
.tft-hero-ridge--near {
    bottom: -1px;
    z-index: 6;
}

/* --- Copy ------------------------------------------------------------- */
.tft-hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-bottom: clamp(2.5rem, 2rem + 4vw, 5rem);
}

.tft-hero-eyebrow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem 1.1rem;
    margin-bottom: var(--sp-lg);
}

.tft-hero-title {
    font-size: var(--fs-h1);
    line-height: 0.94;
    letter-spacing: -0.035em;
    color: var(--bone-100);
    max-width: 17ch;
    text-shadow: 0 2px 30px rgba(10, 13, 17, 0.45);
}

/* The italic second line, in gold — the emotional beat of the headline. */
.tft-hero-title em {
    display: block;
    color: var(--gold-300);
    font-style: italic;
    font-variation-settings: 'SOFT' 70, 'WONK' 1;
}

.tft-hero-lead {
    max-width: 44ch;
    margin-top: var(--sp-lg);
    font-size: var(--fs-lead);
    line-height: 1.55;
    font-weight: 300;
    color: rgba(250, 245, 238, 0.86);
    text-shadow: 0 1px 16px rgba(10, 13, 17, 0.5);
}

.tft-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-md);
    margin-top: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
}

/* --- Facts strip ------------------------------------------------------- */
.tft-hero-facts {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 0 clamp(1.25rem, 0.5rem + 2.5vw, 3rem);
    margin-top: clamp(2rem, 1.5rem + 3vw, 3.5rem);
    padding-top: var(--sp-lg);
    border-top: 1px solid rgba(250, 245, 238, 0.18);
}

.tft-hero-fact {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-block: 0.4rem;
}

.tft-hero-fact-value {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 1.05rem + 1.2vw, 2.05rem);
    font-weight: 400;
    line-height: 1;
    color: var(--bone-100);
    font-variation-settings: var(--wonk-on);
}

.tft-hero-fact-label {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250, 245, 238, 0.5);
}

/* --- Scroll cue ------------------------------------------------------- */
.tft-scroll-cue {
    position: absolute;
    right: var(--gutter);
    bottom: clamp(2rem, 5vh, 4rem);
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(250, 245, 238, 0.55);
}

.tft-scroll-cue-label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.tft-scroll-cue-line {
    position: relative;
    width: 1px;
    height: 3.5rem;
    background: rgba(250, 245, 238, 0.22);
    overflow: hidden;
}

/* A pulse travels down the line. */
.tft-scroll-cue-line::after {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 40%;
    background: var(--gold-400);
    animation: tft-cue 2.1s var(--ease-in-out) infinite;
}

@keyframes tft-cue {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(250%);
    }
}

@media (max-width: 860px) {
    .tft-scroll-cue {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   2. STORY
   -------------------------------------------------------------------------- */
/* The .tft-story-* block moved to components.css: the About template
   reuses this markup and home.css is only enqueued on the front page. */

.tft-story-body h2 {
    margin-bottom: var(--sp-lg);
}

/* Founder signature — handwritten feel via italic display type. */
.tft-signature {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
    margin-top: var(--sp-xl);
    padding-top: var(--sp-lg);
    border-top: 1px solid var(--c-rule);
}

.tft-signature-mark {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-style: italic;
    font-weight: 300;
    color: var(--c-accent);
    font-variation-settings: 'SOFT' 100, 'WONK' 1;
    line-height: 1;
}

.tft-signature-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.tft-signature-name {
    font-weight: 600;
    font-size: var(--fs-sm);
}

.tft-signature-role {
    font-size: var(--fs-micro);
    letter-spacing: var(--tr-label);
    text-transform: uppercase;
    color: var(--c-text-faint);
}

/* --------------------------------------------------------------------------
   3. PROMISE STATS
   -------------------------------------------------------------------------- */
.tft-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: var(--c-rule-invert);
    border: 1px solid var(--c-rule-invert);
    border-radius: var(--r-lg);
    overflow: hidden;
}

@media (max-width: 760px) {
    .tft-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.tft-stat {
    position: relative;
    padding: clamp(1.5rem, 1.1rem + 1.6vw, 2.5rem) clamp(1rem, 0.8rem + 1vw, 1.75rem);
    background: var(--ink-850);
    text-align: center;
    transition: background var(--t-mid);
}

.tft-stat:hover {
    background: var(--ink-750);
}

.tft-stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.05em;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 1.5rem + 2.6vw, 3.6rem);
    font-weight: 300;
    line-height: 1;
    color: var(--gold-400);
    letter-spacing: -0.03em;
    font-variation-settings: 'SOFT' 60, 'WONK' 1;
}

.tft-stat-suffix {
    font-size: 0.45em;
    color: var(--rust-400);
}

.tft-stat-label {
    margin-top: 0.7rem;
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: var(--tr-label);
    text-transform: uppercase;
    color: var(--c-text-invert-soft);
}

.tft-stat-note {
    margin-top: 0.3rem;
    font-size: 0.68rem;
    color: var(--c-text-invert-faint);
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   4. SIGNATURE JOURNEYS
   -------------------------------------------------------------------------- */
.tft-journeys-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--sp-lg);
    margin-bottom: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
}

/* Flex items default to min-width:auto, so the heading block refuses to
   shrink and .tft-line's overflow:hidden clips the words mid-letter rather
   than wrapping. Let it shrink, and keep the link on one line. */
.tft-journeys-head > * {
    min-width: 0;
}

.tft-journeys-head > div {
    flex: 1 1 18rem;
}

.tft-journeys-head .tft-arrow-link {
    flex: 0 0 auto;
    white-space: nowrap;
}

.tft-journeys-head h2 {
    max-width: 20ch;
}

.tft-journeys {
    display: grid;
    gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 860px) {
    .tft-journeys {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Large-format journey card: photo left, dossier right, stacked on mobile. */
.tft-journey {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bone-050);
    border: 1px solid var(--c-rule);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t-slow) var(--ease-out), border-color var(--t-mid);
}

.tft-journey:hover {
    transform: translateY(-7px);
    box-shadow: var(--sh-lg);
    border-color: var(--rust-300);
}

.tft-journey-media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--ink-700);
}

.tft-journey-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}

.tft-journey:hover .tft-journey-media img {
    transform: scale(1.06);
}

.tft-journey-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(10, 13, 17, 0.55));
    pointer-events: none;
}

.tft-journey-overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--sp-md);
    padding: clamp(1rem, 0.8rem + 1vw, 1.5rem);
    color: var(--bone-100);
}

.tft-journey-badges {
    position: absolute;
    top: clamp(0.85rem, 1.4vw, 1.25rem);
    left: clamp(0.85rem, 1.4vw, 1.25rem);
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tft-journey-body {
    display: flex;
    flex-direction: column;
    gap: var(--sp-md);
    padding: clamp(1.35rem, 1rem + 1.4vw, 2.1rem);
}

.tft-journey-title {
    font-size: var(--fs-h3);
    line-height: 1.08;
}

.tft-journey:hover .tft-journey-title {
    color: var(--c-accent);
}

.tft-journey-title a {
    transition: color var(--t-fast);
}

.tft-journey-text {
    font-size: var(--fs-sm);
    color: var(--c-text-soft);
    margin: 0;
}

/* Included list — ticks in rust. */
.tft-journey-incl {
    display: grid;
    gap: 0.4rem;
    margin: 0;
}

.tft-journey-incl li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: var(--fs-sm);
    color: var(--c-text-soft);
}

.tft-journey-incl svg {
    width: 0.95em;
    height: 0.95em;
    flex: none;
    margin-top: 0.42em;
    color: var(--acacia-500);
}

.tft-journey-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--sp-md);
    margin-top: auto;
    padding-top: var(--sp-md);
    border-top: 1px solid var(--c-rule);
}

/* --------------------------------------------------------------------------
   5. WAYS TO TRAVEL — horizontal expedition strip
   -------------------------------------------------------------------------- */
.tft-ways {
    position: relative;
}

.tft-ways-rail {
    display: flex;
    gap: clamp(1rem, 0.7rem + 1.2vw, 1.75rem);
    padding-inline: var(--gutter);
    padding-bottom: var(--sp-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* Bleed to the viewport edge so the strip reads as continuing off-screen. */
    margin-inline: calc(var(--gutter) * -1);
    cursor: grab;
}

.tft-ways-rail::-webkit-scrollbar {
    display: none;
}

.tft-ways-rail.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

/* Images in the rail must never start a native drag — that gesture belongs
   to the rail's own drag-to-scroll. */
.tft-ways-rail img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.tft-way {
    position: relative;
    flex: none;
    width: clamp(15rem, 24vw, 21rem);
    scroll-snap-align: start;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--ink-750);
    aspect-ratio: 3 / 4;
    isolation: isolate;
    user-select: none;
}

.tft-way img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
    transition: transform 1s var(--ease-out), opacity var(--t-slow);
}

.tft-way:hover img {
    transform: scale(1.07);
    opacity: 0.8;
}

.tft-way::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 13, 17, 0.15) 0%, rgba(10, 13, 17, 0.35) 45%, rgba(10, 13, 17, 0.9) 100%);
    pointer-events: none;
}

.tft-way-body {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: clamp(1.1rem, 0.9rem + 1vw, 1.6rem);
    color: var(--bone-100);
}

.tft-way-index {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--gold-400);
}

.tft-way-title {
    margin-top: 0.5rem;
    font-size: var(--fs-h4);
    line-height: 1.1;
    color: var(--bone-100);
}

.tft-way-text {
    margin-top: 0.45rem;
    font-size: var(--fs-sm);
    color: rgba(250, 245, 238, 0.72);
}

/* Drag hint + progress under the rail */
.tft-ways-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-lg);
    margin-top: var(--sp-lg);
}

.tft-rail-track {
    position: relative;
    flex: 1;
    height: 2px;
    background: var(--c-rule-invert);
    border-radius: 2px;
    overflow: hidden;
}

.tft-rail-thumb {
    position: absolute;
    inset: 0 auto 0 0;
    width: 30%;
    background: var(--gold-400);
    border-radius: 2px;
    transition: transform 80ms linear;
}

.tft-rail-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--fs-micro);
    letter-spacing: var(--tr-label);
    text-transform: uppercase;
    color: var(--c-text-invert-faint);
    flex: none;
}

.tft-rail-hint svg {
    width: 1.1rem;
    height: 1.1rem;
}

/* --------------------------------------------------------------------------
   6. DESTINATIONS
   -------------------------------------------------------------------------- */
.tft-dest-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(0.75rem, 0.5rem + 1vw, 1.35rem);
}

/* A deliberately uneven mosaic: two wide, then three, so the eye moves. */
.tft-dest-grid > *:nth-child(1),
.tft-dest-grid > *:nth-child(2) {
    grid-column: span 3;
}

.tft-dest-grid > *:nth-child(1) .tft-tile,
.tft-dest-grid > *:nth-child(2) .tft-tile {
    aspect-ratio: 16 / 11;
}

.tft-dest-grid > *:nth-child(n + 3) {
    grid-column: span 2;
}

@media (max-width: 860px) {
    .tft-dest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tft-dest-grid > *:nth-child(1),
    .tft-dest-grid > *:nth-child(2),
    .tft-dest-grid > *:nth-child(n + 3) {
        grid-column: span 1;
    }

    .tft-dest-grid > *:nth-child(1) .tft-tile,
    .tft-dest-grid > *:nth-child(2) .tft-tile {
        aspect-ratio: 3 / 4;
    }
}

/* --------------------------------------------------------------------------
   7. TESTIMONIALS
   -------------------------------------------------------------------------- */
.tft-voices {
    position: relative;
}

.tft-voices-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 0.7rem + 1.2vw, 1.75rem);
}

@media (max-width: 900px) {
    .tft-voices-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 40rem;
        margin-inline: auto;
    }
}

/* Slight alternating offset so the row is not a rigid line. */
@media (min-width: 901px) {
    .tft-voices-grid > *:nth-child(2) {
        transform: translateY(1.75rem);
    }
}

/* --------------------------------------------------------------------------
   8. CLOSING CTA
   -------------------------------------------------------------------------- */
.tft-cta {
    position: relative;
    overflow: hidden;
    background: var(--ink-900);
    color: var(--bone-100);
}

.tft-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.tft-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.tft-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(90% 120% at 50% 110%, rgba(196, 84, 42, 0.5), transparent 60%),
        linear-gradient(180deg, rgba(10, 13, 17, 0.86), rgba(10, 13, 17, 0.7));
}

.tft-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.tft-cta h2 {
    max-width: 24ch;
    margin-inline: auto;
    color: var(--bone-100);
}

.tft-cta-lead {
    max-width: 50ch;
    margin: var(--sp-lg) auto 0;
    font-size: var(--fs-lead);
    font-weight: 300;
    color: var(--c-text-invert-soft);
}

.tft-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-md);
    margin-top: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
}

/* Direct-dial row — this operator books over WhatsApp, so surface the
   humans, not just a form. */
.tft-cta-people {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-lg) clamp(1.5rem, 1rem + 2vw, 3rem);
    margin-top: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
    padding-top: var(--sp-xl);
    border-top: 1px solid var(--c-rule-invert);
}

.tft-cta-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.tft-cta-person-name {
    font-family: var(--font-display);
    font-size: var(--fs-h5);
    color: var(--bone-100);
    font-variation-settings: var(--wonk-on);
}

.tft-cta-person-role {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.tft-cta-person-tel {
    margin-top: 0.35rem;
    font-size: var(--fs-sm);
    color: var(--c-text-invert-soft);
    font-variant-numeric: tabular-nums;
    transition: color var(--t-fast);
}

.tft-cta-person-tel:hover {
    color: var(--gold-300);
}

/* --------------------------------------------------------------------------
   REELS STRIP
   --------------------------------------------------------------------------
   The home page's doorway into /reels/. Three stills fanned out like a stack
   of phone screens — enough to say "there is video through here" without the
   home page downloading a single frame of it.
   -------------------------------------------------------------------------- */
.tft-reelstrip-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    align-items: center;
    gap: clamp(2rem, 1.4rem + 4vw, 5rem);
}

.tft-reelstrip-places {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.6rem;
    padding: 0;
    list-style: none;
}

.tft-reelstrip-places a {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.45em 1em;
    border: 1px solid var(--c-rule-invert);
    border-radius: var(--r-pill);
    font-size: var(--fs-micro);
    font-weight: 600;
    letter-spacing: var(--tr-label);
    text-transform: uppercase;
    color: var(--c-text-invert-soft);
    transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.tft-reelstrip-places a:hover {
    border-color: var(--gold-400);
    color: var(--gold-300);
    background: rgba(227, 180, 99, 0.08);
}

.tft-reelstrip-places span {
    font-variant-numeric: tabular-nums;
    opacity: 0.6;
}

/* The stack ---------------------------------------------------------------- */
.tft-reelstrip-stack {
    position: relative;
    display: flex;
    justify-content: center;
    gap: clamp(0.5rem, 0.2rem + 1vw, 1rem);
}

.tft-reelstrip-card {
    position: relative;
    flex: 1 1 0;
    max-width: 12rem;
    aspect-ratio: 9 / 16;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--ink-700);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
    /* Middle card sits proud, the outer two fall back — a fanned deck. */
    transform: translateY(calc((1 - var(--card-i)) * (1 - var(--card-i)) * 1.4rem)) rotate(calc((var(--card-i) - 1) * 3deg));
    transition: transform var(--t-slow) var(--ease-out);
}

.tft-reelstrip-stack:hover .tft-reelstrip-card {
    transform: translateY(0) rotate(0deg);
}

.tft-reelstrip-card img,
.tft-reelstrip-card .tft-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tft-reelstrip-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 13, 17, 0.55), rgba(10, 13, 17, 0) 55%);
}

.tft-reelstrip-play {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.tft-reelstrip-play svg {
    width: 2rem;
    height: 2rem;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
}

@media (max-width: 860px) {
    .tft-reelstrip-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .tft-reelstrip-stack {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .tft-reelstrip-card {
        max-width: 9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tft-reelstrip-card {
        transform: none;
        transition: none;
    }
}
