:root {
  --ink: #070606;
  --navy: #063a66;
  --blue: #1176c9;
  --sky: #7ed8e8;
  --paper: #f5d99d;
  --paper-2: #fff2cc;
  --paper-3: #fff8e7;
  --red: #d4162b;
  --red-dark: #9f0f20;
  --gold: #f6b735;
  --gold-soft: #ffd86b;
  --brown: #7a3e1f;
  --muted: #6c5644;
  --shadow: 6px 6px 0 var(--ink);
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(122, 62, 31, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(122, 62, 31, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(17, 118, 201, 0.12), transparent 22rem),
    radial-gradient(circle at 82% 20%, rgba(212, 22, 43, 0.1), transparent 22rem),
    var(--paper-2);
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.4;
  scroll-padding-top: 84px;
  scroll-padding-bottom: 86px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(7, 6, 6, 0.16) 0.8px, transparent 0.8px);
  background-size: 8px 8px;
  pointer-events: none;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  text-wrap: pretty;
}

h1,
h2,
h3 {
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 50;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px;
  background: var(--gold);
}

.topbar {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: min(calc(100% - 20px), var(--max));
  min-height: 50px;
  padding: 8px;
  color: var(--paper-3);
  background: rgba(7, 6, 6, 0.9);
  border: 2px solid rgba(255, 248, 231, 0.3);
  box-shadow: 4px 4px 0 var(--red);
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.brand,
.topbar nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 8px;
  min-width: 0;
}

.flag-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--paper-3);
  font-family: Impact, "Arial Black", sans-serif;
  box-shadow: 3px 3px 0 var(--red);
  transform: rotate(-5deg);
}

.brand strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.15rem;
}

.topbar nav {
  justify-content: center;
  gap: 6px;
}

.topbar nav a {
  padding: 9px 10px;
  color: rgba(255, 248, 231, 0.76);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.topbar nav a:hover {
  color: var(--paper-3);
}

.top-cta,
.btn,
.mobile-sticky,
.form-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border: 2px solid currentColor;
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.top-cta,
.btn.primary,
.mobile-sticky,
.form-actions button:last-child {
  color: var(--paper-3);
  background: var(--red);
  box-shadow: 4px 4px 0 var(--red-dark), 7px 7px 0 var(--ink);
}

.btn.secondary,
.form-actions button:first-child {
  color: var(--ink);
  background: var(--gold);
  box-shadow: 4px 4px 0 var(--brown), 7px 7px 0 var(--ink);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  color: var(--paper-3);
  background: var(--navy);
  isolation: isolate;
}

.ocean,
.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.ocean {
  background:
    radial-gradient(circle at 20% 15%, rgba(126, 216, 232, 0.34), transparent 20rem),
    linear-gradient(180deg, #0d75b7 0%, #063a66 50%, #071526 100%);
}

.ocean::before,
.ocean::after {
  content: "";
  position: absolute;
  left: -10%;
  width: 120%;
  height: 90px;
  background:
    radial-gradient(90px 42px at 45px 40px, rgba(255, 248, 231, 0.28) 0 45%, transparent 47%) 0 0 / 92px 58px repeat-x;
  opacity: 0.6;
}

.ocean::before {
  bottom: 96px;
}

.ocean::after {
  bottom: 34px;
  opacity: 0.35;
  transform: translateX(38px);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 20%;
  filter: saturate(1.16) contrast(1.12);
  opacity: 0.58;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 6, 6, 0.94) 0%, rgba(7, 6, 6, 0.7) 44%, rgba(7, 6, 6, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 6, 6, 0.92) 0%, transparent 42%),
    repeating-linear-gradient(112deg, transparent 0 34px, rgba(255, 255, 255, 0.12) 36px 38px, transparent 40px 84px);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 390px);
  gap: 34px;
  align-items: end;
  width: min(100%, var(--max));
  min-height: 92svh;
  margin-inline: auto;
  padding: 96px 16px 42px;
}

.tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero .tag,
.form-arc .tag {
  color: var(--gold);
}

.tag span {
  padding: 4px 8px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid currentColor;
  box-shadow: 3px 3px 0 var(--red);
}

