/* Homepage — luxury editorial experience */
:root {
    --home-wine: #16070c;
    --home-wine-soft: #2b0d17;
    --home-pink: #f23665;
    --home-pink-light: #ff86a3;
    --home-paper: #f7f3f1;
    --home-cream: #eadfda;
    --home-ink: #1b0d11;
    --home-muted: #75686c;
    --home-line: rgba(27, 13, 17, 0.14);
    --home-display: 'Playfair Display', serif;
    --home-sans: 'DM Sans', sans-serif;
}

.home-page {
    background: var(--home-paper);
    color: var(--home-ink);
    font-family: var(--home-sans);
}

.home-page main {
    overflow: hidden;
}

.home-container {
    width: min(calc(100% - 3rem), 1220px);
    margin-inline: auto;
}

.home-kicker {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--home-pink);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-kicker::before {
    width: 2.4rem;
    height: 1px;
    flex: 0 0 auto;
    background: currentColor;
    content: '';
}

.home-kicker--light {
    color: var(--home-pink-light);
}

.home-section-number {
    display: block;
    margin-top: 1.1rem;
    color: #96898d;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-section-heading {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    align-items: start;
    gap: 4rem;
    padding-bottom: 4.5rem;
    border-bottom: 1px solid var(--home-line);
}

.home-section-heading h2,
.home-portfolio__heading h2,
.home-method__content h2,
.home-cta h2 {
    font-family: var(--home-display);
    font-size: clamp(2.8rem, 5vw, 5.25rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1.02;
    text-wrap: balance;
}

.home-section-heading h2 em,
.home-portfolio__heading h2 em,
.home-method__content h2 em,
.home-cta h2 em {
    color: var(--home-pink);
    font-weight: 500;
}

.home-section-heading--dark {
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.home-section-heading--dark .home-section-number {
    color: rgba(255, 255, 255, 0.34);
}

.home-button {
    min-height: 3.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    padding: 0.9rem 1.7rem;
    border: 1px solid transparent;
    color: #fff;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.home-button .material-symbols-outlined {
    font-size: 1.15rem;
    transition: transform 0.3s ease;
}

.home-button:hover .material-symbols-outlined {
    transform: translate(4px, -4px);
}

.home-button--solid {
    background: var(--home-pink);
    box-shadow: 0 18px 42px rgba(242, 54, 101, 0.25);
}

.home-button--solid:hover {
    background: #d92d56;
}

.home-button--outline {
    border-color: rgba(255, 255, 255, 0.42);
}

.home-button--outline:hover {
    border-color: #fff;
    background: #fff;
    color: var(--home-wine);
}

.home-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding-bottom: 0.32rem;
    border-bottom: 1px solid rgba(27, 13, 17, 0.32);
    color: var(--home-ink);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.home-link span {
    transition: transform 0.3s ease;
}

.home-link:hover {
    color: var(--home-pink);
}

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

.home-link--light {
    border-color: rgba(255, 255, 255, 0.36);
    color: #fff;
}

/* Hero */
.home-hero {
    min-height: 860px;
    height: 100svh;
    position: relative;
    display: grid;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background: var(--home-wine);
    color: #fff;
}

.home-hero__photo,
.home-hero__veil,
.home-hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero__photo {
    z-index: -4;
}

.home-hero__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    filter: saturate(0.75) contrast(1.04);
    transform: scale(1.015);
}

.home-hero__veil {
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(16, 4, 9, 0.98) 0%, rgba(16, 4, 9, 0.89) 38%, rgba(16, 4, 9, 0.52) 69%, rgba(16, 4, 9, 0.62) 100%),
        linear-gradient(0deg, rgba(16, 4, 9, 0.85) 0%, transparent 45%);
}

.home-hero::after {
    position: absolute;
    z-index: 4;
    inset: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    content: '';
    pointer-events: none;
}

.home-hero__canvas {
    z-index: -1;
    pointer-events: none;
}

.home-orbit-fallback {
    position: absolute;
    z-index: -2;
    top: 50%;
    right: 7vw;
    width: min(42vw, 620px);
    aspect-ratio: 1;
    transform: translateY(-50%);
    opacity: 0.45;
}

.home-orbit-fallback i {
    position: absolute;
    inset: 12%;
    display: block;
    border: 1px solid rgba(255, 92, 130, 0.38);
    border-radius: 50%;
    animation: home-orbit 16s linear infinite;
}

