/*
Theme Name: Cletus Studio One Page
Theme URI: https://cletus32.com/
Author: Cletus Studio Creativo
Description: A multilingual one-page WordPress theme for Cletus Studio with rotating services, brand assets, and social links.
Version: 1.0.20
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: cletus-studio
*/

@font-face {
  font-family: "Akira";
  src: url("assets/fonts/Akira%20Expanded%20Super%20Bold.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Akira Demo";
  src: url("assets/fonts/Akira%20Expanded%20Demo.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Star Avenue";
  src: url("assets/fonts/staravenue.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --cletus-bg: #002f2b;
  --cletus-bg-deep: #00231f;
  --cletus-green: #46695a;
  --cletus-lime: #efff3a;
  --cletus-white: #f3f3f0;
  --cletus-muted: rgba(243, 243, 240, 0.72);
  --cletus-line: rgba(239, 255, 58, 0.32);
  --font-display: "Akira", "Akira Demo", sans-serif;
  --font-copy: "Akira Demo", "Akira", sans-serif;
  --font-decor: "Star Avenue", "Akira", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--cletus-bg);
  cursor: url("assets/images/cletus-cursor.svg") 19 8, auto;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(239, 255, 58, 0.08), transparent 24rem),
    linear-gradient(135deg, var(--cletus-bg) 0%, var(--cletus-bg-deep) 100%);
  color: var(--cletus-white);
  font-family: var(--font-copy);
}

a,
button {
  cursor: url("assets/images/cletus-cursor.svg") 19 8, pointer;
}

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

button {
  font: inherit;
}

.cletus-page {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.cletus-page::before {
  position: fixed;
  inset: auto -10vw -26vw -8vw;
  z-index: -2;
  height: min(64vw, 50rem);
  background: url("assets/images/up%20part.png") center / contain no-repeat;
  content: "";
  opacity: 0.16;
  transform: rotate(-4deg);
  pointer-events: none;
}

.cletus-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.8rem) clamp(1.1rem, 4vw, 4.5rem);
  background: linear-gradient(180deg, rgba(0, 47, 43, 0.94), rgba(0, 47, 43, 0));
}

.brand-link {
  width: clamp(7rem, 13vw, 12.5rem);
  flex: 0 0 auto;
  text-decoration: none;
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(2.5rem, 1fr));
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--cletus-line);
  border-radius: 999px;
  background: rgba(0, 35, 31, 0.64);
  backdrop-filter: blur(12px);
}

.language-switcher button {
  min-width: 2.8rem;
  min-height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cletus-muted);
  font-family: var(--font-display);
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.language-switcher button.is-active {
  background: var(--cletus-lime);
  color: var(--cletus-bg);
}

.hero {
  display: grid;
  min-height: 92vh;
  padding: clamp(6.6rem, 12vh, 8.8rem) clamp(1.1rem, 4vw, 4.5rem) clamp(3.8rem, 7vh, 5.8rem);
  place-items: center;
}

.hero-inner {
  width: min(86rem, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(18rem, 0.68fr);
  align-items: center;
  gap: clamp(2.5rem, 5.4vw, 5rem);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--cletus-lime);
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 1.4vw, 1rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.82em;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cletus-lime);
  content: "";
  flex: 0 0 auto;
}

h1 {
  margin: 0;
  color: var(--cletus-white);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9.6vw, 9.4rem);
  line-height: 0.83;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 46rem;
  margin: clamp(1.2rem, 3vw, 2.2rem) 0 0;
  color: var(--cletus-muted);
  font-size: clamp(1rem, 1.75vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--cletus-line);
  border-radius: 999px;
  color: var(--cletus-white);
  font-family: var(--font-display);
  font-size: 0.76rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-actions a:first-child {
  border-color: var(--cletus-lime);
  background: var(--cletus-lime);
  color: var(--cletus-bg);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: clamp(20rem, 36vw, 30rem);
  place-items: center;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  color: var(--cletus-lime);
  font-family: "Star Avenue", var(--font-display);
  font-size: clamp(8rem, 18vw, 15rem);
  line-height: 1;
}

.hero-visual::before {
  left: -0.5rem;
  top: 5%;
  content: "{";
}

.hero-visual::after {
  right: -0.5rem;
  bottom: 7%;
  content: "}";
}

.lego {
  width: clamp(9rem, 18vw, 14rem);
  transform: translateY(-1.8rem);
  filter: drop-shadow(0 2rem 2.5rem rgba(0, 0, 0, 0.35));
}

.logo-bolt {
  position: absolute;
  right: 11%;
  bottom: 6%;
  width: clamp(8rem, 17vw, 15rem);
  transform: rotate(-2deg);
}

.services {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--cletus-line);
  border-bottom: 1px solid var(--cletus-line);
  background: rgba(0, 35, 31, 0.5);
}

