/* ============================================================
   fragrances.at — Main CSS
   Design: Dark luxury editorial — Byredo meets Vogue
   ============================================================ */


/* ── Variables — Dark (default) ── */

:root {
    --bg: #0a0a0a;
    --surface: #111111;
    --surface-2: #161616;
    --gold: #c9a96e;
    --gold-muted: rgba(201, 169, 110, 0.15);
    --gold-border: rgba(201, 169, 110, 0.3);
    --text: #e8e4dc;
    --text-muted: rgba(232, 228, 220, 0.68);
    --text-hint: rgba(232, 228, 220, 0.42);
    --article-text: #e8e4dc;
    --caption-text: #666666;
    --border: rgba(240, 236, 228, 0.09);
    --border-hover: rgba(240, 236, 228, 0.18);
    --radius: 2px;
    --unit: 8px;
    --nav-h: 56px;
    --container: 1400px;
    --pad: 48px;
    --hero-size: clamp(38px, 5.5vw, 64px);
    --h1: clamp(28px, 4vw, 44px);
    --h2: 26px;
    --h3: 20px;
    --body: 16px;
    --small: 13px;
    --label: 11px;
    --ease: 150ms ease;
    --ease-slow: 220ms ease;
}


/* ── Variables — Light ── */

[data-theme="light"] {
    --bg: #faf8f4;
    --surface: #f0ede8;
    --surface-2: #ebe7e1;
    --gold: #9a6f3a;
    --gold-muted: rgba(154, 111, 58, 0.15);
    --gold-border: rgba(154, 111, 58, 0.25);
    --text: #1a1a1a;
    --text-muted: rgba(26, 26, 26, 0.62);
    --text-hint: rgba(26, 26, 26, 0.5);
    --article-text: #1a1a1a;
    --caption-text: #999999;
    --border: rgba(26, 23, 20, 0.08);
    --border-hover: rgba(26, 23, 20, 0.15);
}


/* ── Theme toggle button ── */

.theme-toggle {
    background: transparent;
    border: 0.5px solid var(--border);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    margin-left: 8px;
    flex-shrink: 0;
    transition: border-color var(--ease), color var(--ease), background-color var(--ease);
}

.theme-toggle:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background-color: var(--gold-muted);
}


/* Icons inside toggle — no transition on display */

.theme-toggle svg {
    transition: none;
    pointer-events: none;
}


/* ── Reset ── */

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


/* ── Theme transition — smooth color/bg changes on theme switch ── */

*,
*::before,
*::after {
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: var(--body);
    font-weight: 400;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
}

ul,
ol {
    list-style: none;
}


/* ── Typography ── */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
}


/* Catalog page header spacing */

.catalog-header h1,
.page-header h1,
.catalog-title {
    padding-top: calc(var(--unit) * 8);
    padding-bottom: calc(var(--unit) * 4);
}

p {
    color: var(--text-muted);
    line-height: 1.75;
}

strong,
b {
    font-weight: 500;
    color: var(--text);
}

.label-text {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}


/* ── Ghost editor width helpers ── */

.kg-width-wide {
    width: 85vw;
    max-width: 1200px;
    margin-left: calc(50% - 42.5vw);
}

.kg-width-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
}


/* ── Ghost content styles ── */

.gh-content h2 {
    margin-top: calc(var(--unit)*6);
    margin-bottom: calc(var(--unit)*2);
}

.gh-content h3 {
    margin-top: calc(var(--unit)*5);
    margin-bottom: calc(var(--unit)*2);
}

.gh-content p {
    margin-bottom: calc(var(--unit)*2);
}

.gh-content ul,
.gh-content ol {
    list-style: disc;
    padding-left: calc(var(--unit)*3);
    color: var(--text-muted);
    margin-bottom: calc(var(--unit)*2);
}

.gh-content ol {
    list-style: decimal;
}

.gh-content li {
    margin-bottom: var(--unit);
    font-size: var(--body);
}

.gh-content blockquote {
    border-left: 0.5px solid var(--gold);
    padding-left: calc(var(--unit)*3);
    margin: calc(var(--unit)*4) 0;
    color: var(--text-muted);
    font-style: italic;
}

.gh-content a {
    color: var(--gold);
    border-bottom: 0.5px solid var(--gold-border);
    transition: border-color var(--ease);
}

