/* ============================================================
   VIGNE DI QUALITÀ — vdq.css
   Light B&W design system · accenti rosso vino
   Stesso linguaggio visivo di Terre de Trinci (versione bianca)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

:root {
  --bg:          #ffffff;
  --bg-soft:     #f5f2ef;
  --bg-mid:      #eeebe7;
  --card:        #ffffff;
  --card-over:   #faf8f5;
  --text:        #0a0a0a;
  --muted:       #6a6a6a;
  --line:        rgba(0,0,0,.07);
  --line-md:     rgba(0,0,0,.13);
  --accent:      #8e1535;
  --accent-2:    #ae2248;
  --accent-soft: rgba(142,21,53,.07);
  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-sans:     'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(.25,.46,.45,.94);
}

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }
img { display: block; }

.container { width: min(1240px, 92vw); margin: 0 auto; }
.section { padding: 9.5rem 0; }
.section.dark { background: var(--bg-soft); }
.gs-hidden { opacity: 0; transform: translateY(28px); }

/* ── EYEBROW ──────────────────────────────────────────────── */
.eyebrow {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: .62rem;
  font-size: .54rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.55rem;
  line-height: 1;
  text-rendering: geometricPrecision;
}
.eyebrow::before {
  content: '';
  flex-shrink: 0;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 88%, transparent 12%) 0%, rgba(0,0,0,0) 100%);
}
.eyebrow::after {
  content: '';
  width: 5px;
  height: 5px;
  border: 1px solid color-mix(in srgb, var(--accent) 72%, transparent 28%);
  transform: rotate(45deg);
  opacity: .85;
}

/* ── HEADINGS ─────────────────────────────────────────────── */
h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  font-weight: 300;
  line-height: .93;
  letter-spacing: -.015em;
  margin-bottom: 1.8rem;
  color: var(--text);
}
h2 em { color: var(--accent); font-style: italic; }

.section-sub {
  max-width: 780px;
  color: var(--muted);
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.88;
  margin-bottom: 3.5rem;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .78rem 2.2rem;
  font-family: var(--ff-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  transition: all .28s var(--ease);
  border-radius: 0;
  cursor: pointer;
}
.btn-main {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.btn-main:hover { background: transparent; color: var(--accent); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-md);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s ease, border-color .4s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line-md);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.navbar-inner {
  width: min(1280px, 94vw);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
}
.brand-logos {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.brand-logo-tdt { border-radius: 6px; flex-shrink: 0; }
.brand-logo-vdq {
  width: auto;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-menu a {
  position: relative;
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s ease;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .3s ease;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--text); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }
.nav-menu .nav-cta {
  border: 1px solid var(--line-md);
  padding: .46rem 1.1rem;
  color: var(--text);
}
.nav-menu .nav-cta:hover { border-color: var(--accent); color: var(--accent); }
.nav-menu .nav-cta::after { display: none; }

/* ── HAMBURGER ────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 1px;
  background: var(--text);
  display: block;
  transition: .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  z-index: 99;
  display: grid;
  align-content: start;
  min-height: calc(100dvh - 76px);
  height: calc(100dvh - 76px);
  overflow-y: auto;
  padding: 1.6rem max(1.2rem, 4vw) 2rem;
  background: rgba(255,255,255,.98);
  border-top: 1px solid var(--line-md);
  transform: translateY(calc(-100% - 76px));
  transition: transform .33s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--ff-serif);
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease;
  color: var(--text);
}
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-menu a:hover { color: var(--accent); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-bg svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1060px, 92vw);
  padding: 8.5rem 0 7rem;
  text-align: center;
}
.hero-tag {
  display: block;
  margin-bottom: 3rem;
  font-size: .54rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .38em;
  color: var(--muted);
}
.hero h1 {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(3.6rem, 10vw, 10rem);
  line-height: .87;
  letter-spacing: -.025em;
  color: var(--text);
  text-wrap: balance;
}
.hero h1 em {
  display: block;
  color: var(--accent);
  font-style: italic;
  margin-top: .06em;
}
.hero-rule {
  width: 1px;
  height: 56px;
  background: var(--line-md);
  margin: 2.8rem auto;
}
.hero-sub {
  width: min(640px, 95%);
  margin: 0 auto 3rem;
  color: var(--muted);
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── HERO METRICS ─────────────────────────────────────────── */
.hero-metrics {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-md);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.metric {
  text-align: center;
  padding: 1.4rem 1rem;
  border-right: 1px solid var(--line-md);
}
.metric:last-child { border-right: 0; }
.metric strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 300;
  line-height: 1;
  color: var(--text);
}
.metric span {
  display: block;
  margin-top: .45rem;
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── PAGE HERO (rassegna stampa) ──────────────────────────── */
.page-hero {
  position: relative;
  padding: 12rem 0 6.5rem;
  background: #f8f5f1;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.page-hero-bg svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(860px, 92vw);
  margin: 0 auto;
  border-bottom: 1px solid var(--line-md);
  padding-bottom: 4rem;
}
.page-hero-inner h1 {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .87;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 1.6rem;
}
.page-hero-inner h1 em { color: var(--accent); font-style: italic; }
.page-hero-sub {
  color: var(--muted);
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.9;
  max-width: 640px;
}
.page-hero-sub a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ── MARQUEE ──────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line-md);
  border-bottom: 1px solid var(--line-md);
  background: var(--bg-soft);
}
.track {
  min-width: 200%;
  display: inline-block;
  padding: .9rem 0;
  animation: marquee 32s linear infinite;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .55rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── INTRO GRID ───────────────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6rem;
  align-items: center;
}
.intro-copy p {
  color: var(--muted);
  font-size: .97rem;
  font-weight: 300;
  margin-bottom: 1.1rem;
  line-height: 1.88;
}
.cert-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  border: 1px solid var(--line-md);
  padding: 2rem;
}
.cert-logos img {
  width: 100%;
  max-width: 120px;
  margin: 0 auto;
  filter: grayscale(0.2);
  transition: filter .3s ease, transform .3s ease;
}
.cert-logos img:hover { filter: grayscale(0); transform: scale(1.05); }