h1 {
  max-width: 9ch;
  margin-bottom: 14px;
  color: var(--paper-3);
  font-size: clamp(3.8rem, 12vw, 8.8rem);
  text-shadow: 4px 4px 0 var(--red), 8px 8px 0 rgba(246, 183, 53, 0.44);
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 18px;
  color: rgba(255, 248, 231, 0.92);
  font-size: clamp(1.04rem, 2.6vw, 1.35rem);
  font-weight: 850;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10px;
  max-width: 540px;
}

.crew-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 660px;
  margin-top: 18px;
}

.crew-badges span {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 8px;
  color: rgba(255, 248, 231, 0.94);
  background: rgba(255, 248, 231, 0.1);
  border: 2px solid rgba(255, 248, 231, 0.22);
  font-size: 0.72rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.wanted-card {
  position: relative;
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(122, 62, 31, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(122, 62, 31, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 18px 18px;
  border: 5px solid var(--ink);
  box-shadow: 10px 10px 0 var(--red), 15px 15px 0 rgba(7, 6, 6, 0.6);
  transform: rotate(2deg);
}

.wanted-card::before,
.wanted-card::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: rgba(122, 62, 31, 0.12);
}

.wanted-card::before {
  left: 12px;
  top: 12px;
}

.wanted-card::after {
  right: 12px;
  top: 12px;
}

.wanted-top {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(3rem, 8vw, 4.5rem);
  line-height: 0.86;
  text-align: center;
  text-transform: uppercase;
}

.wanted-photo {
  overflow: hidden;
  border: 4px solid var(--ink);
  background: var(--ink);
}

.wanted-photo img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  object-position: 50% 18%;
  filter: sepia(0.14) contrast(1.08);
}

.wanted-card h2 {
  margin: 14px 0 8px;
  color: var(--red);
  font-size: clamp(2.4rem, 7vw, 4rem);
  text-align: center;
  text-shadow: 2px 2px 0 var(--ink);
}

.reward {
  margin: 0;
  padding: 8px;
  background: var(--gold);
  border: 3px solid var(--ink);
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.wanted-small {
  margin: 10px 0 0;
  font-size: 0.8rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.section,
.bounty-strip,
.form-wrap {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.section {
  padding: 58px 16px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2,
.scroll-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(2.35rem, 9vw, 5rem);
}

.section-head p:not(.tag),
.scroll-panel p,
.privacy-box p {
  color: var(--muted);
  font-weight: 800;
}

.bounty-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 24px 16px 0;
}

.bounty-strip article,
.route-map article,
.scroll-panel,
.faq-list details,
.privacy-box {
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}

.bounty-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  min-height: 120px;
  padding: 14px;
  background: var(--paper-3);
  transform: rotate(-1deg);
}

.bounty-strip article:nth-child(2) {
  transform: rotate(1deg);
}

.bounty-strip b {
  grid-row: span 2;
  color: var(--gold);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2.7rem;
  line-height: 0.84;
  -webkit-text-stroke: 1px var(--ink);
}

.bounty-strip strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.55rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.bounty-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.map-section {
  position: relative;
}

.map-section::before {
  content: "";
  position: absolute;
  inset: 34px 12px;
  z-index: -1;
  border: 2px dashed rgba(122, 62, 31, 0.34);
  transform: rotate(-1deg);
}

.route-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.route-map::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  border-top: 4px dashed var(--brown);
  opacity: 0.42;
  transform: rotate(-1.5deg);
}

.route-map article {
  position: relative;
  z-index: 1;
  min-height: 204px;
  padding: 16px;
  background: var(--paper-3);
}

.route-map article:nth-child(odd) {
  transform: translateY(14px) rotate(-1deg);
}

.route-map article:nth-child(even) {
  transform: translateY(-10px) rotate(1deg);
}

.route-map span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 8px;
  color: var(--paper-3);
  background: var(--navy);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--gold);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.route-map h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.route-map p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.captain-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1fr;
  gap: 18px;
  align-items: stretch;
}

.captain-poster {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--ink);
  border: 5px solid var(--paper-3);
  box-shadow: 8px 8px 0 var(--red), 13px 13px 0 var(--ink);
  transform: rotate(-1deg);
}

.captain-poster::before {
  content: "Wanted";
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--ink);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.captain-poster img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: 50% 56%;
  filter: saturate(1.05) contrast(1.05);
}

