/* =========================================================
   ROAR STRONG — Stylesheet
   Sistema de diseño: stencil militar / industrial de gimnasio
   ========================================================= */

:root {
  /* Paleta de marca */
  --black: #0a0a0a;
  --black-soft: #121212;
  --surface: #171717;
  --surface-2: #1d1d1d;
  --border: #2b2b2b;
  --bone: #ece9e3;
  --bone-dim: #c9c6bf;
  --stone: #8d8a84;
  --stone-dark: #5c5a56;
  --red: #c41e3a;
  --red-dim: #8f1729;
  --red-glow: rgba(196, 30, 58, 0.35);

  /* Tipografía */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Espaciado */
  --section-pad: clamp(64px, 10vw, 140px);
  --container-w: 1280px;

  /* Transiciones */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* Respeto a usuarios con preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   Tipografía general
   ========================================================= */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--bone);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

p {
  color: var(--stone);
}

/* =========================================================
   Divisor "disco de pesas" — elemento de firma visual
   ========================================================= */

.plate-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 28px 0;
  opacity: 0.7;
}

.plate-divider span {
  width: 3px;
  background: var(--stone-dark);
  border-radius: 1px;
}

.plate-divider span:nth-child(odd) { height: 10px; }
.plate-divider span:nth-child(even) { height: 18px; }
.plate-divider span:nth-child(4) { height: 26px; background: var(--red); }

/* =========================================================
   Botones
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 34px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--bone);
}

.btn-primary:hover {
  background: #d92a47;
  box-shadow: 0 0 0 6px var(--red-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--bone-dim);
  color: var(--bone);
}

.btn-outline:hover {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--black);
}

.btn-small {
  padding: 11px 22px;
  font-size: 0.8rem;
}

/* =========================================================
   Header / navegación
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(10, 10, 10, 0.0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-link img {
  height: 40px;
  width: auto;
  transition: height 0.4s var(--ease);
}

.site-header.scrolled .logo-link img {
  height: 34px;
}

.nav-desktop {
  display: flex;
  gap: 40px;
}

.nav-desktop a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}

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

.nav-desktop a:hover::after {
  width: 100%;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--bone);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}

.nav-mobile.open {
  transform: translateY(0);
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bone);
}

@media (max-width: 860px) {
  .nav-desktop, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.6) 0%,
    rgba(10,10,10,0.25) 32%,
    rgba(10,10,10,0.78) 68%,
    rgba(10,10,10,0.98) 100%
  );
}

.hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.55) 30%,
    rgba(10,10,10,0.1) 58%,
    rgba(10,10,10,0.05) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(48px, 8vw, 96px);
}

.hero-text-block {
  max-width: 680px;
  position: relative;
  padding: 40px 44px 44px 0;
}

.hero-text-block::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -80px;
  right: -40px;
  bottom: -40px;
  background: radial-gradient(
    ellipse 90% 100% at 30% 50%,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.7) 45%,
    rgba(8,8,8,0) 85%
  );
  z-index: -1;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: clamp(0.6rem, 1.6vw, 0.78rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(16px);
  animation: heroIn 0.8s var(--ease) 0.2s forwards;
}

.hero-title {
  font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 0.9s var(--ease) 0.4s forwards;
}

.hero-title span {
  color: var(--red);
}

.hero-sub {
  max-width: 520px;
  font-size: 1.05rem;
  color: var(--bone-dim);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.9s var(--ease) 0.6s forwards;
}

.hero-slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--red);
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.9s var(--ease) 0.7s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn 0.9s var(--ease) 0.8s forwards;
}

.hero-tagline {
  margin-top: 56px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0;
  animation: heroIn 0.9s var(--ease) 1s forwards;
}

.hero-tagline b {
  color: var(--bone);
  font-weight: 600;
}

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .hero {
    align-items: flex-end;
  }

  .hero-media img {
    object-position: center 12%;
  }

  .hero-content {
    padding-bottom: 56px;
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .hero-tagline {
    margin-top: 36px;
    gap: 10px 22px;
  }

  .hero-text-block {
    padding: 28px 20px 28px 0;
  }

  .hero-text-block::before {
    left: -20px;
    right: -20px;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero-tagline span:nth-child(3) {
    flex-basis: 100%;
  }
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, var(--stone) 40%, transparent);
  overflow: hidden;
}

.scroll-cue::after {
  content: '';
  position: absolute;
  top: -56px;
  left: 0;
  width: 1px;
  height: 56px;
  background: var(--red);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -56px; }
  100% { top: 56px; }
}

/* =========================================================
   Reveal on scroll
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

/* =========================================================
   SOBRE LA MARCA
   ========================================================= */

