@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --serif: 'Fraunces', Georgia, serif;
    --sans: 'DM Sans', sans-serif;

    --black: #0A0A0A;
    --ink: #161616;
    --dark: #1C1C1C;
    --white: #FFFFFF;
    --off: #F5F5F2;
    --rule: #D6D6D2;
    --body: #363636;

    --sub: #5A5A56;
    --orange: #000000;
    --orange2: #1A1A1A;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

section.gallery {
    padding: 20px;
}


/* =========================================================
   PAGE WRAPPER
   ========================================================= */

.tri-site {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s var(--ease) forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s var(--ease) forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.7s var(--ease) forwards;
}

.animate-slide-right {
    animation: slideInRight 0.7s var(--ease) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}


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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s var(--ease),
        transform 0.8s var(--ease);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.8s var(--ease),
        transform 0.8s var(--ease);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity 0.8s var(--ease),
        transform 0.8s var(--ease);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================================
   WRAPPER
   ========================================================= */

.w {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 3rem;
}


/* =========================================================
   KICKER
   ========================================================= */

.kicker {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.4rem;
    justify-content: center;
}

.kicker::before,
.kicker::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--orange);
    display: block;
}


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

.sh {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.015em;
    color: var(--ink);
    text-align: center;
}

.sh em {
    font-style: italic;
    color: var(--sub);
}

.sh .o {
    color: var(--orange);
    font-style: normal;
}


/* =========================================================
   CENTERED HEADINGS
   ========================================================= */

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.sec-eyebrow-center {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--sub);
    justify-content: center;
}

.sec-eyebrow-center::before,
.sec-eyebrow-center::after {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--orange);
    flex-shrink: 0;
}

.sec-headline-center {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 100;
    letter-spacing: 1.1px;
    color: var(--ink);
    text-align: center;
    line-height: 1.1;
}

.sec-headline-center em {
    font-style: italic;
    color: #e97005;
}

.sec-subhead-center {
    text-align: center;
    font-size: 16px;
    color: var(--sub);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.2;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.35);
    animation: zoomIn 1.5s var(--ease) forwards;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.5) 100%
        );
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 70%
        );
    top: -100px;
    right: 30%;
    border-radius: 50%;
    animation:
        orbFloat 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 70%
        );
    bottom: -80px;
    left: 20%;
    border-radius: 50%;
    animation:
        orbFloat 12s ease-in-out infinite alternate-reverse;
    pointer-events: none;
    z-index: 2;
}

@keyframes orbFloat {
    from {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    to {
        transform: translate(40px, 60px) scale(1.2);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
}

.hero-tag::before,
.hero-tag::after {
    content: '';
    width: 0;
    height: 1px;
    background: #ef7f1a;
    display: block;
    animation:
        lineGrow 0.6s var(--ease) 0.5s forwards;
}

@keyframes lineGrow {
    to {
        width: 28px;
    }
}
.hero-h em {font-style: italic;color: #aaa;transition: color 0.3s ease;}
.hero-h:hover em {color: #fff;}
.hero-h .accent {color: var(--white);font-style: normal;font-weight: 500;}
.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
	padding-top: 10px;
    flex-wrap: wrap;
    opacity: 0;
    animation:
        fadeUp 0.9s var(--ease) 0.65s forwards;
}
.hbtn {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 14px;
    cursor: pointer;
    transition:
        all 0.35s var(--ease);
    border: 1px solid transparent;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.hbtn-solid {
    background: var(--white);
    color: var(--black);
}

.hbtn-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(0, 0, 0, 0.1),
            transparent
        );
    transition: left 0.5s ease;
}

.hbtn-solid:hover::before {
    left: 100%;
}

.hbtn-solid:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.hbtn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ccc;
    background: transparent;
}

.hbtn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05);
}


/* =========================================================
   STATS
   ========================================================= */

.stats-row {
    background: var(--white);
    border-top: 1px solid var(--rule);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.hero-stat {
    flex: 1;
    min-width: 150px;
    transition:
        transform 0.3s var(--ease);
    cursor: default;
}

.hero-stat:hover {
    transform: translateY(-5px);
}

.stat-val {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 500;
    color: #f17506;
    transition: color 0.3s ease;
}

.hero-stat:hover .stat-val {
    color: var(--orange);
}

.stat-lbl {
    font-size: 0.7rem;
    font-weight: 1000;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #005b83;
}


/* =========================================================
   TICKER
   ========================================================= */

.ticker-strip {
    background: #ef7f1a;
    padding: 1rem 0;
    overflow: hidden;
}

.ticker-inner {
    display: flex;
    gap: 2.5rem;
    animation:
        ticker 25s linear infinite;
    white-space: nowrap;
}

.ticker-inner:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-word {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    flex-shrink: 0;
    transition: color 0.3s ease;
    cursor: default;
}

.ticker-word:hover {
    color: var(--white);
}

.ticker-word.accent {
    color: #aaa;
}


/* =========================================================
   MOMENTS
   ========================================================= */

.moments {
    background: var(--off);
    position: relative;
    background:
        url('https://triangle.raydent.in/images/triangle.jpg')
        center/cover no-repeat;
}

.moments::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 84%);
}

