:root {
    --lv-ink: #1c1c1c;
    --lv-heading: #333;
    --lv-muted: #666;
    --lv-blue: #9ca7b2;
    --lv-soft: #f0f8ff;
    --lv-radius: 30px;
    --lv-container: 1598px;
    --lv-gutter: clamp(20px, 7.25vw, 139px);
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: #fff;
    color: var(--lv-ink);
    font-family: Roboto, Arial, sans-serif;
}

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.lv-page {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 71px var(--lv-gutter) 38px;
}

.lv-header,
main,
.lv-footer {
    width: min(100%, var(--lv-container));
    margin: 0 auto;
}

.lv-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.lv-logo {
    display: inline-flex;
    align-items: center;
    min-width: max-content;
    color: #000;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(28px, 2vw, 42px);
    font-weight: 600;
    line-height: .75;
    text-transform: uppercase;
}

.lv-logo span {
    display: block;
    transform: scaleX(1.34);
    transform-origin: left center;
}

.lv-nav {
    display: flex;
    align-items: center;
    gap: 45px;
}

.lv-nav a {
    font-family: Raleway, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    transition: color 180ms ease, transform 180ms ease;
}

.lv-nav a:hover {
    color: var(--lv-blue);
    transform: translateY(-1px);
}

.lv-search {
    position: relative;
    width: 23px;
    height: 23px;
}

.lv-search span::before {
    content: "";
    position: absolute;
    inset: 1px 5px 5px 1px;
    border: 1.5px solid var(--lv-heading);
    border-radius: 50%;
}

.lv-search span::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 1px;
    width: 8px;
    height: 1.5px;
    border-radius: 999px;
    background: var(--lv-heading);
    transform: rotate(45deg);
    transform-origin: center;
}

.lv-menu-toggle {
    display: none;
}

.lv-hero {
    margin-top: 82px;
    display: grid;
    grid-template-columns: minmax(340px, 470px) minmax(0, 1056px);
    align-items: center;
    gap: 72px;
}

.lv-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 52px;
}

.lv-kicker {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    text-transform: uppercase;
}

.lv-hero h1,
.lv-about h2,
.lv-section-head h2 {
    color: var(--lv-heading);
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: 0;
}

.lv-hero h1 {
    font-size: clamp(72px, 6.1vw, 117px);
    line-height: .78;
}

.lv-hero-copy > p:not(.lv-kicker),
.lv-about p,
.lv-story-card p,
.lv-story-feature p,
.lv-footer p,
.lv-newsletter p {
    color: var(--lv-muted);
    font-size: 16px;
    line-height: 1.5;
}

.lv-button,
.lv-ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 16px 48px;
    border-radius: 15px;
    background: #000;
    color: #fff;
    font-family: Raleway, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    transition: transform 220ms cubic-bezier(.22, 1, .36, 1), background-color 220ms ease, color 220ms ease;
}

.lv-button span,
.lv-ghost-link span,
.lv-next span {
    width: 24px;
    height: 24px;
    position: relative;
    flex: 0 0 24px;
}

.lv-button span::before,
.lv-ghost-link span::before,
.lv-next span::before {
    content: "";
    position: absolute;
    right: 5px;
    top: 7px;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
}

.lv-button span::after,
.lv-ghost-link span::after,
.lv-next span::after {
    content: "";
    position: absolute;
    left: 3px;
    top: 11px;
    width: 17px;
    border-top: 1.5px solid currentColor;
}

.lv-button:hover,
.lv-ghost-link:hover {
    transform: translateY(-2px);
    background: var(--lv-blue);
}

.lv-button:active,
.lv-ghost-link:active {
    transform: translateY(0) scale(.98);
}

.lv-hero-card {
    position: relative;
    min-height: 651px;
    overflow: hidden;
    border-radius: var(--lv-radius);
    background: #eee;
}

.lv-hero-card > img {
    width: 100%;
    height: 651px;
}

.lv-floating-card {
    position: absolute;
    right: 40px;
    bottom: 29px;
    z-index: 2;
    width: min(584px, calc(100% - 80px));
    padding: 31px 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 13px;
    border-radius: 28px;
    background: #fff;
    text-align: right;
}

