:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5b6472;
  --paper: #fffaf3;
  --surface: #ffffff;
  --mist: #f2f6f7;
  --line: #cfdae0;
  --blue: #006fb8;
  --blue-dark: #034b80;
  --navy: #102638;
  --coral: #ff6b3a;
  --teal: #1aa09a;
  --whatsapp: #20b15a;
  --display: "Archivo Black", "Arial Black", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

::selection {
  color: white;
  background: var(--coral);
}

.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 243, .96);
  border-bottom: 1px solid rgba(17, 24, 39, .12);
  backdrop-filter: blur(16px);
}

.utility-bar {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 6px clamp(20px, 4vw, 60px);
  color: rgba(255, 255, 255, .82);
  background: var(--navy);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.utility-bar span:last-child {
  color: #62d2cc;
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px clamp(20px, 4vw, 60px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  min-width: max-content;
  text-decoration: none;
}

.brand strong {
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: .88;
  text-transform: uppercase;
}

.brand strong span,
.hero h1 span,
.intro-grid h2 span {
  color: var(--coral);
}

.brand small {
  margin-top: 7px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.4vw, 36px);
  font-size: .86rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

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

.hero {
  position: relative;
  min-height: calc(100svh - 106px);
  display: grid;
  align-items: center;
  padding: clamp(72px, 10vh, 120px) clamp(22px, 7vw, 104px) 132px;
  overflow: hidden;
  color: white;
  background-color: #0b2638;
  background-image:
    linear-gradient(90deg, rgba(7, 25, 39, .96) 0%, rgba(7, 34, 50, .83) 38%, rgba(7, 34, 50, .2) 76%),
    url("imgs/landing/hero-indumentaria.jpg");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(22px, 3.3vw, 50px);
  border-left: 1px dashed rgba(255, 255, 255, .4);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 9px;
  background: var(--coral);
  border-top: 3px solid var(--teal);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 78vw);
}

.eyebrow,
.section-marker {
  margin: 0 0 26px;
  color: var(--blue-dark);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  color: #8ee5df;
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-marker::after {
  content: "";
  width: 56px;
  border-top: 1px solid currentColor;
  opacity: .45;
}

.section-marker span {
  color: var(--coral);
  font-family: var(--display);
}

.hero h1 {
  margin: 0;
  color: white;
  font-family: var(--display);
  font-size: clamp(3.15rem, 7.3vw, 7.2rem);
  font-weight: 400;
  line-height: .82;
  text-transform: uppercase;
}

.hero-statement {
  margin: 24px 0 0;
  font-size: clamp(2rem, 4.3vw, 4.25rem);
  font-weight: 800;
  line-height: .98;
}

.hero-copy {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(.98rem, 1.45vw, 1.12rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

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

.button:focus-visible,
.contact-link:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

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

.button-primary:hover {
  box-shadow: 4px 4px 0 rgba(255, 255, 255, .18);
}

.button-secondary {
  color: white;
  border-color: rgba(255, 255, 255, .46);
  background: rgba(255, 255, 255, .05);
}

.button-whatsapp {
  width: fit-content;
  color: white;
  background: var(--whatsapp);
}

.whatsapp-icon {
  width: 1.3em;
  height: 1.3em;
  flex: 0 0 auto;
  fill: currentColor;
}

.hero-side-note {
  position: absolute;
  top: 50%;
  right: clamp(16px, 2.2vw, 34px);
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: translate(44%, -50%) rotate(90deg);
}

.hero-proof {
  position: absolute;
  right: clamp(22px, 7vw, 104px);
  bottom: 32px;
  left: clamp(22px, 7vw, 104px);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .34);
}

.hero-proof div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px 20px 8px 0;
  font-size: .8rem;
  font-weight: 800;
}

.hero-proof div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, .26);
}

.hero-proof strong {
  color: var(--coral);
  font-family: var(--display);
  font-size: .78rem;
}

.section-band {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 70px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.15rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: .95;
  text-transform: uppercase;
}

.intro {
  position: relative;
  background: var(--surface);
}

.intro::after {
  content: "IDENTIDAD";
  position: absolute;
  right: 2vw;
  bottom: 5px;
  color: rgba(3, 75, 128, .045);
  font-family: var(--display);
  font-size: clamp(4rem, 13vw, 12rem);
  line-height: .8;
  pointer-events: none;
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: clamp(36px, 8vw, 100px);
  align-items: end;
}

.intro-grid h2 {
  font-size: clamp(2.5rem, 5.7vw, 5.6rem);
}

.intro-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.75;
}

.intro-copy p + p {
  margin-top: 16px;
}

