:root {
  --yellow: oklch(88% 0.18 101);
  --yellow-bright: oklch(92% 0.19 101);
  --yellow-dark: oklch(79% 0.17 101);
  --black: oklch(14% 0.008 100);
  --black-soft: oklch(20% 0.01 100);
  --white: oklch(98.5% 0.004 100);
  --gray-on-dark: oklch(87% 0.008 100);
  --gray-on-light: oklch(30% 0.01 100);
  --line-dark: oklch(34% 0.012 100);
  --line-light: oklch(70% 0.04 100);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Atkinson Hyperlegible", "Segoe UI", sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: clamp(4rem, 8vw, 7.5rem);
  --shell: min(100% - 2rem, 80rem);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --z-header: 20;
  --z-menu: 30;
  --z-mobile-call: 40;
  --z-whatsapp: 45;
  --whatsapp: #00e785;
  --whatsapp-dark: #00d176;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 0.2rem solid var(--white);
  outline-offset: 0.25rem;
}

.rights-section :focus-visible,
.about-section :focus-visible,
.faq-section :focus-visible,
.contact-section :focus-visible {
  outline-color: var(--black);
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  border-bottom: 1px solid oklch(100% 0 0 / 18%);
  background: oklch(14% 0.008 100 / 94%);
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: var(--black);
  box-shadow: 0 0.75rem 2rem oklch(0% 0 0 / 18%);
}

.header-inner {
  width: var(--shell);
  min-height: 5rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.brand {
  position: relative;
  z-index: calc(var(--z-menu) + 1);
  width: min(15rem, 62vw);
}

.brand img {
  width: 100%;
  height: auto;
  transition: filter 180ms ease;
}

.menu-open .brand img {
  filter: brightness(0);
}

.menu-button {
  position: relative;
  z-index: calc(var(--z-menu) + 1);
  width: 3rem;
  height: 3rem;
  padding: 0;
  display: grid;
  place-content: center;
  gap: 0.45rem;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition: transform 250ms var(--ease-out);
}

.menu-open .menu-button {
  border-color: var(--black);
  color: var(--black);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(0.225rem) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-0.225rem) rotate(-45deg);
}

.main-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  padding: 8rem 1rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  background: var(--yellow);
  color: var(--black);
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 380ms var(--ease-out),
    visibility 380ms;
}

.main-nav.is-open {
  visibility: visible;
  clip-path: inset(0 0 0 0);
}

.main-nav a {
  width: 100%;
  padding: 1rem 0;
  border-bottom: 1px solid var(--black);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 12vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.main-nav .nav-cta {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 0;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(8rem, 14vw, 11rem) 1rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px),
    var(--black);
  background-size: 5rem 5rem;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(38rem, 82vw);
  aspect-ratio: 1;
  right: -16rem;
  bottom: -22rem;
  border: clamp(2rem, 6vw, 5rem) solid var(--yellow);
  border-radius: 50%;
  opacity: 0.13;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  width: min(100%, 80rem);
  margin-inline: auto;
  display: grid;
  gap: var(--space-2xl);
}

.hero-copy {
  align-self: center;
}

.hero-kicker,
.section-marker {
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--yellow);
}

.hero-kicker::before {
  content: "";
  width: 2.5rem;
  height: 0.2rem;
  background: currentColor;
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: var(--space-lg);
  font-size: clamp(3.75rem, 12vw, 6rem);
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--yellow);
}

.hero-lede {
  max-width: 40rem;
  margin-bottom: var(--space-xl);
  color: var(--gray-on-dark);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-sm);
}

.button {
  min-height: 3.5rem;
  padding: 0.9rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms ease,
    color 180ms ease;
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  background: var(--yellow);
  color: var(--black);
}

.button-quiet {
  border-color: var(--line-dark);
  color: var(--white);
  justify-content: center;
}

.button-black {
  background: var(--black);
  color: var(--yellow);
}

.hero-note {
  margin: 0.85rem 0 0;
  color: var(--gray-on-dark);
  font-size: 0.9rem;
}

.hero-declaration {
  position: relative;
  width: 100%;
  max-width: 30rem;
  min-width: 0;
  padding: clamp(1.5rem, 5vw, 3rem);
  align-self: center;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0.75rem 0.75rem 0 var(--white);
  transform: rotate(1.5deg);
  animation: declaration-in 700ms var(--ease-out) both;
}