.studio-info {
  width: min(86rem, calc(100% - 2.2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4.8rem, 8vw, 7rem);
}

.info-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.info-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.info-intro h2 {
  margin: 0;
  color: var(--cletus-white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.info-intro p:not(.eyebrow),
.process-grid p,
.principles p {
  margin: 0;
  color: var(--cletus-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.process-panel {
  margin-top: clamp(3rem, 7vw, 6rem);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--cletus-lime);
  font-family: var(--font-display);
  font-size: clamp(0.86rem, 1.5vw, 1.08rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 0.8em;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cletus-lime);
  content: "";
  flex: 0 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--cletus-line);
  background: var(--cletus-line);
}

.process-grid article,
.principles article,
.quote-grid p {
  background: rgba(0, 35, 31, 0.74);
}

.process-grid article {
  min-height: 17rem;
  padding: clamp(1.2rem, 2vw, 1.8rem);
}

.process-grid span {
  display: block;
  margin-bottom: 2rem;
  color: var(--cletus-lime);
  font-family: var(--font-display);
  font-size: 0.88rem;
}

.process-grid h3,
.principles h3 {
  margin: 0 0 0.85rem;
  color: var(--cletus-white);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.55rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.6rem, 4vw, 3rem);
}

.principles article {
  min-height: 12rem;
  padding: clamp(1.1rem, 2vw, 1.55rem);
  border: 1px solid rgba(239, 255, 58, 0.18);
}

.quote-wall {
  margin-top: clamp(3.2rem, 7vw, 6rem);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(10rem, 1fr));
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
}

.quote-grid p {
  min-height: 10rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(239, 255, 58, 0.18);
  color: var(--cletus-white);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.35;
}

.signature {
  display: grid;
  grid-template-columns: minmax(12rem, 26rem) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: center;
  margin-top: clamp(3.5rem, 7vw, 6rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--cletus-line);
}

.signature img {
  width: min(100%, 25rem);
}

.signature p {
  margin: 0 0 0.75rem;
  color: var(--cletus-lime);
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  text-transform: uppercase;
}

.signature h2 {
  margin: 0;
  color: var(--cletus-white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: cletus-marquee 72s linear infinite;
}

.service-group {
  display: flex;
  align-items: center;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(18rem, 42vw, 44rem);
  height: clamp(4.1rem, 7vw, 6.4rem);
  padding: 0 1.25rem;
}

.service-item img {
  width: 100%;
  max-height: 5.5rem;
  object-fit: contain;
}

.service-text {
  display: none;
  align-items: center;
  gap: clamp(0.55rem, 1.5vw, 1.1rem);
  color: var(--cletus-green);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.2vw, 5.9rem);
  line-height: 0.86;
  white-space: nowrap;
  text-transform: uppercase;
}

.service-text::before {
  width: 0.48em;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cletus-lime);
  content: "";
  flex: 0 0 auto;
}

html:not([data-lang="de"]) .service-item img {
  display: none;
}

html:not([data-lang="de"]) .service-text {
  display: flex;
}

