:root {
  --ink: #333333;
  --muted: #666666;
  --brand: #b20d55;
  --brand-bright: #e01f45;
  --teal: #279aac;
  --green: #25d366;
  --soft: #f3f3f3;
  --border: #dedede;
  --footer: #222222;
  --container: 1080px;
  --header-height: 75px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--muted);
  background: #ffffff;
  font-family: "Open Sans", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ffb21a;
  outline-offset: 3px;
}

.container {
  width: min(80%, var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 15px;
  color: #ffffff;
  background: var(--brand);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 138px;
  height: 54px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 25px;
}

.main-nav > a {
  position: relative;
  display: flex;
  align-items: center;
  color: #292929;
  font-size: 16px;
  line-height: 1.25;
  transition: color 180ms ease;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--brand);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav > a:hover,
.main-nav > a[aria-current="page"] {
  color: var(--brand);
}

.main-nav > a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.search-toggle,
.nav-toggle {
  border: 0;
  color: #333333;
  background: transparent;
  cursor: pointer;
}

.search-toggle {
  display: grid;
  width: 30px;
  padding: 0;
  place-items: center;
}

.search-toggle svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--brand);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-search {
  position: absolute;
  z-index: 5;
  top: calc(100% + 1px);
  right: 0;
  width: min(520px, 100%);
  padding: 18px;
  border-top: 3px solid var(--brand);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.site-search > label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 700;
}

.search-field {
  display: flex;
}

.search-field input {
  min-width: 0;
  flex: 1;
  padding: 11px 13px;
  border: 1px solid #c8c8c8;
  border-radius: 4px 0 0 4px;
}

.search-field button {
  border: 0;
  padding-inline: 18px;
  color: #ffffff;
  background: var(--brand);
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.search-status {
  min-height: 1.7em;
  margin: 7px 0 0;
  color: var(--brand);
}

.hero {
  width: 100%;
  background: #f4f4f4;
}

.hero img {
  width: 100%;
  max-height: calc(100vh - var(--header-height));
  object-fit: cover;
  object-position: center;
}

.section {
  padding-block: 54px;
  scroll-margin-top: calc(var(--header-height) + 10px);
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h1,
.section-heading h2,
.eyebrow {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 2.25vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}

.section-heading h1,
.uniforms .section-heading h2,
.contact .section-heading h2,
.eyebrow {
  text-transform: uppercase;
}

.intro-heading {
  margin-bottom: 26px;
}

.intro-heading .eyebrow {
  margin-bottom: 22px;
}

.divider {
  width: min(492px, 62vw);
  height: 8px;
  margin: 0 auto 34px;
  object-fit: fill;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5.5%;
  align-items: start;
}

.service-column {
  display: grid;
  gap: 25px;
}

.service-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #eeeeee;
  box-shadow: 0 7px 18px rgba(36, 36, 36, 0.08);
}

.service-card img {
  width: 100%;
  aspect-ratio: 315 / 219;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card:hover img {
  transform: scale(1.025);
}

.delivery-callout {
  margin-top: 46px;
  text-align: center;
}

.delivery-callout p,
.delivery-callout a {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.35;
}

.delivery-callout a {
  color: var(--brand);
}

.catalog-section {
  padding-top: 18px;
}

.catalog-grid,
.uniform-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px 5.5%;
  align-items: start;
}

.uniform-column {
  display: grid;
  gap: 28px;
}

.catalog-card {
  text-align: center;
}

.logo-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 128px;
  padding: 12px;
  margin-bottom: 12px;
  background: #ffffff;
}

.logo-stage img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.oversized-logo img {
  width: 145px;
}

.compact-art img {
  max-width: 49%;
}

.catalog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  min-height: 44px;
  padding: 7px 15px;
  border: 2px solid var(--brand-bright);
  border-radius: 13px;
  color: var(--brand-bright);
  background: transparent;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.catalog-button::after {
  width: 0;
  overflow: hidden;
  color: currentColor;
  content: "›";
  font-size: 24px;
  line-height: 1;
  opacity: 0;
  transition: width 180ms ease, opacity 180ms ease, margin 180ms ease;
}

