.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 120px clamp(24px, 6vw, 96px) 80px;
    background: var(--bg);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
    animation: heroSlowZoom 22s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:

        /* luce rossa cinematografica */
        radial-gradient(
            circle at 92% 35%,
            rgba(185, 18, 18, .42) 0%,
            rgba(185, 18, 18, .18) 22%,
            transparent 55%
        ),

        /* vignettatura */
        radial-gradient(
            circle at center,
            transparent 48%,
            rgba(0,0,0,.38) 100%
        ),

        /* oscuramento sinistra */
        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.58) 22%,
            rgba(0,0,0,.28) 48%,
            rgba(0,0,0,.08) 72%,
            rgba(0,0,0,.18) 100%
        ),

        /* chiusura inferiore */
        linear-gradient(
            180deg,
            rgba(0,0,0,.16) 0%,
            rgba(0,0,0,0) 20%,
            rgba(0,0,0,.32) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 920px;
    animation: heroFadeUp 0.9s ease-out both;
}

.hero-eyebrow {
    margin-bottom: 22px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 900;
    font-size: 0.85rem;
}

.hero h1 {
    max-width: 860px;
    margin: 0 0 28px;
    color: #fff;

    font-size: clamp(3.2rem, 7vw, 7rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.062em;
    text-wrap: balance;

    text-shadow:
        0 2px 18px rgba(0, 0, 0, 0.28),
        0 12px 45px rgba(0, 0, 0, 0.42);
}

.hero-subtitle {
    max-width: 620px;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, 0.82);

    font-size: clamp(1.08rem, 1.55vw, 1.3rem);
    line-height: 1.58;
    letter-spacing: -0.012em;
    text-wrap: balance;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.trust-section {
    background: #080808;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.trust-container {
    width: min(100%, var(--max));
    margin: 0 auto;
    padding: 86px 32px;

    display: grid;
    grid-template-columns: 1.1fr auto 1fr;
    align-items: center;
    gap: 56px;
}

.stars {
    color: var(--gold);
    font-size: 1.42rem;
    letter-spacing: 0.18em;
}

.trust-rating h2 {
    margin: 12px 0 8px;
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.trust-rating p {
    color: var(--muted);
    font-size: 1.05rem;
}

.trust-rating strong {
    color: var(--muted-strong);
}

.trust-divider {
    width: 1px;
    height: 170px;
    background: rgba(255, 255, 255, 0.08);
}

.trust-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.trust-item {
    text-align: center;
}

.trust-item strong {
    display: block;
    margin-bottom: 8px;

    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.trust-item span {
    color: var(--muted);
    font-size: 0.94rem;
}

.why-section {
    padding: 120px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(231, 76, 60, 0.10), transparent 34%),
        var(--bg);
}

.why-grid {
    width: min(100%, 1360px);
    margin: 0 auto;
    padding: 0 32px;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.why-card {
    position: relative;
    overflow: hidden;

    min-width: 0;
    min-height: 360px;
    padding: 36px 32px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;

    background:
        radial-gradient(
            circle at top left,
            rgba(255, 255, 255, 0.06),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.015)
        );

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;

    backdrop-filter: blur(8px);

    transition:
        transform 0.45s cubic-bezier(.22, 1, .36, 1),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.why-card::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.05),
            transparent 45%
        );

    opacity:0;
    transition:opacity .45s ease;
    pointer-events:none;
}

.why-card::after{
    content:"";

    position:absolute;
    left:0;
    bottom:0;

    width:100%;
    height:2px;

    background:linear-gradient(
        90deg,
        var(--accent),
        transparent
    );

    transform:scaleX(0);
    transform-origin:left;

    transition:transform .45s cubic-bezier(.22,1,.36,1);
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,255,255,.16);

    box-shadow:
        0 24px 70px rgba(0,0,0,.45);
}

.why-card:hover::before{
    opacity:1;
}

.why-card:hover::after{
    transform:scaleX(1);
}

.why-card span{
    margin-bottom:auto;

    color:var(--accent);

    font-size:.72rem;
    font-weight:800;
    letter-spacing:.18em;
    text-transform:uppercase;

    opacity:.9;
}

.why-card h3{
    margin:0;

    font-size:clamp(1.55rem,2vw,2rem);
    line-height:1.05;
    letter-spacing:-.04em;
}

.why-card p{
    margin:0;

    color:var(--muted);

    font-size:1rem;
    line-height:1.7;
}

@keyframes heroSlowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.025);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* =========================================================
   EXPERIENCES SECTION
========================================================= */

