/* ============================================================
   STEFFANIO v2 — Vinyl Romance
   ============================================================ */

:root {
    /* Vinyl Romance paleta */
    --paper:      #f5ebd9;
    --paper-deep: #ece0c8;
    --ink:        #0a0a0a;
    --ink-soft:   #2a2826;
    --rose:       #e8c5cc;
    --rose-deep:  #d9a3ae;
    --red:        #a82e3f;
    --red-deep:   #8a1f2f;
    --mute:       #897a64;

    /* Fonti */
    --serif: 'DM Serif Display', Georgia, serif;
    --sans:  'Inter Tight', system-ui, sans-serif;

    /* Layout */
    --pad-x: clamp(1rem, 3.5vw, 3rem);
    --gap:   clamp(0.5rem, 1vw, 0.875rem);
    --topbar-h: 64px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--paper);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--red); color: var(--paper); }

/* ============================================================
   TOPBAR
   ============================================================ */

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--topbar-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 var(--pad-x);
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
}

.topbar__nav {
    display: flex;
    gap: 1.75rem;
}
.topbar__nav a {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}
.topbar__nav a:hover { color: var(--red); }

.topbar__brand {
    justify-self: center;
}
.topbar__mark {
    font-family: var(--serif);
    font-style: italic;
    font-size: 28px;
    color: var(--red);
    line-height: 1;
}

.topbar__actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.topbar__sub {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
}
.topbar__sub:hover { color: var(--red); }
.topbar__pill {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.55rem 1rem;
    background: var(--ink);
    color: var(--paper);
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.topbar__pill:hover { background: var(--red); transform: translateY(-1px); }

@media (max-width: 760px) {
    .topbar { grid-template-columns: auto 1fr auto; padding: 0 1rem; }
    .topbar__nav { display: none; }
    .topbar__brand { justify-self: start; }
    .topbar__sub { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    padding: clamp(3rem, 8vw, 6rem) var(--pad-x) clamp(2rem, 5vw, 4rem);
    text-align: center;
    border-bottom: 1px solid var(--ink);
}

.hero__eyebrow {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hero__wordmark {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(5rem, 18vw, 19rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    /* mali optični nagib za karakter */
    transform: translateX(-0.5%);
}

.hero__tagline {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    line-height: 1.2;
    color: var(--red);
    max-width: 30ch;
    margin: 0 auto;
}

/* ============================================================
   PROMO TILE GRID
   ============================================================ */

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: var(--gap);
    padding: var(--gap);
    background: var(--ink);
}

.tile {
    position: relative;
    overflow: hidden;
    background: var(--paper-deep);
    aspect-ratio: 1;
}
.tile--wide   { grid-column: span 2; aspect-ratio: 2 / 1; }
.tile--tall   { grid-row: span 2; aspect-ratio: 1 / 2; }
.tile--large  { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
.tile--full   { grid-column: span 4; aspect-ratio: 4 / 1; }

.tile__link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tile__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0, 0.1, 1);
    z-index: 1;
}
.tile__link:hover .tile__img { transform: scale(1.04); }

/* Placeholder color blocks kadar ni fotke.
   Mark stoji v gornjem levem kotu kot subtle watermark. */
.tile__placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.tile__placeholder-mark {
    position: absolute;
    top: clamp(0.75rem, 1.5vw, 1.5rem);
    left: clamp(0.9rem, 1.8vw, 1.75rem);
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    line-height: 1;
    opacity: 0.55;
}
.tile__placeholder--red    { background: var(--red);    }
.tile__placeholder--red    .tile__placeholder-mark { color: var(--paper); }
.tile__placeholder--rose   { background: var(--rose);   }
.tile__placeholder--rose   .tile__placeholder-mark { color: var(--red-deep); }
.tile__placeholder--black  { background: var(--ink);    }
.tile__placeholder--black  .tile__placeholder-mark { color: var(--rose); }
.tile__placeholder--cream  { background: var(--paper-deep); }
.tile__placeholder--cream  .tile__placeholder-mark { color: var(--ink); }

/* Body overlay (eyebrow + title + CTA).
   Pri image tile: dark gradient od dna, da je tekst čitljiv.
   Pri placeholder tile: brez gradient-a, ker je background že solid color. */
.tile__body {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: clamp(1rem, 2vw, 1.75rem);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--paper);
    transition: padding 0.4s cubic-bezier(0.2, 0, 0.1, 1);
}
.tile--large .tile__body,
.tile--wide  .tile__body,
.tile--full  .tile__body { padding: clamp(1.25rem, 2.5vw, 2.5rem); }

/* Image tile: dark gradient overlay for legibility */
.tile__img ~ .tile__body {
    background: linear-gradient(to top,
        rgba(10,10,10,0.85) 0%,
        rgba(10,10,10,0.55) 35%,
        rgba(10,10,10,0.1) 70%,
        transparent 100%);
    padding-top: clamp(4rem, 8vw, 8rem);
}

/* Placeholder tile: text color adapts to background; no overlay */
.tile__placeholder--rose ~ .tile__body,
.tile__placeholder--cream ~ .tile__body { color: var(--ink); background: none; }
.tile__placeholder--red ~ .tile__body { color: var(--paper); background: none; }
.tile__placeholder--black ~ .tile__body { color: var(--paper); background: none; }

.tile__eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.95;
}

