:root {
  --bg: #04060c;
  --panel: #0a0e17;
  --panel-strong: #0f1522;
  --text: #eef2f8;
  --muted: #a7b0c2;
  --primary: #7cf2d4;
  --accent: #6ea8ff;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 18px;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(108, 245, 210, 0.07), transparent 20%),
    radial-gradient(circle at 80% 0%, rgba(110, 168, 255, 0.07), transparent 22%),
    radial-gradient(circle at 50% 80%, rgba(161, 107, 255, 0.08), transparent 32%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--text);
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.footer-copy {
  display: block;
  font-size: 0.85rem;
  margin-top: 8px;
}

.legal-main {
  width: min(900px, 92vw);
  margin: 0 auto;
  padding: 120px 0 80px;
}

.legal-back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.legal-back-link:hover {
  color: var(--text);
}

.legal-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 18px;
}

.legal-pill {
  display: inline-block;
  background: rgba(110, 168, 255, 0.12);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.legal-list {
  padding-left: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(4, 6, 12, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.2rem;
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand--footer .brand-logo {
  width: 66px;
  height: 66px;
}

@media (max-width: 520px) {
  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .brand--footer .brand-logo {
    width: 56px;
    height: 56px;
  }
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease;
  position: relative;
  padding: 6px 0;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #0a0d13;
  border: none;
  box-shadow: 0 15px 40px rgba(108, 245, 210, 0.2);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(108, 245, 210, 0.3);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 1rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  padding: 96px 0 48px;
  align-items: center;
}

.video-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0;
  min-height: calc(100vh - 80px);
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 6, 12, 0.35) 0%, rgba(4, 6, 12, 0.65) 60%, rgba(4, 6, 12, 0.9) 100%);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.05;
  margin: 14px 0;
}

.lede {
  color: var(--muted);
  max-width: 640px;
}

.muted {
  color: var(--muted);
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-size: 0.85rem;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.hero-stat {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(10, 14, 23, 0.75);
  border: 1px solid var(--border);
  margin-top: 16px;
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.section-head h2 {
  margin: 6px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.feature-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 28px;
}

.feature {
  background: linear-gradient(160deg, rgba(124, 242, 212, 0.06), rgba(14, 19, 29, 0.65));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.feature ul {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  color: var(--muted);
}

.feature ul li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.feature ul li:last-child {
  border-bottom: none;
}

.link {
  color: var(--primary);
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: start;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 4px;
}

.story-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  color: var(--muted);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.person {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  color: #fff;
  font-weight: 600;
}

.person span {
  color: var(--muted);
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.gallery-grid figure {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 170px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel-strong);
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.35s ease;
}

.gallery-grid figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 6, 12, 0.05) 0%, rgba(4, 6, 12, 0.55) 80%, rgba(4, 6, 12, 0.75) 100%);
  opacity: 0.9;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.gallery-grid figure:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}

.gallery-grid figure:hover::before {
  opacity: 1;
}

.gallery-grid img,
.gallery-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-grid figure:hover img,
.gallery-grid figure:hover video {
  transform: scale(1.05);
}

.gallery-grid figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(4, 6, 12, 0.75);
  border: 1px solid var(--border);
  z-index: 2;
  backdrop-filter: blur(10px);
  font-weight: 700;
  color: #fff;
}

.press,
.press-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.press-card,
.press-link {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
  min-height: 150px;
}

.press-link:hover,
.press-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.press-link:focus-visible,
.press-card:focus-visible {
  outline: 2px solid rgba(124, 242, 212, 0.55);
  outline-offset: 3px;
}

.press-title {
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.05rem;
  color: #fff;
}

.press-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.press-source {
  color: var(--muted);
}