@keyframes cletus-marquee {
  from {
    transform: translateX(0);
  }

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

.about {
  display: grid;
  grid-template-columns: minmax(14rem, 0.62fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  width: min(86rem, calc(100% - 2.2rem));
  margin: 0 auto;
  padding: clamp(3.8rem, 8vw, 7rem) 0 clamp(4.8rem, 9vw, 8rem);
  align-items: center;
}

.about-mark {
  width: min(100%, 28rem);
}

.about-copy {
  max-width: 47rem;
}

.about h2 {
  margin: 0;
  color: var(--cletus-lime);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.6vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about p {
  margin: 1.15rem 0 0;
  color: var(--cletus-muted);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  line-height: 1.55;
}

.site-footer {
  display: grid;
  gap: 1.5rem;
  padding: 0 clamp(1.1rem, 4vw, 4.5rem) clamp(2rem, 4vw, 3.4rem);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.15rem;
  min-height: 3.15rem;
  border: 1px solid var(--cletus-line);
  border-radius: 50%;
  color: var(--cletus-white);
  font-family: var(--font-display);
  font-size: 0.72rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  background: var(--cletus-lime);
  color: var(--cletus-bg);
  transform: translateY(-0.18rem);
}

.footer-lockup {
  justify-self: center;
  width: min(100%, 48rem);
  opacity: 0.92;
}

.footer-note {
  margin: 0;
  color: rgba(243, 243, 240, 0.62);
  font-size: 0.88rem;
  text-align: center;
}

[data-i18n] {
  transition: opacity 180ms ease;
}

.is-switching [data-i18n] {
  opacity: 0;
}

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

@media (max-width: 840px) {
  .cletus-header {
    align-items: flex-start;
  }

  .hero {
    padding-top: 7rem;
    place-items: start center;
  }

  .hero-inner,
  .info-intro,
  .signature {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 18rem;
    order: -1;
  }

  .hero-copy {
    text-align: left;
  }

  .about-mark {
    width: min(70vw, 18rem);
  }
}

@media (max-width: 560px) {
  .cletus-header {
    position: absolute;
    flex-direction: column;
  }

  .brand-link {
    width: 10.5rem;
  }

  .hero {
    min-height: auto;
    padding-top: 9.4rem;
  }

  .hero-actions a {
    width: 100%;
  }

  .service-track {
    animation-duration: 58s;
  }

  .service-item {
    min-width: 88vw;
  }

  .socials {
    justify-content: flex-start;
  }
}

/* Cletus editorial layout overrides */
.cletus-header {
  align-items: flex-start;
  padding: clamp(0.8rem, 1.4vw, 1.35rem) clamp(1rem, 3vw, 2.2rem);
}

.brand-link {
  width: clamp(5rem, 8vw, 8.4rem);
}

.language-switcher {
  grid-template-columns: repeat(3, minmax(2rem, 1fr));
  gap: 0.18rem;
  padding: 0.2rem;
}

.language-switcher button {
  min-width: 2.2rem;
  min-height: 1.55rem;
  font-size: 0.58rem;
}

.hero {
  min-height: min(100svh, 54rem);
  padding: clamp(5rem, 10vh, 7rem) clamp(1rem, 4vw, 4.5rem) clamp(2.5rem, 5vw, 4rem);
  place-items: center;
}

.hero-inner {
  width: min(112rem, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.54fr);
  gap: clamp(2rem, 4vw, 4.5rem);
}

h1 {
  font-size: clamp(5.4rem, 11vw, 14.5rem);
  line-height: 0.82;
}

.hero-subtitle {
  max-width: 42rem;
  font-size: clamp(1.02rem, 1.25vw, 1.35rem);
}

.hero-visual {
  min-height: clamp(22rem, 32vw, 32rem);
}

.hero-visual::before,
.hero-visual::after {
  display: none;
}

.hero-visual::before {
  display: block;
  right: 0;
  left: auto;
  top: 5%;
  color: var(--cletus-lime);
  content: "{";
  font-size: clamp(8rem, 13vw, 15rem);
}

.lego {
  width: clamp(8.5rem, 13vw, 13rem);
  transform: translate(-1rem, -2.4rem);
}

.logo-bolt {
  right: 8%;
  bottom: 8%;
  width: clamp(9rem, 16vw, 16rem);
}

.services {
  border-top: 0;
  border-bottom: 0;
  background: rgba(0, 25, 22, 0.62);
}

.service-track {
  animation-duration: 92s;
}

.service-item {
  min-width: clamp(22rem, 36vw, 39rem);
  height: clamp(3.2rem, 4.9vw, 5.1rem);
}

.service-text {
  font-size: clamp(2rem, 3.8vw, 4.2rem);
}

.studio-info {
  width: min(100rem, calc(100% - 2rem));
  padding-top: clamp(2.4rem, 5vw, 4.8rem);
}

.hello-panel {
  position: relative;
  max-width: 58rem;
  margin-inline: clamp(0rem, 4vw, 2.5rem) auto;
}

.hello-panel h2 {
  margin: 0 0 0.7rem;
  color: var(--cletus-lime);
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 11vw, 10.5rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hello-panel h2::after {
  content: "!";
  margin-left: 0.08em;
  color: rgba(0, 14, 13, 0.8);
}

.hello-copy {
  display: grid;
  gap: 1.35rem;
}

.hello-copy p {
  margin: 0;
  color: var(--cletus-white);
  font-size: clamp(1.08rem, 1.55vw, 1.65rem);
  line-height: 1.18;
  text-wrap: pretty;
}

.brand-statement {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, max-content) auto;
  justify-content: center;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.6rem);
  min-height: clamp(24rem, 48vw, 42rem);
  margin-top: clamp(2.5rem, 6vw, 5rem);
  overflow: hidden;
}

.brand-statement::before {
  position: absolute;
  inset: 50% auto auto 50%;
  color: rgba(70, 105, 90, 0.18);
  content: "clts";
  font-family: var(--font-display);
  font-size: clamp(18rem, 42vw, 45rem);
  line-height: 0.72;
  text-transform: uppercase;
  transform: translate(-50%, -48%);
}

.brand-statement span {
  position: relative;
  z-index: 1;
  color: rgba(239, 255, 58, 0.55);
  font-family: "Star Avenue", var(--font-display);
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 1;
}

.brand-statement h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--cletus-lime);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7.2vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  white-space: pre-line;
}

.portfolio-carousel {
  overflow: hidden;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(239, 255, 58, 0.18);
  background: rgba(0, 73, 67, 0.58);
}

.portfolio-track {
  display: flex;
  width: max-content;
  animation: cletus-portfolio 42s linear infinite;
}

.portfolio-group {
  display: flex;
  gap: clamp(0.35rem, 0.8vw, 0.75rem);
  padding: clamp(0.45rem, 0.9vw, 0.85rem);
}

