/* ODAE — odaemusic.com */

/* ─── Fuentes (servidas desde el propio dominio) ─── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/assets/fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/assets/fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Variables ─── */
:root {
  --bg:        #0C0C0C;
  --surface:   #141414;
  --card:      #1A1A1A;
  --border:    #2A2A2A;
  --yellow:    #F5C518;
  --yellow-dim:#C49A10;
  --white:     #FFFFFF;
  --gray:      #7A7A7A;
  --light:     #CCCCCC;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── Utility ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--bg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--white);
}
.section-title span { color: var(--yellow); }
.section-sub {
  color: var(--gray);
  font-size: 1rem;
  margin-top: 12px;
  max-width: 560px;
}
section { padding: 96px 0; }

/* ─── Navbar ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12,12,12,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--yellow); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--light);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-yellow { background: var(--yellow); color: var(--bg); }
.btn-yellow:hover { background: #FFD700; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--yellow);
  border: 1.5px solid var(--yellow);
}
.btn-outline:hover { background: var(--yellow); color: var(--bg); }
.nav-cta { display: flex; gap: 12px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ─── Hero ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(245,197,24,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(245,197,24,0.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow-line { width: 40px; height: 2px; background: var(--yellow); }
.hero-eyebrow-text {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -1px;
}
.hero-title .highlight {
  color: var(--yellow);
  display: inline-block;
  position: relative;
}
.hero-sub {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--light);
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  color: var(--gray);
  font-size: 0.85rem;
}
.hero-location svg { color: var(--yellow); flex-shrink: 0; }

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.orbit-diagram {
  position: relative;
  width: 500px;
  height: 500px;
}
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.orbit-center-icon { font-size: 2.4rem; }
.orbit-center-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--bg);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 400px; height: 400px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(245,197,24,0.25);
  border-radius: 50%;
}
@keyframes breathe {
  0%, 100% { transform: scale(1);    border-color: var(--border);               box-shadow: 0 0 0px 0px rgba(245,197,24,0); }
  50%       { transform: scale(1.12); border-color: rgba(245,197,24,0.8); box-shadow: 0 0 14px 4px rgba(245,197,24,0.25); }
}
.orbit-node {
  position: absolute;
  width: 100px; height: 100px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s;
  animation: breathe 4s ease-in-out infinite;
}
.node-1 { animation-delay: 0s; }
.node-2 { animation-delay: 0.57s; }
.node-3 { animation-delay: 1.14s; }
.node-4 { animation-delay: 1.71s; }
.node-5 { animation-delay: 2.28s; }
.node-6 { animation-delay: 2.85s; }
.node-7 { animation-delay: 3.43s; }
.orbit-node:hover { border-color: var(--yellow); transform: scale(1.15); animation-play-state: paused; }
.orbit-node-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--light);
  margin-top: 5px;
  font-family: 'Montserrat', sans-serif;
}
/* 7 nodos, r=185px, paso=360/7≈51.4°, inicio -90° (arriba) */
.node-1 { top: calc(50% - 185px - 50px); left: calc(50% - 50px); }           /* -90° */
.node-2 { top: calc(50% - 115px - 50px); left: calc(50% + 95px); }            /* -38.6° */
.node-3 { top: calc(50% + 42px - 50px); left: calc(50% + 131px); }            /* 12.9° */
.node-4 { top: calc(50% + 167px - 50px); left: calc(50% + 30px); }            /* 64.3° */
.node-5 { top: calc(50% + 167px - 50px); left: calc(50% - 130px - 50px); }    /* 115.7° */
.node-6 { top: calc(50% + 42px - 50px); left: calc(50% - 231px); }            /* 167.1° */
.node-7 { top: calc(50% - 115px - 50px); left: calc(50% - 245px); }           /* 218.6° */

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-bar section { padding: 0; }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide: var(--border);
}
.stat-item {
  padding: 32px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--yellow);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--gray); margin-top: 6px; letter-spacing: 0.5px; }