.lv-card-meta {
    display: flex;
    justify-content: flex-end;
    gap: 17px;
    color: #000;
    font-size: 16px;
    line-height: 1.5;
    text-transform: uppercase;
}

.lv-floating-card h2,
.lv-feature-band h2,
.lv-story-feature h3,
.lv-story-card h3,
.lv-newsletter h2,
.lv-newsletter h3 {
    color: var(--lv-heading);
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: 0;
}

.lv-floating-card h2,
.lv-feature-band h2,
.lv-story-feature h3 {
    font-size: 40px;
    line-height: .86;
}

.lv-floating-card p {
    max-width: 482px;
    color: var(--lv-muted);
    font-size: 16px;
    line-height: 1.5;
}

.lv-floating-card a,
.lv-feature-band a,
.lv-story-card a {
    color: var(--lv-blue);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lv-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    display: flex;
    gap: 5px;
    transform: translateX(-50%);
}

.lv-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
}

.lv-dots span:first-child {
    background: #fff;
}

.lv-feature-band {
    margin-top: 81px;
    padding: 29px 96px 40px 36px;
    display: grid;
    grid-template-columns: minmax(0, 913px) minmax(360px, 493px);
    align-items: center;
    gap: 60px;
    border-radius: var(--lv-radius);
    background: var(--lv-blue);
}

.lv-feature-band img {
    width: 100%;
    height: 426px;
    border-radius: var(--lv-radius);
}

.lv-feature-band > div {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.lv-feature-band .lv-kicker,
.lv-feature-band h2,
.lv-feature-band p,
.lv-feature-band a {
    color: #fff;
}

.lv-about {
    margin-top: 99px;
    display: grid;
    grid-template-columns: minmax(0, 858px) minmax(320px, 679px);
    align-items: center;
    gap: 63px;
}

.lv-about-copy {
    display: flex;
    flex-direction: column;
    gap: 61px;
}

.lv-about-copy > .lv-kicker {
    margin-bottom: -35px;
}

.lv-about h2 {
    max-width: 835px;
    font-size: 40px;
    line-height: 1.125;
}

.lv-about-row {
    display: grid;
    grid-template-columns: 272px minmax(0, 1fr);
    align-items: center;
    gap: 57px;
}

.lv-about-row img {
    width: 272px;
    height: 346px;
    border-radius: var(--lv-radius);
}

.lv-about-row > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
}

.lv-about-image {
    width: 100%;
    height: 576px;
    border-radius: var(--lv-radius);
}

.lv-stories {
    margin-top: 99px;
}

.lv-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.lv-section-head h2 {
    font-size: 40px;
    line-height: 1.25;
}

.lv-ghost-link {
    background: transparent;
    color: #000;
}

.lv-ghost-link:hover {
    color: #fff;
}

.lv-story-panel {
    padding: 69px 68px 78px 54px;
    display: flex;
    flex-direction: column;
    gap: 83px;
    border-radius: var(--lv-radius);
    background: var(--lv-soft);
}

.lv-story-feature {
    display: grid;
    grid-template-columns: minmax(0, 888px) minmax(320px, 589px);
    align-items: center;
    gap: 35px;
}

.lv-story-feature img {
    width: 100%;
    height: 456px;
    border-radius: var(--lv-radius);
}

.lv-story-feature > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.lv-story-feature h3 {
    max-width: 485px;
    line-height: 1.125;
}

.lv-story-grid,
.lv-card-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 58px;
}

.lv-card-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lv-story-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.lv-story-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 513 / 360;
    border-radius: 16px;
}

.lv-story-card h3 {
    font-size: 32px;
    line-height: 1;
    text-transform: capitalize;
}

