/* ─── Container ─────────────────────────────────────────────────────────────── */

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* ─── Sections base ─────────────────────────────────────────────────────────── */

section {
  padding: 96px 0;
}

/* ─── Header ────────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s ease;
}

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

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 52px;
  width: auto;
}

/* ─── Desktop Nav ───────────────────────────────────────────────────────────── */

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

.desktop-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--color-white);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 100%;
  height: 3px;
  background: var(--color-orange);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 2px;
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  transform: scaleX(1);
}

/* ─── Mobile Nav ────────────────────────────────────────────────────────────── */

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
}

.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0 32px;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-orange);
  background: rgba(224, 127, 51, 0.05);
}

.mobile-nav .btn {
  margin-top: 20px;
  width: calc(100% - 48px);
}

/* ─── Hero ──────────────────────────────────────────────────────────────────── */

.hero {
  min-height: 760px;
  padding-top: 120px;
  padding-bottom: 64px;
  display: flex;
  align-items: center;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.78) 65%, #050505 100%),
    url("../assets/images/hero-studio.png") center / cover no-repeat;
}

.hero-inner {
  text-align: center;
}

/* ─── Scroll Indicator ───────────────────────────────────────────────────────── */

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  animation: indicatorFadeIn 1.2s ease 1s both;
}

@keyframes indicatorFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Cuerpo del mouse */
.scroll-indicator span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(224, 127, 51, 0.55);
  border-radius: 12px;
  position: relative;
}

/* Dot interior que baja */
.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-orange);
  border-radius: 2px;
  animation: scrollDot 1.9s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes scrollDot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  70%  { opacity: 0; transform: translateX(-50%) translateY(14px); }
  71%  { opacity: 0; transform: translateX(-50%) translateY(0); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.scroll-indicator small {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero-title {
  max-width: 860px;
  margin: 0 auto;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.05em;
}

.hero-title .highlight {
  color: var(--color-orange);
}

.hero-subtitle {
  margin: 18px auto 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.5;
}

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

/* ─── Hero Feature Cards ────────────────────────────────────────────────────── */

.hero-features-section {
  padding: 0 0 80px;
  background: linear-gradient(180deg, #050505 0%, var(--color-black-soft) 100%);
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hero-feature-card {
  min-height: 110px;
  padding: 24px;
  border-radius: 14px;
  background: rgba(23, 23, 23, 0.95);
  border: 1px solid var(--color-border-light);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  cursor: default;
}

.hero-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  flex-shrink: 0;
}

.hero-feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--color-orange);
  stroke-width: 1.8;
}

.hero-feature-card h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.hero-feature-card p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ─── About / Nosotros ──────────────────────────────────────────────────────── */

.about {
  background: var(--color-black-soft);
  padding: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.22) 100%),
    url("../assets/images/about-studio-artist.png") center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.about-image-logo {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: 120px;
  opacity: 0.55;
}

.about-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-body p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.about-quote {
  margin-top: 36px;
  padding-left: 24px;
  border-left: 4px solid var(--color-orange);
  color: var(--color-orange);
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

/* ─── Services ──────────────────────────────────────────────────────────────── */

.services {
  background:
    radial-gradient(circle at center top, rgba(255,255,255,0.5), transparent 45%),
    var(--color-blue-soft);
  color: var(--color-text-dark);
}

.services-header {
  text-align: center;
  margin-bottom: 54px;
}

.services-header .section-kicker {
  color: var(--color-brown);
}

.services-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--color-text-dark);
  max-width: 560px;
  margin: 0 auto;
  letter-spacing: -0.04em;
}

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

.service-card {
  background: var(--color-white);
  border-radius: 14px;
  padding: 30px;
  min-height: 190px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.09);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.14);
}

.service-icon {
  color: var(--color-orange);
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--color-orange);
  stroke-width: 1.7;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.service-card-body p {
  font-size: 14px;
  color: var(--color-text-muted-dark);
  line-height: 1.55;
}

/* ─── Process / Cómo trabajamos ─────────────────────────────────────────────── */

.process {
  background: linear-gradient(180deg, #080808 0%, #111111 100%);
  color: var(--color-white);
}

.process-header {
  text-align: center;
  margin-bottom: 56px;
}

.process-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.04em;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-orange), rgba(224,127,51,0.2));
  border-radius: 2px;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: left;
  padding-top: 8px;
}