/* ─── About ─── */
#about .about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: 'ODAE';
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 7rem;
  color: rgba(245,197,24,0.04);
  pointer-events: none;
  line-height: 1;
}
.about-quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--white);
  border-left: 3px solid var(--yellow);
  padding-left: 20px;
  margin-bottom: 24px;
}
.about-detail { color: var(--gray); font-size: 0.9rem; line-height: 1.8; margin-bottom: 12px; }
.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--yellow);
  margin: 4px 4px 0 0;
}
.about-pills { margin-top: 24px; }
.about-text p { color: var(--light); line-height: 1.8; margin-bottom: 20px; }
.about-text p strong { color: var(--white); }

/* ─── Services ─── */
#services { background: var(--surface); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .section-sub { margin: 12px auto 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width 0.4s ease;
}
.service-card:hover { border-color: rgba(245,197,24,0.3); transform: translateY(-4px); }
.service-card:hover::after { width: 100%; }
@keyframes card-highlight {
  0%   { border-color: var(--yellow); box-shadow: 0 0 0 0 rgba(245,197,24,0.5); }
  40%  { border-color: var(--yellow); box-shadow: 0 0 0 10px rgba(245,197,24,0); }
  100% { border-color: var(--border); box-shadow: none; }
}
.service-card:target {
  animation: card-highlight 1.4s ease-out forwards;
}
.service-card:target::after { width: 100%; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(245,197,24,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.service-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ─── Team ─── */
.team-header { text-align: center; margin-bottom: 60px; }
.team-header .section-sub { margin: 12px auto 0; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.team-card:hover { border-color: rgba(245,197,24,0.5); transform: translateY(-4px); }
.team-card-header {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.team-avatar {
  width: 100%; height: 100%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: var(--yellow);
}
.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 0.4s ease;
}
.team-card:hover .team-avatar img {
  transform: scale(1.04);
}
/* gradiente sobre la foto para legibilidad del nombre */
.team-card-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  pointer-events: none;
}
.team-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 16px 20px;
}
.team-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.team-role { color: var(--yellow); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; margin-top: 3px; }
.team-body { padding: 16px 20px 20px; }
.team-bio { display: none; }
.team-tag {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px 12px;
  font-size: 0.75rem;
  color: var(--light);
  margin: 5px 4px 0 0;
}
.team-tags { margin-top: 0; }

/* ─── Proposal Form ─── */
#propuesta {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
#propuesta::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,197,24,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.propuesta-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.propuesta-info h2 { margin-bottom: 20px; }
.propuesta-info p { color: var(--gray); line-height: 1.8; margin-bottom: 28px; font-size: 0.95rem; }
.propuesta-steps { display: flex; flex-direction: column; gap: 20px; }
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--bg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.step-text span { font-size: 0.82rem; color: var(--gray); }

/* Form */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}
.form-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 28px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.svc-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.svc-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--gray);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  user-select: none;
}
.svc-check input { display: none; }
.svc-check:hover { border-color: rgba(245,197,24,0.4); color: #fff; }
.svc-check:has(input:checked) {
  border-color: var(--yellow);
  background: rgba(245,197,24,0.1);
  color: var(--yellow);
}
label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
input, select, textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 10px 14px;
  transition: border-color 0.2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
input::placeholder, textarea::placeholder { color: var(--gray); }
select option { background: var(--surface); }
textarea { resize: vertical; min-height: 100px; }
.form-submit { margin-top: 24px; width: 100%; padding: 14px; font-size: 0.95rem; }
.form-note { font-size: 0.75rem; color: var(--gray); margin-top: 12px; text-align: center; }
/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.form-success p { color: var(--gray); font-size: 0.9rem; }

/* ─── Contact ─── */
#contacto .contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--gray); line-height: 1.8; margin-bottom: 36px; font-size: 0.95rem; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 0.85rem; color: var(--white); margin-bottom: 2px; }
.contact-item-text span { font-size: 0.85rem; color: var(--gray); }
.social-links { display: flex; gap: 12px; margin-top: 36px; }
.social-link {
  width: 44px; height: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.2s;
}
.social-link:hover { background: var(--yellow); border-color: var(--yellow); }
.contact-map {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--gray);
  font-size: 0.9rem;
  position: relative;
}
.map-placeholder-icon { font-size: 2.5rem; }
.map-label { font-size: 0.85rem; color: var(--gray); }
.map-region {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

/* ─── Footer ─── */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { font-size: 1.3rem; margin-bottom: 12px; }
.footer-brand p { color: var(--gray); font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--gray); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--gray); font-size: 0.8rem; }
.footer-badge {
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.75rem;
  color: var(--yellow);
  font-weight: 600;
}

