@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --acid: #b7ff00;
  --acid-soft: #d9ff66;
  --graphite: #202b2e;
  --graphite-light: #4d5c5f;
  --ink: #111819;
  --paper: #f7f8f2;
  --white: #ffffff;
  --line: rgba(32, 43, 46, 0.16);
  --shadow: 0 24px 60px rgba(21, 35, 37, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: min(1180px, calc(100% - 48px));
  --font-display: "Space Grotesk", "Arial Black", sans-serif;
  --font-body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--acid);
  box-shadow: 0 0 16px var(--acid);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1240px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 18px;
  transform: translateX(-50%);
  transition: 240ms ease;
}

.site-header.is-scrolled {
  top: 12px;
  border-color: rgba(32, 43, 46, 0.09);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 34px rgba(22, 39, 40, 0.1);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 192px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover {
  color: #6c9700;
}

.nav-cta {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--graphite);
}

.nav-cta:hover {
  color: var(--acid) !important;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 150px 0 88px;
  background:
    radial-gradient(circle at 84% 20%, rgba(183, 255, 0, 0.35), transparent 24rem),
    linear-gradient(145deg, #fbfcf7 0%, #f2f5eb 100%);
}

.hero::after {
  position: absolute;
  right: -190px;
  bottom: -270px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(32, 43, 46, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid,
.section {
  width: var(--container);
  margin-inline: auto;
}

.hero-grid {
  display: grid;
  min-height: 560px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 44px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #648c00;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 {
  max-width: 740px;
  margin-bottom: 24px;
  color: var(--graphite);
  font-size: clamp(4.2rem, 7vw, 7.1rem);
  font-weight: 700;
  letter-spacing: -0.095em;
  line-height: 0.9;
}

.hero-word-wrap {
  position: relative;
  display: block;
  min-height: 1.15em;
  color: #74a500;
}

.hero-word-wrap svg {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: -6px;
  width: 100%;
  overflow: visible;
}

.hero-word-wrap path {
  fill: none;
  stroke: var(--acid);
  stroke-linecap: round;
  stroke-width: 10px;
}

.hero-word {
  display: block;
  transform-origin: left center;
}

.hero-word.is-changing {
  animation: word-pop 420ms ease;
}

.hero-description {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--graphite-light);
  font-size: 1.1rem;
  line-height: 1.65;
}

.hero-actions,
.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: 180ms ease;
}

.button span,
.text-link span,
.nav-cta span {
  font-size: 1.15em;
}

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

.button-primary {
  color: var(--graphite);
  background: var(--acid);
  box-shadow: 0 12px 28px rgba(139, 194, 0, 0.22);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(139, 194, 0, 0.34);
}

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

.button-dark:hover {
  color: var(--acid);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.text-link:hover {
  color: #668f00;
}

.hero-trust {
  gap: 14px;
  margin-top: 46px;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatars span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-left: -8px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  color: var(--graphite);
  background: var(--acid);
  font-size: 0.66rem;
  font-weight: 700;
}

.trust-avatars span:first-child {
  margin-left: 0;
  color: var(--white);
  background: var(--graphite);
}

.trust-avatars span:nth-child(2) {
  color: var(--acid);
  background: #405053;
}

.hero-trust p {
  margin: 0;
  color: var(--graphite-light);
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero-art {
  position: relative;
  min-height: 580px;
}

.hero-art::before {
  position: absolute;
  top: 100px;
  right: 38px;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 22px 60px rgba(152, 210, 0, 0.22);
  content: "";
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(32, 43, 46, 0.25);
  border-radius: 50%;
}

.orbit-one {
  top: 67px;
  right: 4px;
  width: 477px;
  height: 477px;
  animation: spin 20s linear infinite;
}

.orbit-two {
  top: 31px;
  right: 79px;
  width: 343px;
  height: 535px;
  transform: rotate(52deg);
  animation: orbit-pulse 7s ease-in-out infinite;
}

.hero-mascot {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 18px;
  width: 430px;
  filter: drop-shadow(0 22px 19px rgba(32, 43, 46, 0.22));
  animation: mascot-float 5s ease-in-out infinite;
}

.hero-sticker,
.hero-note {
  position: absolute;
  z-index: 4;
  border: 1px solid var(--graphite);
  box-shadow: 8px 8px 0 rgba(32, 43, 46, 0.12);
  font-family: var(--font-display);
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-sticker {
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-align: center;
  transform: rotate(-9deg);
}

.sticker-top {
  top: 10px;
  right: 3px;
  width: 132px;
  height: 132px;
  color: var(--white);
  background: var(--graphite);
  font-size: 0.8rem;
}

.sticker-top strong {
  color: var(--acid);
}

.sticker-side {
  top: 256px;
  left: -18px;
  width: 112px;
  height: 112px;
  color: var(--graphite);
  background: var(--white);
  font-size: 1rem;
  transform: rotate(12deg);
}

.hero-note {
  right: -5px;
  bottom: 25px;
  padding: 15px 44px 15px 16px;
  color: var(--graphite);
  background: var(--white);
  font-size: 0.75rem;
  transform: rotate(-5deg);
}

.hero-note span {
  position: absolute;
  right: 14px;
  bottom: 15px;
  color: #6e9d00;
  font-size: 1.2rem;
}

.hero-spark {
  position: absolute;
  z-index: 3;
  color: var(--graphite);
  font-size: 3.6rem;
  line-height: 1;
}

.spark-one {
  top: 43px;
  left: 52px;
  color: var(--acid);
  animation: spin 9s linear infinite;
}

.spark-two {
  right: -12px;
  bottom: 168px;
  font-size: 2.8rem;
  animation: spin 7s linear infinite reverse;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--graphite);
  color: var(--acid);
  background: var(--graphite);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
  animation: marquee 26s linear infinite;
}

.marquee span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.marquee i {
  color: var(--acid);
  font-style: normal;
}

.section {
  padding-block: 118px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.textile-copy h2,
.process-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin-bottom: 16px;
  color: var(--graphite);
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  letter-spacing: -0.09em;
  line-height: 0.98;
}

h2 span {
  color: #78a800;
}

.section-heading > p:last-child,
.textile-copy > p,
.process-copy > p,
.about-copy > p,
.contact-copy > p {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--graphite-light);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.service-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
  transition: 280ms ease;
}

.service-card:hover {
  border-color: rgba(120, 168, 0, 0.5);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.service-card-featured {
  background: var(--acid);
}

.service-card-dark {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--graphite);
}

.service-card-dark .eyebrow {
  color: var(--acid);
}

.service-card-dark h3 {
  color: var(--white);
}

.service-card-dark a {
  color: var(--acid);
  font-size: 0.84rem;
  font-weight: 700;
}

.service-number {
  color: rgba(32, 43, 46, 0.48);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 28px 0 20px;
  border: 1px solid rgba(32, 43, 46, 0.2);
  border-radius: 50%;
  color: var(--graphite);
  font-size: 1.6rem;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.service-card p:not(.eyebrow) {
  margin: 0;
  color: var(--graphite-light);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #6d9900;
  font-size: 1.2rem;
}

.work-section {
  padding-top: 12px;
}

.section-heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row > p {
  max-width: 370px;
  margin-bottom: 8px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 440px 360px;
  gap: 16px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--graphite);
}

.work-card-wide {
  grid-column: 1 / -1;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.work-card:hover img {
  transform: scale(1.055);
}

.work-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(13, 20, 21, 0.82));
  grid-template-columns: 1fr auto;
}

.work-overlay p {
  margin-bottom: 7px;
  color: var(--acid);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  grid-column: 1;
}

.work-overlay h3 {
  max-width: 420px;
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
  grid-column: 1;
}

.work-overlay span {
  align-self: end;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 1rem;
  grid-column: 2;
  grid-row: 1 / span 2;
}

.work-callout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-radius: var(--radius-md);
  color: var(--graphite);
  background: var(--acid);
}