.gh-content a:hover {
    border-bottom-color: var(--gold);
}

.gh-content a.fragrance-inline-link,
.vogue-body a.fragrance-inline-link {
    display: inline-flex;
    align-items: baseline;
    gap: 0.12em;
    padding: 0 0.32em;
    margin: 0 0.05em;
    border-radius: 999px;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.12);
    border-bottom: 1px solid rgba(201, 169, 110, 0.22);
    text-decoration: none;
    white-space: nowrap;
}

.gh-content a.fragrance-inline-link:hover,
.vogue-body a.fragrance-inline-link:hover {
    color: var(--text);
    background: rgba(201, 169, 110, 0.18);
    border-bottom-color: rgba(201, 169, 110, 0.45);
}

.gh-content a.fragrance-inline-link:focus-visible,
.vogue-body a.fragrance-inline-link:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.gh-content hr {
    border: none;
    border-top: 0.5px solid var(--border);
    margin: calc(var(--unit)*6) 0;
}


/* ── sr-only ── */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: var(--nav-h);
    background: var(--bg);
    border-bottom: 0.5px solid var(--border);
    display: flex;
    align-items: center;
}

.site-nav__inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(var(--unit)*4);
}

.site-nav__left {
    display: flex;
    align-items: baseline;
    gap: 0;
}

.site-nav__logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    white-space: nowrap;
    transition: color var(--ease);
}

.site-nav__logo:hover {
    color: var(--gold);
}

.site-nav__links {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 2px;
}

.site-nav__link {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-hint);
    padding: 0 14px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: color var(--ease);
    white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--text);
}

.site-nav__right {
    display: flex;
    align-items: center;
    gap: 0;
}


/* Lang switcher */

.site-nav__lang {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.site-nav__lang-item {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-hint);
    padding: 0 6px;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: color var(--ease);
}

.site-nav__lang-item:hover {
    color: var(--text-muted);
}

.site-nav__lang-item--active {
    color: var(--text);
}


/* Mobile hamburger */

.site-nav__hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-muted);
    margin-left: 8px;
    transition: color var(--ease);
}

.site-nav__hamburger:hover {
    color: var(--text);
}


/* Nav spacer */

body {
    padding-top: var(--nav-h);
}


/* Mobile overlay */

.nav-mobile {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    padding: calc(var(--unit)*6) var(--pad);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease-slow);
}

.nav-mobile[aria-hidden="false"] {
    opacity: 1;
    pointer-events: all;
}

.nav-mobile__close {
    align-self: flex-end;
    color: var(--text-muted);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--unit)*4);
    transition: color var(--ease);
}

.nav-mobile__close:hover {
    color: var(--text);
}

.nav-mobile__inner {
    display: flex;
    flex-direction: column;
    gap: calc(var(--unit)*3);
}

.nav-mobile__link {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: calc(var(--unit)*1.5) 0;
    border-bottom: 0.5px solid var(--border);
    transition: color var(--ease);
}

.nav-mobile__link:hover {
    color: var(--text);
}

.nav-mobile__lang {
    display: flex;
    gap: calc(var(--unit)*2);
    margin-top: calc(var(--unit)*4);
}

.nav-mobile__lang-item {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-hint);
    transition: color var(--ease);
}

.nav-mobile__lang-item:hover {
    color: var(--text-muted);
}

.nav-mobile__lang-item--active {
    color: var(--text);
}


/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */

.hero {
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: stretch;
    border-bottom: 0.5px solid var(--border);
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}

.hero__content {
    padding: calc(var(--unit)*12) var(--pad) calc(var(--unit)*10);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 0.5px solid var(--border);
}

.hero__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: calc(var(--unit)*3);
}

.hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--hero-size);
    font-weight: 400;
    font-style: normal;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: calc(var(--unit)*3);
}

.hero__title em,
.hero__title-em {
    font-style: italic;
    color: var(--gold);
}

.hero__excerpt {
    font-size: var(--body);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: calc(var(--unit)*5);
}

.hero__cta {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 0.5px solid var(--gold-border);
    padding-bottom: 2px;
    width: fit-content;
    transition: border-color var(--ease), color var(--ease);
}

.hero__cta:hover {
    color: var(--text);
    border-bottom-color: var(--text);
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse 70% 60% at 60% 55%, rgba(201, 169, 110, 0.07) 0%, transparent 65%);
    overflow: hidden;
}