.home-orbit-fallback i:nth-child(2) {
    inset: 23%;
    border-color: rgba(255, 255, 255, 0.24);
    transform: rotateX(64deg);
    animation-direction: reverse;
    animation-duration: 12s;
}

.home-orbit-fallback i:nth-child(3) {
    inset: 34%;
    border-style: dashed;
    animation-duration: 8s;
}

.home-page.three-ready .home-orbit-fallback {
    opacity: 0.08;
}

@keyframes home-orbit {
    to { transform: rotate(360deg); }
}

.home-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 6.5rem;
}

.home-hero__kicker {
    color: #ff8aa7;
}

.home-hero h1 {
    max-width: 850px;
    margin-top: 1.8rem;
    font-family: var(--home-display);
    font-size: clamp(5rem, 9.3vw, 9.8rem);
    font-weight: 600;
    letter-spacing: -0.07em;
    line-height: 0.78;
}

.home-hero__line {
    display: block;
    opacity: 0;
    transform: translateY(65px);
    animation: home-title-in 1s 0.15s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.home-hero__line--offset {
    margin-top: 0.25em;
    margin-left: 0.42em;
    animation-delay: 0.3s;
}

.home-hero h1 em {
    color: var(--home-pink);
    font-weight: 500;
}

@keyframes home-title-in {
    to { opacity: 1; transform: translateY(0); }
}

.home-hero__lead {
    max-width: 570px;
    margin-top: 2.7rem;
    margin-left: clamp(0rem, 5vw, 5.5rem);
    padding-left: 1.4rem;
    border-left: 2px solid rgba(242, 54, 101, 0.72);
    color: rgba(255, 255, 255, 0.67);
    font-size: 1rem;
    line-height: 1.85;
    opacity: 0;
    animation: home-fade-in 0.9s 0.72s ease forwards;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.4rem;
    margin-left: clamp(0rem, 5vw, 5.5rem);
    opacity: 0;
    animation: home-fade-in 0.9s 0.9s ease forwards;
}

@keyframes home-fade-in {
    to { opacity: 1; }
}

.home-hero__coordinates {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: 2.6rem;
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
}

.home-hero__index {
    position: absolute;
    z-index: 2;
    right: max(6rem, calc((100vw - 1220px) / 2));
    bottom: 3.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-hero__index i {
    width: 3.2rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.24);
}

.home-hero__scroll {
    position: absolute;
    z-index: 5;
    bottom: 3rem;
    left: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.54rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.home-hero__scroll i {
    width: 1px;
    height: 3.2rem;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
}

.home-hero__scroll i::after {
    position: absolute;
    inset: 0;
    background: var(--home-pink);
    content: '';
    animation: home-scroll 2.2s ease-in-out infinite;
    transform: translateY(-100%);
}

@keyframes home-scroll {
    55%, 100% { transform: translateY(100%); }
}

/* Marquee */
.home-marquee {
    overflow: hidden;
    border-bottom: 1px solid var(--home-line);
    background: #fff;
}

.home-marquee__track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 2.2rem;
    padding: 1.35rem 0;
    animation: home-marquee 32s linear infinite;
}

.home-marquee__track span {
    color: var(--home-ink);
    font-family: var(--home-display);
    font-size: 1.05rem;
    font-style: italic;
    white-space: nowrap;
}

.home-marquee__track i {
    color: var(--home-pink);
    font-size: 0.75rem;
}

@keyframes home-marquee {
    to { transform: translateX(-50%); }
}

/* Manifesto */
.home-manifesto {
    padding: clamp(6.5rem, 10vw, 10rem) 0;
}

.home-manifesto__grid {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: center;
    gap: clamp(4rem, 9vw, 9rem);
    padding-top: 5.5rem;
}

.home-manifesto__copy > p {
    margin-bottom: 1.5rem;
    color: var(--home-muted);
    font-size: 0.98rem;
    line-height: 1.9;
}

.home-manifesto__copy .home-manifesto__lead {
    color: var(--home-ink);
    font-family: var(--home-display);
    font-size: clamp(1.7rem, 2.8vw, 2.5rem);
    line-height: 1.3;
}

.home-manifesto__copy .home-link {
    margin-top: 1.5rem;
}

.home-signature-stat {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--home-line);
}