.work-callout p {
  max-width: 480px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 0.96;
}

.work-callout a {
  font-size: 0.84rem;
  font-weight: 700;
}

.textile-section {
  display: grid;
  width: min(1320px, calc(100% - 32px));
  margin: 16px auto 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #eaf0e1;
  grid-template-columns: 1fr 1fr;
}

.textile-visual {
  position: relative;
  min-height: 660px;
  background: var(--acid);
}

.textile-photo {
  position: absolute;
  overflow: hidden;
  border: 12px solid var(--white);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 32px rgba(32, 43, 46, 0.18);
}

.textile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.textile-photo span {
  position: absolute;
  right: 10px;
  bottom: 8px;
  padding: 5px 9px;
  color: var(--white);
  background: var(--graphite);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.textile-photo-front {
  top: 64px;
  left: 12%;
  width: 48%;
  height: 370px;
  transform: rotate(-6deg);
}

.textile-photo-back {
  right: 9%;
  bottom: 46px;
  width: 47%;
  height: 350px;
  transform: rotate(7deg);
}

.textile-badge {
  position: absolute;
  right: 9%;
  top: 56px;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 1px solid var(--graphite);
  border-radius: 50%;
  color: var(--white);
  background: var(--graphite);
  font-family: var(--font-display);
  font-size: 0.86rem;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(12deg);
}

.textile-badge strong {
  color: var(--acid);
}

.textile-copy {
  align-self: center;
  padding: 72px clamp(34px, 6vw, 88px);
}

.textile-copy h2 {
  font-size: clamp(3.3rem, 5.2vw, 5.8rem);
}

.check-list {
  display: grid;
  padding: 0;
  margin: 28px 0 34px;
  gap: 10px;
  list-style: none;
}

.check-list li {
  color: var(--graphite-light);
  font-size: 0.9rem;
  font-weight: 600;
}

.check-list li::before {
  margin-right: 10px;
  color: #6d9800;
  content: "✳";
}

.process-section {
  margin-top: 108px;
  color: var(--white);
  background: var(--graphite);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 68px;
}

.process-copy {
  align-self: center;
}

.process-copy .eyebrow {
  color: var(--acid);
}

.process-copy h2 {
  color: var(--white);
}

.process-copy h2 span {
  color: var(--acid);
}

.process-copy > p {
  color: rgba(255, 255, 255, 0.66);
}

.process-stats {
  display: flex;
  gap: 42px;
  margin-top: 38px;
}

.process-stats div {
  display: grid;
  gap: 3px;
}

.process-stats strong {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 3.2rem;
  letter-spacing: -0.1em;
}

.process-stats span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 80px 1fr;
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list span {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.process-list h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) 1.14fr;
  align-items: center;
  gap: clamp(54px, 8vw, 108px);
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--acid);
}

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