.portfolio-group img {
  width: clamp(9.5rem, 15vw, 15.5rem);
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

@keyframes cletus-portfolio {
  from {
    transform: translateX(0);
  }

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

.process-panel {
  position: relative;
  margin-top: clamp(3.2rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.process-panel > h2 {
  margin: 0 0 clamp(1.6rem, 4vw, 3rem);
  color: var(--cletus-lime);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 8.8rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  border: 0;
  background: transparent;
}

.process-grid article {
  position: relative;
  display: grid;
  min-height: clamp(16rem, 26vw, 24rem);
  padding: clamp(3.8rem, 7vw, 7rem) clamp(1.1rem, 2vw, 1.8rem) clamp(1.4rem, 2.5vw, 2.2rem);
  align-content: center;
  background: rgba(0, 55, 50, 0.42);
  clip-path: polygon(7% 9%, 96% 5%, 94% 92%, 64% 88%, 40% 94%, 6% 91%, 3% 50%);
}

.process-grid article::before {
  position: absolute;
  inset: 0.8rem;
  z-index: -1;
  border: 0.3rem solid rgba(0, 16, 14, 0.85);
  border-radius: 44% 4% 9% 7%;
  content: "";
  transform: rotate(1.5deg);
}

.process-grid h3 {
  color: var(--cletus-green);
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  text-align: center;
}

.process-grid p {
  color: var(--cletus-white);
  font-size: clamp(0.95rem, 1.25vw, 1.25rem);
  line-height: 1.25;
  text-align: center;
}

.how-work {
  margin: clamp(2rem, 4vw, 3.2rem) 2vw 0 auto;
  color: rgba(0, 14, 13, 0.86);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 8rem);
  line-height: 0.85;
  text-align: right;
  text-transform: uppercase;
}

.principles {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.8rem, 1.5vw, 1.1rem);
}

.principles article {
  min-height: 0;
  padding: clamp(0.9rem, 1.7vw, 1.35rem) clamp(1rem, 2vw, 1.6rem);
  border: 0;
  border-radius: 0.8rem;
  background: rgba(0, 73, 67, 0.72);
}

.principles h3 {
  margin-bottom: 0.2rem;
  color: var(--cletus-lime);
  font-size: clamp(1.45rem, 3vw, 3rem);
}

.principles p {
  color: var(--cletus-white);
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  line-height: 1.2;
}

.quote-wall {
  display: grid;
  grid-template-columns: minmax(14rem, 0.65fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: start;
}

.quote-wall h2 {
  position: sticky;
  top: 6rem;
  margin: 0;
  color: var(--cletus-lime);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  overflow: visible;
}

.quote-grid p {
  min-height: 0;
  border-radius: 0.55rem;
  background: rgba(239, 255, 58, 0.95);
  color: var(--cletus-bg);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 700;
}

.team-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(12rem, 20rem));
  gap: clamp(1.5rem, 4vw, 4rem);
  justify-content: end;
  margin-top: clamp(2.5rem, 6vw, 5rem);
}

.team-strip figure {
  margin: 0;
}

.team-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.team-strip figcaption {
  margin-top: 0.45rem;
  color: var(--cletus-lime);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.7rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.signature {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1rem;
  min-height: clamp(26rem, 50vw, 42rem);
  align-content: center;
  text-align: center;
}

.signature img {
  width: min(11rem, 38vw);
  opacity: 0.58;
}

.signature p {
  color: rgba(0, 14, 13, 0.82);
}

.signature h2 {
  color: var(--cletus-white);
  font-size: clamp(4.5rem, 12vw, 12rem);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-inner,
  .quote-wall {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 15rem;
  }

  .process-grid,
  .quote-grid,
  .team-strip {
    grid-template-columns: 1fr;
  }

  .quote-wall h2 {
    position: static;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .hello-panel h2,
  .process-panel > h2,
  .quote-wall h2,
  .signature h2 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .portfolio-group img {
    width: 10.5rem;
  }
}

/* Final PDF-directed repair: keep the page poster-like, vertical, and multilingual. */
.cletus-page {
  width: 100%;
  overflow: hidden;
}

.cletus-header {
  left: 50%;
  width: min(100%, 74rem);
  transform: translateX(-50%);
}

.hero {
  min-height: 100svh;
  padding-top: clamp(5.4rem, 9vh, 7.2rem);
  padding-bottom: clamp(2rem, 5vh, 4rem);
}

.hero-inner {
  position: relative;
  display: block;
  width: min(62rem, calc(100vw - 2rem));
  min-height: clamp(34rem, 76vh, 46rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 44rem);
  padding-top: clamp(1.5rem, 6vh, 4rem);
}

.hero-copy .eyebrow {
  margin-bottom: 0.65rem;
  font-size: clamp(0.72rem, 1.1vw, 0.95rem);
}

h1 {
  font-size: clamp(5.6rem, 13vw, 10.5rem);
}

.hero-subtitle {
  max-width: 34rem;
  color: var(--cletus-white);
  font-size: clamp(0.82rem, 1.08vw, 1rem);
  line-height: 1.45;
}

.hero-actions {
  gap: 0.6rem;
  margin-top: 1.45rem;
}

.hero-actions a {
  min-height: 2.35rem;
  padding: 0.6rem 0.95rem;
  font-size: 0.58rem;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  right: clamp(-1rem, -2vw, 0rem);
  top: clamp(4rem, 11vh, 7rem);
  width: clamp(17rem, 31vw, 26rem);
  min-height: clamp(19rem, 34vw, 27rem);
}

.hero-visual::before {
  right: 0;
  top: -0.5rem;
  font-family: var(--font-decor);
  font-size: clamp(7rem, 11vw, 11rem);
}

.lego {
  width: clamp(7rem, 11vw, 10rem);
  transform: translate(-0.5rem, -0.4rem);
}

.logo-bolt {
  right: 11%;
  bottom: 4%;
  width: clamp(9rem, 17vw, 15rem);
}

.services {
  margin-top: 0;
}

.studio-info {
  width: min(57rem, calc(100% - 2rem));
  padding-top: clamp(2.4rem, 6vw, 4rem);
}

.hello-panel {
  max-width: none;
  margin-inline: 0;
}

.hello-panel h2 {
  font-size: clamp(4.6rem, 14vw, 9rem);
}

.hello-copy p {
  font-family: var(--font-copy);
  font-size: clamp(0.95rem, 2.3vw, 1.33rem);
  line-height: 1.18;
  text-transform: none;
}

.brand-statement {
  min-height: clamp(25rem, 72vw, 42rem);
}

.brand-statement::before {
  font-size: clamp(18rem, 58vw, 40rem);
}

.portfolio-carousel {
  margin-inline: calc((100vw - min(57rem, calc(100vw - 2rem))) / -2);
}

.portfolio-group img {
  width: clamp(9rem, 17vw, 13.5rem);
}

.process-panel > h2,
.quote-wall h2,
.signature h2 {
  white-space: pre-line;
}

.process-grid article {
  min-height: clamp(14rem, 34vw, 20rem);
}

.principles article {
  border-radius: 0.65rem;
}

.quote-wall {
  grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 1fr);
}

.team-strip {
  justify-content: center;
}

.signature {
  margin-inline: calc((100vw - min(57rem, calc(100vw - 2rem))) / -2);
  padding-inline: 1rem;
  background: rgba(0, 35, 31, 0.45);
}

.site-footer {
  width: min(57rem, calc(100% - 2rem));
  margin: 0 auto;
}

.footer-lockup {
  display: none;
}

.footer-note {
  font-family: var(--font-copy);
  color: var(--cletus-white);
  text-transform: none;
}

[data-i18n] {
  white-space: pre-line;
}

@media (max-width: 760px) {
  .cletus-header {
    width: 100%;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 9rem;
  }

  .hero-visual {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 20rem);
    margin: 1.5rem auto 0;
  }

  .process-grid,
  .quote-wall,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-wall h2 {
    position: static;
  }
}

/* Hard layout lock for WordPress rendering differences. */
html {
  font-size: 16px;
}

.cletus-page,
.cletus-page * {
  box-sizing: border-box;
}

.cletus-page {
  background: var(--cletus-bg);
  font-size: 16px;
}

.cletus-header {
  width: 100% !important;
  max-width: none !important;
  padding: 18px 28px !important;
}

.brand-link {
  width: clamp(94px, 8vw, 150px) !important;
}

.language-switcher {
  transform: scale(1.15);
  transform-origin: right top;
}

.hero {
  min-height: 100vh !important;
  padding: clamp(92px, 12vh, 140px) clamp(24px, 5vw, 92px) 64px !important;
  display: grid !important;
  place-items: start center !important;
}

.hero-inner {
  width: min(1500px, 92vw) !important;
  min-height: min(760px, 76vh) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr) !important;
  gap: clamp(40px, 6vw, 120px) !important;
  align-items: center !important;
}

