.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    isolation: isolate;
    color: var(--v2-white);
    background: #403b34;
}
.hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url("../../images/Hero_revix.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.04) 46%, rgba(0,0,0,.36)); }
.hero__media img { height: 100%; object-fit: cover; filter: brightness(.82); }
.intro-row { display: flex; justify-content: space-between; gap: 30px; margin-bottom: 28px; }
.intro-row .section-kicker { margin-bottom: 0; }
.intro-row .text-link { align-self: end; }
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.philosophy { padding-top: clamp(100px, 13vw, 190px); background: var(--v2-paper); }
.philosophy__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 140px); align-items: center; }
.philosophy h2 { max-width: 470px; margin: 0 0 34px; font-size: clamp(34px, 4.4vw, 62px); font-weight: 300; line-height: 1.08; letter-spacing: -0.001em; }
.philosophy h2 span { display: block; }
.philosophy h2 .philosophy-break { margin-top: .7em; }
.philosophy h2 .accent { color: var(--v2-red); }

@media (min-width: 521px) {
    .philosophy h2 span { white-space: nowrap; }
}

.philosophy__visual {
    position: relative;
    min-height: 470px;
    overflow: hidden;

    background-image: url("../../images/Philosophy_img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.approach { color: var(--v2-white); background: var(--v2-night); }
.approach__header { display: flex; justify-content: space-between; gap: 28px; }
.approach__header .section-kicker { color: rgba(248,247,244,.7); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-step { position: relative; padding-top: 18px; border-top: 1px solid var(--v2-line-light); }
.process-step::after { position: absolute; top: -1px; right: 0; width: 30%; height: 1px; content: ""; background: var(--v2-red); }
.process-step__number { display: block; margin-bottom: 28px; color: var(--v2-red); font-size: 25px; }
.process-step h3 { margin-bottom: 14px; font-size: 16px; font-weight: 400; text-transform: uppercase; }
.process-step p { max-width: 210px; margin: 0; color: rgba(248,247,244,.64); font-size: 13px; }
.contact-section { position: relative; min-height: 440px; display: flex; align-items: center; overflow: hidden; color: var(--v2-white); background: linear-gradient(100deg, #242320, #595249 48%, #252623); }
.contact-section::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(0,0,0,.64), rgba(0,0,0,.06) 70%); }
.contact-section__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-section h2 { max-width: 450px; margin: 0 0 30px; font-size: clamp(38px, 5vw, 70px); font-weight: 300; line-height: .97; letter-spacing: -.02em; }
.contact-section .section-kicker { color: rgba(248,247,244,.72); }
.contact-section__details { align-self: end; justify-self: end; line-height: 2; }
.contact-section__details a { display: block; font-size: 14px; }
.contact-instagram { display: inline-flex !important; align-items: flex-start; gap: 12px; margin-top: 22px; line-height: 1.35; }
.contact-instagram img { flex: 0 0 auto; width: 30px; height: 30px; }
.contact-instagram__copy { display: grid; gap: 3px; }
.contact-instagram__copy strong { font-size: 14px; font-weight: 500; }
.contact-instagram__copy small { max-width: 260px; color: rgba(248,247,244,.68); font-size: 11px; line-height: 1.45; }
.contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 30px;
    border: 1px solid var(--v2-red);
    color: #fff;
    background: var(--v2-red);
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.contact-cta:hover { color: var(--v2-red); background: transparent; }
.contact-cta:focus-visible { outline: 2px solid var(--v2-red); outline-offset: 4px; }
.contact-cta:active { transform: translateY(1px); }
.contact-cta:disabled { cursor: not-allowed; opacity: .65; }

@media (max-width: 900px) {
    .hero__media { background-position: 60% center; }
}

.hero__caption {
    position: absolute;
    left: 50%;
    bottom: 72px;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    color: #fff;
    max-width: 640px;
    width: calc(100% - 48px);
}

.hero__caption-title {
    margin: 0;
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.92);
}

.hero__caption-text {
    margin: 18px 0 0;
    font-size: clamp(18px, 1.8vw, 21px);
    line-height: 1.5;
    font-weight: 300;
    color: rgba(255,255,255,.82);
}
.hero-motion .hero__caption,
.hero-motion.hero-motion-ready .hero__caption { transform: translate3d(-50%, 0, 0); }
.hero__scroll {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 34px;
    margin-top: 22px;
    color: rgba(255,255,255,.86);
    font-size: 24px;
    line-height: 1;
    transition: color .3s ease, transform .3s ease;
}
.hero__scroll:hover { color: var(--v2-red); transform: translateY(2px); }
.hero-motion .hero__scroll {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity .9s 1s cubic-bezier(.22, .61, .36, 1), transform .9s 1s cubic-bezier(.22, .61, .36, 1), color .3s ease;
}
.hero-motion.hero-motion-ready .hero__scroll {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
.hero-motion .hero__caption h2 { transition-delay: .3s; }
.hero-motion .hero__caption-text { transition-delay: .52s; }
.hero-motion .hero__caption h2,
.hero-motion .hero__caption-text {
    transform: translate3d(0, 30px, 0);
    opacity: 0;
    filter: blur(8px);
    transition-property: opacity, transform, filter;
    transition-duration: .9s;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}
.hero-motion.hero-motion-ready .hero__caption h2,
.hero-motion.hero-motion-ready .hero__caption-text {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    filter: blur(0);
}

@media (max-width: 900px) {
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .philosophy__grid, .contact-section__inner { grid-template-columns: 1fr; }
    .philosophy__visual { min-height: 360px; }
    .contact-section__details { justify-self: start; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .featured-grid, .process-grid { grid-template-columns: 1fr; }
    .hero__media { background-position: 65% center; }
    .intro-row { display: block; }
    .intro-row .text-link { margin-top: 20px; }
}

@media (max-width: 640px) {
    .contact-cta { width: 100%; max-width: 320px; min-height: 52px; padding-inline: 22px; }
}

@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
    .hero-motion .hero__caption h2,
    .hero-motion .hero__caption-text {
        transform: translate3d(0, 22px, 0);
        filter: blur(5px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-motion .hero__caption,
    .hero-motion.hero-motion-ready .hero__caption {
        transform: translate3d(-50%, 0, 0) !important;
    }
    .hero-motion .hero__caption h2,
    .hero-motion .hero__caption-text,
    .hero-motion .hero__scroll {
        transform: none;
        opacity: 1;
        filter: none;
        transition: none;
    }
}