.about-image-tag {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  border: 1px solid var(--acid);
  border-radius: 50%;
  color: var(--white);
  background: var(--graphite);
  font-family: var(--font-display);
  font-size: 0.82rem;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-9deg);
}

.about-image-tag strong {
  color: var(--acid);
}

.about-copy blockquote {
  max-width: 680px;
  padding: 22px 0 22px 24px;
  margin: 28px 0;
  border-left: 4px solid var(--acid);
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.28;
}

.contact-section {
  background: var(--acid);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
}

.contact-copy {
  align-self: center;
}

.contact-copy .eyebrow {
  color: rgba(32, 43, 46, 0.62);
}

.contact-copy h2 {
  font-size: clamp(3.5rem, 6vw, 6.3rem);
}

.contact-copy h2 span {
  color: var(--white);
  text-shadow: 3px 3px 0 var(--graphite);
}

.contact-copy > p {
  color: rgba(32, 43, 46, 0.72);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  font-size: 0.88rem;
  font-weight: 700;
}

.whatsapp-link span,
.floating-whatsapp span {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--acid);
  background: var(--graphite);
  font-size: 0.68rem;
  font-weight: 700;
}

.whatsapp-link span {
  width: 34px;
  height: 34px;
}

.contact-form {
  display: grid;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 12px 12px 0 rgba(32, 43, 46, 0.15);
  gap: 15px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  color: var(--graphite);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(32, 43, 46, 0.22);
  border-radius: 0;
  outline: 0;
  color: var(--graphite);
  background: transparent;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select {
  height: 42px;
}

.contact-form textarea {
  padding-top: 10px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #78a800;
}

.contact-form .button {
  margin-top: 5px;
}

.form-note {
  margin: 0;
  color: var(--graphite-light);
  font-size: 0.72rem;
  text-align: center;
}

.site-footer {
  padding: 54px max(24px, calc((100% - 1180px) / 2)) 22px;
  color: rgba(255, 255, 255, 0.72);
  background: #151e20;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-top {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-top .brand {
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--white);
}

.footer-top .brand img {
  width: 174px;
}

.footer-top p,
.footer-bottom p {
  margin: 0;
}

.footer-top p {
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
}

.footer-grid {
  display: grid;
  padding-block: 34px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.footer-label {
  margin-bottom: 12px;
  color: var(--acid);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid address {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.65;
  transition: color 180ms ease;
}

.footer-grid a:hover {
  color: var(--acid);
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 22;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 12px 30px rgba(28, 42, 43, 0.25);
  transition: 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) rotate(-6deg);
}

.floating-whatsapp span {
  width: 38px;
  height: 38px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.25, 1);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 190ms;
}

