:root {
  --bg: #ffffff;
  --bg-alt: #faf7f2;
  --bg-soft: #fcfbf8;
  --accent: #c9a27b;
  --accent-soft: #ddc2a0;
  --text-main: #000000;
  --text-muted: #000000;
  --border-soft: #e5ddd2;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  backdrop-filter: none;
  background: transparent;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.8rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: transparent;
  gap: 1rem;
}

.nav-logo {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-main);
  font-weight: 400;
}

.nav-logo span {
  font-weight: 500;
}

.menu-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.2rem;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.22rem;
  position: relative;
  margin-left: auto;
}

.menu-toggle svg {
  transition: transform 220ms ease-out, opacity 220ms ease-out;
  transform-origin: center;
  opacity: 0.9;
}

.menu-toggle.open svg {
  transform: translateY(1px) scale(1.03);
  opacity: 1;
}

.menu-toggle .menu-flower {
  display: block;
  opacity: 0.9;
}

.nav-panel {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  transition: opacity 200ms ease-out, transform 220ms ease-out;
}

.nav-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: center;
}

.nav-links a {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  transition: transform 160ms ease-out, letter-spacing 160ms ease-out, opacity 160ms ease-out;
  opacity: 0.9;
}

.nav-links a:hover {
  transform: translateY(-1px);
  letter-spacing: 0.26em;
  opacity: 1;
}

.nav-panel-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.8rem 1.2rem;
  display: flex;
  justify-content: flex-end;
}

.nav-close {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.2rem;
}

main {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  background: var(--bg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#inicio.page-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.section-label { margin-top: 9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #000000;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 1px rgba(120,120,120,0.06);
  opacity: 0;
  transform: translateY(6px);
  animation: fadeUpSoft 650ms ease-out forwards;
}

.section-title {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  /* white-space: nowrap; */
  margin-bottom: 1.2rem;
  font-weight: 400;
  color: #000000;
  text-shadow: 0 1px 2px rgba(120,120,120,0.08);
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUpSoft 720ms ease-out forwards;
}

.section-intro {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.75;
  font-style: normal;
  color: var(--text-main);
  margin-bottom: 2.2rem;
  text-align: justify;
  text-justify: inter-word;
}

/* Hero (Inicio) */

.hero {
  position: relative;
  min-height: calc(100vh - 60px);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.hero-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-cover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
}

.hero-cover-inner {
  position: relative;
  text-align: center;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  opacity: 0;
  transform: translateY(10px);
  animation: heroFadeIn 900ms ease-out forwards;
}

.hero-title {
  font-family: 'Herr Von Muellerhoff', cursive;
  font-size: clamp(3.6rem, 7vw, 5.2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #000;
  margin-bottom: 0rem;
}

.hero-subtitle {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  opacity: 0.9;
}

@media (max-width: 880px) {
  .hero {
    min-height: calc(100vh - 100px);
    padding: 1.6rem 1.2rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
  }
}

/* El estudio */

.two-column {
  display: grid;
  grid-template-columns: 0.5fr 0.5fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.bio {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.75;
  font-style: normal;
  color: var(--text-main);
  overflow: hidden;
}

.bio p {
  margin-bottom: 1rem;
}

.bio p {
  text-align: justify;
  text-justify: inter-word;
}

.bio-photo {
  float: right;
  width: 40%;
  margin: 0 0 0 2rem;
  shape-outside: margin-box;
}

.bio-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 640px) {
  .bio-photo {
    float: none;
    width: 100%;
    margin: 0 0 1.5rem 0;
  }
}

@media (max-width: 880px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.estudio-content {
  overflow: hidden;
}

#estudio .section-label {
  margin-top: 6rem;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.03em;
  text-transform: none;
  white-space: nowrap;
  margin-bottom: 1.6rem;
}

#estudio .section-title {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Servicios */

#servicios.page-section {
  padding-top: 1rem !important;
  padding-bottom: 1.5rem !important;
}

#servicios .section-label {
  margin-top: 6rem;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 1.6rem;
  color: #000000;
  text-shadow: 0 1px 1px rgba(120,120,120,0.06);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

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

.service-card {
  padding: 1.2rem 0 1.5rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 100%;
}

.service-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: #000000;
  text-shadow: 0 1px 1px rgba(120,120,120,0.06);
}

.service-tag {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.service-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: justify;
  text-justify: inter-word;
}

.service-content {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 200px;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 480px) {
  .service-content {
    flex-direction: column;
  }
  .service-image {
    max-width: 100%;
  }
}

/* Proyectos */

#proyectos.page-section {
  padding-top: 1rem !important;
  padding-bottom: 1.5rem !important;
}

#proyectos .section-label {
  margin-top: 6rem;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 1.6rem;
  color: #000000;
  text-shadow: 0 1px 1px rgba(120,120,120,0.06);
}

#proyectos.page-section {
  padding-top: 1rem !important;
  padding-bottom: 1.5rem !important;
}

#proyectos .section-label {
  margin-top: 6rem;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 1.6rem;
  color: #000000;
  text-shadow: 0 1px 1px rgba(120,120,120,0.06);
}