.hero__img {
    max-height: 65%;
    max-width: 55%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.hero__img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.hero__badge {
    position: absolute;
    bottom: calc(var(--unit)*4);
    right: calc(var(--unit)*4);
    text-align: right;
    z-index: 2;
}

.hero__badge-name {
    display: block;
    font-size: var(--small);
    color: #f0ece4 !important;
    margin-bottom: 4px;
}

.hero__badge-score {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: var(--small);
    font-weight: 500;
    color: var(--gold);
}


/* ─── Hero Carousel ─────────────────────────────────────────────────────── */

.hero__carousel {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero__carousel-item.active {
    opacity: 1;
}

.hero__carousel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hero__carousel-link:hover {
    transform: scale(1.02);
}

.hero__carousel-img {
    max-height: 60%;
    max-width: 50%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.hero__carousel-item:hover .hero__carousel-img {
    transform: scale(1.05);
}

.hero__carousel-info {
    position: absolute;
    bottom: calc(var(--unit)*4);
    right: calc(var(--unit)*4);
    text-align: right;
    z-index: 2;
    background: rgba(10, 10, 10, 0.8);
    padding: calc(var(--unit)*2);
    border: 0.5px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .hero__carousel-info {
    background: rgba(250, 248, 244, 0.9);
}

.hero__carousel-name {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--small);
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2px;
    line-height: 1.3;
}

.hero__carousel-brand {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.hero__carousel-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: var(--small);
    font-weight: 500;
    color: var(--gold);
}

.hero__carousel-star {
    font-size: 12px;
    line-height: 1;
}

.hero__carousel-star--full {
    color: var(--gold);
}

.hero__carousel-star--half {
    color: var(--gold);
    opacity: 0.7;
}

.hero__carousel-star--empty {
    color: var(--text-hint);
}

.hero__carousel-score {
    font-size: 11px;
    margin-left: 2px;
}

.hero__carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 calc(var(--unit)*2);
    pointer-events: none;
    z-index: 3;
}

.hero__carousel-btn {
    width: 40px;
    height: 40px;
    background: rgba(10, 10, 10, 0.6);
    border: 0.5px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--ease);
    pointer-events: all;
    backdrop-filter: blur(10px);
}

[data-theme="light"] .hero__carousel-btn {
    background: rgba(250, 248, 244, 0.8);
}

.hero__carousel-btn:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
    transform: scale(1.1);
}

.hero__carousel-btn svg {
    width: 16px;
    height: 16px;
}

.hero__carousel-indicators {
    position: absolute;
    bottom: calc(var(--unit)*2);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: calc(var(--unit)*1);
    z-index: 3;
}

.hero__carousel-indicator {
    width: 8px;
    height: 8px;
    background: var(--text-hint);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--ease);
    padding: 0;
}

.hero__carousel-indicator:hover {
    background: var(--text-muted);
    transform: scale(1.2);
}

.hero__carousel-indicator.active {
    background: var(--gold);
    transform: scale(1.3);
}


/* ─── Seasonal Recommendations ───────────────────────────────────────────── */

.seasonal-recs {
    padding: calc(var(--unit)*8) 0;
    background: var(--surface);
    border-top: 0.5px solid var(--border);
}

.seasonal-recs__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.seasonal-recs__header {
    text-align: center;
    margin-bottom: calc(var(--unit)*6);
}

.seasonal-recs__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--h2);
    font-weight: 400;
    color: var(--text);
    margin-bottom: calc(var(--unit)*2);
}

.seasonal-recs__subtitle {
    font-size: var(--body);
    color: var(--text-muted);
    line-height: 1.6;
}

.seasonal-recs__carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--unit)*3);
}

.seasonal-recs__card {
    background: var(--bg);
    border: 0.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--ease);
    cursor: pointer;
}

.seasonal-recs__card:hover {
    border-color: var(--gold-border);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.seasonal-recs__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--surface-2);
}

.seasonal-recs__card-body {
    padding: calc(var(--unit)*3);
}

.seasonal-recs__card-season {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: calc(var(--unit)*1);
}

.seasonal-recs__card-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: calc(var(--unit)*1);
    line-height: 1.3;
}

