/* ============ TOKENS ============ */
:root {
  --bg: #0a0a0b;
  --bg-alt: #131315;
  --bg-card: #17171a;
  --border: rgba(255, 255, 255, 0.08);

  --gold: #e3b23c;
  --gold-light: #f6d98a;
  --gold-dim: rgba(227, 178, 60, 0.15);

  --blue: #3b63a6;

  --text: #f4f1ea;
  --text-muted: #a9a59c;

  --font-display: "Anton", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-serif: "Lora", serif;

  --container: 1180px;
  --radius: 14px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold); }

::selection { background: var(--gold); color: #1a1400; }

/* subtle grain to keep the black from feeling flat */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn .icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #1a1400;
  box-shadow: 0 8px 24px -8px rgba(227, 178, 60, 0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(227, 178, 60, 0.75); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-2px); }

.btn-lg { padding: 18px 38px; font-size: 1.05rem; }

.btn-nav { display: none; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 10, 11, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 20px;
}

.brand-mark { height: 42px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 based on width */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 based on height */
  transform: translate(-50%, -50%);
  border: none;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.55) 30%, rgba(10,10,11,0.92) 92%),
    linear-gradient(90deg, rgba(10,10,11,0.75) 0%, rgba(10,10,11,0.15) 45%, rgba(10,10,11,0.15) 55%, rgba(10,10,11,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 74px;
}

.hero-logo {
  width: min(560px, 82vw);
  filter:
    drop-shadow(0 0 3px rgba(255,255,255,0.9))
    drop-shadow(0 0 22px rgba(255,255,255,0.5))
    drop-shadow(0 12px 40px rgba(0,0,0,0.6));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-tagline {
  margin-top: 18px;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollcue 2s ease infinite;
}
@keyframes scrollcue {
  0% { top: 6px; opacity: 1; }
  70% { top: 20px; opacity: 0; }
  100% { top: 6px; opacity: 0; }
}

/* ============ SECTIONS (shared) ============ */
.section { padding: 110px 0; position: relative; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 42px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ NOSOTROS ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-text {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--text);
  max-width: 54ch;
}

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 16px;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.stat-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-label { font-size: 0.82rem; color: var(--text-muted); }

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
}

.mission-label {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.mission-card p { font-family: var(--font-serif); color: var(--text); font-size: 1rem; }

/* ============ AGENDA ============ */
.agenda-inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.agenda-copy .about-text { margin-bottom: 30px; }

.agenda-poster {
  display: flex;
  justify-content: center;
}
.agenda-poster img {
  width: 100%;
  max-width: 340px;
  border-radius: 14px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.7);
  border: 1px solid var(--border);
}

@media (max-width: 960px) {
  .agenda-inner { grid-template-columns: 1fr; text-align: center; }
  .agenda-copy .hero-actions { justify-content: center; }
  .agenda-poster { order: -1; }
}

/* ============ TRAYECTORIA ============ */
.trayectoria-section { padding-top: 0; }

.tray-carousel {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0;
  padding: 30px 30px 42px;
  margin-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
}
.tray-carousel::-webkit-scrollbar { height: 6px; }
.tray-carousel::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 999px; }

.tray-slide {
  position: relative;
  flex: 0 0 auto;
  width: min(280px, 60vw);
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 -14px 0 0;
  border: 6px solid var(--bg-card);
  outline: 1px solid var(--border);
  box-shadow: 0 16px 34px -12px rgba(0,0,0,0.7);
  transition: transform 0.35s ease, box-shadow 0.35s ease, z-index 0s;
}

.tray-slide:nth-child(4n+1) { transform: rotate(-4deg); }
.tray-slide:nth-child(4n+2) { transform: rotate(3deg) translateY(14px); }
.tray-slide:nth-child(4n+3) { transform: rotate(-2deg) translateY(-10px); }
.tray-slide:nth-child(4n+4) { transform: rotate(5deg) translateY(6px); }

.tray-slide:hover {
  transform: rotate(0) translateY(-6px) scale(1.06);
  z-index: 5;
  box-shadow: 0 24px 46px -14px rgba(0,0,0,0.85), 0 0 0 1px rgba(227,178,60,0.4);
}

.tray-slide--full {
  aspect-ratio: 1000 / 417;
  width: min(440px, 74vw);
  transform: none;
  z-index: 2;
}
.tray-slide--full:hover { transform: translateY(-6px) scale(1.04); }

.tray-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tray-slide:hover img { transform: scale(1.08); }

.tray-slide-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,11,0.92) 100%);
}

.tray-slide-title {
  position: absolute;
  left: 16px; bottom: 14px;
  right: 16px;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.3rem;
  color: var(--text);
}

.tray-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.tray-table {
  width: 100%;
  border-collapse: collapse;
}

.tray-table thead th {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.tray-table tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}
.tray-table tbody tr:last-child td { border-bottom: none; }

.tray-table tbody td:first-child {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 1.02rem;
}