.captain-poster div {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--paper-3);
  box-shadow: 4px 4px 0 var(--red);
}

.captain-poster span,
.captain-poster strong {
  display: block;
  text-transform: uppercase;
}

.captain-poster span {
  font-size: 0.76rem;
  font-weight: 950;
}

.captain-poster strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 2rem;
  line-height: 0.95;
}

.scroll-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(122, 62, 31, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(122, 62, 31, 0.08) 1px, transparent 1px),
    var(--paper-3);
  background-size: 20px 20px;
}

.scroll-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 8px 0 22px;
  list-style: none;
}

.scroll-panel li {
  position: relative;
  padding-left: 24px;
  font-weight: 900;
}

.scroll-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 11px;
  height: 11px;
  background: var(--red);
  border: 2px solid var(--ink);
  transform: rotate(45deg);
}

.form-arc {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  padding: 70px 16px;
  color: var(--paper-3);
  background: var(--ink);
}

.form-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 6, 6, 0.7) 0%, rgba(7, 6, 6, 0.24) 46%, rgba(7, 6, 6, 0.9) 100%),
    url("assets/andoni-physique-torso.jpg") 50% 32% / cover;
  filter: saturate(1.1) contrast(1.06);
}

.form-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 183, 53, 0.18), transparent 22rem),
    radial-gradient(circle at 84% 78%, rgba(17, 118, 201, 0.22), transparent 22rem),
    repeating-linear-gradient(112deg, transparent 0 40px, rgba(255, 255, 255, 0.08) 42px 44px, transparent 46px 88px);
}

.form-wrap {
  position: relative;
  z-index: 1;
}

.form-arc .section-head h2 {
  text-shadow: 3px 3px 0 var(--red), 0 4px 14px rgba(7, 6, 6, 0.9);
}

.form-arc .section-head p:not(.tag) {
  color: rgba(255, 248, 231, 0.94);
  text-shadow: 0 2px 10px rgba(7, 6, 6, 0.92);
}

.embed-form {
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-3);
  border: 5px solid var(--paper-3);
  box-shadow: 8px 8px 0 var(--red), 13px 13px 0 var(--ink);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--ink);
  border-bottom: 3px solid var(--ink);
}

.form-progress span {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 10px;
  color: rgba(255, 248, 231, 0.62);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.form-progress span + span {
  border-left: 2px solid rgba(255, 248, 231, 0.18);
}

.form-progress .is-active {
  color: var(--ink);
  background: var(--gold);
}

.form-step[hidden] {
  display: none;
}

.embed-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 22px;
  border: 0;
  border-bottom: 3px solid var(--ink);
}

.embed-form legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--red);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.embed-form label {
  display: grid;
  gap: 8px;
  color: #2d251f;
  font-size: 1rem;
  font-weight: 850;
}

.embed-form em {
  color: var(--red);
  font-style: normal;
}

.embed-form input,
.embed-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px;
  color: var(--ink);
  background: #fff;
  border: 2px solid #4b3b2e;
  border-radius: 0;
}

.embed-form textarea {
  resize: vertical;
}

.embed-form .full,
.radio-grid {
  grid-column: 1 / -1;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.radio-grid label,
.checkbox {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px;
  border: 2px solid #4b3b2e;
  background: #fff;
}

.radio-grid input,
.checkbox input {
  width: 17px;
  min-height: 17px;
  accent-color: var(--red);
}

.privacy-disclosure {
  border: 2px solid #4b3b2e;
  background: #fff;
}

.privacy-disclosure summary {
  cursor: pointer;
  padding: 12px;
  color: var(--red);
  font-weight: 950;
  text-transform: uppercase;
}

.privacy-disclosure div {
  padding: 0 12px 12px;
}

.privacy-disclosure p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.privacy-disclosure p:last-child {
  margin-bottom: 0;
}

.form-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--red);
}

.form-actions.single {
  grid-template-columns: 1fr;
  background: var(--red);
}

.form-actions button {
  min-height: 54px;
  border: 0;
  box-shadow: none;
  cursor: default;
}

.form-actions.single button {
  justify-content: flex-end;
  color: var(--paper-3);
  background: var(--red);
}

.form-actions button:first-child {
  justify-content: flex-start;
  color: var(--ink);
  background: var(--gold);
}