.experiences-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    background:
        radial-gradient(
            circle at 75% 15%,
            rgba(255, 255, 255, 0.035),
            transparent 34%
        ),
        #080808;
}

.experiences-container {
    width: min(1440px, calc(100% - 96px));
    margin: 0 auto;
}

.experiences-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 64px;
}

.experiences-heading .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -48px;
}

.experiences-heading h2 {
    max-width: 820px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.5rem, 6.6vw, 7rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.055em;
}

.experiences-heading > p:last-child {
    max-width: 520px;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 1.08rem;
    line-height: 1.75;
}


/* =========================================================
   SHOWCASE
========================================================= */

.experience-showcase {
    position: relative;
}

.experience-stage {
    position: relative;
    min-height: clamp(620px, 74vh, 880px);
    overflow: hidden;
    background: #111111;
    isolation: isolate;
}

.experience-background {
    position: absolute;
    inset: 0;
    z-index: -4;
}

.experience-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.025);
    transition:
        opacity 400ms ease,
        transform 7s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.experience-stage:hover .experience-background img {
    transform: scale(1.07);
}

.experience-background img.is-changing {
    opacity: 0;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.72) 35%,
            rgba(0, 0, 0, 0.18) 72%,
            rgba(0, 0, 0, 0.44) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.82) 0%,
            transparent 48%,
            rgba(0, 0, 0, 0.28) 100%
        );
}

.experience-texture {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.2;
    background-image:
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.022) 0,
            rgba(255, 255, 255, 0.022) 1px,
            transparent 1px,
            transparent 4px
        );
    mix-blend-mode: overlay;
}

.experience-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr auto;
    min-height: inherit;
    padding: clamp(32px, 5vw, 72px);
}

.experience-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    grid-column: 1;
    grid-row: 1;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.experience-meta span:first-child {
    color: #ffffff;
}

.experience-meta span:last-child {
    position: relative;
    padding-left: 32px;
}

.experience-meta span:last-child::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.experience-copy {
    align-self: end;
    grid-column: 1;
    grid-row: 2 / 4;
    max-width: 760px;
    padding-top: 160px;
}

.experience-copy h3 {
    margin: 0 0 24px;
    color: #ffffff;
    font-size: clamp(4.5rem, 10vw, 9.5rem);
    font-weight: 500;
    line-height: 0.86;
    letter-spacing: -0.065em;
    text-wrap: balance;
    transition:
        opacity 240ms ease,
        transform 240ms ease;
}

.experience-copy p {
    max-width: 590px;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.7;
    transition:
        opacity 240ms ease,
        transform 240ms ease;
}

.experience-copy .btn {
    transition:
        opacity 240ms ease,
        transform 240ms ease,
        background-color 200ms ease,
        color 200ms ease;
}

.experience-copy.is-changing h3,
.experience-copy.is-changing p,
.experience-copy.is-changing .btn {
    opacity: 0;
    transform: translateY(14px);
}

.experience-index {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: end;
    grid-column: 2;
    grid-row: 2 / 4;
    gap: 14px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.experience-index span:first-child {
    color: #ffffff;
}

.experience-index-line {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.28);
}


/* =========================================================
   NAVIGATION
========================================================= */

.experience-navigation {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.experience-tab {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 124px;
    padding: 24px 26px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.48);
    text-align: left;
    cursor: pointer;
    transition:
        background-color 220ms ease,
        color 220ms ease;
}

.experience-tab:last-child {
    border-right: 0;
}

.experience-tab::before {
    content: "";
    position: absolute;
    top: -1px;
    right: 0;
    left: 0;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 280ms ease;
}

.experience-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.035);
}

.experience-tab.is-active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.055);
}

.experience-tab.is-active::before {
    transform: scaleX(1);
}

.experience-tab-number {
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.14em;
}

.experience-tab-name {
    margin-top: auto;
    font-size: clamp(0.95rem, 1.3vw, 1.18rem);
    font-weight: 500;
    letter-spacing: -0.02em;
}


/* =========================================================
   FOOTER
========================================================= */