.lv-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lv-pagination a,
.lv-pagination span {
    min-width: 53px;
    height: 53px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.lv-pagination a {
    transition: background-color 180ms ease, transform 180ms ease;
}

.lv-pagination a:hover,
.lv-pagination a.is-active {
    background: #efefef;
}

.lv-next {
    gap: 13px;
    width: auto;
    min-width: 105px;
    border-radius: 999px;
}

.lv-newsletter {
    margin-top: 99px;
    padding: 30px 28px 26px 48px;
    display: grid;
    grid-template-columns: minmax(360px, 562px) minmax(0, 800px);
    align-items: center;
    justify-content: center;
    gap: 139px;
    border-radius: var(--lv-radius);
    background: var(--lv-ink);
}

.lv-newsletter-copy {
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.lv-newsletter h2 {
    max-width: 482px;
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
}

.lv-newsletter p {
    max-width: 418px;
    color: rgba(255, 255, 255, .5);
}

.lv-subscribe {
    width: min(397px, 100%);
    min-height: 62px;
    padding: 3px 8px 3px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-radius: 15px;
    background: #fff;
}

.lv-subscribe label {
    flex: 1 1 auto;
}

.lv-subscribe span {
    display: none;
}

.lv-subscribe input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #000;
    font-size: 16px;
    line-height: 1.5;
}

.lv-subscribe input::placeholder,
.lv-subscribe label::before {
    color: rgba(0, 0, 0, .5);
}

.lv-subscribe label::before {
    content: "Your email";
    display: block;
    pointer-events: none;
}

.lv-subscribe input:focus + span,
.lv-subscribe input:not(:placeholder-shown) + span {
    display: none;
}

.lv-subscribe button {
    width: 121px;
    min-height: 50px;
    border: 0;
    border-radius: 15px;
    background: var(--lv-blue);
    color: #fff;
    font-family: Raleway, sans-serif;
    font-weight: 600;
    cursor: pointer;
}

.lv-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .5);
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
}

.lv-consent input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lv-consent span {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 8px;
    background: #fff;
}

.lv-consent input:checked + span {
    box-shadow: inset 0 0 0 8px var(--lv-blue);
}

.lv-newsletter-side {
    display: grid;
    grid-template-columns: minmax(240px, 386px) minmax(260px, 393px);
    align-items: end;
    gap: 21px;
}