.declaration-seal {
  width: 5.25rem;
  aspect-ratio: 1;
  margin: -0.25rem 0 2.5rem auto;
  display: grid;
  place-content: center;
  border: 0.22rem solid var(--black);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transform: rotate(8deg);
}

.declaration-seal span:first-child {
  font-size: 1.55rem;
}

.declaration-intro {
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.declaration-main {
  max-width: 100%;
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.declaration-foot {
  margin: 0;
  padding-top: 1rem;
  border-top: 2px solid var(--black);
  font-weight: 700;
}

.hero-scroll {
  width: min(100%, 80rem);
  margin: var(--space-2xl) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gray-on-dark);
  font-size: 0.95rem;
  text-decoration: none;
}

.hero-scroll span {
  color: var(--yellow);
  font-size: 1.5rem;
}

.rights-ribbon {
  overflow: hidden;
  border-block: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
}

.ribbon-track {
  width: max-content;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  animation: ribbon 28s linear infinite;
}

.ribbon-track b {
  font-size: 1.6rem;
}

.rights-section {
  padding: var(--space-3xl) 0;
  background: var(--yellow);
  color: var(--black);
}

.rights-intro {
  display: grid;
  gap: var(--space-md);
}

.rights-intro .section-marker {
  margin: 0;
}

.rights-intro h2 {
  max-width: 11ch;
  margin-bottom: var(--space-md);
  font-size: clamp(3.25rem, 10vw, 6rem);
  text-transform: uppercase;
}

.rights-intro > p:last-child {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
}

.issue-list {
  margin-top: clamp(3rem, 8vw, 6rem);
  border-top: 2px solid var(--black);
}

.issue-row {
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  border-bottom: 1px solid var(--black);
}

.issue-number {
  width: fit-content;
  padding: 0.12rem 0.5rem;
  background: var(--black);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.issue-row h3 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.5rem);
}

.issue-row p {
  max-width: 38rem;
  margin: 0;
  color: var(--gray-on-light);
  font-size: 1.05rem;
}

.rights-action {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.rights-action p {
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 0.18rem solid currentColor;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms var(--ease-out);
}

.workers-section {
  padding: var(--space-3xl) 0;
  background: var(--black);
  color: var(--white);
}

.workers-grid {
  display: grid;
  gap: var(--space-2xl);
}

.workers-heading h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--yellow);
  font-size: clamp(3rem, 9vw, 5.5rem);
  text-transform: uppercase;
}

.workers-copy > p {
  max-width: 38rem;
  margin-bottom: var(--space-xl);
  color: var(--gray-on-dark);
  font-size: 1.2rem;
}

.worker-types {
  margin: 0;
  padding: 0;
  list-style: none;
}

.worker-types li {
  min-height: 3.75rem;
  padding: 0.9rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  font-size: 1.1rem;
  font-weight: 700;
}

.worker-types li::after {
  content: "●";
  color: var(--yellow);
  font-size: 0.65rem;
}

.workplace-gallery {
  margin-top: clamp(3rem, 7vw, 6rem);
  display: grid;
  gap: 0.75rem;
}

.workplace-photo {
  position: relative;
  min-height: 18rem;
  margin: 0;
  overflow: hidden;
  background: var(--black-soft);
}

.workplace-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.06);
  transition:
    transform 600ms var(--ease-out),
    filter 300ms ease;
}

.workplace-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 3.5rem;
  padding: 0.65rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
}

.workplace-photo figcaption span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-section {
  padding: var(--space-3xl) 0;
  background: var(--white);
  color: var(--black);
}

.about-grid {
  display: grid;
  gap: var(--space-2xl);
}

.about-monogram {
  min-height: 24rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--yellow);
}

.about-monogram > span {
  font-family: Georgia, serif;
  font-size: clamp(11rem, 48vw, 22rem);
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: -0.1em;
}

.about-monogram p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 8vw, 5rem);
  text-transform: uppercase;
}

.about-lede {
  max-width: 40rem;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.45;
}

.about-copy > p:not(.section-marker, .about-lede) {
  max-width: 40rem;
  color: var(--gray-on-light);
}

.dark-link {
  margin-top: 1rem;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}

.process-section {
  padding: var(--space-3xl) 0;
  background: var(--black-soft);
}