.hero-copy {
  width: auto !important;
  padding-top: 0 !important;
}

.hero-copy .eyebrow {
  font-size: clamp(14px, 1vw, 20px) !important;
}

.hero h1,
h1#cletus-title {
  font-size: clamp(96px, 12vw, 220px) !important;
  line-height: 0.82 !important;
}

.hero-subtitle {
  max-width: 690px !important;
  font-size: clamp(16px, 1.15vw, 22px) !important;
  line-height: 1.35 !important;
}

.hero-actions a {
  min-height: 42px !important;
  padding: 10px 18px !important;
  font-size: 12px !important;
}

.hero-visual {
  position: relative !important;
  inset: auto !important;
  width: min(520px, 34vw) !important;
  min-height: 520px !important;
}

.lego {
  width: clamp(140px, 13vw, 240px) !important;
  transform: translate(-30px, -60px) !important;
}

.logo-bolt {
  width: clamp(180px, 20vw, 360px) !important;
  right: 6% !important;
  bottom: 8% !important;
}

.services {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
}

.service-track,
.service-group {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  width: max-content !important;
}

.service-item {
  flex: 0 0 auto !important;
  min-width: clamp(420px, 38vw, 760px) !important;
  height: clamp(58px, 5vw, 92px) !important;
}

.service-text {
  font-size: clamp(40px, 4vw, 82px) !important;
}

.studio-info {
  width: min(1440px, 92vw) !important;
  max-width: none !important;
  padding: clamp(70px, 8vw, 130px) 0 !important;
}

.hello-panel,
.brand-statement,
.process-panel,
.principles,
.quote-wall,
.team-strip,
.signature {
  width: 100% !important;
}

.hello-panel {
  max-width: 1240px !important;
  min-height: auto !important;
  margin: 0 auto clamp(70px, 8vw, 130px) !important;
}

.hello-panel h2 {
  font-size: clamp(110px, 14vw, 230px) !important;
  line-height: 0.76 !important;
}

