/* ============================================================
   VINOVE — Press / Newsroom Page
   VNV-VIS-001 v1.0 · VNV-VOX-001 v4.1

   §0  Hero          — dark typographic header
   §1  Press Releases — light list format
   §2  Company Facts  — dark boilerplate band
   §3  Media Contact  — light contact section
   ============================================================ */


/* ╔═══════════════════════════════════════════════════════╗
   §0  HERO
   ╚═══════════════════════════════════════════════════════╝ */

#press-hero {
  background: var(--ink);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  overflow: hidden;
}

#press-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

#press-hero::after {
  content: '';
  position: absolute;
  left: 55%;
  top: -10%;
  width: 40vw;
  height: 40vw;
  max-width: 480px;
  max-height: 480px;
  background: radial-gradient(ellipse at center, rgba(200,85,61,.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.press-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.press-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 2rem;
}

.press-hero-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

.press-hero-h1 {
  font-family: var(--font);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.03em;
  color: var(--ink-text-strong);
  margin-bottom: 1.75rem;
}

.press-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: var(--ink-text-body);
  max-width: 56ch;
}

/* Hero background image + overlay */
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg, rgba(9,12,21,.9) 0%, rgba(9,12,21,.6) 45%, rgba(9,12,21,.82) 100%),
    linear-gradient(to right, rgba(9,12,21,.6) 0%, transparent 65%);
}

.press-hero-inner {
  z-index: 2;
}


/* ╔═══════════════════════════════════════════════════════╗
   §1  PRESS RELEASES
   ╚═══════════════════════════════════════════════════════╝ */

#press-releases {
  background: var(--paper);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
}

.press-releases-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.press-releases-head {
  margin-bottom: 3rem;
}

.press-releases-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.press-releases-h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--text-strong);
}

.press-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-subtle);
}

.press-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2rem 3rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  align-items: start;
  transition: background var(--dur-fast);
}

.press-item-date-col {
  padding-top: .15rem;
}

.press-item-date {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .02em;
  text-transform: uppercase;
}

.press-item-body {}

.press-item-title {
  font-family: var(--font);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--text-strong);
  margin-bottom: .9rem;
}

.press-item-para {
  font-size: .9875rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 64ch;
  margin-bottom: 1.25rem;
}

.press-item-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--terra);
  text-decoration: none;
  transition: color var(--dur-fast), gap var(--dur-fast);
}

.press-item-link:hover {
  color: var(--terra-hover);
  gap: .7rem;
}

.press-item-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--dur-fast);
}

.press-item-link:hover svg {
  transform: translateX(3px);
}

@media (max-width: 700px) {
  .press-item {
    grid-template-columns: 1fr;
    gap: .75rem;
  }
}


/* ╔═══════════════════════════════════════════════════════╗
   §2  COMPANY FACTS
   ╚═══════════════════════════════════════════════════════╝ */

#press-facts {
  background: var(--ink);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  position: relative;
  overflow: hidden;
}

#press-facts::after {
  content: '';
  position: absolute;
  right: -5%;
  bottom: -20%;
  width: 45vw;
  height: 45vw;
  max-width: 500px;
  max-height: 500px;
  background: radial-gradient(ellipse at center, rgba(200,85,61,.1) 0%, transparent 70%);
  pointer-events: none;
}

.press-facts-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.press-facts-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.75rem;
}

.press-facts-eyebrow::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

.press-facts-h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--ink-text-strong);
  margin-bottom: 3rem;
  max-width: 24ch;
}

.press-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.press-fact-card {
  background: var(--ink-surface);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
}

.press-fact-num {
  font-family: var(--font);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink-text-strong);
  margin-bottom: .5rem;
}

.press-fact-num span {
  color: var(--terra);
}

.press-fact-label {
  font-size: .875rem;
  color: var(--ink-text-muted);
  line-height: 1.5;
}

.press-facts-boilerplate {
  border-top: 1px solid var(--ink-border);
  padding-top: 2.5rem;
}

.press-facts-boilerplate-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-text-muted);
  margin-bottom: 1rem;
}

.press-facts-boilerplate-text {
  font-size: .9875rem;
  line-height: 1.75;
  color: var(--ink-text-body);
  max-width: 76ch;
}

@media (max-width: 860px) {
  .press-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .press-facts-grid {
    grid-template-columns: 1fr;
  }
}


/* ╔═══════════════════════════════════════════════════════╗
   §3  MEDIA CONTACT
   ╚═══════════════════════════════════════════════════════╝ */

#press-contact {
  background: var(--paper);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
}

.press-contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.press-contact-left {}

.press-contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.press-contact-h2 {
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--text-strong);
  margin-bottom: 1.25rem;
}

.press-contact-para {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: .75rem;
}

.press-contact-para a {
  color: var(--terra);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--dur-fast);
}

.press-contact-para a:hover {
  color: var(--terra-hover);
}

.press-contact-note {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.press-contact-right {
  background: var(--surface-2);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.press-contact-info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.press-contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.press-contact-info-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-body);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.press-contact-info-label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .2rem;
}

.press-contact-info-value {
  font-size: .9875rem;
  color: var(--text-strong);
  font-weight: 500;
}

.press-contact-info-value a {
  color: var(--terra);
  text-decoration: none;
}

.press-contact-info-value a:hover {
  color: var(--terra-hover);
}

@media (max-width: 860px) {
  .press-contact-inner {
    grid-template-columns: 1fr;
  }
}