.tile__title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 2.5vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.015em;
}
.tile--large .tile__title { font-size: clamp(2.2rem, 5vw, 5rem); line-height: 0.95; }

.tile__cta {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.tile__cta-arrow {
    transition: transform 0.3s cubic-bezier(0.2, 0, 0.1, 1);
    display: inline-block;
}
.tile__link:hover .tile__cta-arrow { transform: translateX(6px); }

@media (max-width: 980px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .tile--wide  { grid-column: span 2; }
    .tile--full  { grid-column: span 2; aspect-ratio: 2 / 1; }
    .tile--large { grid-column: span 2; aspect-ratio: 1; }
    .tile--tall  { grid-row: span 1; aspect-ratio: 1; }
}
@media (max-width: 560px) {
    .grid { grid-template-columns: 1fr; }
    .tile, .tile--wide, .tile--large, .tile--tall, .tile--full {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1;
    }
}

/* ============================================================
   TOUR
   ============================================================ */

.tour {
    padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
    background: var(--paper);
    border-top: 1px solid var(--ink);
}

.tour__head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.tour__title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 1rem;
}
.tour__sub {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--mute);
    max-width: 36ch;
    margin: 0 auto;
}

.tour__list {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid var(--ink);
}

.tour__row {
    display: grid;
    grid-template-columns: 1.2fr 2fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
    border-bottom: 1px solid rgba(10,10,10,0.15);
    transition: background 0.3s ease, padding 0.3s ease;
}
.tour__row:hover {
    background: var(--rose);
    padding-left: 1rem;
    padding-right: 1rem;
}

.tour__date {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.tour__date-main {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1;
    color: var(--ink);
}
.tour__date-day {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mute);
}

.tour__where {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.tour__city {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1;
    color: var(--red);
}
.tour__venue {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink-soft);
}

.tour__cta {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.7rem 1.4rem;
    background: var(--ink);
    color: var(--paper);
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}
.tour__cta:hover { background: var(--red); transform: translateY(-1px); }

@media (max-width: 760px) {
    .tour__row {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        padding: 1.3rem 0.5rem;
    }
    .tour__cta { justify-self: start; }
}

/* ============================================================
   MUSIC
   ============================================================ */

.music {
    padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
    background: var(--ink);
    color: var(--paper);
}

.music__head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.music__title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.025em;
    color: var(--rose);
    margin-bottom: 1rem;
}
.music__sub {
    font-family: var(--sans);
    font-size: 15px;
    color: rgba(245,235,217,0.6);
    max-width: 36ch;
    margin: 0 auto;
}

