:root {
    --ink: #17131b;
    --ink-soft: #554c59;
    --cream: #f6f0e8;
    --paper: #fffdf9;
    --plum: #5c2748;
    --plum-dark: #35162b;
    --coral: #ec6a58;
    --yellow: #f0c955;
    --mint: #9bbca8;
    --line: rgba(23, 19, 27, 0.16);
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, "Helvetica Neue", Arial, sans-serif;
    --shell: min(1180px, calc(100% - 40px));
    --radius: 3px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: var(--ink);
    color: white;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.demo-notice {
    padding: 7px 20px;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-align: center;
    text-transform: uppercase;
}

.site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.96);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    color: var(--ink);
    text-decoration: none;
}

.brand-name {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.brand-tagline {
    margin-top: 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 38px);
}

.main-nav a {
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a:not(.nav-cta) {
    border-bottom: 1px solid transparent;
}

.main-nav a:not(.nav-cta):hover,
.main-nav a:not(.nav-cta):focus-visible {
    border-bottom-color: currentColor;
}

.nav-cta {
    padding: 12px 19px;
    background: var(--plum);
    color: white;
}

.hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 22%, rgba(236, 106, 88, 0.1), transparent 28%),
        var(--cream);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
    min-height: 670px;
    align-items: center;
    gap: clamp(40px, 7vw, 100px);
    padding-block: 72px 82px;
}

.eyebrow {
    margin: 0 0 17px;
    color: var(--plum);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.eyebrow.light {
    color: var(--yellow);
}

.hero h1,
.section-heading h2,
.editorial-copy h2,
.manifesto h2,
.contact h2,
.legal-page h1 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(55px, 6.5vw, 96px);
}

.hero h1 em,
.editorial-copy h2 em {
    color: var(--plum);
    font-weight: 400;
}

.hero-lead {
    max-width: 600px;
    margin: 29px 0 32px;
    color: var(--ink-soft);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.65;
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.collection-card a:focus-visible,
.text-link:focus-visible,
.footer-links a:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

.button-primary {
    background: var(--plum);
    color: white;
}

.button-primary:hover {
    background: var(--plum-dark);
}

.button-light {
    background: var(--paper);
    color: var(--plum-dark);
}

.microcopy {
    margin: 15px 0 0;
    color: #716875;
    font-size: 12px;
}

.hero-art {
    position: relative;
    min-height: 500px;
}

.fashion-frame {
    position: absolute;
}

.frame-main {
    inset: 0 24px 28px 56px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: var(--plum);
    box-shadow: 26px 30px 0 var(--coral);
    color: white;
}

.frame-main::before {
    content: "";
    position: absolute;
    width: 310px;
    height: 310px;
    top: 72px;
    right: -78px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
}

.frame-main::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: -142px;
    left: -80px;
    border-radius: 50%;
    background: var(--yellow);
}

.frame-number {
    position: absolute;
    top: 22px;
    left: 24px;
    font-family: var(--serif);
    font-size: 24px;
}

.vertical-word {
    position: absolute;
    z-index: 3;
    right: 18px;
    bottom: 76px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.25em;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: right bottom;
}

.frame-caption {
    position: absolute;
    z-index: 4;
    right: 25px;
    bottom: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.silhouette {
    position: absolute;
    z-index: 2;
}

.silhouette-main {
    width: 210px;
    height: 405px;
    bottom: -26px;
    left: 50%;
    transform: translateX(-52%);
}

.silhouette-head {
    position: absolute;
    top: 0;
    left: 50%;
    width: 68px;
    height: 82px;
    border-radius: 52% 48% 45% 55%;
    background: #caa08a;
    transform: translateX(-50%);
}

.silhouette-head::before {
    content: "";
    position: absolute;
    inset: -9px 2px 38px -5px;
    border-radius: 60% 45% 35% 50%;
    background: var(--ink);
}

.silhouette-body {
    position: absolute;
    top: 72px;
    left: 50%;
    width: 175px;
    height: 350px;
    border-radius: 78px 78px 18px 18px;
    background:
        linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.18) 49%, transparent 51%),
        #e7d4c0;
    clip-path: polygon(25% 0, 75% 0, 96% 100%, 4% 100%);
    transform: translateX(-50%);
}

.frame-accent {
    z-index: 5;
    bottom: 0;
    left: 0;
    width: 158px;
    height: 142px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: var(--yellow);
    color: var(--ink);
}

.frame-accent span {
    font-family: var(--serif);
    font-size: 34px;
    line-height: 1;
}