.home-signature-stat strong {
    color: var(--home-ink);
    font-family: var(--home-display);
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 1;
}

.home-signature-stat sup {
    color: var(--home-pink);
    font-size: 0.5em;
}

.home-signature-stat > span {
    color: #8e8286;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.6;
    text-transform: uppercase;
}

.home-manifesto__collage {
    min-height: 720px;
    position: relative;
}

.home-collage__main {
    width: 72%;
    height: 650px;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
}

.home-collage__main::after,
.home-collage__detail::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    content: '';
    margin: 1rem;
    pointer-events: none;
}

.home-collage__main img,
.home-collage__detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-collage__main img {
    object-position: center 35%;
}

.home-collage__detail {
    width: 45%;
    height: 260px;
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    overflow: hidden;
    box-shadow: 20px 24px 60px rgba(32, 11, 18, 0.14);
}

.home-manifesto__collage:hover img {
    transform: scale(1.025);
}

.home-collage__seal {
    width: 8.6rem;
    aspect-ratio: 1;
    position: absolute;
    z-index: 3;
    top: 9%;
    left: 5%;
    display: grid;
    place-content: center;
    justify-items: center;
    border: 1px solid rgba(242, 54, 101, 0.42);
    border-radius: 50%;
    background: rgba(247, 243, 241, 0.84);
    backdrop-filter: blur(15px);
    color: var(--home-pink);
    transform: rotate(-9deg);
}

.home-collage__seal::after {
    position: absolute;
    inset: 0.55rem;
    border: 1px dashed rgba(242, 54, 101, 0.34);
    border-radius: inherit;
    content: '';
}

.home-collage__seal span {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-collage__seal strong {
    margin: 0.2rem 0;
    font-family: var(--home-display);
    font-size: 1.7rem;
    font-style: italic;
}

.home-collage__caption {
    position: absolute;
    right: -3rem;
    bottom: 12rem;
    color: #93868a;
    font-family: var(--home-display);
    font-size: 0.85rem;
    font-style: italic;
    line-height: 1.5;
    transform: rotate(90deg);
}

/* Services */
.home-services {
    position: relative;
    isolation: isolate;
    padding: clamp(6.5rem, 10vw, 9.5rem) 0;
    overflow: hidden;
    background: var(--home-wine);
}

.home-services__mesh {
    position: absolute;
    z-index: -1;
    top: -20rem;
    right: -14rem;
    width: 55rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle, transparent 0 24px, rgba(242, 54, 101, 0.08) 25px 26px),
        radial-gradient(circle, rgba(242, 54, 101, 0.12), transparent 64%);
    animation: home-mesh-turn 30s linear infinite;
}

@keyframes home-mesh-turn { to { transform: rotate(360deg); } }

.home-services__list {
    margin-top: 2rem;
}

.home-service {
    min-height: 10.5rem;
    position: relative;
    display: grid;
    grid-template-columns: 0.25fr 1fr 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    isolation: isolate;
    overflow: hidden;
}

.home-service__number {
    color: rgba(255, 255, 255, 0.28);
    font-family: var(--home-display);
    font-size: 1.1rem;
    font-style: italic;
}