.music__list {
    max-width: 1100px;
    margin: 0 auto;
    border-top: 1px solid rgba(245,235,217,0.2);
}

.music__row {
    display: grid;
    grid-template-columns: 80px 2fr 2fr auto;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.3rem 0.5rem;
    border-bottom: 1px solid rgba(245,235,217,0.12);
    transition: background 0.3s ease, padding 0.3s ease;
}
.music__row:hover {
    background: rgba(168,46,63,0.18);
    padding-left: 1rem;
}

.music__year {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: rgba(245,235,217,0.5);
    letter-spacing: 0.03em;
}

.music__name {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.3rem, 1.8vw, 1.6rem);
    line-height: 1.1;
    color: var(--paper);
}

.music__note {
    font-family: var(--sans);
    font-size: 13px;
    color: rgba(245,235,217,0.6);
}

.music__links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}
.music__links a {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--rose);
    padding-bottom: 2px;
    border-bottom: 1px solid currentColor;
    transition: color 0.2s ease;
}
.music__links a:hover { color: var(--paper); }

@media (max-width: 760px) {
    .music__row {
        grid-template-columns: 60px 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.3rem 1rem;
        padding: 1.4rem 0.5rem;
    }
    .music__year { grid-row: 1 / 4; }
    .music__name { grid-column: 2; }
    .music__note { grid-column: 2; }
    .music__links { grid-column: 2; justify-content: flex-start; margin-top: 0.4rem; }
}

/* ============================================================
   ARCHIVE
   ============================================================ */

.archive {
    padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
    background: var(--paper-deep);
    border-top: 1px solid var(--ink);
}

.archive__head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.archive__eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.8rem;
}
.archive__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 1rem;
}
.archive__title em {
    font-style: italic;
    color: var(--red);
}
.archive__sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: var(--mute);
}

.archive__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: var(--gap);
}

.arch {
    position: relative;
    overflow: hidden;
    background: var(--ink);
}
.arch--tall { grid-row: span 2; }

.arch img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.85) sepia(0.35) contrast(1.05) brightness(0.9);
    transition: filter 0.6s cubic-bezier(0.2, 0, 0.1, 1), transform 0.7s cubic-bezier(0.2, 0, 0.1, 1);
}
.arch:hover img {
    filter: grayscale(0.3) sepia(0.15) contrast(1.05) brightness(0.95);
    transform: scale(1.04);
}

.arch::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    mix-blend-mode: multiply;
    opacity: 0.15;
    pointer-events: none;
    transition: opacity 0.6s ease;
}
.arch:hover::after { opacity: 0; }

@media (max-width: 980px) {
    .archive__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    .arch--tall { grid-row: span 1; }
}
@media (max-width: 480px) {
    .archive__grid { grid-template-columns: 1fr; }
}



.story {
    padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
    background: var(--rose);
    color: var(--ink);
}

.story__wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.2fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.story__photo {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--ink);
}
.story__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.story__content {
    display: flex;
    flex-direction: column;
}

.story__title {
    font-family: var(--serif);
    font-weight: 400;
    font-style: normal;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.9;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 2rem;
}
.story__title em {
    font-style: italic;
    color: var(--red);
    display: block;
}

.story__body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-soft);
}
.story__lead {
    font-size: 20px;
    color: var(--ink);
    line-height: 1.4;
}
.story__body em {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05em;
    color: var(--red);
}

@media (max-width: 760px) {
    .story__wrap { grid-template-columns: 1fr; gap: 2rem; }
    .story__photo { aspect-ratio: 3 / 4; max-width: 80%; margin: 0 auto; }
}

/* ============================================================
   PODCAST / VIDEO POGOVORI
   ============================================================ */

.pods {
    padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
    background: var(--ink);
    color: var(--paper);
}