.reveal-delay-3 {
  transition-delay: 270ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes orbit-pulse {
  0%, 100% { transform: rotate(52deg) scale(1); }
  50% { transform: rotate(52deg) scale(1.04); }
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

@keyframes word-pop {
  0% { opacity: 1; transform: translateY(0); }
  45% { opacity: 0; transform: translateY(-16px); }
  55% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1000px) {
  :root {
    --container: min(100% - 36px, 760px);
  }

  .site-header {
    width: calc(100% - 20px);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--graphite);
    gap: 4px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 2px;
    background: var(--acid);
    transition: 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: -1px;
    right: -1px;
    display: flex;
    width: min(420px, 92vw);
    height: 100vh;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 30px;
    border-radius: 24px 0 0 24px;
    background: var(--graphite);
    box-shadow: -16px 0 36px rgba(0, 0, 0, 0.16);
    flex-direction: column;
    gap: 22px;
    transform: translateX(105%);
    transition: transform 300ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.4rem;
  }

  .nav-cta {
    margin-top: 10px;
    color: var(--graphite) !important;
    background: var(--acid);
  }

  .hero {
    min-height: auto;
    padding-top: 135px;
  }

  .hero-grid {
    display: block;
    min-height: auto;
  }

  h1 {
    max-width: 720px;
  }

  .hero-art {
    width: min(560px, 100%);
    min-height: 535px;
    margin: 24px auto 0;
  }

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

  .section-heading-row {
    display: block;
  }

  .section-heading-row > p {
    max-width: 580px;
    margin-top: 18px;
  }

  .textile-section {
    grid-template-columns: 1fr;
  }

  .textile-visual {
    min-height: 580px;
  }

  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-section {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 34px;
  }

  .about-image img {
    min-height: 470px;
  }
}

@media (max-width: 700px) {
  :root {
    --container: calc(100% - 28px);
    --radius-lg: 24px;
  }

  .brand img {
    width: 164px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  h1 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

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

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

  .hero-trust {
    margin-top: 34px;
  }

  .hero-art {
    min-height: 405px;
    margin-top: 42px;
  }

  .hero-art::before {
    top: 72px;
    right: 4%;
    width: 83vw;
    height: 83vw;
  }

  .hero-mascot {
    right: 4%;
    bottom: 0;
    width: 88%;
  }

  .orbit-one {
    top: 47px;
    right: -4%;
    width: 92vw;
    height: 92vw;
  }

  .orbit-two {
    top: 28px;
    right: 12%;
    width: 66vw;
    height: 100vw;
  }

  .sticker-top {
    top: -5px;
    right: -4px;
    width: 103px;
    height: 103px;
    font-size: 0.65rem;
  }

  .sticker-side {
    top: 194px;
    left: -5px;
    width: 88px;
    height: 88px;
    font-size: 0.78rem;
  }

  .hero-note {
    right: 0;
    bottom: 0;
    font-size: 0.62rem;
  }

  .spark-one {
    top: 20px;
    left: 14px;
  }

  .spark-two {
    right: -7px;
    bottom: 119px;
  }

  .section {
    padding-block: 80px;
  }

  .section-heading h2,
  .textile-copy h2,
  .process-copy h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

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

  .service-card {
    min-height: 265px;
  }

  .work-grid {
    display: block;
  }

  .work-card,
  .work-callout {
    min-height: 320px;
    margin-bottom: 14px;
  }

  .work-card-wide {
    min-height: 400px;
  }

  .work-callout {
    min-height: 260px;
  }

  .textile-section {
    width: calc(100% - 20px);
  }

  .textile-visual {
    min-height: 465px;
  }

  .textile-photo-front {
    top: 55px;
    left: 5%;
    width: 56%;
    height: 280px;
  }

  .textile-photo-back {
    right: 4%;
    bottom: 35px;
    width: 54%;
    height: 270px;
  }

  .textile-badge {
    top: 22px;
    right: 2%;
    width: 105px;
    height: 105px;
    font-size: 0.7rem;
  }

  .textile-copy {
    padding: 48px 24px 54px;
  }

  .process-section {
    margin-top: 74px;
  }

  .process-stats {
    gap: 25px;
  }

  .process-list li {
    grid-template-columns: 58px 1fr;
  }

  .about-section {
    display: block;
  }

  .about-image {
    margin-bottom: 42px;
  }

  .about-image img {
    min-height: 420px;
  }

  .contact-grid {
    gap: 36px;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