.frame-accent small {
    margin-top: 8px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.orbit {
    position: absolute;
    z-index: 6;
    display: block;
    border: 1px solid rgba(23, 19, 27, 0.32);
    border-radius: 50%;
}

.orbit-one {
    width: 38px;
    height: 38px;
    top: 18px;
    right: 0;
}

.orbit-two {
    width: 15px;
    height: 15px;
    top: 62px;
    right: 20px;
    background: var(--coral);
}

.marquee {
    min-width: max-content;
    display: flex;
    gap: 0;
    border-top: 1px solid var(--line);
    background: var(--paper);
}

.marquee span {
    padding: 16px 32px;
    color: var(--plum);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.17em;
    white-space: nowrap;
}

.marquee span::after {
    content: "✦";
    margin-left: 64px;
    color: var(--coral);
}

.section {
    padding-block: clamp(86px, 10vw, 140px);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
    align-items: end;
    gap: 45px;
    margin-bottom: 46px;
}

.section-heading h2 {
    font-size: clamp(48px, 5vw, 72px);
}

.section-heading > p {
    max-width: 430px;
    margin: 0 0 5px;
    color: var(--ink-soft);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.collection-card {
    position: relative;
    min-height: 485px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: white;
}

.card-woman {
    background: var(--plum);
}

.card-man {
    background: #1e2930;
}

.card-child {
    background: #cb594a;
}

.collection-card::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    top: 56px;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transform: translateX(-50%);
}

.collection-card::after {
    content: "";
    position: absolute;
    width: 105px;
    height: 225px;
    top: 99px;
    left: 50%;
    border-radius: 55px 55px 8px 8px;
    background: rgba(255, 255, 255, 0.15);
    clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
    transform: translateX(-50%);
}

.collection-index {
    position: absolute;
    top: 22px;
    left: 24px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.collection-letter {
    position: absolute;
    z-index: 0;
    top: -35px;
    right: -15px;
    color: rgba(255, 255, 255, 0.08);
    font-family: var(--serif);
    font-size: 280px;
    line-height: 1;
}

.collection-content {
    position: relative;
    z-index: 2;
}

.collection-content p {
    margin: 0 0 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.collection-content h3 {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: 50px;
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
}

.collection-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.editorial {
    background: #eee3d6;
}

.editorial-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(65px, 9vw, 130px);
}

.editorial-visual {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--mint);
}

.editorial-visual::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: 100px;
    left: -110px;
    border: 1px solid rgba(23, 19, 27, 0.35);
    border-radius: 50%;
}

.editorial-label {
    position: absolute;
    z-index: 4;
    top: 25px;
    left: 25px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.editorial-figure {
    position: absolute;
    z-index: 2;
    inset: 65px 20px 0;
}

.figure-head {
    position: absolute;
    top: 17px;
    left: 50%;
    width: 76px;
    height: 92px;
    border-radius: 50%;
    background: #c5967d;
    transform: translateX(-50%);
}

.figure-head::after {
    content: "";
    position: absolute;
    inset: -10px -8px 40px;
    border-radius: 50% 50% 35% 45%;
    background: var(--plum-dark);
}

.figure-body {
    position: absolute;
    top: 98px;
    left: 50%;
    width: 245px;
    height: 445px;
    clip-path: polygon(21% 0, 79% 0, 100% 100%, 0 100%);
    background: var(--plum);
    transform: translateX(-50%);
}

.figure-body::after {
    content: "";
    position: absolute;
    inset: 0 50% 0 auto;
    width: 1px;
    background: rgba(255, 255, 255, 0.26);
}

.figure-shadow {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 300px;
    height: 30px;
    border-radius: 50%;
    background: rgba(23, 19, 27, 0.14);
    filter: blur(10px);
    transform: translateX(-50%);
}

.editorial-word {
    position: absolute;
    z-index: 3;
    right: -18px;
    bottom: 30px;
    color: rgba(255, 255, 255, 0.64);
    font-family: var(--serif);
    font-size: 72px;
    letter-spacing: -0.05em;
    transform: rotate(-90deg) translateX(100%);
    transform-origin: right bottom;
}

.editorial-copy h2 {
    font-size: clamp(48px, 5.5vw, 78px);
}

.editorial-copy > p:not(.eyebrow) {
    max-width: 610px;
    margin: 30px 0;
    color: var(--ink-soft);
    font-size: 17px;
}

.feature-list {
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.feature-list li {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.feature-list span {
    color: var(--plum);
    font-family: var(--serif);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--plum);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link span {
    font-size: 20px;
}

.manifesto {
    background: var(--plum-dark);
    color: white;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
    gap: 70px;
    align-items: end;
}

.manifesto h2 {
    max-width: 850px;
    color: #fff7ed;
    font-size: clamp(48px, 6vw, 84px);
}

.manifesto-copy p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.72);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.18);
}

.values-grid article {
    min-height: 220px;
    padding: 30px;
    background: var(--plum-dark);
}

.values-grid span {
    color: var(--yellow);
    font-family: var(--serif);
    font-size: 20px;
}

.values-grid h3 {
    margin: 28px 0 10px;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
}

.values-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