.seasonal-recs__card-brand {
    font-size: var(--small);
    color: var(--text-muted);
    margin-bottom: calc(var(--unit)*2);
}

.seasonal-recs__card-notes {
    font-size: var(--small);
    color: var(--text-hint);
    line-height: 1.5;
}

.seasonal-recs__card-notes strong {
    color: var(--text-muted);
    font-weight: 500;
}


/* ════════════════════════════════════════
   NOTES BAR
   ════════════════════════════════════════ */

.notes-bar {
    background: var(--surface);
    border-bottom: 0.5px solid var(--border);
}

.notes-bar__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: calc(var(--unit)*2) var(--pad);
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--unit)*1);
}

.notes-bar__pill {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-hint);
    border: 0.5px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: color var(--ease), border-color var(--ease), background var(--ease);
    cursor: pointer;
}

.notes-bar__pill:hover {
    color: var(--text-muted);
    border-color: var(--border-hover);
    background: var(--surface-2);
}

.notes-bar__pill--active {
    color: var(--gold);
    border-color: var(--gold-border);
    background: var(--gold-muted);
}


/* ════════════════════════════════════════
   POST GRID
   ════════════════════════════════════════ */

.post-grid {
    padding: calc(var(--unit)*8) 0 calc(var(--unit)*12);
}

.post-grid__container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.post-grid__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: calc(var(--unit)*5);
    padding-bottom: calc(var(--unit)*3);
    border-bottom: 0.5px solid var(--border);
}

.post-grid__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--h2);
    font-style: normal;
    font-weight: 400;
    color: var(--text);
}

.post-grid__all {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-hint);
    transition: color var(--ease);
    white-space: nowrap;
}

.post-grid__all:hover {
    color: var(--text-muted);
}

.post-grid__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 0.5px solid var(--border);
}


/* ════════════════════════════════════════
   ARTICLE CARD
   ════════════════════════════════════════ */

.article-card {
    background: var(--bg);
    transition: background var(--ease-slow);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    background: var(--surface);
}

.article-card__image-link {
    display: block;
    overflow: hidden;
}

.article-card__image-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: var(--surface-2);
    overflow: hidden;
}

.article-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--ease-slow);
}

.article-card:hover .article-card__image {
    transform: scale(1.03);
}

.article-card__body {
    padding: calc(var(--unit)*3) calc(var(--unit)*3) calc(var(--unit)*4);
    display: flex;
    flex-direction: column;
    gap: calc(var(--unit)*1.5);
    min-height: 240px;
}

.article-card__tag {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: calc(var(--unit)*0.5);
}

.article-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: normal;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--text);
}

.article-card__title-link {
    transition: color var(--ease);
}

.article-card__title-link:hover {
    color: var(--text-muted);
}

.article-card__excerpt {
    font-size: var(--small);
    color: var(--text-muted);
    line-height: 1.65;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.article-card__time,
.article-card__type,
.article-card__sep {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-hint);
}


/* ════════════════════════════════════════
   DEALS STRIP
   ════════════════════════════════════════ */

.deals-strip {
    border-top: 0.5px solid var(--border);
    background: var(--surface);
    position: sticky;
    bottom: 0;
    z-index: 100;
}

.deals-strip__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: calc(var(--unit)*2) var(--pad);
    display: flex;
    align-items: center;
    gap: calc(var(--unit)*5);
}

.deals-strip__label {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-hint);
    white-space: nowrap;
    flex-shrink: 0;
}

.deals-strip__items {
    display: flex;
    gap: calc(var(--unit)*5);
    flex: 1;
    overflow: hidden;
}

.deals-strip__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.deals-strip__name {
    font-size: var(--small);
    color: var(--text);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.deals-strip__price {
    font-size: var(--small);
    color: var(--text-muted);
    white-space: nowrap;
}

.deals-strip__shop {
    color: var(--text-hint);
}

.deals-strip__cta {
    display: inline-flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    border: 0.5px solid var(--gold);
    padding: calc(var(--unit)*1.5) calc(var(--unit)*3);
    border-radius: var(--radius);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--ease), border-color var(--ease);
}

.deals-strip__cta:hover {
    background: #b8954f;
    border-color: #b8954f;
}


/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */

.site-footer {
    border-top: 0.5px solid var(--border);
    background: var(--surface);
    margin-top: 0;
}

