

:root {
  --ink: #0b0d11;
  --ink-soft: #161a22;
  --paper: #f5f3ee;
  --white: #ffffff;
  --muted: #667080;
  --line: #d9d7d0;
  --coral: #ff5634;
  --coral-dark: #db3519;
  --blue: #176bff;
  --cyan: #46e4db;
  --lime: #c9ff5d;
  --shell: min(1180px, calc(100% - 40px));
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
}

.skip-link:focus {
  transform: none;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgba(11, 13, 17, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  line-height: 1;
}

.brand-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  font-size: 20px;
  font-weight: 950;
  font-style: italic;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0.09em;
}

.brand small {
  margin-top: 5px;
  color: #aab1bc;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-header nav a {
  padding: 9px 11px;
  border-radius: 9px;
  color: #d5d9df;
  font-size: 13px;
  font-weight: 800;
}

.site-header nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-header nav .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: var(--coral);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 30%, rgba(23, 107, 255, 0.24), transparent 33%),
    radial-gradient(circle at 15% 15%, rgba(255, 86, 52, 0.18), transparent 30%),
    var(--ink);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 55px 55px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.split-heading h2,
.product-copy h2,
.cap-grid h2,
.center-heading h2,
.local-heading h2,
.municipality-block h2,
.faq-grid h2,
.cta-grid h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.hero-lead {
  max-width: 720px;
  margin: 27px 0 0;
  color: #c9ced6;
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 16px 34px rgba(255, 86, 52, 0.21);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.27);
  background: rgba(255, 255, 255, 0.05);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

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

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-trust span {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  color: #b7bec9;
  font-size: 11px;
  font-weight: 750;
}

.wardrobe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.wardrobe-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 7px 15px;
}

.wardrobe-title span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wardrobe-title strong {
  color: #aeb5c0;
  font-size: 11px;
}

.garment {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 18px;
  border-radius: 19px;
  transition: transform 0.2s ease;
}

.garment:hover {
  transform: translateY(-4px);
}