/* ── CERT GRID ────────────────────────────────────────────── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.cert-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}
.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .45s var(--ease);
}
.cert-card:hover::before { width: 100%; }
.cert-card:hover { background: var(--card-over); }
.cert-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: var(--bg-soft);
}
.cert-img img { width: 100px; height: 100px; object-fit: contain; }
.cert-body {
  padding: 2.4rem 2rem;
}
.cert-tag {
  display: block;
  font-size: .54rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
}
.cert-body h3 {
  font-family: var(--ff-serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  margin-bottom: .8rem;
}
.cert-body p { color: var(--muted); font-size: .9rem; font-weight: 300; line-height: 1.78; }

/* ── EVENTI GRID ──────────────────────────────────────────── */
/* scroll-margin-top compensa la navbar fissa su tutti i dispositivi */
[id].evento-card {
  scroll-margin-top: 96px;
}
.eventi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.evento-card {
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
  background: var(--bg-soft);
}
.evento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .45s var(--ease);
  z-index: 1;
}
.evento-card:hover::before { width: 100%; }
.evento-card:hover { background: var(--card-over); }
.evento-img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--bg-mid);
}
.evento-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.evento-card:hover .evento-img-wrap img { transform: scale(1.04); }
.evento-body { padding: 1.4rem 1.2rem; }
.evento-tag {
  display: block;
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}
.evento-body h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: .45rem;
}
.evento-sub {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: .25rem;
  font-style: italic;
}
.evento-date {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── RASSEGNA STAMPA ──────────────────────────────────────── */
.stampa-group {
  margin-bottom: 5.5rem;
}
.stampa-group:last-child { margin-bottom: 0; }
.stampa-group-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: -.01em;
  line-height: 1;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-md);
  margin-bottom: 0;
}
.stampa-list { display: grid; }
.stampa-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: .4rem 2rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.stampa-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .4s var(--ease);
}
.stampa-item:hover::before { width: 100%; }
.stampa-meta {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.stampa-source {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text);
}
.stampa-badge {
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(142,21,53,.12);
  padding: .18rem .55rem;
}
.stampa-headline {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}
.stampa-link {
  grid-column: 2;
  grid-row: 1 / 3;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
  transition: opacity .2s ease;
}
.stampa-link:hover { opacity: .65; }

/* ── SOCIAL / CONTATTI ────────────────────────────────────── */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.social-links { display: grid; gap: 0; }
.social-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .88rem;
  font-weight: 300;
  color: var(--muted);
  transition: color .25s ease;
}
.social-item:last-child { border-bottom: 0; }
.social-item:hover { color: var(--accent); }
.social-item svg { flex-shrink: 0; }

