:root {
  --black: #050505;
  --ink: #11100e;
  --paper: #d6bda2;
  --sand: #b99a7f;
  --bone: #efe0ce;
  --muted: #a39082;
  --red: #d40d16;
  --red-dark: #8d060b;
  --line: rgba(239, 224, 206, 0.18);
  --dark-line: rgba(17, 16, 14, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--bone);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  overflow-x: clip;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

.form-trap {
  display: none;
}

.site-header {
  align-items: center;
  color: var(--bone);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 22px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, padding 180ms ease;
  z-index: 30;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.86);
  backdrop-filter: blur(18px);
  padding-block: 12px;
}

.brand img {
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.45));
  height: clamp(50px, 6vw, 74px);
  width: auto;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.78;
}

.site-nav a:hover {
  color: var(--red);
  opacity: 1;
}

.menu-toggle {
  background: transparent;
  border: 0;
  color: currentColor;
  display: none;
  height: 40px;
  padding: 0;
  position: relative;
  width: 40px;
  z-index: 32;
}

.menu-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  left: 7px;
  position: absolute;
  transition: transform 180ms ease, top 180ms ease;
  width: 26px;
}

.menu-toggle span:first-child {
  top: 14px;
}

.menu-toggle span:last-child {
  top: 24px;
}

.menu-open .menu-toggle span:first-child {
  top: 19px;
  transform: rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  top: 19px;
  transform: rotate(-45deg);
}

.hero {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-bg,
.signup-bg {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.93), rgba(5, 5, 5, 0.68) 44%, rgba(5, 5, 5, 0.18)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.1) 44%),
    url("assets/images/workshop-accion-cine.jpeg") center / cover no-repeat;
  inset: 0;
  position: absolute;
}

