:root {
  --ink: #111111;
  --ink-soft: #3b3b3b;
  --muted: #6b6b6b;
  --line: #dedbd3;
  --paper: #fffdf8;
  --paper-2: #f4f2eb;
  --forest: #4e722c;
  --leaf: #8dbb20;
  --olive: #6b5b28;
  --magenta: #e91e78;
  --gold: #f8a31a;
  --teal: #18b4bd;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(calc(100% - 40px), 1160px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  position: relative;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  width: 168px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.nav-links a {
  position: relative;
  padding-block: 8px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-policy {
  color: var(--forest);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--paper-2);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 44px 0 58px;
  overflow: hidden;
  color: var(--white);
  background: #11130f url("assets/hero-poster.jpg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(9, 10, 8, 0.88) 0%, rgba(9, 10, 8, 0.72) 44%, rgba(9, 10, 8, 0.38) 100%),
    linear-gradient(180deg, rgba(9, 10, 8, 0.24), rgba(9, 10, 8, 0.58));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(9, 10, 8, 0.72));
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: 54px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 7vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.22rem, 2vw, 1.5rem);
  line-height: 1.16;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.55rem, 5.8vw, 5.1rem);
  line-height: 0.98;
  text-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
}

.hero .eyebrow {
  color: var(--leaf);
}

.hero-text strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #2a2a2a;
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.hero .btn-primary {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
  background: #f2f0e9;
}

.hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.btn-small {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--ink);
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.floating-logos {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1.08;
}

.hero-orbit {
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  --orbit-rot: -14deg;
  --orbit-scale: 1.18;
  transform: rotate(var(--orbit-rot)) scaleX(var(--orbit-scale));
  animation: orbitDrift 22s linear infinite;
}

.hero-orbit-two {
  inset: 18% 2% 12% 18%;
  border-color: rgba(141, 187, 32, 0.18);
  --orbit-rot: 18deg;
  --orbit-scale: 0.94;
  animation-duration: 30s;
  animation-direction: reverse;
}

.floating-logo {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  transform: translate3d(var(--x, 0), var(--y, 0), 0) rotate(var(--rot, 0deg));
  animation: logoFloat var(--speed, 7s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}

.floating-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 44%);
  border-radius: inherit;
}

.floating-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-logo-ayg {
  left: 50%;
  top: 4%;
  width: 74%;
  height: 170px;
  padding: 0;
  --x: -50%;
  --lift: 16px;
  --tilt: 1.6deg;
  --speed: 8s;
  background: rgba(17, 17, 17, 0.2);
  backdrop-filter: blur(16px);
}

.floating-logo-ayg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: invert(1);
  mix-blend-mode: screen;
}

.floating-logo-pueblos {
  left: 2%;
  top: 48%;
  width: 32%;
  height: 178px;
  --lift: 20px;
  --tilt: -2deg;
  --speed: 6.8s;
  --delay: -1.2s;
  background: var(--white);
}

.floating-logo-ebano {
  right: 0;
  bottom: 6%;
  width: 54%;
  height: 170px;
  --lift: 14px;
  --tilt: 1.2deg;
  --speed: 7.6s;
  --delay: -2.4s;
  background: var(--white);
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translate3d(var(--x, 0), var(--y, 0), 0) rotate(var(--rot, 0deg));
  }

  50% {
    transform: translate3d(var(--x, 0), calc(var(--y, 0px) - var(--lift, 14px)), 0) rotate(calc(var(--rot, 0deg) + var(--tilt, 1deg)));
  }
}

@keyframes orbitDrift {
  from {
    transform: rotate(var(--orbit-rot)) scaleX(var(--orbit-scale));
  }

  to {
    transform: rotate(calc(var(--orbit-rot) + 360deg)) scaleX(var(--orbit-scale));
  }
}

.proof-band {
  color: var(--white);
  background: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid div {
  min-height: 170px;
  padding: 30px 28px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--leaf);
  font-size: 0.86rem;
  font-weight: 900;
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.proof-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 72px;
}

.rich-text {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 760px;
  text-align: center;
}

.residence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.residence-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  min-height: 620px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.07);
}

.residence-logo {
  display: grid;
  place-items: center;
  padding: 26px;
}

.pueblos .residence-logo {
  background:
    linear-gradient(135deg, rgba(233, 30, 120, 0.92), rgba(248, 163, 26, 0.88)),
    var(--magenta);
}

.ebano .residence-logo {
  background:
    linear-gradient(135deg, rgba(78, 114, 44, 0.16), rgba(141, 187, 32, 0.18)),
    var(--white);
}