/* ── INSTITUTIONAL STRIP ─────────────────────────────────── */
.institutional-strip {
  padding: 2.2rem 0 1.2rem;
  background: var(--bg);
}
.institutional-strip-inner {
  border-top: 1px solid var(--line-md);
  padding-top: 1.8rem;
}
.institutional-strip img {
  width: min(100%, 1040px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line-md);
  background: var(--bg);
  padding: 1.7rem 0;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.foot-brand {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
}
.foot-brand-webclip {
  width: auto;
  height: 82px;
  object-fit: contain;
  flex-shrink: 0;
}
.footer nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer nav a {
  font-size: .59rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s ease;
}
.footer nav a:hover { color: var(--accent); }
.footer small { color: rgba(0,0,0,.28); font-size: .67rem; }

:focus-visible { outline: 1px solid var(--accent); outline-offset: 4px; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cert-grid { grid-template-columns: 1fr; }
  .cert-card { grid-column: 1 !important; border-right: 0; }
  .cert-card:nth-child(3) { border-bottom: 1px solid var(--line-md); }
  .cert-card:last-child { border-bottom: 0; }

  .eventi-grid { grid-template-columns: repeat(3, 1fr); }
  .evento-card:nth-child(4n) { border-right: 1px solid var(--line-md); }
  .evento-card:nth-child(3n) { border-right: 0; }
}

@media (max-width: 820px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .brand-logo-vdq { height: 22px; }

  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cert-logos { grid-template-columns: repeat(2, 1fr); }

  .eventi-grid { grid-template-columns: repeat(2, 1fr); }
  .evento-card:nth-child(3n) { border-right: 1px solid var(--line-md); }
  .evento-card:nth-child(2n) { border-right: 0; }

  .social-grid { grid-template-columns: 1fr; gap: 4rem; }
  .section { padding: 6.5rem 0; }
}

@media (max-width: 560px) {
  .eyebrow {
    font-size: .5rem;
    letter-spacing: .24em;
    gap: .46rem;
    margin-bottom: 1.1rem;
  }
  .eyebrow::before { width: 20px; }
  .eyebrow::after {
    width: 4px;
    height: 4px;
  }

  .brand-logos { gap: .45rem; }
  .brand-logo-vdq { height: 18px; }
  .hero h1,
  .page-hero-inner h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-rule { height: 40px; margin: 1.8rem auto; }
  .hero-metrics { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line-md); }
  .metric:last-child { border-bottom: 0; }

  .eventi-grid { grid-template-columns: 1fr; }
  .evento-card { border-right: 0; }

  .cert-card { grid-template-columns: 1fr; }
  .cert-img { border-right: 0; border-bottom: 1px solid var(--line-md); }

  .stampa-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .stampa-link { grid-column: 1; grid-row: 3; }

  .section { padding: 5rem 0; }
  .btn { width: 100%; }
  .foot-brand-webclip { height: 68px; }
}

/* ── VIDEO DOCUMENTARIO ───────────────────────────────────── */
.section-video {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.section-video::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(142,21,53,.05) 0%, transparent 70%);
  pointer-events: none;
}
.video-header {
  margin-bottom: 3.5rem;
}
.video__wrap {
  position: relative;
  border-left: 2px solid var(--accent);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
}
.video__wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(142,21,53,.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.video__wrap video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
  background: #000;
  position: relative;
  z-index: 0;
}
.video__wrap:hover {
  border-left-color: var(--accent-2);
  box-shadow: 0 8px 48px rgba(142,21,53,.14), 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .4s ease, border-color .4s ease;
}
.video__caption {
  margin-top: 1.5rem;
  text-align: center;
  font-size: .54rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}
.video__caption::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: .7rem;
  opacity: .6;
}
.video__caption::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-left: .7rem;
  opacity: .6;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s cubic-bezier(.25,.46,.45,.94), transform .8s cubic-bezier(.25,.46,.45,.94);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MADE BY BADGE ────────────────────────────────────────── */
.madeby {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 0;
  border-top: 1px solid var(--line-md);
  background: var(--bg);
}
.madeby img {
  height: 18px;
  width: auto;
  opacity: .75;
  display: block;
  transition: opacity .25s ease;
}
.madeby:hover img { opacity: 1; }
.madeby span {
  font-size: .5rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(0,0,0,.3);
}

/* section-video padding overrides */
.section-video { padding-top: 5rem; }

@media (max-width: 820px) {
  .video__wrap video { max-height: 55vw; }
  .section-video { padding-top: 4rem; }
}
@media (max-width: 560px) {
  .section-video .video-header { margin-bottom: 2rem; }
  .section-video { padding-top: 3rem; }
  .video__wrap video { max-height: 65vw; }
  .video__caption { font-size: .48rem; letter-spacing: .2em; }
  .video__caption::before,
  .video__caption::after { width: 12px; }
}