.home-service__title {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.home-service__title .material-symbols-outlined {
    width: 3.4rem;
    height: 3.4rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.17);
    color: var(--home-pink-light);
    font-size: 1.4rem;
    font-variation-settings: 'FILL' 1;
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.home-service h3 {
    font-family: var(--home-display);
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 500;
}

.home-service > p {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.88rem;
    line-height: 1.75;
}

.home-service__arrow {
    width: 3.5rem;
    height: 3.5rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}

.home-service img.home-service__preview {
    width: clamp(10rem, 14vw, 13.5rem);
    height: calc(100% - 1.5rem);
    position: absolute;
    z-index: -1;
    top: 0.75rem;
    right: 8%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    pointer-events: none;
    filter: saturate(0.9) contrast(1.04);
    transform: translateX(1.25rem) rotate(2deg) scale(0.94);
    transition: opacity 0.4s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.home-service__preview--fifteen {
    object-position: 50% 46%;
}

.home-service__preview--special {
    object-position: 50% 57%;
}

.home-service:is(:hover, :focus-visible) .home-service__preview {
    opacity: 0.42;
    filter: saturate(1) contrast(1.06);
    transform: translateX(0) rotate(-1deg) scale(1);
}

.home-service:focus-visible {
    outline: 1px solid rgba(255, 255, 255, 0.5);
    outline-offset: -1px;
}

.home-service:is(:hover, :focus-visible) .home-service__title .material-symbols-outlined,
.home-service:is(:hover, :focus-visible) .home-service__arrow {
    background: var(--home-pink);
    color: #fff;
    transform: rotate(8deg);
}

/* Method */
.home-method {
    padding: clamp(6.5rem, 11vw, 10rem) 0;
    background: #fff;
}

.home-method__grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    align-items: center;
    gap: clamp(4rem, 10vw, 10rem);
}

.home-method__visual {
    min-height: 720px;
    position: relative;
}

.home-method__image {
    width: 78%;
    height: 650px;
    position: absolute;
    right: 0;
    overflow: hidden;
}

.home-method__image::after {
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    content: '';
}

.home-method__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.home-method__label {
    position: absolute;
    z-index: 3;
    bottom: 8rem;
    left: -2.2rem;
    color: var(--home-pink);
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: rotate(-90deg);
}

.home-method__content h2 {
    margin-top: 1.6rem;
}

.home-method__intro {
    max-width: 580px;
    margin-top: 2rem;
    color: var(--home-muted);
    font-size: 1rem;
    line-height: 1.9;
}

.home-method__steps {
    margin-top: 3.2rem;
}

.home-method__steps li {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 1.2rem;
    padding: 1.8rem 0;
    border-top: 1px solid var(--home-line);
}

.home-method__steps li > span {
    color: var(--home-pink);
    font-family: var(--home-display);
    font-size: 1rem;
    font-style: italic;
}

.home-method__steps h3 {
    margin-bottom: 0.45rem;
    font-family: var(--home-display);
    font-size: 1.55rem;
    font-weight: 600;
}

.home-method__steps p {
    color: #897c80;
    font-size: 0.87rem;
}

/* Portfolio */
.home-portfolio {
    padding: clamp(6.5rem, 10vw, 9rem) 0;
    background: var(--home-paper);
}

.home-portfolio__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
}

.home-portfolio__heading h2 {
    margin-top: 1.2rem;
}

.home-portfolio__grid {
    width: min(calc(100% - 3rem), 1420px);
    display: grid;
    grid-template-columns: 1.45fr 0.72fr 0.72fr;
    gap: 1rem;
    margin-inline: auto;
}

.home-project {
    height: 620px;
    position: relative;
    display: block;
    overflow: hidden;
    background: #2a171d;
    color: #fff;
}

.home-project--portrait {
    height: 520px;
    margin-top: 100px;
}

.home-project::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(19, 6, 10, 0.85), transparent 52%);
    content: '';
}

.home-project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.home-project--wide img {
    object-position: center 50%;
}

.home-project:hover img {
    transform: scale(1.035);
    filter: saturate(1.1);
}

.home-project__meta {
    position: absolute;
    z-index: 2;
    right: 2rem;
    bottom: 2rem;
    left: 2rem;
}

.home-project__meta span {
    display: block;
    margin-bottom: 0.5rem;
    color: #ff8aa7;
    font-size: 0.57rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-project__meta strong {
    font-family: var(--home-display);
    font-size: clamp(1.65rem, 2.5vw, 2.7rem);
    font-weight: 500;
}

.home-project__index {
    position: absolute;
    z-index: 2;
    top: 1.4rem;
    right: 1.4rem;
    display: grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    font-family: var(--home-display);
    font-size: 0.72rem;
    font-style: italic;
}

/* Testimonial */
.home-testimonial {
    min-height: 720px;
    position: relative;
    display: grid;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 10%, rgba(242, 54, 101, 0.17), transparent 30rem),
        var(--home-wine);
    color: #fff;
}