.hello-copy {
  max-width: 1180px !important;
}

.hello-copy p {
  font-size: clamp(24px, 1.7vw, 34px) !important;
  line-height: 1.15 !important;
}

.brand-statement {
  min-height: clamp(620px, 58vw, 920px) !important;
  margin: 0 auto !important;
}

.brand-statement h2 {
  font-size: clamp(82px, 9vw, 180px) !important;
}

.brand-statement::before {
  font-size: clamp(360px, 45vw, 760px) !important;
}

.portfolio-carousel {
  width: 100vw !important;
  max-width: none !important;
  margin: 0 0 clamp(80px, 8vw, 140px) calc(50% - 50vw) !important;
  overflow: hidden !important;
}

.portfolio-track,
.portfolio-group {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  width: max-content !important;
}

.portfolio-group {
  gap: 12px !important;
  padding: 14px !important;
}

.portfolio-group img {
  display: block !important;
  flex: 0 0 auto !important;
  width: clamp(210px, 15vw, 310px) !important;
  height: clamp(280px, 20vw, 414px) !important;
  max-width: none !important;
  object-fit: cover !important;
}

.process-panel {
  margin: 0 auto clamp(70px, 8vw, 120px) !important;
}

.process-panel > h2 {
  font-size: clamp(84px, 9vw, 180px) !important;
}

.process-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(24px, 3vw, 54px) !important;
}

.process-grid article {
  min-height: clamp(300px, 30vw, 500px) !important;
}

.process-grid h3 {
  font-size: clamp(24px, 2vw, 42px) !important;
}

.process-grid p {
  font-size: clamp(16px, 1.15vw, 22px) !important;
}

.how-work {
  font-size: clamp(80px, 9vw, 180px) !important;
}

.principles {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  margin-bottom: clamp(80px, 9vw, 150px) !important;
}

.principles article {
  padding: clamp(22px, 2vw, 38px) !important;
}

.principles h3 {
  font-size: clamp(36px, 3vw, 62px) !important;
}

.principles p {
  font-size: clamp(18px, 1.25vw, 25px) !important;
}

.quote-wall {
  display: grid !important;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr) !important;
  gap: clamp(32px, 5vw, 90px) !important;
  margin-bottom: clamp(70px, 8vw, 120px) !important;
}

.quote-wall h2 {
  font-size: clamp(82px, 7vw, 150px) !important;
}

.quote-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.quote-grid p {
  font-size: clamp(18px, 1.2vw, 24px) !important;
  padding: 20px !important;
}

.team-strip {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(260px, 390px)) !important;
  justify-content: end !important;
}

.signature {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  min-height: clamp(560px, 54vw, 860px) !important;
}

.signature h2 {
  font-size: clamp(96px, 13vw, 230px) !important;
}

.site-footer {
  width: min(1440px, 92vw) !important;
  max-width: none !important;
}

@media (max-width: 900px) {
  .hero-inner,
  .process-grid,
  .quote-wall,
  .quote-grid,
  .team-strip {
    grid-template-columns: 1fr !important;
  }

  .hero-visual {
    width: min(420px, 80vw) !important;
    min-height: 360px !important;
    margin: 36px auto 0 !important;
  }

  .hello-panel h2,
  .process-panel > h2,
  .quote-wall h2,
  .signature h2 {
    font-size: clamp(64px, 18vw, 130px) !important;
  }

  .hello-copy p {
    font-size: clamp(18px, 4.7vw, 25px) !important;
  }
}

/* Stable artboard pass: percentages keep the hero from reshuffling when zoom changes. */
.hero {
  min-height: auto !important;
  padding: 86px 22px 42px !important;
}

.hero-inner {
  position: relative !important;
  display: block !important;
  width: min(1500px, calc(100vw - 44px)) !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  margin: 0 auto !important;
}

.hero-copy {
  position: absolute !important;
  left: 3.4% !important;
  top: 22% !important;
  width: 69% !important;
  padding: 0 !important;
}

.hero-copy .eyebrow {
  font-size: clamp(12px, 1.18vw, 20px) !important;
  margin-bottom: 1.7% !important;
}

.hero h1,
h1#cletus-title {
  font-size: clamp(74px, 11.6vw, 178px) !important;
  line-height: 0.82 !important;
}

.hero-subtitle {
  width: 55% !important;
  max-width: none !important;
  margin-top: 4.1% !important;
  font-size: clamp(14px, 1.25vw, 22px) !important;
  line-height: 1.25 !important;
  text-transform: uppercase !important;
}

.hero-actions {
  margin-top: 2.7% !important;
}

.hero-visual {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  min-height: 0 !important;
  pointer-events: none !important;
}

.hero-visual::before {
  display: block !important;
  position: absolute !important;
  right: 4.2% !important;
  top: 3% !important;
  font-size: clamp(90px, 12vw, 170px) !important;
}

.hero-lockup {
  position: absolute !important;
  left: 20% !important;
  bottom: 2.5% !important;
  width: 58% !important;
  max-width: none !important;
  opacity: 0.22 !important;
  transform: rotate(-4deg) !important;
}