/* ─── Mobile menu ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(12,12,12,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--light);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--yellow); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .orbit-diagram { width: 280px; height: 280px; }
  .node-1 { top: calc(50% - 110px - 28px); left: calc(50% - 28px); }
  .node-2 { top: calc(50% - 55px - 28px); left: calc(50% + 95px - 28px); }
  .node-3 { top: calc(50% + 55px - 28px); left: calc(50% + 95px - 28px); }
  .node-4 { top: calc(50% + 110px - 28px); left: calc(50% - 28px); }
  .node-5 { top: calc(50% + 55px - 28px); left: calc(50% - 95px - 28px); }
  .node-6 { top: calc(50% - 55px - 28px); left: calc(50% - 95px - 28px); }
  .orbit-ring { width: 220px; height: 220px; }
  .orbit-node { width: 56px; height: 56px; font-size: 1.1rem; }
  .orbit-center { width: 70px; height: 70px; }
  #about .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .propuesta-inner { grid-template-columns: 1fr; gap: 40px; }
  #contacto .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.4rem; }
  .orbit-diagram { width: 220px; height: 220px; }
}

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Print / PDF ─── */
@media print {
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  nav { display: none !important; }
  .mobile-menu { display: none !important; }
  .hamburger { display: none !important; }
  section { padding: 48px 0; page-break-inside: avoid; }
  #hero { min-height: auto; padding-top: 40px; }
  .hero-inner { grid-template-columns: 1fr 1fr; }
  .orbit-ring { animation: none; }
  .orbit-node { animation: none; }
  .fade-up { opacity: 1 !important; transform: none !important; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .form-card { break-inside: avoid; }
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
  .about-inner { grid-template-columns: 1fr 1fr; }
  .propuesta-inner { grid-template-columns: 1fr 1.6fr; }
  .contact-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
}

/* ─── Escena Marshall ─── */
#marshall-scene { padding: 0 !important; }
.ms-stage {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg,
      transparent 0px, transparent 59px,
      rgba(0,0,0,0.07) 60px)
    ,linear-gradient(180deg, #4a2e14 0%, #6b3f1f 55%, #7a4e28 100%);
}
.ms-floor {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  z-index: 1;
  background:
    repeating-linear-gradient(91deg,
      transparent 0px, transparent 89px,
      rgba(0,0,0,0.09) 90px)
    ,linear-gradient(180deg, #9a6428 0%, #b07830 50%, #7a5220 100%);
  border-top: 4px solid rgba(0,0,0,0.3);
}
/* ── Amp body ── */
.ms-amp {
  position: absolute;
  bottom: 140px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  z-index: 5;
  background: #141414;
  border-radius: 8px 8px 4px 4px;
  border: 2px solid #2a2a2a;
  box-shadow:
    0 12px 50px rgba(0,0,0,0.8),
    0 2px 0 rgba(255,255,255,0.04) inset;
}
.ms-amp-top {
  background: #0e0e0e;
  border-radius: 6px 6px 0 0;
  padding: 10px 0 6px;
  text-align: center;
  border-bottom: 2px solid #000;
}
.ms-amp-logo {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 900;
  font-size: 1.3rem;
  color: #c8a84b;
  letter-spacing: 6px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.ms-amp-model {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.38rem;
  color: #8a8a8a;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-top: 2px;
}
.ms-grille {
  margin: 0;
  height: 170px;
  position: relative;
  overflow: hidden;
  background: #111;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
/* tela del altavoz: puntos */
.ms-grille::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #252525 1px, transparent 1px);
  background-size: 6px 6px;
}
/* círculo altavoz */
.ms-grille::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.06);
  box-shadow:
    0 0 0 14px rgba(255,255,255,0.025),
    0 0 0 28px rgba(255,255,255,0.01),
    inset 0 0 20px rgba(0,0,0,0.8);
}
.ms-controls {
  padding: 10px 18px 8px;
  background: #0c0c0c;
  border-top: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.ms-knob {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #3a3a3a, #0d0d0d);
  border: 1px solid #2a2a2a;
  box-shadow: 0 3px 6px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.05) inset;
  position: relative;
}
.ms-knob::after {
  content: '';
  position: absolute;
  top: 3px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 6px;
  background: #c8a84b;
  border-radius: 1px;
}
.ms-knob.gold {
  background: radial-gradient(circle at 38% 35%, #d4aa50, #7a5c1e);
  border-color: rgba(200,168,75,0.4);
}
.ms-knob.gold::after { background: #fff; }
.ms-feet {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  background: #0c0c0c;
  border-radius: 0 0 4px 4px;
}
.ms-foot {
  width: 28px; height: 12px;
  background: #1c1c1c;
  border-radius: 0 0 8px 8px;
  border: 1px solid #333;
  border-top: none;
}
/* ── Post-it ── */
.ms-postit {
  position: absolute;
  z-index: 10;
  top: 60px;
  left: calc(50% + 130px);
  width: 150px;
  background: #fef08a;
  padding: 14px 12px 18px;
  transform: rotate(2.5deg);
  box-shadow: 4px 5px 20px rgba(0,0,0,0.45);
}
/* franja adhesiva superior */
.ms-postit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), transparent);
}
.ms-postit-pin {
  position: absolute;
  top: -9px; left: 50%;
  transform: translateX(-50%);
  width: 13px; height: 13px;
  background: radial-gradient(circle at 38% 35%, #f87171, #7f1d1d);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.ms-postit .ms-postit-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 10px;
}
.ms-postit ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ms-postit ul li {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: #1c1917;
  line-height: 1.2;
}
/* ── Cable ── */
.ms-cable {
  position: absolute;
  bottom: 126px;
  left: calc(50% - 260px);
  z-index: 3;
  width: 340px;
  opacity: 0.5;
}
/* ── Sombra del amp en el suelo ── */
.ms-shadow {
  position: absolute;
  bottom: 136px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px; height: 20px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  filter: blur(12px);
  z-index: 4;
}
@media (max-width: 640px) {
  .ms-stage { height: 360px; }
  .ms-amp { width: 200px; bottom: 110px; }
  .ms-grille { height: 120px; }
  .ms-floor { height: 110px; }
  .ms-postit { left: calc(50% + 100px); width: 120px; top: 70px; }
  .ms-shadow { bottom: 106px; }
}

/* ─── Añadidos (09/2026): accesibilidad, formulario y utilidades ─── */
[hidden] { display: none !important; }
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 300;
  background: var(--yellow); color: var(--bg);
  padding: 8px 16px; border-radius: 4px; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }
.logo-img { height: 44px; width: auto; vertical-align: middle; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
nav:not(.is-scrolled) { border-bottom-color: transparent; }
button.hamburger { background: none; border: 0; padding: 8px; margin: -8px; color: inherit; }
.hp-field { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.label-hint { color: var(--gray); font-weight: 400; }
.span-all { grid-column: 1 / -1; }
.is-hidden { display: none; }
.otros-textarea { width: 100%; margin-top: 4px; }
.map-note { font-size: 0.8rem; color: var(--gray); text-align: center; max-width: 200px; margin-top: 8px; }
.form-hint { font-size: 0.75rem; color: var(--gray); }
.consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 24px 0 0;
  text-transform: none; letter-spacing: 0; font-weight: 400;
  font-size: 0.85rem; color: var(--light); cursor: pointer;
}
.consent input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; padding: 0; accent-color: var(--yellow); }
.consent a, .form-legal a, .form-error a { color: var(--yellow); text-decoration: underline; text-underline-offset: 2px; }
.form-error {
  margin-top: 12px; padding: 10px 14px;
  border: 1px solid #7a2e2e; border-radius: 4px;
  background: rgba(200, 60, 60, 0.12); color: #f3c4c4; font-size: 0.85rem;
}
.form-legal { margin-top: 16px; font-size: 0.72rem; line-height: 1.6; color: var(--gray); }
.form-success.is-visible { display: block; }
.form-success:focus { outline: none; }
.contact-item-text a:hover, .legal-links a:hover { color: var(--yellow); }
.legal-links a { color: var(--gray); }

