/*
Theme Name: Custom Goo Theme
Theme URI: http://localhost/custom-goo-theme
Author: Raden Argo
Author URI: http://localhost
Description: Starter theme for slicing Figma design
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: custom-goo-theme
*/

body {
    margin: 0;
}

.about {
    padding: 160px 56px;
    background: rgba(246, 246, 246, 1);
}

.about .section-heading {
    margin-top: 16px;
    margin-bottom: 40px;
    max-width: 1052px;
    font-style: normal;
    font-size: 60px;
    font-weight: 400;
    line-height: 68px;
    letter-spacing: -2.4px;
}

.about .title-tag {
    font-size: 12px;
    font-weight: 500;
    font-style: normal;
    line-height: 16px;
    letter-spacing: .2px;
    text-transform: uppercase;
    color: rgba(138, 138, 138, 1);
    text-transform: uppercase;
}

.about .section-heading .primary {
    color: rgba(1, 1, 1, 1);
}

.about .section-heading .secondary {
    color: rgba(173, 173, 173, 1);
    margin-left: 0px;
}

.about-vision-mission {
    display: flex;
    grid-template-columns: 1fr auto 1fr;
    align-items: flex-start;
    column-gap: 40px;
}

/* Kolom kiri (visi) */
.about-vision-mission .vision {
    flex: auto;
    grid-column: 1;
    font-family: "NeueMontreal", sans-serif;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.5px;
    color: rgba(86, 86, 86, 1);
    max-width: 276px;
}

.about-vision-mission .mission-cta {
    flex: 1;
    grid-column: 2;
    justify-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.about-vision-mission .mission-cta .mission {
    font-family: "NeueMontreal", sans-serif;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.5px;
    color: rgba(86, 86, 86, 1);
    max-width: 554px;
    margin-bottom: 80px;
}

.about-cta {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
}

.about-cta .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(180deg, #010101 0%, #3C3C3C 220.83%);
    color: rgba(255, 255, 255, 1);
    transition: background .3s, color .3s;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.about-cta .btn-icon .icon { display: flex; align-items: center; justify-content: center; }
.about-cta .btn-icon svg { width: 14px; height: 14px; }

.about-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 34px;
    background: linear-gradient(180deg, #010101 0%, #3C3C3C 220.83%);
    line-height: 24px;
    text-transform: uppercase;
    transition: background .3s, color .3s;
}
.about-cta:hover {
    background:  rgba(1, 1, 1, 1);
    border-radius: 64px;
}
.about-cta:hover .btn-icon {
    background: rgba(187, 255, 106, 1);
    width: 56px; height: 56px;
    margin-left: 2px;
}
.about-cta:hover .btn-icon svg {
    transform: rotate(45deg);
    transition: transform 0.4s ease-in-out;
    color:  rgba(1, 1, 1, 1);
}

.about-content .btn { all: unset; }

@media (max-width: 900px) {
    .about-vision-mission {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }
    .about-vision-mission .vision { grid-column: 1; }
    .about-vision-mission .mission-cta { grid-column: 1; }
}

.cta {
    padding: 100px 20px;
    background: #00c16a;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    border-radius: 8px;
    margin: 60px auto;
    max-width: 900px;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta .btn-cta {
    background: rgba(255, 255, 255, 1);
    color: #00c16a;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.cta .btn-cta:hover {
    background: #f1f1f1;
}

.services {
    padding: 160px 56px;
    background: #f9f9f9;
    background-color: rgba(1, 1, 1, 1);
}

.services .title-tag {
    font-size: 12px;
    font-weight: 500;
    color: rgba(173, 173, 173, 1);
    text-transform: uppercase;
}

.services .section-heading {
    font-size: 3.75rem;
    font-weight: 400;
    margin-top: 16px;
    margin-bottom: 40px;
    max-width: 1052px;
    line-height: 68px;
}
  
.services .section-heading .primary {
    color: rgba(255, 255, 255, 1);
}

.services .section-heading .secondary {
    color: rgba(173, 173, 173, 1);
    margin-left: 0px;
}

.service-table {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-row {
    display: flex;
    border-top: 1px solid rgba(60, 60, 60, 1);
    padding: 40px 56px;
    color: rgba(173, 173, 173, 1);
    font-size: 1.25rem;
}

.service-row:first-child {
    border-top: none;
}

.service-row:nth-child(2) {
    border-top: 1px solid rgba(187, 255, 106, 1);
    color: rgba(255, 255, 255, 1);
}

.service-col {
    padding: 0 10px;
}

.service-col.index {
    flex: 0 0 15%;
    font-family: "NeueMontreal", sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.4px;
}

.service-col.title {
    flex: 0 0 364px;
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -0.6px;
}

.service-col.content {
    flex: 0 0 414px;
}

.service-col.content span {
    font-family: "NeueMontreal", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.6px;
}

.portfolio .title-tag {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: rgba(138, 138, 138, 1);
    text-transform: uppercase;
}

.portfolio .section-heading {
    font-size: 3.75rem;
    font-weight: 400;
    margin-top: 16px;
    margin-bottom: 0;
    line-height: 68px;
}
  
.portfolio .section-heading .primary {
    color: rgba(1, 1, 1, 1);
}

.portfolio .section-heading .secondary {
    color: rgba(173, 173, 173, 1);
    margin-left: 0px;
}

.portfolio {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 1);
}

.portfolio .container {
    padding: 160px 56px;
}

.portfolio-swiper {
    position: relative;
    width: 100%;
}

.portfolio-item {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: rgba(255, 255, 255, 1);
}

.slide-meta {
    flex: 0 0 234px;
    font-family: "NeueMontreal", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    color: rgba(246, 246, 246, 1);
}

.slide-excerpt {
    font-size: 16px;
    margin-bottom: 20px;
}

.slide-mockup {
    max-width: 368px;
    position: relative;
}

.portfolio-counter {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    z-index: 10;
}

.portfolio-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 900px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 0px;
    color: rgba(255, 255, 255, 1);
    overflow: hidden;
}

.portfolio-swiper .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.44);
    z-index: 1;
}

