/* ─── Hero ────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100svh;
    min-height: 560px;
    max-height: 900px;
    overflow: hidden;
    background: #141414;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,1) 0%, transparent 30%),
        linear-gradient(to top,    rgba(0,0,0,0.45) 0%, transparent 40%);
}

.hero__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 52px 48px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero__text { max-width: 480px; }

.hero__eyebrow {
    margin-bottom: 18px;
    display: block;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.0;
    margin-bottom: 22px;
}

.hero__subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 340px;
}

.hero__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.2;
    flex-shrink: 0;
}

.hero__scroll-text {
    font-size: 0.5625rem;
    letter-spacing: 0.22em;
    color: #fff;
    writing-mode: vertical-rl;
}

.hero__scroll-line {
    width: 0.5px;
    height: 36px;
    background: #fff;
    display: block;
}

/* ─── Editorial strip (homepage) ─────────────────────── */
.editorial-strip {
    border-top: 0.5px solid var(--border);
}

.editorial-strip__dark {
    background: var(--black);
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editorial-strip__light {
    background: var(--off-white);
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editorial-strip__heading {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 18px;
    letter-spacing: -0.015em;
    color: #fff;
}

.editorial-strip__heading--dark { color: var(--black); }

.editorial-strip__body {
    font-size: 0.8125rem;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 280px;
    color: #555;
}

.editorial-strip__body--dark { color: var(--text-secondary); }

/* ─── Lookbook ────────────────────────────────────────── */
.lookbook-header {
    padding: 52px 48px 44px;
    border-bottom: 0.5px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.lookbook-header__season {
    font-size: 0.625rem;
    letter-spacing: 0.24em;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.lookbook-header__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--black);
    line-height: 1.05;
}

.lookbook-header__desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 240px;
    text-align: right;
}

.lookbook-spread {
    display: grid;
    gap: 1px;
    background: var(--border);
    border-bottom: 0.5px solid var(--border);
}

.lookbook-spread--1-2 { grid-template-columns: 3fr 2fr; }
.lookbook-spread--3   { grid-template-columns: repeat(3, 1fr); }
.lookbook-spread--edit{ grid-template-columns: 1fr 1fr; }
.lookbook-spread--2-1-2 { grid-template-columns: 2fr 1fr 2fr; }

.lookbook-img {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    background: var(--warm-grey);
}

.lookbook-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.lookbook-img:hover img { transform: scale(1.02); }

.lookbook-img__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.lookbook-img__caption--light {
    background: linear-gradient(to top, rgba(255,255,255,0.6) 0%, transparent 100%);
}

.lookbook-img__product {
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.65);
    margin-bottom: 4px;
}

.lookbook-img__caption--light .lookbook-img__product { color: rgba(0,0,0,0.5); }

.lookbook-img__link {
    font-size: 0.75rem;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 1px;
    display: inline-block;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: border-color 0.15s;
}

.lookbook-img__caption--light .lookbook-img__link {
    color: var(--black);
    border-bottom-color: rgba(0,0,0,0.3);
}

.lookbook-stacked {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
}

.lookbook-stacked .lookbook-img { flex: 1; min-height: 200px; }

.lookbook-editorial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 0.5px solid var(--border);
}

.lookbook-editorial__text {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 0.5px solid var(--border);
}

.lookbook-editorial__season {
    font-size: 0.625rem;
    letter-spacing: 0.22em;
    color: var(--text-faint);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.lookbook-editorial__heading {
    font-size: 1.625rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin-bottom: 18px;
}

.lookbook-editorial__body {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 280px;
}

.lookbook-editorial__cta {
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    color: var(--black);
    border-bottom: 1px solid var(--black);
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
    text-transform: uppercase;
}

/* ─── About page ──────────────────────────────────────── */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 0.5px solid var(--border);
    border-top: 0.5px solid var(--border);
}

.about-hero__img {
    background: var(--black);
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

.about-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-hero__text {
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.about-hero__tag {
    font-size: 0.625rem;
    letter-spacing: 0.24em;
    color: var(--text-faint);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-hero__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-hero__body {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.85;
    max-width: 300px;
}

.values-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 0.5px solid var(--border);
}

.value-block {
    padding: 40px 36px;
    border-right: 0.5px solid var(--border);
}

.value-block:last-child { border-right: none; }

.value-block__num {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    color: var(--text-faint);
    margin-bottom: 16px;
}

.value-block__title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.value-block__body {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.statement-block {
    background: var(--black);
    padding: 72px 48px;
    text-align: center;
    border-bottom: 0.5px solid #222;
}

.statement-block__text {
    font-size: clamp(1.1rem, 2.5vw, 1.75rem);
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.3;
    max-width: 600px;
    margin: 0 auto;
}

.statement-block__attr {
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.22);
    margin-top: 24px;
    text-transform: uppercase;
}

.process-section {
    border-bottom: 0.5px solid var(--border);
    padding: 56px 48px;
}

.process-section__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
}

.process-section__title {
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    color: var(--black);
    text-transform: uppercase;
}

.process-section__sub {
    font-size: 0.8125rem;
    color: var(--text-muted);
    max-width: 280px;
    text-align: right;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}

.process-step {
    background: #fff;
    padding: 28px 24px;
}

.process-step__num {
    font-size: 0.625rem;
    letter-spacing: 0.16em;
    color: var(--text-faint);
    margin-bottom: 14px;
}

.process-step__title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
    letter-spacing: -0.005em;
}

.process-step__body {
    font-size: 0.6875rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ─── Legal pages ─────────────────────────────────────── */
.legal-page {
    max-width: 720px;
    margin: 0 auto;
    padding: 64px 48px;
}

.legal-page__title {
    font-size: 1.875rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 8px;
}

.legal-page__updated {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    letter-spacing: 0.04em;
}

.legal-page h2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin-top: 40px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.legal-page p,
.legal-page li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.legal-page ul li { list-style: disc; }
.legal-page ol li { list-style: decimal; }

.legal-page a {
    color: var(--black);
    border-bottom: 1px solid var(--border);
    padding-bottom: 1px;
    transition: border-color 0.15s;
}

.legal-page a:hover { border-color: var(--black); }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
    .hero__content { padding: 32px 20px; }
    .hero__title   { font-size: 2.25rem; }
    .hero__scroll  { display: none; }

    .editorial-strip { grid-template-columns: 1fr; }
    .editorial-strip__dark,
    .editorial-strip__light { padding: 48px 24px; }

    .lookbook-header    { flex-direction: column; gap: 16px; padding: 36px 20px; }
    .lookbook-header__desc { text-align: left; max-width: 100%; }
    .lookbook-spread--1-2,
    .lookbook-spread--3,
    .lookbook-spread--edit,
    .lookbook-spread--2-1-2 { grid-template-columns: 1fr; }
    .lookbook-stacked { flex-direction: row; }

    .about-hero         { grid-template-columns: 1fr; }
    .about-hero__img    { min-height: 280px; }
    .about-hero__text   { padding: 36px 24px; }
    .values-strip       { grid-template-columns: 1fr; }
    .value-block        { border-right: none; border-bottom: 0.5px solid var(--border); }
    .process-section    { padding: 40px 20px; }
    .process-steps      { grid-template-columns: repeat(2, 1fr); }
    .process-section__header { flex-direction: column; gap: 8px; }
    .process-section__sub { text-align: left; }
    .legal-page { padding: 40px 20px; }
}