.home-testimonial::after {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: -10rem;
    width: 40rem;
    aspect-ratio: 1;
    border: 1px solid rgba(242, 54, 101, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 5rem rgba(242, 54, 101, 0.035), 0 0 0 10rem rgba(242, 54, 101, 0.025);
    content: '';
    transform: translateY(-50%);
}

.home-testimonial__inner {
    position: relative;
    display: grid;
    justify-items: center;
    padding: 7rem 0;
    text-align: center;
}

.home-testimonial__quote {
    position: absolute;
    top: 1rem;
    left: 0;
    color: rgba(242, 54, 101, 0.18);
    font-family: var(--home-display);
    font-size: 20rem;
    line-height: 1;
}

.home-testimonial blockquote {
    max-width: 990px;
    margin-top: 2.2rem;
    font-family: var(--home-display);
    font-size: clamp(2rem, 4.2vw, 4.3rem);
    font-style: italic;
    line-height: 1.28;
    text-wrap: balance;
}

.home-testimonial__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.3rem;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-testimonial__author i {
    width: 2rem;
    height: 1px;
    background: var(--home-pink);
}

.home-testimonial .home-link {
    margin-top: 2.6rem;
}

/* CTA */
.home-cta {
    min-height: 800px;
    position: relative;
    display: grid;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
}

.home-cta__photo,
.home-cta__veil {
    position: absolute;
    inset: 0;
}

.home-cta__photo {
    z-index: -2;
}

.home-cta__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
    transition: transform 8s ease;
}

.home-cta:hover .home-cta__photo img {
    transform: scale(1.04);
}

.home-cta__veil {
    z-index: -1;
    background: linear-gradient(90deg, rgba(20, 6, 11, 0.94), rgba(20, 6, 11, 0.66)),
        linear-gradient(0deg, rgba(20, 6, 11, 0.74), transparent);
}

.home-cta__content {
    display: grid;
    justify-items: start;
}

.home-cta h2 {
    max-width: 990px;
    margin-top: 1.7rem;
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.95;
}

.home-cta__content > p:not(.home-kicker) {
    max-width: 560px;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.64);
    font-size: 1rem;
    line-height: 1.8;
}

.home-cta__actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.7rem;
}

/* Footer */
.home-footer {
    background: #100408;
    color: #fff;
}

.home-footer__top {
    min-height: 12rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
}

.home-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    justify-self: start;
}

.home-footer__brand img {
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 50%;
    object-fit: cover;
}

.home-footer__brand div {
    display: grid;
    gap: 0.3rem;
}

.home-footer__brand strong {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
}

.home-footer__brand span,
.home-footer__top > p {
    color: rgba(255, 255, 255, 0.37);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    line-height: 1.7;
    text-transform: uppercase;
}

.home-footer__top > p {
    text-align: center;
}

.home-footer__social {
    display: flex;
    justify-self: end;
    gap: 1.6rem;
}