.pods__head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.pods__eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.8rem;
}
.pods__title {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.025em;
    color: var(--paper);
    margin-bottom: 1rem;
}
.pods__title em {
    font-style: italic;
    color: var(--rose);
}
.pods__sub {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    color: rgba(245,235,217,0.55);
}

.pods__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.pod {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pod__frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--ink-soft);
    overflow: hidden;
    border: none;
    padding: 0;
    cursor: pointer;
    display: block;
}
.pod__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.pod__thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.1, 1), filter 0.4s ease;
}
.pod__frame:hover .pod__thumb {
    transform: scale(1.04);
    filter: brightness(0.85);
}
.pod__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    transition: transform 0.3s cubic-bezier(0.2, 0, 0.1, 1);
}
.pod__frame:hover .pod__play {
    transform: translate(-50%, -50%) scale(1.08);
}
.pod__play svg {
    display: block;
    width: 100%;
    height: 100%;
}

.pod__meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pod__title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    line-height: 1.15;
    color: var(--paper);
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}
.pod__date {
    font-family: var(--sans);
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--rose);
    text-transform: uppercase;
}

.pod__desc {
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.55;
    color: rgba(245,235,217,0.7);
    max-width: 52ch;
}

@media (max-width: 760px) {
    .pods__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRESS
   ============================================================ */

.press {
    padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
    background: var(--paper);
    border-top: 1px solid var(--ink);
}

.press__head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.press__eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.8rem;
}
.press__title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.press__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.press__card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--paper-deep);
    border-top: 2px solid var(--red);
    transition: background 0.3s ease, transform 0.3s ease;
}
.press__card:hover {
    background: var(--rose);
    transform: translateY(-2px);
}

.press__meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.press__pub {
    font-weight: 600;
    color: var(--ink);
}
.press__date {
    color: var(--mute);
}

.press__quote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.15rem, 1.4vw, 1.35rem);
    line-height: 1.35;
    color: var(--ink);
    margin: 0.5rem 0;
}
.press__cite {
    display: block;
    margin-top: 0.7rem;
    font-family: var(--sans);
    font-style: normal;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--red);
    text-transform: none;
}

.press__headline {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink-soft);
    margin-top: auto;
}

.press__link {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
    padding-top: 1rem;
    border-top: 1px solid rgba(10,10,10,0.15);
    transition: color 0.2s ease;
}
.press__link:hover { color: var(--red); }
.press__link span { transition: transform 0.3s ease; display: inline-block; margin-left: 0.3rem; }
.press__link:hover span { transform: translateX(4px); }

@media (max-width: 900px) {
    .press__grid { grid-template-columns: 1fr; }
}



.footer {
    background: var(--paper);
    color: var(--ink);
    border-top: 1px solid var(--ink);
    padding: clamp(3rem, 6vw, 5rem) var(--pad-x) 1.5rem;
}

.footer__wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.footer__sub {
    max-width: 38rem;
    margin-bottom: clamp(3rem, 5vw, 4rem);
}
.footer__sub-eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.7rem;
}
.footer__sub-title {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.footer__form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.footer__form input[type="email"] {
    flex: 1;
    min-width: 220px;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    border-radius: 999px;
}
.footer__form input[type="email"]:focus {
    outline: none;
    background: var(--rose);
    border-color: var(--red);
}
.footer__form button {
    padding: 0.9rem 1.6rem;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.2s ease;
}
.footer__form button:hover { background: var(--red); border-color: var(--red); }

.footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(10,10,10,0.15);
    border-bottom: 1px solid rgba(10,10,10,0.15);
    margin-bottom: 1.5rem;
}
.footer__socials a {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    transition: color 0.2s ease;
}
.footer__socials a:hover { color: var(--red); }

.footer__base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--sans);
    font-size: 12px;
    color: var(--mute);
    gap: 1rem;
    flex-wrap: wrap;
}
.footer__base a:hover { color: var(--red); }