.hero-grid {
  align-items: start;
  display: grid;
  gap: clamp(32px, 6vw, 90px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  min-height: 100svh;
  padding: clamp(96px, 13vh, 132px) clamp(18px, 4vw, 54px) clamp(46px, 7vw, 78px);
  position: relative;
  z-index: 2;
}

.wordmark {
  height: auto;
  margin-bottom: clamp(22px, 4vw, 38px);
  max-width: min(205px, 50vw);
}

.tagline,
.section-kicker {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.tagline::after {
  background: var(--red);
  content: "";
  display: block;
  height: 2px;
  margin-top: 18px;
  width: 92px;
}

.hero h1,
.intro h2,
.section-heading h2,
.value h2,
.program-copy h2,
.pricing-card h2,
.signup h2 {
  color: var(--bone);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3.25rem, 6.35vw, 6.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.84;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
}

.lead,
.intro p,
.learn p,
.value p,
.program-copy li,
.pricing-note p,
.signup p {
  color: rgba(239, 224, 206, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
  line-height: 1.6;
}

.lead {
  margin: 18px 0 0;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.button {
  align-items: center;
  appearance: none;
  border: 1px solid var(--red);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  text-transform: uppercase;
}

.button-primary {
  background: var(--red);
  color: #fff;
  font-family: inherit;
}

.button-ghost {
  color: var(--bone);
}

.event-card {
  background: rgba(5, 5, 5, 0.78);
  border: 1px solid rgba(212, 13, 22, 0.55);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.event-image {
  aspect-ratio: 4 / 5;
  border-bottom: 1px solid rgba(212, 13, 22, 0.38);
  overflow: hidden;
}

.event-image img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.event-facts {
  display: grid;
}

.event-facts div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 4px;
  padding: 18px 20px;
}

.event-facts div:last-child {
  border-bottom: 0;
}

.event-facts span,
.price-lines span,
.signup-form span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event-facts strong {
  color: var(--bone);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  text-transform: uppercase;
}

.ticker {
  background: var(--red);
  color: #fff;
  display: grid;
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 900;
  grid-template-columns: repeat(4, 1fr);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ticker span {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  padding: 18px clamp(16px, 3vw, 42px);
  text-align: center;
}

.ticker span:last-child {
  border-right: 0;
}

.section-pad {
  padding: clamp(72px, 10vw, 150px) clamp(18px, 4vw, 54px);
}

.intro {
  background: var(--ink);
}

.split,
.section-heading,
.value,
.pricing,
.signup {
  display: grid;
  gap: clamp(30px, 6vw, 90px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.intro h2,
.section-heading h2,
.value h2,
.program-copy h2,
.pricing-card h2,
.signup h2 {
  font-size: clamp(2.7rem, 6vw, 6.8rem);
  line-height: 0.92;
}

.intro p {
  margin: 0 0 18px;
}

.learn {
  background: #0a0908;
}

.section-heading {
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 76px);
}

.learn-grid,
.value-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.learn-grid article,
.value-grid article {
  background: #171411;
  border-top: 2px solid var(--red-dark);
  min-height: 300px;
  padding: clamp(26px, 4vw, 42px);
}

.learn-grid span {
  color: var(--red);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 22px;
}

.learn-grid h3,
.pricing-note h3 {
  color: var(--bone);
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.value {
  align-items: start;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.74)),
    url("assets/images/workshop-accion-cine.jpeg") center / cover no-repeat;
}

.value-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-grid article {
  min-height: 230px;
}

.value-grid span {
  color: var(--bone);
  display: block;
  font-size: clamp(1.3rem, 2.2vw, 2.1rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.program {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  gap: clamp(34px, 6vw, 90px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
}

.program .section-kicker {
  color: var(--red);
}

.program-copy h2 {
  color: var(--ink);
}

.program-copy ul {
  border-top: 1px solid var(--dark-line);
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.program-copy li {
  border-bottom: 1px solid var(--dark-line);
  color: #4a3124;
  padding: 18px 0 18px 28px;
  position: relative;
}

.program-copy li::before {
  background: var(--red);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 31px;
  width: 14px;
}

.program-media {
  border: 1px solid var(--red-dark);
  overflow: hidden;
}

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

.pricing {
  align-items: center;
  background: #0b0a09;
}

.pricing-card {
  border: 1px solid var(--red);
  padding: clamp(28px, 5vw, 56px);
}

.pricing-card h2 strong {
  color: var(--red);
}

.price-lines {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.price-lines div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
}

.price-lines strong {
  color: var(--bone);
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.price-lines div:nth-child(2) strong,
.price-lines div:first-child strong {
  color: var(--red);
}

.pricing-note {
  border-left: 2px solid var(--red);
  padding-left: clamp(24px, 4vw, 44px);
}

.faq {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.82)),
    url("assets/images/workshop-accion-cine.jpeg") center / cover no-repeat;
  color: var(--bone);
}

.faq .section-heading {
  border-bottom: 1px solid rgba(212, 13, 22, 0.42);
  margin-bottom: 0;
  padding-bottom: clamp(26px, 4vw, 42px);
}

.faq-list {
  counter-reset: faq;
}

.faq-list details {
  background: rgba(5, 5, 5, 0.54);
  border-bottom: 1px solid var(--line);
  counter-increment: faq;
}

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: clamp(14px, 3vw, 28px);
  grid-template-columns: 54px minmax(0, 1fr) 34px;
  list-style: none;
  padding: clamp(20px, 3vw, 32px) 0;
}

.faq-list summary:focus {
  outline: none;
}

.faq-list summary:focus-visible {
  outline: 1px solid rgba(212, 13, 22, 0.9);
  outline-offset: -1px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  color: var(--red);
  content: counter(faq, decimal-leading-zero);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.faq-list summary::after {
  align-items: center;
  border: 1px solid rgba(212, 13, 22, 0.62);
  color: var(--red);
  content: "+";
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 300;
  height: 34px;
  justify-content: center;
  line-height: 1;
  width: 34px;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list summary {
  color: var(--bone);
  font-size: clamp(1.1rem, 2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.faq-list details > div {
  max-width: 940px;
  padding: 0 0 clamp(24px, 4vw, 42px) calc(54px + clamp(14px, 3vw, 28px));
}

.faq-list p,
.faq-list li {
  color: rgba(239, 224, 206, 0.76);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.72;
}

.faq-list p {
  margin: 0 0 16px;
}

.faq-list p:last-child {
  margin-bottom: 0;
}

.faq-list ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 18px 0;
  padding: 0;
}

.faq-list li {
  padding-left: 24px;
  position: relative;
}

.faq-list li::before {
  background: var(--red);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0.86em;
  width: 12px;
}

.signup {
  background: var(--black);
  color: var(--bone);
  overflow: hidden;
  padding: clamp(72px, 10vw, 150px) clamp(18px, 4vw, 54px);
  position: relative;
}

.signup-bg {
  opacity: 0.36;
}

.signup-content,
.signup-form {
  position: relative;
  z-index: 2;
}

.signup-form {
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(212, 13, 22, 0.5);
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
}

.signup-form label {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
}

.signup-form input {
  background: transparent;
  border: 0;
  color: var(--bone);
  font: inherit;
  font-size: 1.05rem;
  outline: 0;
  padding: 0;
}

.signup-form input::placeholder {
  color: rgba(239, 224, 206, 0.46);
}

.signup-form button,
.sticky-cta button {
  background: var(--red);
  border: 0;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  min-height: 52px;
  text-transform: uppercase;
}

.form-status {
  border: 1px solid rgba(212, 13, 22, 0.55);
  color: var(--bone);
  font-size: 0.86rem;
  font-weight: 900;
  grid-column: 1 / -1;
  letter-spacing: 0.04em;
  margin-top: 18px;
  padding: 16px 18px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.form-status-ok {
  background: rgba(212, 13, 22, 0.18);
}

.form-status-error {
  background: rgba(5, 5, 5, 0.8);
}

.signup-form .privacy-check {
  align-items: start;
  border-bottom: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 18px minmax(0, 1fr);
  padding-bottom: 0;
}

.privacy-check input {
  appearance: none;
  border: 1px solid rgba(212, 13, 22, 0.75);
  height: 18px;
  margin: 2px 0 0;
  width: 18px;
}

.privacy-check input:checked {
  background: var(--red);
  box-shadow: inset 0 0 0 4px var(--black);
}

.privacy-check span {
  color: rgba(239, 224, 206, 0.76);
  font-size: 0.78rem;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.footer {
  align-items: center;
  background: #040404;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  padding: 24px clamp(18px, 4vw, 54px);
}

.footer img {
  height: 58px;
}

.footer p,
.footer button {
  color: rgba(239, 224, 206, 0.68);
  font-size: 0.76rem;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.footer button {
  background: transparent;
  border: 0;
  color: var(--red);
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.sticky-cta {
  align-items: center;
  background: rgba(5, 5, 5, 0.92);
  border: 1px solid rgba(212, 13, 22, 0.48);
  bottom: 16px;
  color: var(--bone);
  display: none;
  gap: 18px;
  justify-content: space-between;
  left: 16px;
  padding: 10px;
  position: fixed;
  right: 16px;
  z-index: 40;
}

.sticky-cta.is-visible {
  display: flex;
}

.sticky-cta span {
  font-size: 0.78rem;
  font-weight: 900;
  padding-left: 10px;
  text-transform: uppercase;
}

.sticky-cta button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
}

.modal {
  display: grid;
  inset: 0;
  opacity: 0;
  padding: 20px;
  pointer-events: none;
  place-items: center;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 80;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 5, 0.84);
  inset: 0;
  position: absolute;
}

.modal-panel {
  background: #080706;
  border: 1px solid rgba(212, 13, 22, 0.55);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  color: var(--bone);
  max-height: calc(100svh - 40px);
  max-width: 560px;
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
  width: min(560px, 100%);
}

.modal-panel h2 {
  color: var(--bone);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  letter-spacing: 0.02em;
  line-height: 0.9;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.modal-panel p:not(.section-kicker) {
  color: rgba(239, 224, 206, 0.76);
  line-height: 1.6;
  margin: 0 0 24px;
}

.modal-close {
  background: transparent;
  border: 1px solid rgba(212, 13, 22, 0.65);
  cursor: pointer;
  height: 38px;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
}

.modal-close::before,
.modal-close::after {
  background: var(--bone);
  content: "";
  height: 2px;
  left: 9px;
  position: absolute;
  top: 18px;
  width: 18px;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-form {
  background: transparent;
  border: 0;
  padding: 0;
}

@media (max-width: 1040px) {
  .hero-grid,
  .split,
  .section-heading,
  .value,
  .program,
  .pricing,
  .signup {
    grid-template-columns: 1fr;
  }

  .event-card {
    max-width: 520px;
  }

  .learn-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand img {
    height: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    align-content: center;
    background: rgba(5, 5, 5, 0.98);
    display: grid;
    gap: 0;
    inset: 0;
    opacity: 0;
    padding: 92px 22px 28px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    font-size: clamp(2rem, 10vw, 3.5rem);
    line-height: 1;
    padding: 18px 0;
  }

  .hero-grid {
    align-items: start;
    padding: 116px 18px 54px;
  }

  .hero-bg {
    background:
      linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.26) 58%, rgba(5, 5, 5, 0.78)),
      url("assets/images/workshop-accion-cine.jpeg") 63% top / cover no-repeat;
  }

  .wordmark {
    max-width: 210px;
  }

  .tagline,
  .section-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .hero h1 {
    font-size: clamp(4rem, 17vw, 5.8rem);
  }

  .lead,
  .intro p,
  .learn p,
  .value p,
  .program-copy li,
  .pricing-note p,
  .signup p {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .event-card {
    display: none;
  }

  .ticker {
    grid-template-columns: 1fr;
  }

  .ticker span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    border-right: 0;
    text-align: left;
  }

  .section-pad,
  .signup {
    padding: 60px 18px;
  }

  .intro h2,
  .section-heading h2,
  .value h2,
  .program-copy h2,
  .pricing-card h2,
  .signup h2 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .learn-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .learn-grid article,
  .value-grid article {
    min-height: auto;
    padding: 28px 18px;
  }

  .program-media {
    max-height: 520px;
  }

  .price-lines div {
    align-items: start;
    display: grid;
    gap: 8px;
  }

  .pricing-note {
    padding-left: 20px;
  }

  .faq-list summary {
    grid-template-columns: 38px minmax(0, 1fr) 30px;
  }

  .faq-list summary::after {
    height: 30px;
    width: 30px;
  }

  .faq-list details > div {
    padding-left: 0;
  }

  .signup-form {
    padding: 24px 18px;
  }

  .footer {
    padding-bottom: 92px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 3.7rem;
  }

  .wordmark {
    max-width: 190px;
  }
}