.capabilities-line {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: clamp(54px, 7vw, 88px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capabilities-line span {
  position: relative;
  flex: 1 1 150px;
  padding: 18px 16px 18px 22px;
  color: var(--blue-dark);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.capabilities-line span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  width: 7px;
  height: 7px;
  background: var(--coral);
  transform: translateY(-50%) rotate(45deg);
}

.services {
  color: white;
  background: var(--blue-dark);
  border-bottom: 8px solid var(--teal);
}

.services .section-marker {
  color: #8ee5df;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(32px, 8vw, 100px);
  align-items: end;
  margin-bottom: 54px;
}

.split-heading > p,
.process-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.7;
}

.services .split-heading > p {
  color: rgba(255, 255, 255, .7);
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.service-item {
  display: grid;
  grid-template-columns: 58px minmax(190px, .65fr) minmax(300px, 1.35fr);
  gap: clamp(18px, 4vw, 60px);
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  transition: padding-left .22s ease, background-color .22s ease;
}

.service-item:hover {
  padding-left: 16px;
  background: rgba(255, 255, 255, .05);
}

.service-number {
  color: var(--coral);
  font-family: var(--display);
  font-size: .82rem;
}

.service-item h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.service-item p {
  max-width: 670px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  background: var(--paper);
}

.feature-image {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
}

.feature-image::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  bottom: 26px;
  left: 26px;
  border: 1px dashed rgba(255, 255, 255, .62);
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
}

.feature-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 12px 18px;
  color: white;
  background: var(--coral);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-copy {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 98px);
}

.feature-copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 9px;
  background: var(--teal);
}

.feature-copy h2 {
  color: var(--blue-dark);
}

.feature-copy > p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-link {
  width: fit-content;
  margin-top: 26px;
  color: var(--blue-dark);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 3px solid var(--coral);
}

.text-link span,
.contact-banner a span {
  display: inline-block;
  transition: transform .2s ease;
}

.text-link:hover span,
.contact-banner a:hover span {
  transform: translateX(5px);
}

.work-band {
  background: var(--mist);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 300px;
  gap: 22px 16px;
}

.work-item {
  min-width: 0;
  margin: 0;
}

.work-wide {
  grid-column: span 2;
}

.work-tall {
  grid-row: span 2;
}

.work-image {
  height: calc(100% - 58px);
  overflow: hidden;
  background: #dfe7e9;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.work-item:hover img {
  transform: scale(1.035);
}

.work-item figcaption {
  display: flex;
  min-height: 58px;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 0 0;
  border-top: 4px solid var(--coral);
}

.work-item:nth-child(3n + 2) figcaption {
  border-color: var(--teal);
}

.work-item figcaption strong {
  color: var(--blue-dark);
  font-size: .94rem;
}

.work-item figcaption span {
  color: var(--muted);
  font-size: .72rem;
  text-align: right;
}

.work-tall .work-image {
  height: calc(100% - 58px);
}

.placeholder-item {
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: 22px;
  border: 2px solid var(--blue-dark);
  background-color: var(--paper);
  background-image:
    linear-gradient(90deg, transparent 49%, rgba(3, 75, 128, .08) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(3, 75, 128, .08) 50%, transparent 51%);
  background-size: 24px 24px;
}

.placeholder-stitch {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px dashed var(--blue-dark);
}

.placeholder-stitch span {
  color: var(--coral);
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.placeholder-stitch strong {
  color: var(--blue-dark);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 2.4rem);
  line-height: .98;
  text-transform: uppercase;
}

.process {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy);
}

.process::after {
  content: "03";
  position: absolute;
  right: -1vw;
  bottom: -4vw;
  color: rgba(255, 255, 255, .035);
  font-family: var(--display);
  font-size: clamp(15rem, 35vw, 34rem);
  line-height: .75;
  pointer-events: none;
}

.section-marker-light {
  color: #8ee5df;
}

.process-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(32px, 8vw, 100px);
  align-items: end;
}

.process-heading > p {
  color: rgba(255, 255, 255, .68);
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px dashed rgba(255, 255, 255, .42);
}

.process-grid article {
  position: relative;
  padding: 42px clamp(20px, 3vw, 38px) 0 0;
}

.process-grid article + article {
  padding-left: clamp(20px, 3vw, 38px);
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.process-number {
  position: absolute;
  top: 0;
  width: 44px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--coral);
  font-family: var(--display);
  font-size: .67rem;
  transform: translateY(-50%);
}

.process-grid article:nth-child(2) .process-number {
  background: var(--teal);
}

.process-grid article:nth-child(3) .process-number {
  color: white;
  background: var(--blue);
}

.process-grid h3 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  text-transform: uppercase;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  line-height: 1.7;
}

.contact-section {
  padding-bottom: 104px;
  background: var(--surface);
}

.contact-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px clamp(20px, 5vw, 70px);
  color: white;
  background: var(--coral);
}

.contact-banner p,
.contact-banner a {
  margin: 0;
  font-family: var(--display);
  text-transform: uppercase;
}

.contact-banner p {
  font-size: clamp(1.45rem, 4vw, 3.7rem);
}

.contact-banner a {
  flex: 0 0 auto;
  padding-bottom: 4px;
  border-bottom: 3px solid white;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  text-decoration: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
  padding-top: clamp(72px, 9vw, 120px);
}

.contact-copy h2 {
  color: var(--blue-dark);
}

.address {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.7vw, 1.95rem);
  font-weight: 800;
  line-height: 1.2;
}