.portfolio-swiper .slide-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    box-sizing: border-box;
}

.slide-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.slide-counter {
    font-family: "NeueMontreal", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 2px;
}

.slide-bottom {
    display: flex;
    justify-content: space-between;
}

.slide-bottom .slide-col.slide-text {
    max-width: 648px;
    width: 100%;
}

.slide-bottom .slide-col.slide-btn {
    max-width: 114px;
    width: 100%;
    position: absolute;
    top: -90px;
    left: -135px;
}

.slide-subtitle {
    font-family: "NeueMontreal", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: rgba(246, 246, 246, 1);
    margin-top: 0;
    margin-bottom: 32px;
}

.slide-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 68px;
    color: rgba(255, 255, 255, 1);
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.btn-readcase {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 48px 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    color: rgba(1, 1, 1, 1);
    font-family: "NeueMontreal", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.45px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-readcase:hover {
    background: rgba(1, 1, 1, 1);
    color: rgba(255, 255, 255, 1);
}

.slide-mockup img {
    max-height: 268px;
    max-width: 388px;
    width: 100%;
    height: 100%;
    display: block;
}

.heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}
  
.heading-text {
    flex: 1;
    max-width: 950px;
}
  
.heading-thumb img {
    max-width: 244px;
    object-fit: cover;
    display: block;
}  

.why {
    padding: 160px 56px;
    background: rgba(1, 1, 1, 1);
}
.why .section-heading {
    font-size: 60px;
    font-weight: 400;
    line-height: 68px;
    letter-spacing: -2.4px;
    margin: 0 0 80px;
    max-width: 1052px;
}