.process-number {
  display: inline-block;
  color: var(--color-orange);
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.process-step p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ─── Artists ───────────────────────────────────────────────────────────────── */

.artists {
  background:
    radial-gradient(circle at top right, rgba(224,127,51,0.1), transparent 35%),
    #101010;
  color: var(--color-white);
}

.artists-header {
  text-align: center;
  margin-bottom: 42px;
}

.artists-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

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

.artist-card {
  background: var(--color-card-dark);
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.artist-card-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.artist-card-photo-placeholder {
  width: 100%;
  height: 220px;
  background:
    radial-gradient(ellipse at 40% 60%, rgba(224,127,51,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(111,87,72,0.35) 0%, transparent 50%),
    #1a1512;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.12);
}

.artist-card-photo-placeholder svg {
  width: 56px;
  height: 56px;
  stroke: rgba(224,127,51,0.3);
  stroke-width: 1.2;
}

.artist-card-body {
  padding: 18px 20px 22px;
}

.artist-card-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.artist-card-name h3 {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.artist-badge {
  width: 18px;
  height: 18px;
  background: var(--color-orange);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.artist-badge svg {
  width: 10px;
  height: 10px;
  stroke: white;
  stroke-width: 2.5;
}

.artist-role {
  font-size: 13px;
  color: var(--color-text-muted);
}

.artists-cta {
  text-align: center;
  margin-top: 42px;
}

/* ─── Testimonials / Opiniones ──────────────────────────────────────────────── */

.testimonials {
  background: var(--color-black-soft);
  color: var(--color-white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 42px;
}

.testimonials-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

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

.testimonial-card {
  background: rgba(23, 23, 23, 0.95);
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-orange), var(--color-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 18px;
  color: var(--color-white);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 12.5px;
  color: var(--color-text-muted);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-stars svg {
  width: 15px;
  height: 15px;
  fill: var(--color-orange);
  stroke: none;
}

.testimonial-text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  flex-grow: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testimonial-footer-badge {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-orange);
  flex-shrink: 0;
}

.testimonial-footer span {
  font-size: 12px;
  color: var(--color-orange);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.25s ease, width 0.25s ease;
}

.carousel-dot.active {
  background: var(--color-orange);
  width: 22px;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */

.faq {
  background: var(--color-blue-soft);
  color: var(--color-text-dark);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  left: 8%;
  bottom: 0;
  width: 260px;
  height: 340px;
  background: url("../assets/brand/capo-silhouette.png") center / contain no-repeat;
  opacity: 0.22;
  pointer-events: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.faq-left .section-kicker {
  color: var(--color-brown);
}

.faq-title {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 900;
  color: var(--color-text-dark);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.faq-description {
  font-size: 15.5px;
  color: var(--color-text-muted-dark);
  line-height: 1.65;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-brown);
}

.faq-question.open {
  color: var(--color-orange);
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.3s ease, stroke 0.2s ease;
}

.faq-question.open .faq-chevron {
  transform: rotate(180deg);
  stroke: var(--color-orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--color-text-muted-dark);
  line-height: 1.65;
}

/* ─── Contact ───────────────────────────────────────────────────────────────── */

.contact {
  /* Replace url() with real mic photo: url("/assets/images/contact-studio-mic.jpg") center/cover no-repeat */
  background:
    linear-gradient(90deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.78) 100%),
    radial-gradient(ellipse at 80% 50%, rgba(111,87,72,0.5) 0%, transparent 50%),
    #0a0806;
  color: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.contact-info-card {
  background: rgba(12, 12, 12, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 42px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contact-info-card .section-kicker {
  margin-bottom: 12px;
}

.contact-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--color-text-muted);
}

.contact-detail svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-orange);
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-detail--address {
  align-items: flex-start;
}

.contact-detail--address svg {
  margin-top: 3px;
}

.contact-detail--address span {
  line-height: 1.65;
}

.social-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(224, 127, 51, 0.1);
  border: 1px solid rgba(224, 127, 51, 0.25);
  color: var(--color-orange);
  transition: background 0.25s ease, transform 0.25s ease;
}

.social-icons a:hover {
  background: rgba(224, 127, 51, 0.2);
  transform: translateY(-2px);
}

.social-icons a svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-orange);
  stroke-width: 2;
}

/* Contact Form */
.contact-form-card {
  background: rgba(12, 12, 12, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 42px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-field select option {
  background: #1a1a1a;
  color: var(--color-white);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(224, 127, 51, 0.15);
}

.form-error {
  display: none;
  font-size: 12.5px;
  color: #f87171;
  margin-top: 4px;
}

.form-error.visible {
  display: block;
}

.form-submit {
  width: 100%;
  height: 56px;
  background: var(--color-orange);
  color: var(--color-white);
  border: none;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  letter-spacing: 0.01em;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(224, 127, 51, 0.38);
}

.form-submit svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2.2;
}

/* ─── Contact Map ────────────────────────────────────────────────────────────── */

.contact-map-wrapper {
  margin-top: 52px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  height: 280px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  /* Filtro oscuro para que encaje con el fondo negro de la sección */
  filter: grayscale(100%) invert(92%) hue-rotate(180deg) brightness(0.78) contrast(0.88);
}

/* ─── Footer ────────────────────────────────────────────────────────────────── */

.site-footer {
  background: #070707;
  color: var(--color-white);
  padding: 72px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}