.moments-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.moments-header {
    text-align: center;
    margin-bottom: 10px;
}

.moments-header-left {
    max-width: 700px;
    margin: 0 auto;
}

.moments-header-right {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.moments-nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--rule);
    background: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    transition:
        all 0.35s var(--ease);
}

.moments-nav-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: scale(1.05);
}

.moments-track-outer {
    overflow: hidden;
}

.moments-track {
    display: flex;
    gap: 2.2rem;
    transition:
        transform 0.6s
        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.moment-card {
    border: 1px solid var(--rule);
    flex-shrink: 0;
    min-width: 260px;
    max-width: 260px;
    transition:
        all 0.4s var(--ease);
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.moment-card:hover {
    border-color: var(--black);
    border: 1px solid transparent;
    background:
        linear-gradient(#000, #000) padding-box,
        linear-gradient(
            135deg,
            #ff7a18,
            #ffb347,
            #ff7a18
        ) border-box;
    transform:
        translateY(-10px)
        scale(1.02);
    box-shadow:
        0 25px 60px
        rgba(255, 122, 24, 0.25);
}

.mc-img-wrap {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.mc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition:
        all 0.7s var(--ease);
}

.moment-card:hover .mc-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.mc-body {
    padding: 0.75rem;
    position: relative;
}

.moment-card:hover .mc-num {
    color: var(--orange);
}

.mc-title {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
}

.mc-desc {
    color: #d1d1cc;
    font-size: 12px;
    line-height: 1.1;
}

.mc-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f9f99d;
    border-bottom: 1px solid var(--black);
    transition: all 0.3s ease;
}

.moment-card:hover .mc-tag {
    border-bottom-color: var(--orange);
    color: #fff;
}

.moments-foot {
    padding-top: 12px;
    border-top: 1px solid var(--rule);
    text-align: center;
    font-size: 14px;
    color: #e9e9b2;
}


/* =========================================================
   PULL QUOTE
   ========================================================= */

.pullquote {
    background: var(--black);
    padding: 1rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pullquote::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 3rem;
    font-family: var(--serif);
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    animation:
        quoteFloat 15s ease-in-out infinite;
}

@keyframes quoteFloat {
    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 20px);
    }
}

.pullquote-wrap {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pullquote:hover .pullquote-line {
    width: 100px;
}

.pullquote-text {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.2;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.pullquote:hover .pullquote-text {
    color: rgba(255, 255, 255, 0.95);
}

.pullquote-attr {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #888;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery {
    background: var(--white);
}

.gallery-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.5rem;
    margin-top: -43px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--off);
    transition:
        all 0.4s var(--ease);
}

.gallery-item:first-child {
    height: 480px;
}

.gallery-item:last-child {
    height: 480px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gi-inner {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.gi-inner img,
.gallery-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition:
        all 0.7s var(--ease);
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.gi-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9),
            transparent
        );
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition:
        all 0.5s var(--ease);
}

.gallery-item:hover .gi-label {
    opacity: 1;
    transform: translateY(0);
}

.gi-label h3 {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.gi-label p {
    font-size: 0.75rem;
    color: #ccc;
}


/* =========================================================
   STACK
   ========================================================= */

.stack {
    background: var(--off);
}

.stack-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

.stack-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.stack-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    background: var(--white);
    border: 1px solid var(--rule);
    margin-top: -55px;
    transition:
        box-shadow 0.3s ease;
}

.stack-grid:hover {
    box-shadow:
        0 20px 35px -12px
        rgba(0, 0, 0, 0.08);
}

.stack-nav {
    border-right: 1px solid var(--rule);
}

.stack-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid var(--rule);
    transition:
        all 0.3s var(--ease);
    position: relative;
}

.stack-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--orange);
    transform: scaleY(0);
    transition:
        transform 0.3s var(--ease);
}

.stack-nav-item:hover::before {
    transform: scaleY(1);
}

.stack-nav-item.active {
    background: var(--black);
}

.stack-nav-item.active::before {
    transform: scaleY(1);
}

.sni-num {
    font-family: var(--serif);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--rule);
    min-width: 32px;
}

.stack-nav-item.active .sni-num,
.stack-nav-item.active .sni-label {
    color: var(--white);
}

.sni-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sub);
}

.stack-panels {
    padding: 10px;
}

.stack-panel {
    display: none;
    animation:
        fadeIn 0.4s var(--ease) forwards;
}

.stack-panel.active {
    display: block;
}

.sp-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--rule);
}

.sp-title {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
}

.sp-title em {
    font-style: italic;
    color: var(--sub);
}

.sp-count {font-size: 0.7rem;letter-spacing: 1px;color: var(--sub);}
.sp-summary {
    font-size: 16px;
    color: #282217;
    line-height: 1.2;
}