.contact {
    background: var(--paper);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1.2fr);
    gap: clamp(65px, 9vw, 125px);
    align-items: start;
}

.contact h2 {
    font-size: clamp(54px, 6vw, 88px);
}

.contact-copy > p:not(.eyebrow) {
    max-width: 500px;
    margin: 28px 0;
    color: var(--ink-soft);
    font-size: 17px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 34px 0 12px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-style: normal;
}

.contact-details a {
    width: fit-content;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.contact-copy small {
    color: #756c79;
}

.form-panel {
    padding: clamp(28px, 4vw, 50px);
    background: var(--cream);
}

.form-row {
    margin-bottom: 19px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.form-row label span {
    color: #756c79;
    font-weight: 400;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid rgba(23, 19, 27, 0.28);
    border-radius: 0;
    background: var(--paper);
    color: var(--ink);
}

.form-row textarea {
    min-height: 115px;
    resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--plum);
    outline: 2px solid rgba(92, 39, 72, 0.2);
    outline-offset: 2px;
}

.consent-row {
    display: grid;
    grid-template-columns: 19px 1fr;
    gap: 11px;
    align-items: start;
    margin: 6px 0 22px;
    color: var(--ink-soft);
    font-size: 12px;
}

.consent-row input {
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: var(--plum);
}

.button-full {
    width: 100%;
}

.form-note {
    margin: 12px 0 0;
    color: #756c79;
    font-size: 11px;
    text-align: center;
}

.form-success,
.form-error {
    display: flex;
    gap: 14px;
    margin-bottom: 23px;
    padding: 17px;
    border: 1px solid;
    background: var(--paper);
}

.form-success {
    border-color: var(--mint);
}

.form-success > span {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--mint);
    color: white;
    font-weight: 800;
}

.form-success h3,
.form-success p {
    margin: 0;
}

.form-success h3 {
    font-family: var(--serif);
    font-size: 21px;
}

.form-success p {
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 13px;
}

.form-error {
    display: block;
    border-color: var(--coral);
}

.form-error ul {
    margin: 8px 0 0;
    padding-left: 20px;
    font-size: 13px;
}

.hp-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.site-footer {
    background: var(--ink);
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr 0.6fr;
    gap: 50px;
    padding-block: 64px;
}

.footer-brand {
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

.footer-bottom a {
    color: white;
}

.legal-page {
    min-height: 72vh;
    padding-block: 80px 110px;
    background: var(--cream);
}

.legal-wrap {
    max-width: 820px;
}

.legal-page h1 {
    margin-bottom: 38px;
    font-size: clamp(48px, 6vw, 78px);
}

.legal-notice {
    margin-bottom: 34px;
    padding: 18px 20px;
    border-left: 4px solid var(--coral);
    background: var(--paper);
}

.legal-content {
    padding: clamp(25px, 4vw, 45px);
    background: var(--paper);
}

.legal-content h2 {
    margin: 35px 0 9px;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--ink-soft);
}

.legal-content a {
    color: var(--plum);
}

@media (max-width: 980px) {
    .hero-grid {
        grid-template-columns: 1fr 390px;
        gap: 35px;
    }

    .editorial-grid,
    .contact-grid {
        gap: 55px;
    }

    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 800px) {
    :root {
        --shell: min(100% - 30px, 680px);
    }

    .header-inner {
        min-height: 76px;
    }

    .main-nav a:not(.nav-cta) {
        display: none;
    }

    .hero-grid,
    .section-heading,
    .editorial-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: auto;
        padding-top: 58px;
    }

    .hero-art {
        min-height: 510px;
    }

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

    .collection-card {
        min-height: 410px;
    }

    .editorial-visual {
        min-height: 540px;
    }

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

    .values-grid article {
        min-height: 0;
    }
}

@media (max-width: 520px) {
    .demo-notice {
        padding-inline: 12px;
        font-size: 9px;
        letter-spacing: 0.1em;
    }

    .brand-name {
        font-size: 21px;
    }

    .brand-tagline {
        display: none;
    }

    .nav-cta {
        padding: 10px 12px;
        font-size: 10px !important;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-art {
        min-height: 440px;
    }

    .frame-main {
        inset: 0 10px 28px 30px;
        box-shadow: 15px 18px 0 var(--coral);
    }

    .frame-accent {
        width: 130px;
        height: 115px;
        padding: 16px;
    }

    .silhouette-main {
        transform: translateX(-48%) scale(0.88);
        transform-origin: center bottom;
    }

    .section {
        padding-block: 78px;
    }

    .section-heading h2,
    .editorial-copy h2,
    .manifesto h2,
    .contact h2 {
        font-size: 46px;
    }

    .editorial-visual {
        min-height: 470px;
    }

    .editorial-figure {
        transform: scale(0.85);
        transform-origin: center bottom;
    }

    .form-panel {
        margin-inline: -15px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
