/* ============================================================
   VINOVE — Brand and Media Page
   VNV-VIS-001 v1.0 · VNV-VOX-001 v4.1

   §0  Hero            — dark typographic header
   §1  The Mark        — light mark explanation
   §2  The Endorsement — dark endorsement mechanics
   §3  Asset Downloads — surface-2 download grid
   §4  Press Enquiries — dark minimal CTA
   ============================================================ */


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

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

/* 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%);
}

#brand-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;
}

#brand-hero::after {
  content: '';
  position: absolute;
  right: -8%;
  bottom: -15%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(ellipse at center, rgba(200,85,61,.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.brand-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;
}

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

.brand-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: 2rem;
  max-width: 14ch;
}

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


/* ╔═══════════════════════════════════════════════════════╗
   §1  THE MARK
   ╚═══════════════════════════════════════════════════════╝ */

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

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

.brand-mark-left {}

.brand-mark-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;
}

.brand-mark-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.75rem;
}

.brand-mark-body {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--text-body);
  max-width: 48ch;
}

.brand-mark-body + .brand-mark-body {
  margin-top: 1rem;
}

.brand-mark-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.brand-signal-card {
  background: var(--surface-2);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.brand-signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
  margin-top: .35rem;
}

.brand-signal-content {}

.brand-signal-title {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: .35rem;
  letter-spacing: -.01em;
}

.brand-signal-desc {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--text-body);
}

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


/* ╔═══════════════════════════════════════════════════════╗
   §2  THE ENDORSEMENT
   ╚═══════════════════════════════════════════════════════╝ */

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

#brand-endorsement::before {
  content: '';
  position: absolute;
  left: -5%;
  top: -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;
}

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

.brand-endorsement-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;
}

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

.brand-endorsement-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: 2.5rem;
  max-width: 22ch;
}

.brand-endorsement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.brand-endorsement-prose {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.brand-endorsement-prose p {
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink-text-body);
}

.brand-endorsement-rule {
  border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--terra);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.5rem 1.75rem;
  margin-top: .5rem;
}

.brand-endorsement-rule-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: .75rem;
}

.brand-endorsement-rule-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-text-strong);
  font-style: italic;
}

.brand-endorsement-examples {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand-endorsement-example {
  background: var(--ink-surface);
  border: 1px solid var(--ink-border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
}

.brand-endorsement-example-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-text-muted);
  margin-bottom: .6rem;
}

.brand-endorsement-example-value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-text-strong);
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.brand-endorsement-example-value .co-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  /* Faint ring so dark brand colours (navy, green) stay visible on the dark section */
  box-shadow: 0 0 0 1px rgba(255,255,255,.30);
}

.brand-endorsement-example-note {
  font-size: .875rem;
  color: var(--ink-text-muted);
  margin-top: .4rem;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .brand-endorsement-grid {
    grid-template-columns: 1fr;
  }
}


/* ╔═══════════════════════════════════════════════════════╗
   §3  ASSET DOWNLOADS
   ╚═══════════════════════════════════════════════════════╝ */

#brand-assets {
  background: var(--surface-2);
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
}

.brand-assets-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.brand-assets-head {
  margin-bottom: 3rem;
}

.brand-assets-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;
}

.brand-assets-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: .75rem;
}

.brand-assets-sub {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-body);
  max-width: 52ch;
}

.brand-assets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.brand-asset-tile {
  background: var(--paper);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 2rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}

.brand-asset-tile:hover {
  box-shadow: 0 8px 32px rgba(14,19,32,.08);
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.brand-asset-tile-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.brand-asset-type-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 .75rem;
  border-radius: var(--r-full);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.badge-svg {
  background: #E8F4FE;
  color: #0369A1;
}

.badge-png {
  background: #E7F9EF;
  color: #166534;
}

.badge-pdf {
  background: #FEF2F2;
  color: #991B1B;
}

.badge-zip {
  background: #FEF3C7;
  color: #92400E;
}

.brand-asset-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-asset-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-body);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-asset-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: -.015em;
  margin-bottom: .4rem;
  line-height: 1.25;
}

.brand-asset-desc {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--text-body);
  flex: 1;
  margin-bottom: 1.5rem;
}

.brand-asset-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.brand-asset-meta {
  font-size: .825rem;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .brand-assets-grid {
    grid-template-columns: 1fr;
  }
}


/* ╔═══════════════════════════════════════════════════════╗
   §4  PRESS ENQUIRIES
   ╚═══════════════════════════════════════════════════════╝ */

#brand-press {
  background: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) var(--gutter);
}

.brand-press-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-press-left {}

.brand-press-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1rem;
}

.brand-press-h2 {
  font-family: var(--font);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink-text-strong);
  margin-bottom: .75rem;
}

.brand-press-email {
  font-size: 1.0625rem;
  color: var(--ink-text-body);
}

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

.brand-press-email a:hover {
  color: var(--terra-hover);
}

.brand-press-right {
  flex-shrink: 0;
}

@media (max-width: 680px) {
  .brand-press-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