.sp-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.sp-group-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.1px;
    padding: 17px;
    text-transform: uppercase;
    color: #872b06;
}

.sp-list {
    list-style: none;
}

.sp-list li {
    font-size: 0.85rem;
    color: var(--body);
    padding-left: 1rem;
    position: relative;
    margin-bottom: 0.5rem;
    transition: transform 0.2s ease;
}

.sp-list li:hover {
    transform: translateX(4px);
}

.sp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 1px;
    background: var(--black);
}

.sp-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sp-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--rule);
    color: #626200;
    transition:
        all 0.3s var(--ease);
    cursor: pointer;
}

.sp-tag:hover {
    border-color: var(--black);
    color: var(--black);
    transform: translateY(-2px);
}

.sp-metrics {display: grid;grid-template-columns: repeat(3, 1fr);gap: 1px;background: var(--rule);}
.sp-metric {background: var(--white);padding: 1rem;text-align: center;transition:
        all 0.3s var(--ease);}
.sp-metric:hover {background: var(--off);}
.sp-metric-val {font-family: var(--serif);font-size: 1.2rem;font-weight: 500;}
.sp-metric-lbl {
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: var(--sub);
}
.stack-foot {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 10px;
    border-top: 1px solid var(--rule);
}
.stack-steps {display: flex;gap: 0.5rem;}
.stack-step {
    font-size: 1.3rem;
    padding: 14px;
    cursor: pointer;
    color: var(--sub);
    font-weight: 500;
    transition:
        all 0.3s ease;
}

.stack-step.active {
    color: var(--black);
    border-bottom: 2px solid var(--black);
}

.stack-step:hover:not(.active) {
    color: var(--orange);
}

.stack-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--rule);
    background: var(--white);
    cursor: pointer;
    transition:
        all 0.3s var(--ease);
}

.stack-arrow:hover {
    background: var(--black);
    color: var(--white);
    transform: scale(1.05);
}

.stack-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.stack-bottom-text {
    font-size: 0.8rem;
    color: var(--sub);
}
/* =========================================================
   VIDEO MODAL
   ========================================================= */

.vmodal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.vmodal.active {
    display: flex;
    animation:
        fadeIn 0.3s ease forwards;
}

.vmodal-inner {
    width: 90%;
    max-width: 900px;
    position: relative;
    animation:
        scaleIn 0.4s var(--ease) forwards;
}

.vmodal-inner video {
    width: 100%;
}

.vmodal-close {
    position: absolute;
    top: -2rem;
    right: 0;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.vmodal-close:hover {
    opacity: 0.7;
}


/* =========================================================
   RESPONSIVE - 1024px
   ========================================================= */

@media (max-width: 1024px) {

    .w {
        padding: 0 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:first-child,
    .gallery-item:last-child {
        height: 360px;
    }

    .gallery-item:last-child {
        flex-direction: row;
    }

    .stack-grid {
        grid-template-columns: 1fr;
    }

    .stack-nav {
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }

    .stack-nav-item {
        border-bottom: none;
        border-right: 1px solid var(--rule);
    }
}


/* =========================================================
   RESPONSIVE - 768px
   ========================================================= */

@media (max-width: 768px) {

    .w {
        padding: 0 1.5rem;
    }

    .moment-card {
        min-width: 220px;
        max-width: 220px;
    }

    .hero-stat {
        flex: 1;
        text-align: left;
        min-width: 150px;
        transition:
            transform 0.3s var(--ease);
        cursor: default;
    }

    .hero {
        position: relative;
        min-height: 45vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
    }

    .mc-img-wrap {
        height: 140px;
    }

    .stack-panels {
        padding: 14px;
    }

    .moments-wrap,
    .gallery-wrap,
    .stack-wrap {
        padding: 0 1.5rem;
    }

    .stack-nav-item {
        gap: 1px;
        padding: 12px;
    }

    .sp-head {
        align-items: baseline;
        margin-bottom: 2px;
    }

    .sp-title {
        font-size: 18px;
    }

    .stack-steps {
        display: none;
        gap: 0.5rem;
    }

    .sp-group-title {
        padding: 8px;
    }

    .sni-label {
        font-size: 14px;
        line-height: 1.1;
    }

    .moment-card {
        min-width: 280px;
    }

    .sp-list li {
        font-size: 14px;
        padding-left: 1rem;
        margin-bottom: 2px;
    }

    .sp-cols {
        grid-template-columns: 1fr;
    }

    .hero-h {
        font-size: 40px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .gallery-item:last-child {
        flex-direction: column;
    }

    .gallery-item:first-child,
    .gallery-item:last-child {
        height: 320px;
    }

    .stats-grid {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .pullquote-text {
        align-items: center;
        font-size: 16px;
        padding: 4px 10px;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.2;
        max-width: 410px;
        transition: color 0.3s ease;
    }
}