.why .title-tag {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: rgba(173, 173, 173, 1);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.why .section-heading .primary {
    color: rgba(255, 255, 255, 1);
}

.why .section-heading .secondary {
    color: rgba(173, 173, 173, 1);
    margin-left: 0px;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 56px;
    max-width: 1052px;
    padding-left: 221px;
    padding-right: 55px;
}
.why-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    column-gap: 20px;
}
.why-num {
    color: rgba(173, 173, 173, 1);
    font-family: "NeueMontreal", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.4px;
    padding-top: 6px;
}
.why-title {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 1);
    font-family: "NeueMontreal", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.4px;
}
.why-desc {
    margin: 0;
    color: rgba(173, 173, 173, 1);
    font-family: "NeueMontreal", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.6px;
    max-width: 412px;
}

.why-cta {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.why-cta .btn-icon {
    display: inline-flex; width: 60px; height: 60px; border-radius: 999px;
    align-items: center; justify-content: center;
    background: linear-gradient(360deg, #BBFF6A 2.78%, #A2EC4D 100%);
    border: 1px solid var(--Base-color-Green, rgba(187, 255, 106, 1));
    color: rgba(1, 1, 1, 1);
    transition: transform .2s ease, filter .2s ease;
    line-height: 0;
    box-sizing: border-box;
}

.why-cta .btn {
    height: 60px;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 18px 32px; border-radius: 64px;
    background: linear-gradient(360deg, #BBFF6A 2.78%, #A2EC4D 100%);
    border: 1px solid var(--Base-color-Green, rgba(187, 255, 106, 1));
    color: rgba(1, 1, 1, 1); text-decoration: none;
    font-weight: 500; font-size: 16px; text-transform: uppercase; letter-spacing: .02em;
    line-height: 24px;
    transition: filter .2s ease, transform .2s ease;
    box-sizing: border-box;
}
.why-cta:hover {
    height: 60px;
    background: linear-gradient(360deg, #BBFF6A 2.78%, #A2EC4D 100%);
    border: 1px solid var(--Base-color-Green, rgba(187, 255, 106, 1));
    border-radius: 64px;
    -webkit-transition: opacity 2.5s ease-in-out;
    -moz-transition: opacity 2.5s ease-in-out;
    -ms-transition: opacity 2.5s ease-in-out;
    -o-transition: opacity 2.5s ease-in-out;
    transition: opacity 2.5s ease-in-out;
    box-sizing: border-box;
    padding: 2px;
}
.why-cta:hover .btn-icon {
    background: rgba(1, 1, 1, 1);
    width: 56px; height: 56px;
}
.why-cta:hover .btn-icon svg {
    transform: rotate(45deg);
    transition: transform 0.5s ease-in-out;
    color:  rgba(255, 255, 255, 1);
}
.why-cta:hover .btn {
    background: transparent;
}
.why-cta:hover .btn-icon,
.why-cta:hover .btn {
    border: none;
}

@media (max-width: 960px) {
    .why-list { grid-template-columns: 1fr; }
}

.stories {
    padding: 160px 56px;
    background: rgba(1, 1, 1, 1);
}

.stories .eyebrow {
    margin: 0 0 16px;
    color: rgba(192, 192, 192, 1);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.stories .section-heading {
    font-size: 60px;
    font-weight: 400;
    line-height: 68px;
    letter-spacing: -2.4px;
    margin: 0 0 80px;
    max-width: 830px;
    color: rgba(255, 255, 255, 1);
}

.stories-list {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.story-card { container-type: inline-size; }
.story-card:not(.featured) .story-title {
    font-size: 1.125rem;
}
.story-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    height: 360px;  
}
.story-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: auto;
}

.story-meta {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.2px;
    color: rgba(192, 192, 192, 1);
}
.story-title {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 1);
    font-family: "NeueMontreal", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
}
.story-title a { color: inherit; text-decoration: none; }

.story-card.featured .story-thumb::after {
    content:""; position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%);
    border-radius: 10px;
    pointer-events: none;
}
.story-card.featured .story-overlay {
    position: absolute;
    left: 44px; right: 44px; bottom: 44px;
    color: rgba(255, 255, 255, 1);
}
.story-card.featured .story-overlay .cat {
    color: rgba(192, 192, 192, 1);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.2px;
}
.story-card.featured .story-overlay .story-title {
    margin: 4px 0 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 1)
}

@media (min-width: 1440px){
    .why-list {
        padding-left: 221px;
        padding-right: 55px;
    }
}
@media (min-width: 1200px){
    .why-list {
        padding-left: 180px;
        padding-right: 55px;
    }
    .featured .story-thumb{ height: 420px; }
    .story-thumb{ height: 336px; }
}

.site-footer {
    position: relative;
    background: rgba(187, 255, 106, 1);
    color: rgba(1, 1, 1, 1);
    overflow: hidden;
}

.site-footer .footer-hero,
.site-footer .footer-bar { position: relative; z-index: 1; }

.footer-sparkles-img {
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-60%);
    width: clamp(480px, 20vw, 860px);
    height: auto;
    opacity: .8;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    image-rendering: -webkit-optimize-contrast;
}