.home-footer__social a {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-footer__social a:hover {
    color: var(--home-pink-light);
}

.home-footer__bottom {
    display: flex;
    justify-content: space-between;
    padding: 1.3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Reveal and interaction */
.home-reveal {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .home-hero h1 {
        font-size: clamp(5rem, 10vw, 7.8rem);
    }

    .home-manifesto__grid {
        grid-template-columns: 0.82fr 1.18fr;
        gap: 4rem;
    }

    .home-service {
        grid-template-columns: 0.18fr 1fr 0.8fr auto;
    }

    .home-method__grid {
        gap: 5rem;
    }

    .home-portfolio__grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .home-project:last-child {
        display: none;
    }
}

@media (max-width: 767px) {
    .home-container {
        width: min(calc(100% - 2rem), 1220px);
    }

    .home-section-heading {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        padding-bottom: 3rem;
    }

    .home-section-heading h2,
    .home-portfolio__heading h2,
    .home-method__content h2 {
        font-size: clamp(2.65rem, 12vw, 4.2rem);
    }

    .home-hero {
        min-height: 780px;
        height: 100svh;
        align-items: end;
    }

    .home-hero::after {
        inset: 0.7rem;
    }

    .home-hero__photo img {
        object-position: 56% center;
    }

    .home-hero__veil {
        background: linear-gradient(0deg, rgba(16, 4, 9, 0.99) 0%, rgba(16, 4, 9, 0.86) 52%, rgba(16, 4, 9, 0.34) 100%);
    }

    .home-hero__canvas {
        opacity: 0.42;
    }

    .home-orbit-fallback {
        top: 27%;
        right: -22%;
        width: 90vw;
    }

    .home-hero__content {
        width: calc(100% - 2rem);
        min-width: 0;
        padding: 9rem 0 4.8rem;
    }

    .home-hero h1 {
        max-width: 100%;
        font-size: clamp(3.65rem, 15.5vw, 4.85rem);
        line-height: 0.83;
    }

    .home-hero__line--offset {
        margin-left: 0;
    }

    .home-hero__lead,
    .home-hero__actions {
        margin-left: 0;
    }

    .home-hero__lead {
        width: 100%;
        max-width: 31rem;
        margin-top: 2rem;
        font-size: 0.91rem;
        line-height: 1.7;
    }

    .home-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.4rem;
        margin-top: 1.8rem;
    }

    .home-hero__coordinates,
    .home-hero__index,
    .home-hero__scroll {
        display: none;
    }

    .home-manifesto,
    .home-services,
    .home-method,
    .home-portfolio {
        padding-block: 5.5rem;
    }

    .home-manifesto__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding-top: 3.5rem;
    }

    .home-signature-stat {
        margin-top: 3.5rem;
    }

    .home-manifesto__collage {
        min-height: 590px;
    }

    .home-collage__main {
        width: 86%;
        height: 520px;
    }

    .home-collage__detail {
        width: 52%;
        height: 190px;
    }

    .home-collage__seal {
        width: 7rem;
        top: 5%;
        left: 0;
    }

    .home-collage__caption {
        display: none;
    }

    .home-service {
        min-height: auto;
        grid-template-columns: 2.5rem 1fr auto;
        gap: 0.8rem;
        padding: 2rem 0;
    }

    .home-service__title {
        gap: 0.8rem;
    }

    .home-service__title .material-symbols-outlined {
        width: 2.8rem;
        height: 2.8rem;
    }

    .home-service h3 {
        font-size: 1.65rem;
    }

    .home-service > p,
    .home-service__preview {
        display: none;
    }

    .home-service__arrow {
        width: 2.8rem;
        height: 2.8rem;
    }

    .home-method__grid {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .home-method__visual {
        min-height: 480px;
    }

    .home-method__image {
        width: 92%;
        height: 450px;
    }

    .home-method__label {
        bottom: 2.5rem;
        left: -1.7rem;
    }

    .home-portfolio__heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 3rem;
    }

    .home-portfolio__grid {
        width: 100%;
        display: flex;
        gap: 0.8rem;
        padding: 0 1rem 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .home-project,
    .home-project--portrait,
    .home-project:last-child {
        width: 82vw;
        height: 32rem;
        flex: 0 0 auto;
        display: block;
        margin-top: 0;
        scroll-snap-align: center;
    }

    .home-testimonial {
        min-height: 650px;
    }

    .home-testimonial__quote {
        top: 3rem;
        font-size: 11rem;
    }

    .home-testimonial blockquote {
        font-size: clamp(1.85rem, 8.5vw, 3rem);
    }

    .home-testimonial__author {
        align-items: center;
        flex-direction: column;
        gap: 0.65rem;
    }

    .home-cta {
        min-height: 700px;
    }

    .home-cta h2 {
        font-size: clamp(3.2rem, 14vw, 5rem);
    }

    .home-cta__actions {
        width: 100%;
        max-width: 26rem;
        flex-direction: column;
    }

    .home-button,
    .home-cta__actions .home-button {
        min-height: 3.4rem;
        justify-content: center;
        text-align: center;
    }

    .home-footer__top {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 3.5rem 0;
        text-align: center;
    }

    .home-footer__brand,
    .home-footer__social {
        justify-self: center;
    }

    .home-footer__bottom {
        align-items: center;
        flex-direction: column;
        gap: 0.7rem;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .home-hero h1 {
        font-size: clamp(3.45rem, 15vw, 4rem);
    }

    .home-hero__content {
        padding-bottom: 3rem;
    }

    .home-kicker {
        font-size: 0.57rem;
        letter-spacing: 0.2em;
    }

    .home-button {
        width: 100%;
    }

    .home-service {
        grid-template-columns: 2rem 1fr auto;
    }

    .home-service__title .material-symbols-outlined {
        display: none;
    }

    .home-method__visual {
        min-height: 430px;
    }

    .home-method__image {
        width: 94%;
        height: 405px;
    }

    .home-project,
    .home-project--portrait,
    .home-project:last-child {
        width: calc(100vw - 2.5rem);
        height: 29rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__line,
    .home-hero__lead,
    .home-hero__actions,
    .home-reveal {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .home-marquee__track,
    .home-orbit-fallback i,
    .home-services__mesh,
    .home-hero__scroll i::after {
        animation: none;
    }
}