.process-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.process-heading h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--yellow);
  font-size: clamp(3rem, 9vw, 5.5rem);
  text-transform: uppercase;
}

.process-heading p {
  max-width: 32rem;
  margin: 0;
  color: var(--gray-on-dark);
  font-size: 1.15rem;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.process-list li {
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--line-dark);
}

.process-list > li > span {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-content: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
}

.process-list p {
  max-width: 34rem;
  margin: 0;
  color: var(--gray-on-dark);
}

.faq-section {
  padding: var(--space-3xl) 0;
  background: var(--white);
  color: var(--black);
}

.faq-grid {
  display: grid;
  gap: var(--space-2xl);
}

.faq-heading h2 {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 9vw, 5.5rem);
  text-transform: uppercase;
}

.faq-heading p:not(.section-marker) {
  max-width: 36rem;
  margin: 0;
  color: var(--gray-on-light);
  font-size: 1.1rem;
}

.faq-list {
  border-top: 2px solid var(--black);
}

.faq-item {
  border-bottom: 1px solid var(--black);
}

.faq-item summary {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: none;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 180ms var(--ease-out);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 52rem;
  margin: 0 0 1.25rem;
  color: var(--gray-on-light);
  font-size: 1.05rem;
}

.contact-section {
  position: relative;
  padding: var(--space-3xl) 0;
  overflow: hidden;
  background: var(--yellow);
  color: var(--black);
}

.contact-word {
  position: absolute;
  right: -0.04em;
  bottom: -0.2em;
  color: oklch(14% 0.008 100 / 8%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 28vw, 28rem);
  font-weight: 900;
  line-height: 0.7;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  display: grid;
  gap: var(--space-2xl);
}

.contact-grid h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.75rem, 11vw, 6rem);
  text-transform: uppercase;
}

.contact-actions {
  align-self: end;
}