.about {
  padding: var(--section-pad) 0;
  position: relative;
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.about-heading {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  margin: 18px 0 28px;
}

.about-text p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  max-width: 540px;
}

.about-slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--red);
  margin-bottom: 8px;
}

.tagline-block {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.tagline-word {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
}

.tagline-word b {
  color: var(--red);
  margin-right: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.about-stats {
  display: grid;
  gap: 28px;
}

.stat-card {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 28px 26px;
  position: relative;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--bone);
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================================
   COLECCIÓN / PRODUCTOS
   ========================================================= */

.collection {
  padding: var(--section-pad) 0;
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin-top: 14px;
}

.section-head .section-note {
  max-width: 360px;
  font-size: 0.95rem;
  text-align: right;
}

@media (max-width: 700px) {
  .section-head .section-note { text-align: left; }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.4s var(--ease);
}

.product-card:hover {
  border-color: var(--stone-dark);
  transform: translateY(-6px);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--surface-2);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(10,10,10,0.7);
  color: var(--bone);
  padding: 6px 10px;
  border: 1px solid var(--border);
}

.product-info {
  padding: 22px 24px 26px;
}

.product-info h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.product-info p {
  font-size: 0.88rem;
  margin-bottom: 18px;
}

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

@media (max-width: 620px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   EQUIPAMIENTO
   ========================================================= */

.equipment {
  padding: var(--section-pad) 0;
}

.equipment-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.equipment-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.equipment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.equipment-text h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 18px 0 22px;
}

.equipment-list {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.equipment-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 0.96rem;
  color: var(--bone-dim);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.equipment-list li b {
  font-family: var(--font-mono);
  color: var(--red);
  font-size: 0.8rem;
}

@media (max-width: 900px) {
  .equipment-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =========================================================
   GALERÍA DE ESTILO DE VIDA (editorial)
   ========================================================= */

.lifestyle {
  padding: var(--section-pad) 0;
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lifestyle-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 18px;
}

.lifestyle-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}

.lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.lifestyle-item:hover img {
  transform: scale(1.07);
}

.lifestyle-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lifestyle-item:hover::after {
  opacity: 1;
}

.lifestyle-caption {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.lifestyle-item:hover .lifestyle-caption {
  opacity: 1;
  transform: translateY(0);
}

.lifestyle-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.lifestyle-item.tall {
  grid-row: span 2;
}

@media (max-width: 980px) {
  .lifestyle-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
  }
  .lifestyle-item.big { grid-column: span 2; grid-row: span 1; }
  .lifestyle-item.tall { grid-row: span 1; }
}

@media (max-width: 600px) {
  .lifestyle-masonry {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .lifestyle-item, .lifestyle-item.big, .lifestyle-item.tall {
    grid-column: span 1;
    height: 320px;
  }
}

/* =========================================================
   CONTACTO
   ========================================================= */

.contact {
  padding: var(--section-pad) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info h2 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin: 18px 0 22px;
}

.contact-info > p {
  max-width: 420px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail .icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--red);
}

.contact-detail .icon svg {
  width: 18px;
  height: 18px;
}

.contact-detail-text .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 2px;
}

.contact-detail-text .value {
  font-size: 1rem;
  color: var(--bone);
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.social-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  color: var(--bone-dim);
}

.social-icon svg {
  width: 19px;
  height: 19px;
}

.social-icon:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--bone);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--border);
  color: var(--bone);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.contact-form .btn {
  width: 100%;
  margin-top: 6px;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px; }
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.footer-brand img {
  height: 34px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 280px;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: var(--bone-dim);
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--stone-dark);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-social a:hover {
  color: var(--red);
  border-color: var(--red);
}

@media (max-width: 700px) {
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