.contact-copy > p:not(.address) {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-actions {
  flex-direction: column;
  align-items: flex-start;
}

.contact-link {
  color: var(--blue-dark);
  font-size: .9rem;
  font-weight: 800;
  text-decoration-color: rgba(3, 75, 128, .35);
  text-underline-offset: 5px;
}

.map-wrap {
  position: relative;
  min-height: 480px;
  padding: 12px;
  background: var(--blue-dark);
  box-shadow: 14px 14px 0 var(--teal);
}

.map-wrap::before {
  content: "MERLO / BUENOS AIRES";
  position: absolute;
  top: 50%;
  right: -105px;
  z-index: 2;
  color: var(--blue-dark);
  font-size: .63rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 456px;
  border: 0;
  filter: saturate(.82) contrast(1.04);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: white;
  background: var(--whatsapp);
  border: 2px solid white;
  border-radius: 4px;
  box-shadow: 8px 8px 0 rgba(16, 38, 56, .18);
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.whatsapp-float:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 rgba(16, 38, 56, .18);
}

.whatsapp-float .whatsapp-icon {
  width: 25px;
  height: 25px;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(20px, 5vw, 70px);
  color: rgba(255, 255, 255, .66);
  background: #0a1823;
}

.footer-brand strong {
  color: white;
}

.footer-brand small {
  color: rgba(255, 255, 255, .52);
}

.site-footer p {
  margin: 0;
  font-size: .75rem;
  text-align: right;
}

@media (max-width: 980px) {
  .hero-content {
    width: min(720px, 88vw);
  }

  .intro-grid,
  .split-heading,
  .process-heading,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    align-items: start;
  }

  .intro-copy {
    max-width: 680px;
  }

  .split-heading > p,
  .process-heading > p {
    max-width: 620px;
  }

  .service-item {
    grid-template-columns: 52px minmax(160px, .6fr) minmax(260px, 1.4fr);
    gap: 24px;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-image,
  .feature-image img {
    min-height: 520px;
  }

  .feature-copy {
    min-height: auto;
  }

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

  .work-wide {
    grid-column: span 2;
  }

  .work-tall {
    grid-row: span 1;
  }

  .map-wrap::before {
    display: none;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 108px;
  }

  .utility-bar {
    min-height: 26px;
    justify-content: center;
    font-size: .58rem;
  }

  .utility-bar span:last-child {
    display: none;
  }

  .header-inner {
    min-height: 74px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 9px;
  }

  .brand strong {
    font-size: 1.18rem;
  }

  .brand small {
    margin-top: 5px;
    font-size: .57rem;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    overflow-x: auto;
    font-size: .72rem;
  }

  .main-nav a {
    padding: 4px 0 7px;
  }

  .hero {
    min-height: auto;
    padding: 72px 22px 42px;
    background-image:
      linear-gradient(90deg, rgba(7, 25, 39, .93), rgba(7, 34, 50, .68)),
      url("imgs/landing/hero-indumentaria.jpg");
    background-position: 58% center;
  }

  .hero::before {
    left: 12px;
  }

  .hero-content {
    width: 100%;
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 3rem;
    line-height: .92;
    white-space: nowrap;
  }

  .hero-statement {
    margin-top: 20px;
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: .92rem;
    overflow-wrap: break-word;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-side-note {
    display: none;
  }

  .hero-proof {
    position: relative;
    inset: auto;
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .hero-proof div {
    padding: 12px 0;
  }

  .hero-proof div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-left: 0;
  }

  .section-band {
    padding-right: 20px;
    padding-left: 20px;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.35rem);
  }

  .intro-grid h2 {
    font-size: clamp(2.15rem, 11.5vw, 3.5rem);
  }

  .capabilities-line span {
    flex-basis: 50%;
  }

  .service-item {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .service-item h3 br {
    display: none;
  }

  .service-item p {
    grid-column: 2;
    font-size: .92rem;
  }

  .service-item:hover {
    padding-left: 0;
  }

  .feature-image,
  .feature-image img {
    min-height: 380px;
  }

  .feature-copy {
    padding: 62px 20px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 330px;
    gap: 24px;
  }

  .work-wide,
  .work-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .work-item figcaption span {
    max-width: 48%;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 64px;
    border-top: 0;
    border-left: 1px dashed rgba(255, 255, 255, .42);
  }

  .process-grid article,
  .process-grid article + article {
    min-height: 145px;
    padding: 0 0 0 42px;
    border-left: 0;
  }

  .process-number {
    top: 0;
    left: 0;
    width: 22px;
    height: 44px;
    transform: translate(-50%, 0);
  }

  .contact-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-grid {
    padding-right: 20px;
    padding-left: 20px;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-link {
    overflow-wrap: anywhere;
  }

  .map-wrap {
    min-height: 360px;
    padding: 8px;
    box-shadow: 8px 8px 0 var(--teal);
  }

  .map-wrap iframe {
    height: 344px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 10px;
  }

  .whatsapp-float strong {
    display: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

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

  .hero-statement {
    font-size: 2.1rem;
  }
}

@media (max-width: 360px) {
  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-statement {
    font-size: 1.9rem;
  }

  .eyebrow {
    max-width: 230px;
    line-height: 1.45;
  }
}

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

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