.catalog-button:hover {
  color: #ffffff;
  background: var(--brand-bright);
  transform: translateY(-2px);
}

.catalog-button:hover::after {
  width: 10px;
  margin-left: 6px;
  opacity: 1;
}

.catalog-copy {
  margin: 44px 0 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
  text-align: center;
}

.uniforms {
  padding-top: 20px;
}

.contact {
  padding-top: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 660px);
  justify-content: center;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 30px;
  text-align: center;
}

.contact-details h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-details p,
.contact-details address {
  margin: 0 0 12px;
  color: var(--muted);
  font-style: normal;
}

.contact-details a {
  color: var(--brand);
}

.contact-details a:hover {
  text-decoration: underline;
}


.about {
  padding-top: 18px;
  padding-bottom: 65px;
}

.about-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-logo {
  width: 138px;
  margin-bottom: 26px;
}

.about-panel {
  width: min(874px, 100%);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 8px 22px;
  margin-top: 28px;
  border: 2px solid #7cda24;
  border-radius: 10px;
  color: #ffffff;
  background: #7cda24;
  font-size: 18px;
  font-weight: 600;
  transition: filter 180ms ease, transform 180ms ease;
}

.whatsapp-button svg,
.floating-whatsapp svg {
  width: 24px;
  fill: currentColor;
}

.whatsapp-button:hover {
  filter: brightness(0.92);
  transform: translateY(-2px);
}

.site-footer {
  padding-block: 18px;
  color: #c9c9c9;
  background: var(--footer);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links span {
  display: grid;
  width: 34px;
  height: 34px;
  color: #999999;
  font-size: 23px;
  font-weight: 700;
  place-items: center;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  color: #ffffff;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  place-items: center;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  width: 29px;
}

@media (max-width: 980px) {
  :root {
    --header-height: 80px;
  }

  .container {
    width: 90%;
  }

  .site-header {
    height: var(--header-height);
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    height: auto;
    padding: 8px 5% 16px;
    border-top: 3px solid var(--brand);
    background: #ffffff;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav > a {
    min-height: 45px;
    border-bottom: 1px solid #eeeeee;
  }

  .main-nav > a::after {
    display: none;
  }

  .search-toggle {
    width: 45px;
    height: 45px;
  }

  .site-search {
    top: 100%;
    width: 100%;
  }

  .service-columns {
    gap: 28px;
  }

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

  .contact-grid {
    gap: 5%;
  }
}

@media (max-width: 767px) {
  .section {
    padding-block: 42px;
  }

  .hero img {
    min-height: 300px;
    object-position: 58% center;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .intro-heading .eyebrow {
    font-size: 23px;
  }

  .divider {
    width: min(492px, 85vw);
    margin-bottom: 28px;
  }

  .service-columns {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }

  .service-column {
    gap: 22px;
  }

  .delivery-callout {
    margin-top: 38px;
  }

  .catalog-grid,
  .uniform-columns {
    grid-template-columns: 1fr 1fr;
    gap: 32px 18px;
  }

  .logo-stage {
    height: 112px;
    padding-inline: 7px;
  }

  .catalog-button {
    min-width: 0;
    width: 100%;
    padding-inline: 8px;
    font-size: 13px;
  }

  .catalog-copy {
    font-size: 17px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about {
    padding-bottom: 48px;
  }

  .footer-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 125px;
    height: auto;
  }

  .hero img {
    min-height: 255px;
    object-position: 59% center;
  }

  .search-field {
    display: grid;
    gap: 8px;
  }

  .search-field input,
  .search-field button {
    min-height: 44px;
    border-radius: 4px;
  }

  .catalog-grid,
  .uniform-columns {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-inline: auto;
  }

  .logo-stage {
    height: 125px;
  }

  .whatsapp-button {
    width: 100%;
    font-size: 16px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

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

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