.pueblos-logo img {
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(17, 17, 17, 0.22));
}

.ebano-logo img {
  max-height: 220px;
  object-fit: contain;
}

.residence-copy {
  padding: 34px;
}

.residence-copy p {
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
  color: var(--ink-soft);
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 900;
}

.text-link svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  color: var(--magenta);
  border: 1px solid rgba(233, 30, 120, 0.28);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  color: var(--white);
  background: var(--magenta);
  transform: translateX(3px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  min-height: 250px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-weight: 900;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.compliance {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(30, 39, 24, 0.94)),
    var(--ink);
}

.compliance .eyebrow {
  color: var(--leaf);
}

.compliance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: 62px;
  align-items: start;
}

.compliance-grid > div > p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.compliance-list {
  display: grid;
  gap: 14px;
}

.compliance-list div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.compliance-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.05rem;
}

.compliance-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.8fr);
  gap: 64px;
  align-items: center;
}

.contact-copy p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--forest);
  font-weight: 800;
}

.whatsapp-card {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: start;
  gap: 16px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(39, 70, 37, 0.92)),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.16);
}

.whatsapp-card::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -56px;
  width: 190px;
  height: 190px;
  background: rgba(37, 211, 102, 0.16);
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: 50%;
}

.whatsapp-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: var(--white);
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.24);
}

.whatsapp-icon svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.whatsapp-label {
  position: relative;
  z-index: 1;
  margin: 4px 0 -8px;
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.whatsapp-number {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.whatsapp-copy {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.whatsapp-button {
  position: relative;
  z-index: 1;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.22);
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #1ebc59;
}

.whatsapp-privacy {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(180px, 0.4fr));
  gap: 40px;
  padding: 54px 0 40px;
}

.footer-logo {
  width: 280px;
  max-width: 100%;
  margin-bottom: 18px;
  filter: invert(1);
  mix-blend-mode: screen;
}

.footer-grid p {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid strong {
  display: block;
  margin-bottom: 16px;
}

.footer-grid a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  padding: 18px 0 28px;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: auto;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: flex;
  max-width: 560px;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  margin-inline: auto;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner div {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.cookie-banner a {
  color: var(--forest);
  font-weight: 800;
}

.legal-hero {
  padding: 74px 0 48px;
  background: var(--paper-2);
}

.legal-hero h1 {
  max-width: 880px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.legal-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 52px;
  padding: 62px 0 92px;
}

.legal-nav {
  position: sticky;
  top: 88px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-nav a {
  color: var(--ink-soft);
  font-weight: 700;
}

.legal-content {
  display: grid;
  gap: 28px;
}

.legal-content section {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content ul {
  margin: 0;
  padding-left: 22px;
}

.notice-box {
  padding: 18px;
  color: var(--ink-soft);
  background: #fff8df;
  border: 1px solid #eadb9d;
  border-radius: 8px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .compliance-grid,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .proof-grid,
  .process-grid,
  .residence-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div,
  .proof-grid div:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 28px), 1160px);
  }

  .nav {
    min-height: 58px;
  }

  .brand {
    width: 132px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    padding: 16px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
    gap: 8px;
  }

  .section {
    padding: 68px 0;
  }

  h1 {
    max-width: 100%;
    font-size: 2.42rem;
    line-height: 1.06;
  }

  h1 span {
    display: block;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid,
  .hero-copy,
  .hero-visual,
  .hero-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .cookie-banner,
  .cookie-banner div,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .floating-logos {
    width: min(100%, 324px);
    aspect-ratio: 0.92;
  }

  .hero-orbit {
    inset: 8%;
  }

  .floating-logo-ayg {
    top: 0;
    width: 88%;
    height: 102px;
  }

  .floating-logo-pueblos {
    left: 0;
    top: 40%;
    width: 37%;
    height: 124px;
  }

  .floating-logo-ebano {
    right: 0;
    bottom: 1%;
    width: 61%;
    height: 114px;
  }

  .residence-card {
    grid-template-rows: 220px 1fr;
    min-height: auto;
  }

  .residence-copy,
  .whatsapp-card {
    padding: 24px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    max-width: calc(100vw - 28px);
  }

  .cookie-banner div {
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: 2.28rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .floating-logo,
  .hero-orbit {
    animation: none;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(calc(100% - 28px), 362px);
  }

  .hero-text {
    max-width: 36ch;
  }

  .cookie-banner {
    width: min(calc(100% - 28px), 350px);
  }
}