#proyectos .proyectos-title {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #000000;
  text-shadow: 0 1px 2px rgba(120,120,120,0.08);
  margin-bottom: 1.2rem;
}

.ideas-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

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

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

.idea-card {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 120ms ease-out, box-shadow 120ms ease-out;
}

.idea-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(40, 32, 23, 0.06);
}

.idea-image {
  position: relative;
  padding-top: 68%;
  background: #f4f2ee;
}

.idea-image-inner {
  position: absolute;
  inset: 10%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.3)),
    radial-gradient(circle at 18% 20%, rgba(255,255,255,1), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(201,162,123,0.32), transparent 55%),
    #e9e4db;
}

.idea-badge {
  position: absolute;
  left: 11%;
  top: 11%;
  padding: 0.22rem 0.78rem;
  border-radius: 999px;
  background: rgba(47, 41, 34, 0.86);
  color: #f8f3ec;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.idea-body {
  padding: 1.05rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.idea-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: #000000;
  text-shadow: 0 1px 1px rgba(120,120,120,0.06);
}

.idea-meta {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.idea-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: justify;
  text-justify: inter-word;
}

/* Grid de proyectos */
.proyectos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.proyectos-grid .proyecto-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  transition: transform 150ms ease-out, box-shadow 150ms ease-out;
}

.proyectos-grid .proyecto-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(40, 32, 23, 0.08);
}

.proyectos-grid .proyecto-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 880px) {
  .proyectos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

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

/* Proceso */

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

.process-step {
  padding: 1.4rem 1.2rem 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out, background 150ms ease-out;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  background: #fdfaf5;
}

.process-step-number {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.process-step-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.96rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: #000000;
  text-shadow: 0 1px 1px rgba(120,120,120,0.06);
}

.process-step-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: justify;
  text-justify: inter-word;
}

/* Contacto */

#contacto .section-label {
  margin-top: 6rem;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  /* white-space: nowrap; */
  margin-bottom: 1.6rem;
  color: #000000;
  text-shadow: 0 1px 1px rgba(120,120,120,0.06);
}

#contacto .section-title {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: #000000;
  text-shadow: 0 1px 2px rgba(120,120,120,0.08);
  margin-bottom: 1.2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
}

@media (max-width: 880px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Grid 2x2 para contacto */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.contact-card {
  padding: 1.6rem 1.4rem;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.95rem;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.contact-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-value {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: #000000;
  text-shadow: 0 1px 1px rgba(120,120,120,0.06);
}

.contact-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
  text-align: justify;
  text-justify: inter-word;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.contact-form {
  padding: 1.6rem 1.4rem;
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.9rem;
  transition: transform 150ms ease-out, box-shadow 150ms ease-out;
}

.contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

/* Nuevo estilo contacto tipo María Santos */
.contact-hero-block {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-hero-logo {
  max-width: 180px;
  max-height: 140px;
  margin: 0 auto 0.6rem auto;
  display: block;
}

.contact-hero-title {
  font-family: 'Herr Von Muellerhoff', cursive;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #000;
  margin-bottom: 0.2rem;
}

.contact-hero-subtitle {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  opacity: 0.85;
}

.contact-image-block {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.15rem;
  color: var(--text-main);
}

.contact-detail-item a {
  color: var(--text-main);
  transition: color 150ms ease;
}

.contact-detail-item a:hover {
  color: var(--accent);
}

.contact-icon {
  font-size: 1.1rem;
  width: 1.5rem;
  text-align: center;
}

.contact-form-section {
  padding: 1.5rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.contact-form-title {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.contact-form-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.contact-form-minimal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-minimal .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form-minimal input,
.contact-form-minimal textarea {
  border-radius: 6px;
  border: 1px solid var(--border-soft);
  padding: 0.75rem 1rem;
  font: inherit;
  font-size: 0.9rem;
  background: transparent;
  outline: none;
  transition: border-color 150ms ease;
}

.contact-form-minimal textarea {
  min-height: 100px;
  resize: vertical;
}

.contact-form-minimal input:focus,
.contact-form-minimal textarea:focus {
  border-color: var(--accent);
}

.btn-enviar {
  background: var(--text-main);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: background 150ms ease, transform 150ms ease;
  margin-top: 0.5rem;
}

.btn-enviar:hover {
  background: #333;
  transform: translateY(-1px);
}

@media (max-width: 880px) {
  .contact-hero-block {
    padding: 1.5rem 1rem;
  }
  
  .contact-hero-logo {
    max-width: 140px;
  }
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

input,
textarea {
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  padding: 0.7rem 1rem;
  font: inherit;
  background: #ffffff;
  outline: none;
  transition: border-color 150ms ease-out, background 150ms ease-out;
}

textarea {
  border-radius: 10px;
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--accent-soft);
}

footer {
  border-top: 1px solid var(--border-soft);
  padding: 0.8rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  background: var(--bg);
}

/* Idioma y animaciones */

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUpSoft {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.lang-switch {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000;
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.lang-switch a {
  color: #000;
}

.header-title {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
  text-align: center;
  display: none;
  flex: 1;
}

.lang-switch a {
  color: #000;
}