.garment::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100px;
  height: 95px;
  transform: translateX(-50%);
  border-radius: 45px 45px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.garment-hoodie {
  grid-row: span 2;
  min-height: 392px;
  background: linear-gradient(145deg, #ff6e50, #c83117);
}

.garment-hoodie::after {
  width: 155px;
  height: 245px;
  top: 58px;
  border-radius: 60px 60px 30px 30px;
  box-shadow: 0 -28px 0 -11px rgba(255, 255, 255, 0.12);
}

.garment-shirt {
  background: linear-gradient(145deg, #2679ff, #1349aa);
}

.garment-cap {
  background: linear-gradient(145deg, #3c424f, #1b1e24);
}

.garment-cap::after {
  width: 110px;
  height: 55px;
  top: 38px;
  border-radius: 55px 55px 12px 12px;
  box-shadow: 45px 35px 0 -22px rgba(255, 255, 255, 0.16);
}

.garment-index {
  position: absolute;
  top: 15px;
  left: 16px;
  z-index: 2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.garment strong,
.garment small {
  position: relative;
  z-index: 2;
}

.garment strong {
  font-size: 20px;
  letter-spacing: 0.04em;
}

.garment small {
  color: rgba(255, 255, 255, 0.7);
}

.local-marquee {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 80px;
  padding: 23px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.local-marquee span {
  color: #8e97a5;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.split-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 100px;
}

.split-heading h2,
.product-copy h2,
.cap-grid h2,
.center-heading h2,
.local-heading h2,
.municipality-block h2,
.faq-grid h2,
.cta-grid h2 {
  font-size: clamp(36px, 4.3vw, 56px);
}

.prose {
  padding-left: 32px;
  border-left: 2px solid var(--coral);
  color: var(--muted);
  font-size: 18px;
}

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

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

.light {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
  gap: 70px;
}

.product-grid.reverse {
  grid-template-columns: 1.12fr 0.88fr;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coral {
  color: var(--coral);
}

.blue {
  color: var(--blue);
}

.product-lead {
  margin: 22px 0;
  color: inherit;
  font-size: 18px;
}

.dark .product-lead,
.dark .product-copy > p {
  color: #c1c7d0;
}

.product-copy .button {
  width: fit-content;
  margin-top: 28px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.feature-list article {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.feature-list strong {
  display: block;
  color: var(--white);
}

.feature-list p {
  margin: 5px 0 0;
  color: #aab2bf;
  font-size: 13px;
}

.product-visual {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 32px;
}

.hoodie-visual {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 45%),
    linear-gradient(145deg, #ff6546, #a91f0c);
}

.hoodie-visual::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 465px;
  bottom: -110px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 160px 160px 42px 42px;
  box-shadow: 0 -75px 0 -35px rgba(255, 255, 255, 0.1);
}

.hood-ring {
  position: relative;
  z-index: 2;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: 54px;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.visual-label {
  position: absolute;
  top: 24px;
  left: 25px;
  z-index: 3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-visual p {
  position: relative;
  z-index: 2;
  margin-top: 23px;
  font-weight: 800;
}

.shirt-visual {
  color: var(--white);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.2), transparent 40%),
    linear-gradient(145deg, #2679ff, #103b91);
}

.shirt-visual::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 435px;
  bottom: -85px;
  clip-path: polygon(25% 0, 40% 10%, 60% 10%, 75% 0, 100% 20%, 84% 45%, 79% 38%, 81% 100%, 19% 100%, 21% 38%, 16% 45%, 0 20%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.shirt-number {
  position: relative;
  z-index: 2;
  font-size: 150px;
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -0.11em;
}

.shirt-visual strong {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  letter-spacing: 0.25em;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.chip-row span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.pack-section {
  margin-top: 90px;
}

.pack-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.pack-heading h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

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

.pack-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.pack-grid article.pack-featured {
  color: var(--ink);
  background: var(--lime);
  border-color: transparent;
  transform: translateY(-12px);
}

.pack-grid span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pack-featured span {
  color: #526d13;
}

.pack-grid h4 {
  margin: 45px 0 12px;
  font-size: 24px;
}

.pack-grid p {
  color: #aab2bf;
}

.pack-featured p {
  color: #4b5a28;
}

.cap-section {
  color: var(--white);
  background: linear-gradient(145deg, #222835, #11141b);
}

.cap-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.cap-grid > .button {
  grid-column: 2;
  width: fit-content;
}

.cap-grid .product-lead {
  color: #b9c0cb;
}

.cap-copy {
  display: grid;
  gap: 12px;
}

.cap-copy article {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.cap-copy article > span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 950;
}

.cap-copy h3 {
  margin: 0 0 6px;
  font-size: 21px;
}

.cap-copy p {
  grid-column: 2;
  margin: 0;
  color: #afb6c1;
}

.audiences {
  background: var(--paper);
}

.center-heading {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.center-heading > p:last-child {
  color: var(--muted);
}

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

.audience-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.audience-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(11, 13, 17, 0.09);
}

.audience-grid article > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.audience-grid h3 {
  margin: 42px 0 12px;
  font-size: 25px;
  line-height: 1.1;
}

.audience-grid p {
  margin: 0;
  color: var(--muted);
}

.audience-grid a {
  width: fit-content;
  margin-top: auto;
  padding-top: 20px;
  border-bottom: 1px solid #aab1bc;
  font-size: 13px;
  font-weight: 900;
}

.audience-grid a:hover {
  color: var(--coral-dark);
  border-color: var(--coral);
}

.process-section {
  background: var(--white);
}

.process-intro {
  align-self: end;
  color: var(--muted);
  font-size: 17px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 55px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-grid li {
  position: relative;
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-right: 0;
}

.process-grid li:first-child {
  border-radius: 20px 0 0 20px;
}

.process-grid li:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 20px 20px 0;
}

.process-grid span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
}

.process-grid h3 {
  margin: 55px 0 10px;
  font-size: 21px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.local-section {
  color: var(--white);
  background: var(--ink);
}

.local-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 48px;
}

.local-heading > p {
  color: #adb5c0;
}

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

.barrios-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.barrios-grid article:last-child {
  grid-column: 1 / -1;
}

.barrios-grid article > span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.barrios-grid h3 {
  margin: 38px 0 11px;
  font-size: 24px;
}

.barrios-grid p {
  color: #abb3bf;
}

.barrios-grid article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: auto;
}

.barrios-grid a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 12px;
  font-weight: 850;
}

.municipality-block {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  margin-top: 90px;
  padding-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.municipality-block > div:first-child > p:last-child {
  color: #abb3bf;
}

.municipality-cloud {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 9px;
}

.municipality-cloud span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  color: #d7dbe1;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 750;
}

.map-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  overflow: hidden;
  min-height: 400px;
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
}

.map-card > div {
  padding: 40px;
  background: #171b24;
}

.map-card > div > span {
  color: var(--coral);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-card h3 {
  margin: 60px 0 12px;
  font-size: 31px;
  line-height: 1.05;
}

.map-card p {
  color: #adb5c0;
}

.map-card iframe {
  width: 100%;
  min-height: 400px;
  border: 0;
  filter: grayscale(0.75) contrast(1.08);
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.faq-grid > div:first-child > p:last-child {
  color: var(--muted);
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 24px 48px 24px 0;
  font-size: 18px;
  font-weight: 850;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 6px;
  color: var(--coral);
  font-size: 29px;
  font-weight: 400;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: -5px 0 25px;
  padding-right: 42px;
  color: var(--muted);
}

.cta-section {
  padding: 90px 0;
  color: var(--white);
  background: var(--coral);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 90px;
}

.cta-grid .section-kicker {
  color: #6e1c0d;
}

.cta-grid > div:first-child > p:last-child {
  max-width: 690px;
  color: #ffe3dc;
  font-size: 18px;
}

.cta-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cta-actions small {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: #ffe3dc;
}

.site-footer {
  padding: 50px 0 24px;
  color: #a4acb8;
  background: #080a0e;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 70px;
}

.footer-grid > div:nth-child(2) strong {
  color: var(--white);
  font-size: 12px;
}

.footer-grid p {
  margin: 5px 0 0;
  font-size: 12px;
}

.footer-grid > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #d7dbe1;
  font-size: 12px;
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .hero-grid,
  .product-grid,
  .product-grid.reverse {
    grid-template-columns: 1fr;
  }

  .wardrobe {
    max-width: 740px;
  }

  .product-visual {
    min-height: 500px;
  }

  .product-grid.reverse .product-visual {
    grid-row: 1;
  }

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

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .process-grid li,
  .process-grid li:first-child,
  .process-grid li:last-child {
    border: 1px solid var(--line);
    border-radius: 16px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 28px, 720px);
  }

  .section {
    padding: 76px 0;
  }

  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .split-heading,
  .cap-grid,
  .local-heading,
  .municipality-block,
  .faq-grid,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .prose {
    padding-left: 22px;
  }

  .cap-grid > .button {
    grid-column: auto;
  }

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

  .pack-grid article.pack-featured {
    transform: none;
  }

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

  .barrios-grid article:last-child {
    grid-column: auto;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 590px) {
  .hero {
    padding-top: 72px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions .button,
  .product-copy .button,
  .cap-grid > .button {
    width: 100%;
  }

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

  .wardrobe-title {
    grid-column: auto;
    align-items: flex-start;
    flex-direction: column;
  }

  .garment-hoodie {
    grid-row: auto;
    min-height: 230px;
  }

  .garment-hoodie::after {
    width: 120px;
    height: 140px;
    top: 35px;
  }

  .feature-list,
  .audience-grid,
  .process-grid,
  .cta-actions {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 390px;
  }

  .hoodie-visual::before,
  .shirt-visual::before {
    width: 280px;
  }

  .shirt-number {
    font-size: 115px;
  }

  .cap-copy article {
    grid-template-columns: 36px 1fr;
    padding: 20px;
  }

  .cta-actions small {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