/* ─── Páginas sencillas: privacidad y 404 ─── */
.simple-header { border-bottom: 1px solid var(--border); }
.simple-header .container { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.simple-header .back { color: var(--gray); font-size: 0.85rem; }
.simple-header .back:hover { color: var(--yellow); }
.legal { padding: 64px 0 96px; }
.legal .container { max-width: 760px; }
.legal h1, .error-page h1 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.15; }
.legal .updated { color: var(--gray); font-size: 0.85rem; margin: 8px 0 40px; }
.legal h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--yellow); margin: 36px 0 10px; }
.legal p, .legal li { color: var(--light); font-size: 0.95rem; }
.legal p + p { margin-top: 10px; }
.legal ul { padding-left: 20px; margin: 8px 0; }
.legal li + li { margin-top: 6px; }
.legal a { color: var(--yellow); text-decoration: underline; text-underline-offset: 2px; }
.simple-footer { border-top: 1px solid var(--border); padding: 24px 0; color: var(--gray); font-size: 0.8rem; }
.simple-footer .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.error-page { min-height: calc(100vh - 140px); display: flex; align-items: center; padding: 64px 0; }
.error-page .code { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(4rem, 14vw, 8rem); line-height: 1; color: var(--yellow); }
.error-page p { color: var(--gray); margin-top: 12px; max-width: 480px; }

/* Diagrama orbital en pantallas estrechas: los 7 nodos en heptágono, como en escritorio
   (antes solo había posiciones para 6 y «Publishing» se salía de la pantalla) */
@media (max-width: 900px) {
  .node-1 { top: calc(50% - 110px - 28px); left: calc(50% - 28px); }
  .node-2 { top: calc(50% - 69px - 28px);  left: calc(50% + 86px - 28px); }
  .node-3 { top: calc(50% + 25px - 28px);  left: calc(50% + 107px - 28px); }
  .node-4 { top: calc(50% + 99px - 28px);  left: calc(50% + 48px - 28px); }
  .node-5 { top: calc(50% + 99px - 28px);  left: calc(50% - 48px - 28px); }
  .node-6 { top: calc(50% + 25px - 28px);  left: calc(50% - 107px - 28px); }
  .node-7 { top: calc(50% - 69px - 28px);  left: calc(50% - 86px - 28px); }
  .orbit-center { width: 84px; height: 84px; }
  .orbit-center-icon { font-size: 1.5rem; }
  .orbit-center-label { font-size: 0.55rem; letter-spacing: 0.5px; margin-top: 2px; }
}

/* Columnas únicas que nunca sean más anchas que la pantalla (selects y textos largos) */
@media (max-width: 900px) {
  .hero-inner, .propuesta-inner, #about .about-inner, #contacto .contact-inner { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 600px) {
  .form-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 360px) {
  .svc-checks { grid-template-columns: minmax(0, 1fr); }
}

/* Escena Marshall en móvil: el amplificador se desplaza para que el pósit quepa */
@media (max-width: 640px) {
  .ms-amp { left: calc(50% - 60px); }
  .ms-shadow { left: calc(50% - 60px); }
  .ms-cable { left: calc(50% - 320px); }
  .ms-postit { left: calc(50% + 44px); }
}
@media (max-width: 340px) {
  .ms-amp { width: 180px; }
  .ms-postit { left: calc(50% + 34px); width: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .fade-up { opacity: 1 !important; transform: none !important; }
}