.lv-newsletter-side h3 {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.lv-newsletter-side div {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.lv-newsletter-side img {
    width: 100%;
    height: 305px;
    border-radius: var(--lv-radius);
}

.lv-footer {
    margin-top: 69px;
}

.lv-footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 72px;
}

.lv-footer-brand {
    display: flex;
    align-items: center;
    gap: 47px;
}

.lv-footer-brand > img {
    width: 352px;
    height: 235px;
    border-radius: var(--lv-radius);
}

.lv-footer-brand > div {
    width: min(489px, 100%);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lv-footer-brand .lv-logo {
    font-size: 36px;
}

.lv-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lv-socials a {
    width: 31.5px;
    height: 31.5px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--lv-ink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.lv-footer-links {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.lv-footer-links div {
    width: 108px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lv-footer-links h3 {
    color: var(--lv-ink);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.lv-footer-links a {
    color: var(--lv-muted);
    font-size: 16px;
    line-height: 1.5;
    transition: color 180ms ease;
}

.lv-footer-links a:hover {
    color: #000;
}

.lv-copyright {
    margin-top: 38px;
    color: var(--lv-muted);
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
}

[data-animate] {
    will-change: opacity, transform;
}

.lv-parallax {
    will-change: transform;
}

@media (max-width: 1400px) {
    .lv-page {
        padding-top: 48px;
    }

    .lv-hero,
    .lv-feature-band,
    .lv-about,
    .lv-story-feature,
    .lv-newsletter {
        gap: clamp(32px, 4vw, 72px);
    }

    .lv-feature-band {
        padding-right: 48px;
    }

    .lv-newsletter {
        grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.2fr);
    }
}

@media (max-width: 1100px) {
    .lv-page {
        padding-inline: 28px;
    }

    .lv-header {
        align-items: flex-start;
    }

    .lv-menu-toggle {
        position: relative;
        z-index: 4;
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .lv-menu-toggle span {
        width: 24px;
        height: 1.5px;
        border-radius: 999px;
        background: #000;
        transition: transform 220ms ease;
    }

    body.lv-nav-open .lv-menu-toggle span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    body.lv-nav-open .lv-menu-toggle span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

    .lv-nav {
        position: fixed;
        left: 20px;
        right: 20px;
        top: 92px;
        z-index: 3;
        padding: 26px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 24px 80px rgba(0, 0, 0, .12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 220ms ease, transform 220ms ease;
        backdrop-filter: blur(12px);
    }

    body.lv-nav-open .lv-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .lv-hero,
    .lv-about,
    .lv-story-feature,
    .lv-newsletter,
    .lv-footer-main {
        grid-template-columns: 1fr;
    }

    .lv-hero {
        margin-top: 64px;
    }

    .lv-hero-card,
    .lv-hero-card > img {
        height: auto;
        min-height: 0;
    }

    .lv-hero-card > img {
        aspect-ratio: 1056 / 651;
    }

    .lv-feature-band {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .lv-about-row {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 32px;
    }

    .lv-about-row img {
        width: 220px;
        height: 280px;
    }

    .lv-about-image {
        height: auto;
        aspect-ratio: 679 / 576;
    }

    .lv-story-panel {
        padding: 40px;
        gap: 56px;
    }

    .lv-story-feature img {
        height: auto;
        aspect-ratio: 888 / 456;
    }

    .lv-card-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lv-newsletter-side {
        grid-template-columns: 1fr 1fr;
    }

    .lv-footer-main {
        display: grid;
    }

    .lv-footer-brand {
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .lv-page {
        padding: 28px 20px 30px;
    }

    .lv-logo {
        font-size: 30px;
    }

    .lv-hero {
        margin-top: 52px;
    }

    .lv-hero-copy {
        gap: 26px;
    }

    .lv-hero h1 {
        font-size: clamp(54px, 17vw, 72px);
        line-height: .86;
    }

    .lv-button,
    .lv-ghost-link {
        width: 100%;
        min-height: 52px;
        padding: 14px 22px;
    }

    .lv-floating-card {
        position: static;
        width: 100%;
        padding: 24px;
        border-radius: 0 0 24px 24px;
    }

    .lv-hero-card {
        background: #fff;
    }

    .lv-hero-card > img {
        border-radius: 24px 24px 0 0;
    }

    .lv-floating-card h2,
    .lv-feature-band h2,
    .lv-story-feature h3,
    .lv-about h2,
    .lv-section-head h2 {
        font-size: 34px;
        line-height: 1.02;
    }

    .lv-dots {
        display: none;
    }

    .lv-feature-band,
    .lv-about,
    .lv-stories,
    .lv-newsletter,
    .lv-footer {
        margin-top: 64px;
    }

    .lv-feature-band {
        padding: 20px;
        border-radius: 24px;
    }

    .lv-feature-band img {
        height: auto;
        aspect-ratio: 913 / 426;
        border-radius: 20px;
    }

    .lv-about-copy {
        gap: 30px;
    }

    .lv-about-copy > .lv-kicker {
        margin-bottom: -10px;
    }

    .lv-about-row,
    .lv-story-grid,
    .lv-card-row,
    .lv-newsletter-side,
    .lv-footer-brand,
    .lv-footer-links {
        grid-template-columns: 1fr;
        display: grid;
    }

    .lv-about-row img {
        width: 100%;
        height: auto;
        aspect-ratio: 544 / 692;
    }

    .lv-story-panel {
        padding: 20px;
        gap: 42px;
        border-radius: 24px;
    }

    .lv-story-card h3 {
        font-size: 28px;
    }

    .lv-section-head {
        display: block;
    }

    .lv-section-head .lv-ghost-link {
        margin-top: 18px;
    }

    .lv-newsletter {
        padding: 24px;
        border-radius: 24px;
    }

    .lv-subscribe {
        display: grid;
        padding: 14px;
    }

    .lv-subscribe button {
        width: 100%;
    }

    .lv-newsletter-side img,
    .lv-footer-brand > img {
        width: 100%;
        height: auto;
    }

    .lv-footer-brand > img {
        aspect-ratio: 352 / 235;
    }

    .lv-footer-links {
        gap: 30px;
    }

    .lv-footer-links div {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