.tray-table tbody td:nth-child(2),
.tray-table tbody td:nth-child(3) {
  color: var(--text-muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.tray-table tbody tr { transition: background 0.2s ease; }
.tray-table tbody tr:hover { background: rgba(255,255,255,0.03); }

.tray-row--highlight { background: linear-gradient(90deg, rgba(227,178,60,0.09), transparent 60%); }
.tray-row--highlight td:first-child { color: var(--gold-light); }

.director-credit {
  margin-top: 28px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ============ SINGLE ============ */
.single-section {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.single-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.single-sub {
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.single-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(227,178,60,0.22), rgba(227,178,60,0.02) 70%);
  border: 1px dashed rgba(227, 178, 60, 0.4);
}

.badge-pill {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  text-align: center;
  padding: 0 20px;
}

/* ============ GALERIA ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.95rem;
  min-height: 220px;
}

/* ============ VIDEO COLLAGE ============ */
.video-collage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 34px 10px 20px;
  margin-top: 12px;
}

.video-collage-item {
  position: relative;
  flex: 0 0 auto;
  width: min(320px, 78vw);
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 -18px 0 0;
  border: 6px solid var(--bg-card);
  outline: 1px solid var(--border);
  box-shadow: 0 16px 34px -12px rgba(0,0,0,0.7);
  transition: transform 0.35s ease, box-shadow 0.35s ease, z-index 0s;
}
.video-collage-item iframe {
  width: 100%; height: 100%; border: none; display: block;
}

.video-collage-item--link { display: block; }
.video-collage-item--link img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.video-collage-item--link .play-btn {
  width: 52px; height: 52px;
}
.video-collage-item--link .play-btn svg { width: 20px; height: 20px; }

.video-collage-item:nth-child(3n+1) { transform: rotate(-3deg); }
.video-collage-item:nth-child(3n+2) { transform: rotate(2deg) translateY(14px); z-index: 1; }
.video-collage-item:nth-child(3n+3) { transform: rotate(-4deg) translateY(-8px); }

.video-collage-item:hover {
  transform: rotate(0) translateY(-6px) scale(1.04);
  z-index: 5;
  box-shadow: 0 24px 46px -14px rgba(0,0,0,0.85), 0 0 0 1px rgba(227,178,60,0.4);
}

@media (max-width: 780px) {
  .video-collage-item { width: min(240px, 74vw); margin: 0 -26px 0 0; }
}

/* ============ MUSICA ============ */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.media-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
  min-height: 352px;
}

.video-card { display: block; }
.video-card img { width: 100%; height: 100%; object-fit: cover; min-height: 352px; }
.video-card-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.15), rgba(10,10,11,0.75));
  transition: background 0.25s ease;
}
.video-card:hover .video-card-scrim { background: linear-gradient(180deg, rgba(10,10,11,0.05), rgba(10,10,11,0.6)); }

.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(227, 178, 60, 0.92);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease;
}
.play-btn svg { width: 26px; height: 26px; fill: #1a1400; margin-left: 3px; }
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); }

.video-card-label {
  position: absolute;
  bottom: 18px; left: 20px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ============ INSTAGRAM WIDGET ============ */
.ig-widget {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 42px;
  background: #fff;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}
.ig-widget iframe {
  width: 100%;
  height: 720px;
  border: none;
  display: block;
}

@media (max-width: 560px) {
  .ig-widget iframe { height: 560px; }
}

/* ============ SOCIAL GRID ============ */
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 10px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 500;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.social-card .icon { width: 24px; height: 24px; fill: var(--text); transition: fill 0.25s ease; }
.social-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-dim);
  background: linear-gradient(160deg, var(--bg-card), rgba(227,178,60,0.08));
}
.social-card:hover .icon { fill: var(--gold); }

/* ============ CONTACTO ============ */
.contact-section { text-align: center; }
.contact-inner { display: flex; flex-direction: column; align-items: center; }
.contact-text { margin-bottom: 34px; }

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.contact-detail .icon { width: 18px; height: 18px; fill: var(--gold); }
.contact-detail:hover { color: var(--text); }

/* ============ FOOTER ============ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 34px;
  text-align: center;
  background: var(--bg-alt);
}
.footer-logo { height: 34px; margin: 0 auto 12px; opacity: 0.9; }
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 22px; }
.footer-socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 26px; }
.footer-socials .icon { width: 20px; height: 20px; fill: var(--text-muted); transition: fill 0.2s ease; }
.footer-socials a:hover .icon { fill: var(--gold); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .mission-grid { grid-template-columns: 1fr; }
  .single-inner { grid-template-columns: 1fr; }
  .single-badge { order: -1; width: 160px; margin: 0 auto; }
  .media-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .tray-carousel { padding: 20px 0 30px; }
  .tray-slide {
    width: min(220px, 68vw);
    margin: 0 -22px 0 0;
  }
  .tray-slide--full { width: min(300px, 78vw); }

  .tray-table thead { display: none; }
  .tray-table, .tray-table tbody, .tray-table tr, .tray-table td { display: block; width: 100%; }
  .tray-table tr { padding: 16px 20px; border-bottom: 1px solid var(--border); }
  .tray-table tbody tr:last-child { border-bottom: none; }
  .tray-table td { border-bottom: none !important; padding: 4px 0; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
  .tray-table td::before {
    content: attr(data-label);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    flex-shrink: 0;
  }
  .tray-table td:first-child { font-size: 1rem; }

  .main-nav {
    position: fixed;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(10, 10, 11, 0.97);
    backdrop-filter: blur(14px);
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-link { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--border); }

  .btn-nav { display: none !important; }
  .nav-toggle { display: flex; }

  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 80px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .contact-details { flex-direction: column; gap: 16px; }
}

@media (min-width: 781px) {
  .btn-nav { display: inline-flex; }
}

@media (max-width: 560px) {
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn, .contact-details { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}