.lego {
  position: absolute !important;
  right: 19% !important;
  top: 30% !important;
  width: 9.6% !important;
  max-width: none !important;
  transform: none !important;
}

.logo-bolt {
  position: absolute !important;
  right: 7.5% !important;
  bottom: 14% !important;
  width: 20% !important;
  max-width: none !important;
  transform: rotate(-3deg) !important;
}

.portfolio-carousel {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-snap-type: x mandatory !important;
  scrollbar-width: none !important;
}

.portfolio-carousel::-webkit-scrollbar {
  display: none !important;
}

.portfolio-track {
  animation: none !important;
}

.portfolio-group {
  width: max-content !important;
}

.portfolio-group img {
  scroll-snap-align: center !important;
}

.quote-wall {
  grid-template-columns: minmax(260px, 0.48fr) minmax(320px, 0.52fr) !important;
  align-items: center !important;
}

.review-phone {
  display: block !important;
  width: min(420px, 100%) !important;
  justify-self: center !important;
}

.quote-grid {
  display: none !important;
}

.quote-wall h2::after {
  content: "";
  display: inline-block;
  width: 0.44em;
  height: 1.02em;
  margin-left: 0.05em;
  vertical-align: -0.2em;
  background: url("assets/images/lightning-exclaim.svg") center / contain no-repeat;
}

.team-strip img {
  object-position: center !important;
}

@media (max-width: 1024px) {
  .hero {
    padding: 78px 18px 40px !important;
  }

  .hero-inner {
    aspect-ratio: 4 / 5 !important;
    width: min(760px, calc(100vw - 36px)) !important;
  }

  .hero-copy {
    left: 5% !important;
    top: 18% !important;
    width: 82% !important;
  }

  .hero h1,
  h1#cletus-title {
    font-size: clamp(78px, 18vw, 142px) !important;
  }

  .hero-subtitle {
    width: 72% !important;
    font-size: clamp(14px, 2.1vw, 20px) !important;
  }

  .lego {
    right: 16% !important;
    top: 52% !important;
    width: 16% !important;
  }

  .logo-bolt {
    right: 6% !important;
    bottom: 10% !important;
    width: 31% !important;
  }

  .hero-lockup {
    left: 9% !important;
    bottom: 6% !important;
    width: 72% !important;
  }

  .quote-wall {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  .hero-inner {
    aspect-ratio: 9 / 14 !important;
  }

  .hero-copy {
    top: 15% !important;
    width: 90% !important;
  }

  .hero h1,
  h1#cletus-title {
    font-size: clamp(56px, 20vw, 96px) !important;
  }

  .hero-subtitle {
    width: 90% !important;
    margin-top: 22px !important;
  }

  .hero-actions {
    margin-top: 18px !important;
  }

  .lego {
    top: 55% !important;
    right: 41% !important;
    width: 22% !important;
  }

  .logo-bolt {
    right: 6% !important;
    bottom: 11% !important;
    width: 48% !important;
  }

  .hero-lockup {
    left: -3% !important;
    bottom: 2% !important;
    width: 103% !important;
  }
}

/* Requested corrections: no loose hero brace, continuous carousel, text-only process cards. */
.hero-visual::before {
  display: none !important;
  content: none !important;
}

.portfolio-carousel {
  overflow: hidden !important;
  scroll-snap-type: none !important;
}

.portfolio-track {
  display: flex !important;
  flex-direction: row !important;
  width: max-content !important;
  animation: cletus-portfolio 56s linear infinite !important;
}

.portfolio-group {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
}