.site-footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: calc(var(--unit)*10) var(--pad) calc(var(--unit)*6);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: calc(var(--unit)*8);
    padding-bottom: calc(var(--unit)*8);
    border-bottom: 0.5px solid var(--border);
    margin-bottom: calc(var(--unit)*4);
}

.site-footer__logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    display: block;
    margin-bottom: calc(var(--unit)*2);
    transition: color var(--ease);
}

.site-footer__logo:hover {
    color: var(--gold);
}

.site-footer__tagline {
    font-size: var(--small);
    color: var(--text-hint);
    line-height: 1.65;
    max-width: 260px;
}

.site-footer__col-label {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-hint);
    margin-bottom: calc(var(--unit)*3);
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: calc(var(--unit)*1.5);
}

.site-footer__link {
    font-size: var(--small);
    color: var(--text-muted);
    transition: color var(--ease);
}

.site-footer__link:hover {
    color: var(--text);
}

.site-footer__disclosure {
    font-size: 11px;
    color: var(--text-hint);
    line-height: 1.6;
    margin-bottom: calc(var(--unit)*4);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer__copyright {
    font-size: 12px;
    color: var(--text-hint);
    line-height: 1;
}


/* Lang switcher in footer */

.lang-switcher--footer {
    display: flex;
    gap: calc(var(--unit)*1.5);
}

.lang-switcher--footer .lang-switcher__item {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-hint);
    transition: color var(--ease);
}

.lang-switcher--footer .lang-switcher__item:hover {
    color: var(--text-muted);
}

.lang-switcher--footer .lang-switcher__item--active {
    color: var(--text);
}


/* ════════════════════════════════════════
   UTILITY
   ════════════════════════════════════════ */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.divider {
    border: none;
    border-top: 0.5px solid var(--border);
}


/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 1024px) {
     :root {
        --pad: 32px;
    }
    .hero__inner {
        grid-template-columns: 1fr 1fr;
    }
    .post-grid__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .site-footer__col--brand {
        grid-column: 1 / -1;
    }
    .site-nav__links {
        display: none;
    }
    .site-nav__hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
     :root {
        --pad: 24px;
    }
    .hero {
        min-height: auto;
    }
    .hero__inner {
        grid-template-columns: 1fr;
    }
    .hero__content {
        padding: calc(var(--unit)*8) var(--pad) calc(var(--unit)*6);
        border-right: none;
        border-bottom: 0.5px solid var(--border);
    }
    .hero__visual {
        min-height: 300px;
        padding: calc(var(--unit)*6) var(--pad);
    }
    /* Hero Carousel Mobile */
    .hero__carousel-img {
        max-height: 50%;
        max-width: 70%;
    }
    .hero__carousel-info {
        bottom: calc(var(--unit)*2);
        right: calc(var(--unit)*2);
        padding: calc(var(--unit)*1.5);
    }
    .hero__carousel-controls {
        padding: 0 calc(var(--unit)*1);
    }
    .hero__carousel-btn {
        width: 32px;
        height: 32px;
    }
    .hero__carousel-btn svg {
        width: 14px;
        height: 14px;
    }
    .seasonal-recs__carousel {
        grid-template-columns: 1fr;
    }
    .seasonal-recs__card-image {
        height: 180px;
    }
    .post-grid__list {
        grid-template-columns: 1fr;
    }
    .deals-strip__items {
        display: none;
    }
    .deals-strip__inner {
        justify-content: space-between;
    }
    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: calc(var(--unit)*5);
    }
    .site-footer__bottom {
        flex-direction: column;
        gap: calc(var(--unit)*2);
        text-align: center;
    }
    .site-nav__lang {
        display: none;
    }
}

@media (max-width: 480px) {
     :root {
        --pad: 16px;
    }
    .hero__title {
        font-size: clamp(30px, 8vw, 44px);
    }
}


/* ════════════════════════════════════════
   REZENSIONEN PAGE
   ════════════════════════════════════════ */

.rez-page {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad) calc(var(--unit)*16);
}


/* Section tabs (Rezensionen | Guides) */

.section-tabs {
    display: flex;
    border-bottom: 0.5px solid var(--border);
    margin-bottom: calc(var(--unit)*6);
}