.press-teaser {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.press-cta {
  margin-top: auto;
  font-weight: 700;
  color: var(--primary);
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: center;
}

.contact-meta {
  color: var(--muted);
  margin-top: 8px;
}

.contact-form {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.input-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.contact-form input:not([type="checkbox"]):not([type="hidden"]),
.contact-form textarea {
  width: 100%;
  background: #0f1420;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px;
  border-radius: 12px;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.consent-row {
  position: relative;
  margin-top: 8px;
}

.consent-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.consent-row label {
  position: relative;
  display: block;
  padding-left: 32px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  user-select: none;
}

/* Custom Checkbox Box */
.consent-row label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* Custom Checkbox Checkmark */
.consent-row label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  background-color: var(--primary);
  clip-path: polygon(28% 44%, 18% 54%, 45% 81%, 82% 24%, 72% 14%, 45% 60%);
  transform: scale(0);
  transition: 0.15s transform ease-in-out;
}

/* Checked State */
.consent-row input:checked + label::before {
  border-color: var(--primary);
  background-color: rgba(124, 242, 212, 0.1);
}

.consent-row input:checked + label::after {
  transform: scale(1);
}

/* Focus State */
.consent-row input:focus + label::before {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(124, 242, 212, 0.2);
}

.consent-row a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer {
  border-top: 1px solid var(--border);
  background: #060913;
  padding: 32px 0 40px;
  margin-top: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer a {
  color: var(--muted);
}

body.modal-open {
  overflow: hidden;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 12, 0.72);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  width: min(560px, 92vw);
  background: rgba(10, 14, 23, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin: 10px 0 8px;
  line-height: 1.15;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.modal-close:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (max-width: 860px) {
  .nav {
    position: absolute;
    inset: 64px 16px auto;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(4, 6, 12, 0.95);
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    display: none;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-grid {
    grid-template-columns: 1fr auto;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform 0.2s ease;
}

.team-member:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.team-member img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  flex-shrink: 0;
  margin-bottom: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.team-member h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.team-member .role {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1), transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Hero Animations */
.hero-copy > * {
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.hero-copy .pill { animation-delay: 0.1s; }
.hero-copy h1 { animation-delay: 0.2s; }
.hero-copy .lede { animation-delay: 0.3s; }
.hero-copy .cta-row { animation-delay: 0.4s; }
.hero-copy .hero-meta { animation-delay: 0.5s; }

/* Pulse for On Tour pill */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(124, 242, 212, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(124, 242, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 242, 212, 0); }
}

.pill {
  animation: pulse-glow 2s infinite;
}

/* Enhanced Team Member Hover */
.team-member {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.team-member:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border-color: var(--primary);
}

.team-member img {
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.1);
}

/* Feature Card Hover */
.feature {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}


/* Story Figures */
.story-figure {
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0b1018;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.story-figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.story-figure:hover img {
  transform: scale(1.03);
}

.story-figure figcaption {
  padding: 12px 16px;
  background: rgba(10, 14, 23, 0.95);
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  text-align: center;
}


/* Story Grid Layout */
.story-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 48px;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.story-row:nth-child(even) {
  direction: rtl; /* Swap order for even rows */
}

.story-row:nth-child(even) .story-content {
  direction: ltr; /* Reset text direction */
}

.story-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.story-content p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.story-image {
  position: relative;
}

.story-image .story-figure {
  margin: 0; /* Reset margin from previous rule */
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

@media (max-width: 860px) {
  .story-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .story-row:nth-child(even) {
    direction: ltr;
  }
}


/* About Grid Layout (3 Columns) */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}

.about-col {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

.about-img {
  margin: -24px -24px 24px -24px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  height: 240px;
  position: relative;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-col:hover .about-img img {
  transform: scale(1.05);
}

.about-header h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  color: #fff;
}

.divider {
  height: 2px;
  width: 40px;
  background: var(--primary);
  margin-bottom: 16px;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.about-img-small {
  margin: 20px 0 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-img-small img {
  width: 100%;
  display: block;
}

.about-img-small figcaption {
  padding: 8px;
  background: rgba(0,0,0,0.6);
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

/* About Article Layout (readable story + image rail) */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  margin-top: 40px;
  align-items: start;
}

.about-article {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.about-article h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}

.about-article h3:first-child {
  margin-top: 0;
}

.about-article p {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 70ch;
}

.about-article .chips {
  margin-top: 18px;
}

.about-aside {
  position: sticky;
  top: 96px;
}

.about-media {
  display: grid;
  gap: 14px;
}

.about-media-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--panel-strong);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.about-media-figure img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.about-media-figure:hover img {
  transform: scale(1.04);
}

.about-media-figure figcaption {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
  background: rgba(10, 14, 23, 0.55);
}

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

  .about-aside {
    position: static;
  }

  .about-media {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