.form-actions button:last-child {
  justify-content: flex-end;
  background: var(--red);
}

.faq-section {
  padding-bottom: 38px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--paper-3);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.3rem, 4vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.faq-list p {
  padding: 0 18px 18px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.privacy-section {
  padding-top: 28px;
  padding-bottom: 118px;
}

.privacy-box {
  padding: 20px;
  background: var(--paper-3);
}

.privacy-box summary {
  cursor: pointer;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.55rem, 5vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.privacy-box summary span {
  display: inline-block;
  margin-right: 8px;
  padding: 5px 8px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--red);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  font-weight: 950;
  vertical-align: middle;
}

.privacy-box div {
  margin-top: 18px;
}

.privacy-box p:last-child {
  margin-bottom: 0;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 860px) {
  body {
    padding-bottom: 76px;
  }

  .topbar {
    grid-template-columns: auto auto;
    min-height: 44px;
  }

  .topbar nav,
  .top-cta {
    display: none;
  }

  .flag-mark {
    width: 28px;
    height: 28px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 84px 16px 40px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 6, 6, 0.84) 0%, rgba(7, 6, 6, 0.58) 42%, rgba(7, 6, 6, 0.9) 100%);
  }

  .hero-copy-block {
    order: 2;
    text-align: center;
  }

  .hero-copy-block .tag {
    justify-content: center;
  }

  .hero-copy-block h1 {
    max-width: 14ch;
    margin-inline: auto;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .wanted-card {
    order: 1;
    width: min(100%, 330px);
    justify-self: center;
    margin-top: 6px;
  }

  h1 {
    font-size: clamp(3.4rem, 16vw, 5.8rem);
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .bounty-strip,
  .route-map,
  .captain-section {
    grid-template-columns: 1fr;
  }

  .crew-badges {
    gap: 6px;
    max-width: 420px;
    margin-inline: auto;
  }

  .crew-badges span {
    min-height: 46px;
    padding: 6px 4px;
    font-size: 0.66rem;
  }

  .bounty-strip {
    padding-top: 18px;
  }

  .bounty-strip article,
  .route-map article:nth-child(odd),
  .route-map article:nth-child(even),
  .captain-poster,
  .wanted-card {
    transform: none;
  }

  .bounty-strip article {
    min-height: auto;
  }

  .section {
    padding: 44px 14px;
  }

  .route-map::before {
    top: 0;
    bottom: 0;
    left: 24px;
    right: auto;
    border-top: 0;
    border-left: 4px dashed var(--brown);
    transform: none;
  }

  .route-map article {
    min-height: auto;
  }

  .captain-poster,
  .captain-poster img {
    min-height: 360px;
  }

  .scroll-panel {
    padding: 18px;
  }

  .form-arc {
    padding: 50px 12px;
  }

  /* En movil el contenedor es muy alto: con cover la foto se recorta a una
     franja central super ampliada. Mostramos el torso completo a lo ancho,
     anclado arriba, y lo fundimos con el negro para que no se vea costura. */
  .form-bg {
    background-image:
      linear-gradient(
        180deg,
        rgba(7, 6, 6, 0.5) 0%,
        rgba(7, 6, 6, 0.12) 15%,
        rgba(7, 6, 6, 0.42) 26%,
        rgba(7, 6, 6, 0.99) 34%,
        var(--ink) 100%
      ),
      url("assets/andoni-physique-torso.jpg");
    background-size: 100% 100%, 118% auto;
    background-position: center, center top;
    background-repeat: no-repeat, no-repeat;
    background-color: var(--ink);
  }

  .form-bg::after {
    display: none;
  }

  .embed-form fieldset,
  .radio-grid {
    grid-template-columns: 1fr;
  }

  .embed-form fieldset {
    padding: 18px;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }

  .form-actions button:first-child,
  .form-actions button:last-child {
    justify-content: center;
  }

  .mobile-sticky {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 50;
    display: flex;
    min-height: 52px;
    border-color: var(--paper-3);
  }
}

@media (max-width: 430px) {
  .section-head h2,
  .scroll-panel h2 {
    font-size: clamp(2.2rem, 12vw, 3.35rem);
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  h1 {
    text-shadow: 3px 3px 0 var(--red), 6px 6px 0 rgba(246, 183, 53, 0.44);
  }

  .tag {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