.section-tab {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-hint);
    padding: calc(var(--unit)*2) calc(var(--unit)*3);
    border-bottom: 1.5px solid transparent;
    margin-bottom: -0.5px;
    transition: color var(--ease), border-color var(--ease);
}

.section-tab:hover {
    color: var(--text-muted);
}

.section-tab--active {
    color: var(--text);
    border-bottom-color: var(--gold);
}


/* Header */

.rez-header {
    margin-bottom: calc(var(--unit)*5);
}

.rez-header__inner {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: calc(var(--unit)*4);
    margin-bottom: calc(var(--unit)*4);
}

.rez-header__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: var(--text);
    line-height: 1.1;
}

.rez-header__count {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-hint);
    white-space: nowrap;
}


/* Filter pills */

.rez-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
}

.rez-filter {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-hint);
    padding: calc(var(--unit)*1.5) calc(var(--unit)*2.5);
    border-right: 0.5px solid var(--border);
    transition: color var(--ease), background-color var(--ease);
    white-space: nowrap;
}

.rez-filter:first-child {
    border-left: none;
}

.rez-filter:hover {
    color: var(--text-muted);
    background-color: var(--surface);
}

.rez-filter--active {
    color: var(--text);
    background-color: var(--surface);
}


/* ─── Featured card ─────────────────────── */

.rez-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 0.5px solid var(--border);
    margin: calc(var(--unit)*6) 0;
    background-color: var(--surface);
    transition: border-color var(--ease);
}

.rez-featured:hover {
    border-color: var(--gold-border);
}

.rez-featured__img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background-color: var(--surface-2);
}

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

.rez-featured:hover .rez-featured__img {
    transform: scale(1.03);
}

.rez-featured__img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.rez-featured__body {
    padding: calc(var(--unit)*7) calc(var(--unit)*6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 0.5px solid var(--border);
}

.rez-featured__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: calc(var(--unit)*1.5);
}

.rez-featured__tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-hint);
    margin-bottom: calc(var(--unit)*2);
    transition: color var(--ease);
}

.rez-featured__tag:hover {
    color: var(--text-muted);
}

.rez-featured__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: calc(var(--unit)*3);
}

.rez-featured__title-link {
    color: inherit;
    transition: color var(--ease);
}

.rez-featured__title-link:hover {
    color: var(--gold);
}

.rez-featured__excerpt {
    font-size: var(--body);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: calc(var(--unit)*4);
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rez-featured__meta {
    display: flex;
    align-items: center;
    gap: calc(var(--unit)*2);
    font-family: 'Inter', sans-serif;
    font-size: var(--small);
    color: var(--text-hint);
}

.rez-featured__time::before {
    content: '';
}

.rez-featured__date::before {
    content: '· ';
}


/* ─── Cards grid ─────────────────────── */

.rez-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 0.5px solid var(--border);
    border-bottom: none;
}

.rez-card {
    display: flex;
    flex-direction: row;
    gap: 0;
    border-bottom: 0.5px solid var(--border);
    border-right: 0.5px solid var(--border);
    background-color: var(--surface);
    transition: background-color var(--ease);
    overflow: hidden;
}

.rez-card:nth-child(2n) {
    border-right: none;
}

.rez-card:hover {
    background-color: var(--surface-2);
}

.rez-card__img-wrap {
    width: 120px;
    flex-shrink: 0;
    background-color: var(--surface-2);
    overflow: hidden;
    display: block;
    aspect-ratio: 3 / 4;
}

.rez-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.rez-card:hover .rez-card__img {
    transform: scale(1.05);
}

.rez-card__img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 100px;
    opacity: 0.4;
}

.rez-card__body {
    padding: calc(var(--unit)*3) calc(var(--unit)*3);
    display: flex;
    flex-direction: column;
    gap: calc(var(--unit)*1);
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.rez-card__tag {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    transition: color var(--ease);
}

.rez-card__tag:hover {
    color: var(--gold-border);
}

.rez-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.25;
}

.rez-card__title-link {
    color: inherit;
    transition: color var(--ease);
}

.rez-card__title-link:hover {
    color: var(--gold);
}

.rez-card__excerpt {
    font-size: var(--small);
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rez-card__meta {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--text-hint);
    margin-top: auto;
    padding-top: calc(var(--unit)*1);
}

.rez-empty {
    padding: calc(var(--unit)*16) var(--pad);
    text-align: center;
    color: var(--text-muted);
}