.process-grid article {
  min-height: clamp(240px, 22vw, 360px) !important;
  padding: clamp(24px, 3vw, 48px) !important;
  clip-path: none !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.process-grid article::before {
  display: none !important;
  content: none !important;
}

.process-grid h3 {
  color: var(--cletus-green) !important;
  font-size: clamp(22px, 2vw, 40px) !important;
  line-height: 1.08 !important;
  overflow: visible !important;
  word-break: normal !important;
}

/* Keep the translucent Cletus lockup centered behind the scroll content. */
.cletus-page::before {
  position: fixed !important;
  inset: auto !important;
  left: 50% !important;
  top: 50% !important;
  width: min(92vw, 1180px) !important;
  height: min(48vw, 620px) !important;
  background: url("assets/images/up%20part.png") center / contain no-repeat !important;
  opacity: 0.14 !important;
  transform: translate(-50%, -50%) rotate(-4deg) !important;
}

/* Mobile and tablet crop fix for poster headlines. */
@media (max-width: 1024px) {
  .studio-info,
  .process-panel,
  .process-grid,
  .process-grid article,
  .principles,
  .quote-wall,
  .signature {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .process-panel > h2 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(42px, 12vw, 96px) !important;
    line-height: 0.98 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .brand-statement h2,
  .hello-panel h2,
  .quote-wall h2,
  .signature h2 {
    max-width: 100% !important;
    font-size: clamp(48px, 13vw, 110px) !important;
    overflow-wrap: anywhere !important;
  }

  .process-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .process-grid article {
    min-height: auto !important;
    padding: 28px 18px !important;
  }

  .process-grid h3 {
    font-size: clamp(22px, 7vw, 38px) !important;
    line-height: 1.05 !important;
    overflow-wrap: anywhere !important;
  }

  .process-grid p {
    font-size: clamp(15px, 4vw, 21px) !important;
    line-height: 1.18 !important;
  }
}

@media (max-width: 520px) {
  .studio-info {
    width: calc(100% - 28px) !important;
  }

  .process-panel > h2 {
    font-size: clamp(36px, 14vw, 70px) !important;
  }

  .process-grid h3 {
    font-size: clamp(20px, 8vw, 31px) !important;
  }

  .process-grid p {
    font-size: clamp(14px, 4.6vw, 18px) !important;
  }
}

/* Final mobile/tablet overflow fix: preserve poster feel without clipping. */
@media (max-width: 1024px) {
  html,
  body,
  .cletus-page {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .hero-inner {
    overflow: hidden !important;
  }

  .hero-copy {
    left: 5% !important;
    top: 22% !important;
    width: 72% !important;
  }

  .hero h1,
  h1#cletus-title {
    font-size: clamp(56px, 10.8vw, 118px) !important;
    line-height: 0.84 !important;
    max-width: 100% !important;
  }

  .hero-subtitle {
    width: min(76%, 520px) !important;
    font-size: clamp(13px, 1.7vw, 18px) !important;
    line-height: 1.22 !important;
    overflow-wrap: anywhere !important;
  }

  .hero-actions a {
    font-size: clamp(10px, 1.4vw, 12px) !important;
  }

  .studio-info {
    width: calc(100% - 32px) !important;
  }

  .hello-panel h2 {
    font-size: clamp(54px, 13vw, 108px) !important;
    line-height: 0.82 !important;
  }

  .hello-copy p,
  .principles h3,
  .principles p,
  .process-grid h3,
  .process-grid p,
  .quote-grid p {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .hello-copy p {
    font-size: clamp(16px, 3.2vw, 23px) !important;
    line-height: 1.16 !important;
  }

  .how-work {
    width: 100% !important;
    margin: 36px auto 0 !important;
    font-size: clamp(54px, 13vw, 110px) !important;
    line-height: 0.86 !important;
    text-align: center !important;
  }

  .principles article {
    padding: clamp(18px, 4vw, 30px) !important;
  }

  .principles h3 {
    font-size: clamp(25px, 5.6vw, 45px) !important;
    line-height: 1.02 !important;
  }

  .principles p {
    font-size: clamp(14px, 3vw, 20px) !important;
    line-height: 1.16 !important;
  }
}

@media (max-width: 620px) {
  .cletus-header {
    padding: 14px 14px !important;
  }

  .brand-link {
    width: 76px !important;
  }

  .language-switcher {
    transform: scale(0.9) !important;
  }

  .hero {
    padding: 70px 12px 32px !important;
  }

  .hero-inner {
    width: calc(100vw - 24px) !important;
    aspect-ratio: 9 / 15.4 !important;
  }

  .hero-copy {
    left: 5% !important;
    top: 14% !important;
    width: 88% !important;
  }

  .hero-copy .eyebrow {
    font-size: clamp(10px, 3.2vw, 13px) !important;
    line-height: 1.05 !important;
    max-width: 82% !important;
    flex-wrap: wrap !important;
  }

  .hero h1,
  h1#cletus-title {
    font-size: clamp(39px, 16.2vw, 70px) !important;
    line-height: 0.86 !important;
    transform: none !important;
  }

  .hero-subtitle {
    width: 82% !important;
    margin-top: 20px !important;
    font-size: clamp(11px, 3.35vw, 14px) !important;
    line-height: 1.14 !important;
  }

  .hero-actions {
    gap: 8px !important;
  }

  .hero-actions a {
    min-height: 34px !important;
    padding: 8px 13px !important;
    font-size: 10px !important;
  }

  .lego {
    top: 57% !important;
    right: 43% !important;
    width: 20% !important;
  }

  .logo-bolt {
    right: 4% !important;
    bottom: 10% !important;
    width: 43% !important;
  }

  .hero-lockup {
    left: 3% !important;
    bottom: 7% !important;
    width: 86% !important;
  }

  .hello-panel h2 {
    font-size: clamp(44px, 18vw, 72px) !important;
  }

  .hello-copy p {
    font-size: clamp(13px, 4.5vw, 18px) !important;
    line-height: 1.14 !important;
  }

  .how-work {
    font-size: clamp(44px, 17vw, 74px) !important;
  }

  .principles h3,
  .process-grid h3 {
    font-size: clamp(20px, 7.4vw, 29px) !important;
    line-height: 1.02 !important;
  }

  .principles p,
  .process-grid p {
    font-size: clamp(12px, 4.2vw, 16px) !important;
    line-height: 1.16 !important;
  }
}

/* Final mobile hero title nudge: keep the final S visible. */
@media (max-width: 620px) {
  .hero h1,
  h1#cletus-title {
    font-size: clamp(36px, 14.6vw, 64px) !important;
    max-width: 92% !important;
  }
}