.experiences-footer {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    align-items: center;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.experiences-footer p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 1rem;
    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1080px) {

    .experiences-section {
        padding: 110px 0;
    }

    .experiences-container {
        width: min(100% - 48px, 1240px);
    }

    .experiences-heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .experiences-heading .section-kicker {
        grid-column: auto;
        margin-bottom: 0;
    }

    .experiences-heading > p:last-child {
        max-width: 640px;
    }

    .experience-navigation {
        grid-template-columns: repeat(3, 1fr);
    }

    .experience-tab:nth-child(3) {
        border-right: 0;
    }

    .experience-tab:nth-child(-n + 3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .experiences-section {
        padding: 88px 0;
    }

    .experiences-container {
        width: min(100% - 32px, 680px);
    }

    .experiences-heading {
        margin-bottom: 40px;
    }

    .experiences-heading h2 {
        font-size: clamp(3rem, 15vw, 5rem);
        line-height: 0.94;
    }

    .experience-stage {
        min-height: 670px;
    }

    .experience-overlay {
        background:
            linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.96) 0%,
                rgba(0, 0, 0, 0.7) 52%,
                rgba(0, 0, 0, 0.22) 100%
            );
    }

    .experience-content {
        display: flex;
        flex-direction: column;
        min-height: inherit;
        padding: 28px 24px 32px;
    }

    .experience-copy {
        margin-top: auto;
        padding-top: 200px;
    }

    .experience-copy h3 {
        margin-bottom: 18px;
        font-size: clamp(4rem, 21vw, 6.5rem);
    }

    .experience-copy p {
        margin-bottom: 28px;
        font-size: 0.98rem;
    }

    .experience-index {
        display: none;
    }

    .experience-navigation {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-tab {
        min-height: 92px;
        padding: 18px;
    }

    .experience-tab:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .experience-tab:nth-child(even) {
        border-right: 0;
    }

    .experience-tab:nth-child(-n + 4) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .experience-tab-number {
        font-size: 0.62rem;
    }

    .experience-tab-name {
        font-size: 0.94rem;
    }

    .experiences-footer {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 40px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .experience-background img,
    .experience-copy h3,
    .experience-copy p,
    .experience-copy .btn,
    .experience-tab::before {
        transition: none;
    }

    .experience-stage:hover .experience-background img {
        transform: none;
    }
}
/* =========================================================
   NUMBERS SECTION
========================================================= */

.numbers-section {
    position: relative;
    overflow: hidden;
    padding: 150px 0;
    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(255, 255, 255, 0.045),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #0b0b0b 0%,
            #050505 100%
        );
}

.numbers-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1440px, calc(100% - 96px));
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-50%);
}

.numbers-section::after {
    content: "A.G.E.";
    position: absolute;
    top: 40px;
    right: -2vw;
    color: rgba(255, 255, 255, 0.018);
    font-size: clamp(10rem, 25vw, 28rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.09em;
    pointer-events: none;
    user-select: none;
}

.numbers-container {
    position: relative;
    z-index: 2;
    width: min(1440px, calc(100% - 96px));
    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.numbers-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.numbers-heading .section-kicker {
    grid-column: 1 / -1;
    margin-bottom: -52px;
}

.numbers-heading h2 {
    max-width: 960px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.6rem, 7vw, 7.4rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.058em;
    text-wrap: balance;
}

.numbers-heading > p:last-child {
    max-width: 500px;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.75;
}


/* =========================================================
   GRID
========================================================= */

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.number-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: clamp(28px, 3.5vw, 50px);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.012);
    transition:
        background-color 260ms ease,
        transform 260ms ease;
}

.number-card:nth-child(1) {
    grid-column: span 7;
}

.number-card:nth-child(2) {
    grid-column: span 5;
}

.number-card:nth-child(3),
.number-card:nth-child(4),
.number-card:nth-child(5) {
    grid-column: span 4;
}

.number-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background:
        radial-gradient(
            circle at 30% 10%,
            rgba(255, 255, 255, 0.075),
            transparent 42%
        );
    transition: opacity 260ms ease;
    pointer-events: none;
}

.number-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.number-card:hover::before {
    opacity: 1;
}

.number-card-featured {
    min-height: 500px;
    background:
        radial-gradient(
            circle at 18% 12%,
            rgba(255, 255, 255, 0.06),
            transparent 42%
        ),
        rgba(255, 255, 255, 0.018);
}

.number-value {
    position: relative;
    z-index: 1;
    margin-bottom: auto;
    color: #ffffff;
    font-size: clamp(4.4rem, 9vw, 9.5rem);
    font-weight: 500;
    line-height: 0.82;
    letter-spacing: -0.075em;
    white-space: nowrap;
}

.number-card-featured .number-value {
    font-size: clamp(6rem, 13vw, 13rem);
}

.number-card-year .number-value {
    font-size: clamp(4rem, 7vw, 7.5rem);
}