/* Responsive */

@media (max-width: 768px) {
    .rez-featured {
        grid-template-columns: 1fr;
    }
    .rez-featured__img-wrap {
        aspect-ratio: 16 / 9;
    }
    .rez-featured__body {
        padding: calc(var(--unit)*4) var(--pad);
        border-left: none;
        border-top: 0.5px solid var(--border);
    }
    .rez-grid {
        grid-template-columns: 1fr;
    }
    .rez-card {
        border-right: none;
    }
    .rez-card__img-wrap {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .rez-card__img-wrap {
        width: 80px;
    }
    .rez-card__body {
        padding: calc(var(--unit)*2);
    }
    .rez-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}


/* ── Reduced motion ── */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

.post-vogue {
    padding-bottom: calc(var(--unit) * 10);
}

.vogue-header {
    padding: calc(var(--nav-h) + 48px) 0 calc(var(--unit) * 8);
    border-bottom: 0.5px solid var(--border);
}

.vogue-header__inner,
.vogue-content__inner,
.vogue-tags__inner,
.vogue-related,
.vogue-share,
.vogue-disclaimer {
    max-width: 1120px;
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad);
}

.vogue-header__kicker {
    margin: 0 0 calc(var(--unit) * 2);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-hint);
}

.vogue-header__title {
    max-width: 900px;
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--text);
}

.vogue-header__subtitle {
    max-width: 760px;
    margin-top: calc(var(--unit) * 3);
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
}

.vogue-content {
    padding-top: 80px;
}

.vogue-body {
    max-width: 1020px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.85;
    font-weight: 400;
    color: var(--article-text);
    text-align: left;
}

.vogue-body>* {
    max-width: 100%;
}

.vogue-body>p:first-of-type {
    margin-top: 0;
    color: var(--article-text);
}

.vogue-body>p:first-of-type::first-letter {
    float: left;
    margin-right: 12px;
    margin-top: 8px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 5.9rem;
    font-weight: 400;
    line-height: 0.78;
    color: var(--gold);
}

.vogue-body>p:first-of-type::first-line {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text);
}

.vogue-body p {
    margin-bottom: 2em;
}

.vogue-body strong {
    color: var(--text);
    font-weight: 500;
}

.vogue-body a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(191, 144, 82, 0.25);
}

.vogue-body a:hover {
    color: var(--gold-border);
    border-bottom-color: rgba(191, 144, 82, 0.55);
}

.vogue-body a.fragrance-inline-link {
    border-bottom-color: rgba(201, 169, 110, 0.22);
}

.vogue-body h2,
.vogue-body h3 {
    margin-top: calc(var(--unit) * 7);
    margin-bottom: calc(var(--unit) * 3);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
}

.vogue-body h2 {
    font-size: clamp(20px, 2.5vw, 24px);
}

.vogue-body h3 {
    font-size: clamp(26px, 3vw, 32px);
}

.vogue-body ul,
.vogue-body ol {
    margin: 0 0 calc(var(--unit) * 4) 1.2em;
    padding: 0;
}

.vogue-body li {
    margin-bottom: calc(var(--unit) * 1.25);
}

.vogue-body hr {
    margin: calc(var(--unit) * 5) 0;
    border: 0;
    border-top: 0.5px solid var(--border);
}

.vogue-product-image {
    float: right;
    width: min(38%, 360px);
    margin: 0 0 calc(var(--unit) * 4) 48px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--surface);
}

.vogue-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vogue-product-image figcaption {
    margin-top: calc(var(--unit) * 1.25);
    font-size: 12px;
    font-style: italic;
    line-height: 1.5;
    color: var(--caption-text);
}

.vogue-share {
    margin-top: calc(var(--unit) * 4.5);
}

.vogue-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 calc(var(--unit) * 2.8);
    border: 1px solid rgba(188, 162, 102, 0.42);
    background: linear-gradient(180deg, rgba(205, 175, 106, 0.14), rgba(205, 175, 106, 0.06));
    color: #7b5d27;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(120, 92, 39, 0.08);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), color var(--ease), background-color var(--ease);
}

.vogue-share__btn:hover {
    transform: translateY(-1px);
    border-color: rgba(188, 162, 102, 0.65);
    color: #5f461d;
    box-shadow: 0 14px 28px rgba(120, 92, 39, 0.12);
}

