:root {
  --fg: #2b2b2b;
  --fg-soft: #5a584f;
  --bg: #ffffff;
  --sepia-ink: #6b5b4b;
  --accent: #8c7a63;
  --accent-strong: #6f5c45;
  --overlay-dark: rgba(0, 0, 0, 0.55);
  --overlay-mid: rgba(0, 0, 0, 0.25);
  --maxw: 72rem;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
}

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 3rem 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Hero */
.hero {
  position: relative;
  height: clamp(60vh, 65vh, 72vh);
  min-height: 420px;
  isolation: isolate;
  color: #fff;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--overlay-dark), var(--overlay-mid), transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  display: grid;
  align-content: end;
  gap: 0.5rem;
  padding: 1.25rem 1rem 2rem;
}

.hero__title {
  font-family: "Playfair Display", Georgia, Cambria, "Times New Roman", Times, serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw + 1rem, 3rem);
  line-height: 1.15;
  letter-spacing: 0.2px;

  /* Caja negra para mejor legibilidad */
  display: inline-block;
  background: rgba(0, 0, 0, 0.92);
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hero__subtitle {
  opacity: 0.95;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.hero__quote {
  margin: 0.75rem 0 1rem;
  font-family: "Playfair Display", Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.1rem, 1.2vw + 0.8rem, 1.5rem);
  font-style: italic;
  border-left: 4px solid rgba(255, 255, 255, 0.75);
  padding-left: 0.75rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.hero__cta {
  display: inline-block;
  width: fit-content;
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.hero__cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}
.hero__cta:active {
  transform: translateY(0);
}

/* Texto */
.texto {
  font-size: 1.05rem;
}
.texto p {
  margin: 0 0 1rem;
  color: var(--fg);
}
.texto p.destacado {
  font-family: "Playfair Display", Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(1.15rem, 1vw + 1rem, 1.5rem);
  font-style: italic;
  color: var(--sepia-ink);
  border-left: 4px solid var(--accent);
  padding-left: 0.75rem;
  margin-block: 1.25rem;
}

/* Aparición suave */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.footer {
  border-top: 1px solid #eceae6;
  background: #fffdfa;
}
.footer__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1.25rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--fg-soft);
  font-size: 0.95rem;
}
.footer__inner a {
  color: var(--accent-strong);
  text-decoration: none;
}
.footer__inner a:hover {
  text-decoration: underline;
}

/* Creditos */
.creditos {
  background: #fffdfa;
  border-top: 1px solid #eceae6;
  border-bottom: 1px solid #eceae6;
}
.creditos .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.creditos h2 {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, Cambria, "Times New Roman", Times, serif;
  color: var(--sepia-ink);
  font-size: 1.35rem;
}
.creditos p {
  margin: 0;
  color: var(--fg-soft);
  font-size: 1rem;
}
.creditos a {
  color: var(--accent-strong);
  text-decoration: none;
  margin-left: .35rem;
  font-weight: 600;
}
.creditos a:hover {
  text-decoration: underline;
}
.english{

margin-right: .4em;
font-weight: 700;
text-shadow: 0 0 1px #aaa, 0 1px 2px #bbb;

/* Responsivo */
@media (min-width: 768px) {
  .hero__content {
    padding: 1.25rem 1.25rem 2.5rem;
  }
  .container {
    padding: 4rem 1.25rem;
  }
}