.contact-phone {
  margin-bottom: 1.5rem;
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.contact-phone span {
  margin-bottom: 0.4rem;
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.contact-actions .button {
  max-width: 30rem;
}

.contact-actions > p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  padding: 3rem 1rem 7rem;
  background: var(--black);
  color: var(--gray-on-dark);
}

.footer-main,
.footer-legal {
  width: min(100%, 80rem);
  margin-inline: auto;
  display: grid;
  gap: 2rem;
}

.footer-main {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-main img {
  width: min(22rem, 100%);
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-brand p {
  max-width: 28rem;
  margin: 0;
}

.footer-main address {
  font-style: normal;
}

.footer-main address strong {
  color: var(--yellow);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 700;
}

.footer-legal {
  padding-top: 1.5rem;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-legal p {
  max-width: 60rem;
  margin: 0;
}

.mobile-call {
  position: fixed;
  z-index: var(--z-mobile-call);
  right: max(0.75rem, env(safe-area-inset-right));
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  left: max(0.75rem, env(safe-area-inset-left));
  min-height: 4rem;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0.5rem 1.5rem oklch(0% 0 0 / 28%);
  line-height: 1.2;
  text-decoration: none;
  transition:
    opacity 180ms ease,
    visibility 180ms;
}

.menu-open .mobile-call,
.menu-open .whatsapp-float {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.mobile-call span {
  font-size: 0.85rem;
}

.mobile-call strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
}

.whatsapp-float {
  position: fixed;
  z-index: var(--z-whatsapp);
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(5.25rem + env(safe-area-inset-bottom));
  min-height: 3.5rem;
  padding: 0.35rem 0.85rem 0.35rem 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  border-radius: 100px;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 4px 5px 10px oklch(0% 0 0 / 40%);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  animation: whatsapp-pulse 2.5s ease infinite;
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms ease,
    opacity 180ms ease,
    visibility 180ms;
}

.whatsapp-float svg {
  width: 2.4rem;
  height: 2.4rem;
  flex: none;
  padding: 0.15rem;
}

.whatsapp-float-label {
  padding-right: 0.35rem;
  white-space: nowrap;
}

.whatsapp-float:focus-visible {
  outline: 0.2rem solid #fff;
  outline-offset: 0.25rem;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 4px 5px 10px oklch(0% 0 0 / 40%);
  }
  50% {
    box-shadow:
      4px 5px 10px oklch(0% 0 0 / 40%),
      0 0 0 0.55rem oklch(70% 0.18 155 / 22%);
  }
  100% {
    box-shadow: 4px 5px 10px oklch(0% 0 0 / 40%);
  }
}

@keyframes declaration-in {
  from {
    opacity: 0.4;
    transform: rotate(1.5deg) translateY(1.5rem);
    clip-path: inset(0 0 100% 0);
  }
  to {
    opacity: 1;
    transform: rotate(1.5deg) translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes ribbon {
  to {
    transform: translateX(-50%);
  }
}

@media (hover: hover) {
  .button:hover {
    transform: translateY(-0.2rem);
  }

  .button-primary:hover {
    background: var(--yellow-bright);
  }

  .button-quiet:hover {
    border-color: var(--yellow);
    color: var(--yellow);
  }

  .button-black:hover {
    background: var(--black-soft);
  }

  .text-link:hover span {
    transform: translate(0.2rem, -0.2rem);
  }

  .main-nav a:not(.nav-cta):hover {
    color: var(--yellow-dark);
  }

  .workplace-photo:hover img {
    transform: scale(1.025);
    filter: saturate(1) contrast(1.04);
  }

  .whatsapp-float:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-0.15rem) scale(1.04);
  }

  .whatsapp-float:active {
    transform: scale(0.96);
  }
}

@media (min-width: 48rem) {
  :root {
    --shell: min(100% - 4rem, 80rem);
  }

  .hero {
    padding-inline: 2rem;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .button-primary {
    min-width: 23rem;
  }

  .button-quiet {
    border-color: transparent;
  }

  .rights-intro {
    grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.75fr);
    align-items: end;
  }

  .rights-intro .section-marker {
    grid-column: 1 / -1;
  }

  .rights-intro h2 {
    margin: 0;
  }

  .issue-row {
    padding: 1.75rem 0;
    grid-template-columns: 8rem minmax(14rem, 0.8fr) minmax(20rem, 1fr);
    align-items: center;
    column-gap: 2rem;
  }

  .workers-grid,
  .about-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 8vw, 7rem);
  }

  .workers-heading {
    position: sticky;
    top: 8rem;
    align-self: start;
  }

  .workplace-gallery {
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
    grid-template-rows: repeat(2, minmax(16rem, 1fr));
  }

  .workplace-photo-lead {
    grid-row: 1 / 3;
    min-height: 38rem;
  }

  .about-monogram {
    min-height: 40rem;
  }

  .process-heading {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .process-list li {
    grid-template-columns: 5rem 1fr;
    padding: 2rem 0;
  }

  .footer-main {
    grid-template-columns: 1.4fr 0.7fr 0.5fr;
    align-items: end;
  }

  .footer-legal {
    grid-template-columns: 0.5fr 1.5fr;
  }
}

@media (min-width: 64rem) {
  .site-header {
    position: absolute;
    background: transparent;
  }

  .site-header.is-scrolled {
    position: fixed;
  }

  .header-inner {
    min-height: 6rem;
  }

  .brand {
    width: 21rem;
  }

  .menu-button {
    display: none;
  }

  .main-nav {
    position: static;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 1.6rem;
    background: transparent;
    color: var(--white);
    visibility: visible;
    clip-path: none;
    transition: none;
  }

  .main-nav a {
    width: auto;
    padding: 0.75rem 0;
    border: 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
  }

  .main-nav .nav-cta {
    margin: 0 0 0 0.25rem;
    padding: 0.8rem 1.1rem;
    background: var(--yellow);
    color: var(--black);
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 9rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(25rem, 0.85fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 6rem);
  }

  .hero h1 {
    font-size: clamp(4.5rem, 7vw, 6rem);
  }

  .hero-declaration {
    margin-top: 2rem;
  }

  .mobile-call {
    display: none;
  }

  .whatsapp-float {
    right: max(1.25rem, env(safe-area-inset-right));
    bottom: max(1.25rem, env(safe-area-inset-bottom));
  }

  .whatsapp-float svg {
    width: 2.6rem;
    height: 2.6rem;
  }

  .site-footer {
    padding-bottom: 3rem;
  }
}

@media (min-width: 90rem) {
  .hero {
    padding-bottom: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .ribbon-track {
    transform: none;
  }

  .whatsapp-float {
    animation: none;
  }
}

@media print {
  .site-header,
  .mobile-call,
  .whatsapp-float,
  .hero-scroll,
  .rights-ribbon {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  section,
  footer {
    break-inside: avoid;
  }
}