.vogue-share__btn:focus-visible {
    outline: 2px solid rgba(188, 162, 102, 0.7);
    outline-offset: 3px;
}

.vogue-tags {
    margin-top: calc(var(--unit) * 5);
}

.vogue-tags__inner {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--unit) * 1.5);
}

.vogue-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 calc(var(--unit) * 1.75);
    border: 0.5px solid var(--border);
    color: var(--text-hint);
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vogue-related {
    margin-top: calc(var(--unit) * 9);
}

.vogue-related__header {
    display: flex;
    align-items: center;
    gap: calc(var(--unit) * 2);
    margin-bottom: calc(var(--unit) * 4);
}

.vogue-related__header h2 {
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 400;
    font-style: italic;
    color: var(--text);
}

.vogue-gold-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(191, 144, 82, 0.55), rgba(191, 144, 82, 0));
}

.vogue-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: calc(var(--unit) * 3);
}

.article-card {
    display: flex;
    flex-direction: column;
    border: 0.5px solid var(--border);
    background: var(--surface);
}

.article-card__image-link,
.article-card__image-wrap {
    display: block;
}

.article-card__image-wrap {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--surface-2);
}

.article-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card__body {
    display: flex;
    flex-direction: column;
    gap: calc(var(--unit) * 1.5);
    padding: calc(var(--unit) * 2.5);
}

.article-card__tag,
.article-card__meta {
    font-family: 'Inter', sans-serif;
}

.article-card__tag {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-hint);
}

.article-card__title {
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.18;
    color: var(--text);
}

.article-card__title-link {
    color: inherit;
}

.article-card__excerpt {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.article-card__meta {
    margin-top: auto;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--text-hint);
}

.article-card__tag[href*="/tag/lang-"],
.article-card__type--lang-de,
.article-card__type--lang-en,
.article-card__type--lang-fr,
.article-card__type--lang-es,
.article-card__type--lang-ru,
.article-card__sep--lang-de,
.article-card__sep--lang-en,
.article-card__sep--lang-fr,
.article-card__sep--lang-es,
.article-card__sep--lang-ru,
.review-featured__label--lang-de,
.review-featured__label--lang-en,
.review-featured__label--lang-fr,
.review-featured__label--lang-es,
.review-featured__label--lang-ru,
.review-card__label--lang-de,
.review-card__label--lang-en,
.review-card__label--lang-fr,
.review-card__label--lang-es,
.review-card__label--lang-ru,
.rez-card__tag--lang-de,
.rez-card__tag--lang-en,
.rez-card__tag--lang-fr,
.rez-card__tag--lang-es,
.rez-card__tag--lang-ru {
    display: none;
}

.vogue-disclaimer {
    margin-top: calc(var(--unit) * 6);
    font-size: 11px;
    line-height: 1.7;
    color: var(--text-hint);
    text-align: center;
}

@media (max-width: 980px) {
    .vogue-related__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vogue-header {
        padding-top: calc(var(--nav-h) + 28px);
    }
    .vogue-header__title {
        font-size: clamp(40px, 12vw, 56px);
    }
    .vogue-body {
        font-size: 16px;
        line-height: 1.85;
    }
    .vogue-body>p:first-of-type {
        font-size: 16px;
    }
    .vogue-body>p:first-of-type::first-letter {
        font-size: 5rem;
        margin-right: 10px;
        margin-top: 6px;
    }
    .vogue-body>p:first-of-type::first-line {
        font-size: 16px;
    }
    .vogue-product-image {
        float: none;
        width: 100%;
        margin: 0 0 calc(var(--unit) * 4);
        aspect-ratio: 3 / 4;
    }
}


/* ============================================================
   404 ERROR PAGE STYLING
   ============================================================ */

.error-404,
.error-page,
.page-404 {
    padding: calc(var(--unit) * 16) var(--pad);
    max-width: var(--container);
    margin: 0 auto;
}

.error-404 .error-code,
.error-page .error-code,
.page-404 .error-code {
    font-family: 'Inter', sans-serif;
    font-size: var(--label);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: calc(var(--unit) * 2);
}

.error-404 h1,
.error-page h1,
.page-404 h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: var(--h1);
    font-weight: 400;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: calc(var(--unit) * 3);
}