.number-card h3 {
    position: relative;
    z-index: 1;
    margin: 52px 0 14px;
    color: #ffffff;
    font-size: clamp(1.25rem, 1.8vw, 1.75rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.number-card p {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0;
    color: rgba(255, 255, 255, 0.53);
    font-size: 0.95rem;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.numbers-cta {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
    margin-top: 48px;
}

.numbers-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.95rem;
}

.text-link {
    position: relative;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 8px;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.text-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: currentColor;
    transform: scaleX(0.25);
    transform-origin: left;
    transition: transform 240ms ease;
}

.text-link:hover::after {
    transform: scaleX(1);
}

.text-link span {
    transition: transform 240ms ease;
}

.text-link:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   REVEAL
========================================================= */

.number-card {
    opacity: 0;
    transform: translateY(28px);
}

.number-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 700ms ease,
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 260ms ease;
}

.number-card:nth-child(2).is-visible {
    transition-delay: 80ms;
}

.number-card:nth-child(3).is-visible {
    transition-delay: 120ms;
}

.number-card:nth-child(4).is-visible {
    transition-delay: 180ms;
}

.number-card:nth-child(5).is-visible {
    transition-delay: 240ms;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1080px) {

    .numbers-section {
        padding: 110px 0;
    }

    .numbers-container {
        width: min(100% - 48px, 1240px);
    }

    .numbers-section::before {
        width: min(100% - 48px, 1240px);
    }

    .numbers-heading {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 60px;
    }

    .numbers-heading .section-kicker {
        grid-column: auto;
        margin-bottom: 0;
    }

    .numbers-heading > p:last-child {
        max-width: 640px;
    }

    .number-card:nth-child(1),
    .number-card:nth-child(2) {
        grid-column: span 6;
    }

    .number-card:nth-child(3),
    .number-card:nth-child(4) {
        grid-column: span 6;
    }

    .number-card:nth-child(5) {
        grid-column: span 12;
    }

    .number-card,
    .number-card-featured {
        min-height: 360px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 720px) {

    .numbers-section {
        padding: 88px 0;
    }

    .numbers-container {
        width: min(100% - 32px, 680px);
    }

    .numbers-section::before {
        width: calc(100% - 32px);
    }

    .numbers-section::after {
        top: 90px;
        font-size: 13rem;
    }

    .numbers-heading {
        margin-bottom: 44px;
    }

    .numbers-heading h2 {
        font-size: clamp(3rem, 15vw, 5rem);
        line-height: 0.94;
    }

    .numbers-grid {
        display: block;
    }

    .number-card,
    .number-card-featured {
        min-height: 330px;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .number-card-featured {
        min-height: 390px;
    }

    .number-value,
    .number-card-featured .number-value {
        font-size: clamp(4.8rem, 23vw, 7.5rem);
    }

    .number-card h3 {
        margin-top: 48px;
    }

    .numbers-cta {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 38px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .number-card {
        opacity: 1;
        transform: none;
    }

    .number-card.is-visible {
        transition: none;
    }

    .text-link,
    .text-link::after,
    .text-link span {
        transition: none;
    }
}
@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 34rem;
        margin-bottom: 30px;

        font-size: 1.05rem;
        line-height: 1.52;
    }

    .hero-actions {
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        min-height: 56px;
    }

    .hero-actions .btn-primary {
        flex: 1 1 100%;
    }

    .hero-actions .btn-secondary {
        flex: 1 1 100%;
    }
}
/* =========================================================
   EXPERIENCE STATS
========================================================= */

.experience-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0 30px;
}

.experience-stats span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 13px;

    color: rgba(255, 255, 255, 0.88);
    background: rgba(8, 8, 10, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;

    font-size: 0.76rem;
    font-weight: 650;
    line-height: 1.2;
    letter-spacing: 0.02em;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (min-width: 1081px) {

    .why-grid {
        width: min(100%, 1360px);
        margin: 0 auto;
        padding: 0 32px;

        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .why-card {
        min-width: 0;
        min-height: 360px;
        padding: 36px 32px;
    }

    .why-card h3 {
        font-size: clamp(1.45rem, 1.65vw, 1.85rem);
        line-height: 1.08;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .why-card p {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

/*=========================================================
REVIEWS
=========================================================*/

.reviews-section{
    position:relative;
    overflow:hidden;
    padding:180px 0;
    background:#080808;
}

.reviews-background{

    position:absolute;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    font-size:clamp(8rem,18vw,20rem);
    font-weight:800;
    line-height:.85;
    letter-spacing:-.06em;

    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.08);

    pointer-events:none;
}

.reviews-heading{

    width:min(900px,calc(100% - 64px));

    margin:0 auto 120px;

    text-align:center;
}

.reviews-heading h2{

    margin:20px 0;

    font-size:clamp(3rem,5vw,5.5rem);

    line-height:.95;

    letter-spacing:-.05em;
}

.reviews-heading p:last-child{

    color:var(--muted);

    font-size:1.1rem;
}

.reviews-wall{

    width:min(1400px,calc(100% - 80px));

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:120px;
}

.quote{

    max-width:560px;

    text-shadow:0 8px 35px rgba(0,0,0,.45);
}

.quote.left{

    align-self:flex-start;
}

.quote.center{

    align-self:center;
}

.quote.right{

    align-self:flex-end;
}

.stars{

    color:var(--accent);

    letter-spacing:.18em;

    margin-bottom:18px;
}

.quote p{

    margin:0 0 22px;

    font-size:clamp(2rem,3vw,3.5rem);

    font-style:italic;

    line-height:1.05;

    letter-spacing:-.045em;

    color:#fff;
}

.quote span{

    color:rgba(255,255,255,.55);

    font-size:1rem;
}

.reviews-footer{

    margin-top:160px;

    text-align:center;
}

.reviews-footer h3{

    font-size:clamp(3rem,7vw,6rem);

    margin-bottom:10px;
}

.reviews-footer p{

    margin-bottom:36px;

    color:var(--muted);
}

.quote:hover{

    transform:scale(1.03);

    transition:.35s ease;
}

@media(max-width:900px){

    .reviews-section{

        padding:120px 0;
    }

    .reviews-wall{

        width:calc(100% - 48px);

        gap:80px;
    }

    .quote,
    .quote.left,
    .quote.center,
    .quote.right{

        align-self:flex-start;

        max-width:100%;
    }

}

.quote{

    opacity:0;

    transform:translateY(50px);

    filter:blur(10px);

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.22,1,.36,1),
        filter .9s ease;
}

.quote.is-visible{

    opacity:1;

    transform:translateY(0);

    filter:blur(0);
}

/* =========================================================
   FINAL SHOT
========================================================= */

.final-shot {
    position: relative;
    width: 100%;
    height: 110vh;
    min-height: 850px;
    overflow: hidden;
    background: #080808;
    isolation: isolate;
}

.final-shot-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.final-shot-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    will-change: transform;
}

.final-shot-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            #080808 0%,
            rgba(8, 8, 8, 0.72) 12%,
            rgba(8, 8, 8, 0.20) 38%,
            rgba(8, 8, 8, 0.18) 65%,
            rgba(8, 8, 8, 0.72) 100%
        );
}

.final-shot-content {
    position: absolute;
    z-index: 2;
    left: clamp(28px, 8vw, 150px);
    right: 40px;
    bottom: clamp(55px, 9vh, 120px);
    max-width: 820px;
}

.final-shot-content h2 {
    margin: 18px 0 26px;
    color: #fff;
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.final-shot-content > p:last-of-type {
    max-width: 520px;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.15rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .final-shot {
        height: 92vh;
        min-height: 720px;
    }

    .final-shot-image img {
        object-position: center;
        transform: scale(1.04);
    }

    .final-shot-content {
        left: 26px;
        right: 26px;
        bottom: 45px;
    }

    .final-shot-content h2 {
        font-size: clamp(3rem, 12vw, 4.5rem);
    }

    .final-shot-content > p:last-of-type {
        font-size: 1rem;
    }
}
/* =========================================================
   ACCESSIBILITY CONTRAST FIXES — WCAG AA / Lighthouse
   Added 31/07/2026
========================================================= */

/* Secondary text: preserve visual hierarchy while keeping
   a safe contrast ratio on the dark backgrounds used here. */
.experiences-heading > p:last-child,
.experience-meta,
.experience-copy p,
.experience-index,
.experience-tab,
.experiences-footer p,
.numbers-heading > p:last-child,
.number-card p,
.numbers-cta p,
.reviews-heading p:last-child,
.quote span,
.final-shot-content p {
    color: rgba(255, 255, 255, 0.72);
}

/* Small labels require a stronger ratio than large display text. */
.experience-tab-number,
.experience-tab-name,
.experience-meta,
.experience-index,
.numbers-cta p,
.quote span {
    color: rgba(255, 255, 255, 0.78);
}

/* Inactive room tabs remain visually subordinate but accessible. */
.experience-tab:not(.is-active) {
    color: rgba(255, 255, 255, 0.72);
}

/* Hero copy sits over a variable photographic background. */
.hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

/* Text placed directly over room photography. */
.experience-copy p,
.experience-meta,
.experience-index {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.86);
}

/* Review attribution and other subdued copy. */
.quote span,
.reviews-heading p:last-child {
    color: rgba(255, 255, 255, 0.74);
}