.footer-hero {
    padding: 92px 55px 10rem;
}
.footer-title {
    font-weight: 500;
    line-height: 144px;
    letter-spacing: -6.2px;
    font-size: 154px;
    margin: 0 0 54px;
}
.footer-cta {
    display: inline-flex; align-items: center; gap: 2px;
}
.footer-cta .btn-circle {
    display: inline-grid; place-items: center;
    width: 60px; height: 60px;
    border-radius: 999px;
    background: linear-gradient(180deg, #F6F6F6 0%, #FFFFFF 100%);
    border: 1px solid var(--Base-color-White, rgba(255, 255, 255, 1));
    color: rgba(1, 1, 1, 1);
    text-decoration: none;
}
.footer-cta .btn-pill {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 18px 32px;
    border-radius: 999px;
    background: var(--Base-color-White, rgba(255, 255, 255, 1));
    border: 1px solid var(--Base-color-White, rgba(255, 255, 255, 1));
    color: rgba(1, 1, 1, 1);
    font-weight: 500;
    text-decoration: none;
}
.footer-cta:hover {
    height: 60px;
    background: linear-gradient(180deg, #F6F6F6 0%, #FFFFFF 100%);
    border-radius: 64px;
    -webkit-transition: opacity 2.5s ease-in-out;
    -moz-transition: opacity 2.5s ease-in-out;
    -ms-transition: opacity 2.5s ease-in-out;
    -o-transition: opacity 2.5s ease-in-out;
    transition: opacity 2.5s ease-in-out;
    padding: 2px;
    box-sizing: border-box;
}
.footer-cta:hover .btn-circle {
    background: rgba(1, 1, 1, 1);
    width: 56px; height: 56px;
    margin-left: 2px;
}
.footer-cta:hover .btn-circle svg {
    transform: rotate(45deg);
    transition: transform 0.5s ease-in-out;
    color:  rgba(255, 255, 255, 255);
}
.footer-cta:hover .footer-cta .btn-pill {
    background: none;
}
.footer-cta:hover .btn-circle,
.footer-cta:hover .footer-cta .btn-pill {
    border: none;
}

.footer-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 0 56px 56px;
}
.footer-brand {
    display: flex; align-items: center; gap: 40px;
}
.footer-brand .custom-logo {
    max-height: 64px; width: auto;
}
.footer-brand .text-logo {
    font-weight: 800; font-size: 40px; line-height: 1;
}
.brand-tagline {
    margin: 0; 
    font-family: "NeueMontreal", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.4px;
    max-width: 197px;
    color: rgba(1, 1, 1, 1);
}
.footer-legal { padding-left: 3rem; }
.footer-legal .legal-list {
    list-style: none; margin: 0; padding: 0;
    display: inline-flex; gap: 2px;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
}
.footer-legal a {
    color: inherit;
    text-decoration: none;
    font-family: "NeueMontreal", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.4px;
    color: rgba(1, 1, 1, 1);
}
.footer-legal a:hover{ text-decoration: underline; }

.footer-copy {
    align-self: self-end;
    justify-self: end;
    font-family: "NeueMontreal", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.4px;
    white-space: nowrap;
    color: rgba(1, 1, 1, 1);
}
  
@media (max-width: 960px){
    .footer-bar{
        grid-template-columns: 1fr;
        text-align: left;
    }
    .footer-copy{ justify-self: start; }
}
@supports (font-size: 1cqi) {
    .story-card:not(.featured) .story-title {
        font-family: "NeueMontreal", sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: 0.6px;
    }
}

@media (max-width:1280px) {
    :root{ --gutter: 22px; }
}
@media (max-width:1024px) {
    :root{ --gutter: 20px; }
}
@media (max-width:768px) {
    :root{ --gutter: 18px; }
    .hero-tagline {
        max-width: 180px !important;
    }
    .service-table { gap: 0; }
    .services .service-row {
        border-top: 1px solid rgba(60, 60, 60, 1);
    }
    .services .service-row:first-child {
        border-top: 1px solid rgba(187, 255, 106, 1);
    }
    .services .section-heading {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: 0.6px;
        margin-bottom: 54px;
    }
    .services .service-row {
        padding: 30px 0px !important;
        color: rgba(192, 192, 192, 1);
    }
    .services .service-col.content {
        flex: 1;
        display: flex;
        flex-direction: column;
        height: 100%;
        gap: 8px;
    }
    .service-col.title {
        flex: 1;
        font-family: "NeueMontreal", sans-serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.4px;
    }
    .service-row:nth-child(1) .service-col.title {
        color: rgba(255, 255, 255, 1);
    }
    .service-col.index {
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 0.6px;
    }
    .services .service-col.content span {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.3px;
    }
    .about,
    .services .service-col.title,
    .site-footer .footer-hero,
    .portfolio .container { padding: 0; }
    .about,
    .why,
    .stories,
    .services,
    .portfolio .container .heading-text { padding: 80px 16px; }
    .portfolio .section-heading,
    .about .section-heading,
    .why .section-heading,
    .stories .section-heading,
    .slide-title {
        font-size: 32px;
        font-weight: 400;
        line-height: 40px;
        letter-spacing: -0.6px;
    }
    .portfolio-swiper .slide-overlay .slide-top{
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }
    .portfolio-swiper .slide-overlay .slide-counter{ order: -1; }
    .portfolio-swiper .slide-overlay .slide-meta{ order: 0; }
    .portfolio-swiper .slide-overlay .slide-top .slide-meta {
        max-width: 233px;
    }
    .portfolio-swiper .slide-overlay {
        padding: 40px 16px;
    }
    .about .about-vision-mission .vision { max-width: 190px; }
    .about .about-vision-mission .vision,
    .about .about-vision-mission .mission {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.3px;
        color: rgba(86, 86, 86, 1);
        margin-bottom: 4px;
    }
    .about .about-vision-mission {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .about .section-heading { margin-bottom: 1.75rem; }
    .why .why-list { padding: 0; margin: 0; gap: 32px; }
    .why .section-heading { margin-top: 24px; margin-bottom: 54px; }
    .why .why-card { column-gap: 0; }
    .why .why-title {
        color: rgba(255, 255, 255, 1);
        font-weight: 500;
    }
    .why .why-num {
        color: rgba(173, 173, 173, 1);
        font-weight: 400;
        padding: 0;
    }
    .why .why-card.why-card-cta {
        grid-template-columns: 1fr;
        padding-top: 16px;
    }
    .why .why-title,
    .why .why-num {
        font-family: "NeueMontreal", sans-serif;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.3px;
    }
    .why .why-desc {
        font-family: "NeueMontreal", sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.3px;
        color: rgba(173, 173, 173, 1);
    }
    .why .why-cta .btn-icon {
        width: 42px;
        height: 42px;
    }
    .why .why-cta .btn {
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0.3px;
        padding: 12px 24px;
        height: 44px;
    }

    .stories .stories-list {
        display: grid !important;
        grid-auto-flow: column;
        grid-auto-columns: 75%;
        gap: 16px;

        overflow-x: auto;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;

        /* snap */
        scroll-snap-type: x mandatory;
        padding-inline: 16px;
        scroll-padding-inline: 16px;
        margin-inline: -16px;
    }
    .stories .stories-list::-webkit-scrollbar{ display: none; }
    .stories .eyebrow { margin-bottom: 24px; }
    .stories .section-heading { margin-bottom: 54px; }


    .stories .story-thumb{ height:auto; }
    .stories .story-card.featured .story-thumb::after{ display:none; }
    .stories .story-card.featured .story-overlay{ position:static; inset:auto; color:inherit; padding:0; }
    .stories .story-card.featured .story-overlay .story-title { margin: 0; }
    .stories .story-card.featured .story-overlay .story-title,
    .stories .story-card .story-title a {
        font-family: "NeueMontreal", sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 26px;
        letter-spacing: 0.6px;
    }
    .stories .story-card.featured .story-overlay,
    .stories .story-card .story-meta {
        margin-top: 16px;
    }
    .stories .story-card {
        max-width: 220px;
    }

    .stories .story-title{ -webkit-line-clamp: 2; line-clamp: 2; min-height: 52px; }

    .stories .stories-list{
        grid-template-columns: none !important;
        grid-template-rows: none !important;
        grid-auto-flow: column;
        grid-auto-columns: 65%;
    }
    
    .stories .stories-list > .story-card{
        grid-column: auto / span 1 !important;
        grid-row: auto !important;
        min-width: 0;
        width: auto !important;
        scroll-snap-align: start;
    }
    
    .stories .story-card.featured{
        grid-column: auto / span 1 !important;
        width: auto !important;
    }
    
    .stories .story-thumb{ aspect-ratio: 3 / 4; height: auto; }
    .stories .story-thumb img{ width:100%; height:100%; object-fit:cover; }
    .site-footer {
        padding: 54px 11px 20px;
    }
    .site-footer .footer-hero {
        display: flex;
        flex-direction: column;
        gap: 38px;
    }
    .site-footer .footer-title {
        font-size: 54px;
        font-weight: 500;
        line-height: 54px;
        letter-spacing: -2.2px;
        margin: 0;
        max-width: 335px;
    }
    .site-footer .footer-cta .btn-circle {
        height: 44px;
        width: 44px;
    }
    .site-footer .footer-cta .btn-pill {
        font-size: 14px;
        font-weight: 500;
        padding: 12px 24px;
    }
    .footer-sparkles-img {
        width: 288px;
        top: 33%;
        transform: translateY(-60%);
        right: -30px;
        opacity: 1;
    }
    .site-footer .footer-bar { margin: 198px 0 0; padding: 0 5px; }
    .site-footer .footer-legal {
        display: flex;
        justify-content: space-between;
        font-size: 16px;
        font-weight: 400;
        line-height: 1;
        padding: 0 0 12px;
    }
    .site-footer .brand-tagline,
    .site-footer .footer-legal a,
    .site-footer .footer-copy {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0.3px;
    }
    .site-footer .footer-brand .brand-mark,
    .site-footer .footer-brand a {
        display: inline-flex;
    }
    .site-footer .footer-brand .custom-logo {
        max-height: 40.28px;
    }
    .hide-mobile { display: none !important; }
    .hide-desktop { display: initial; }
    .portfolio .section-heading .secondary {
        color: rgba(1, 1, 1, 1);
    }
    .preview-video {
        height: 812px;
    }
    .preview-video .preview-video__wrap { height: 100%; }
    .site-header .brand svg {
        height: 33.57px;
        width: 59.33px;
    }
    .site-header .header-actions {
        gap: 11px;
    }
    .site-header .btn-pill.lang {
        font-weight: 500;
        letter-spacing: 0.3px;
    }
    .why-cta:hover {
        height: 44px;
    }
}

.stack-16>*+* { margin-top:16px; }
/* @media (min-width: 901px){ .hide-mobile{ display: revert; } } */
@media (min-width: 901px){ .hide-desktop{ display: none; } }

.preview-video__wrap{
    position: relative;
    width: 100%;
    margin-inline: auto;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}
.preview-video__el{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
