:root {
  --ink: #1b2c48;
  --ink-soft: #53627b;
  --forest: #2c4063;
  --forest-2: #385680;
  --sage: #9bbfd5;
  --lime: #0095d9;
  --cream: #eef5fa;
  --paper: #fbfcfe;
  --peach: #65b9df;
  --line: rgba(44, 64, 99, 0.16);
  --radius: 24px;
  --shadow: 0 30px 80px rgba(44, 64, 99, 0.14);
  --shell: min(1240px, calc(100vw - 48px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.nav-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
.shell {
  width: var(--shell);
  margin-inline: auto;
}
.section {
  padding: 112px 0;
}
.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: white;
  color: black;
}
.eyebrow {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--lime);
}
.eyebrow--dark {
  color: var(--forest);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(54px, 7.3vw, 112px);
  line-height: 0.91;
  max-width: 100%;
}
h2 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
}
h3 {
  font-size: 30px;
  line-height: 1.05;
}
.button {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.03em;
  transition: 0.25s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button--light {
  background: var(--cream);
  color: var(--forest);
}
.button--dark {
  background: var(--forest);
  color: white;
}
.button--small {
  padding: 12px 17px;
  font-size: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  padding-bottom: 5px;
}
.text-link--dark {
  border-bottom-color: var(--line);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
	margin-top: 20px;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
  transition: 0.25s ease;
	background-color: #fff;
}
.site-header.is-scrolled {
	background-color: #fff;
  backdrop-filter: blur(18px);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
}
.site-header__inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}
.brand__text {
  font-size: 19px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.custom-logo {
  max-height: 52px;
  width: auto;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.primary-nav__menu {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 650;
}
.primary-nav__menu a {
  opacity: 0.9;
	color: var(--lime);
}
.primary-nav__menu a:hover {
  opacity: 1;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  padding: 10px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 26px;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 920px;
  background: var(--forest);
  color: white;
  padding-top: 88px;
}
.hero__grid {
  min-height: 770px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 0 30px 0;
}
.hero__lead {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.74);
  margin: 32px 0 36px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.6;
}
.hero__glow--one {
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(0, 149, 217, 0.25), transparent 65%);
  right: 4%;
  top: 6%;
}
.hero__glow--two {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(101, 185, 223, 0.18),
    transparent 65%
  );
  left: -8%;
  bottom: 5%;
}
.hero__art {
  height: 660px;
  position: relative;
}
.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #dff3fb, #0095d9 58%, #2c4063);
  box-shadow: inset -24px -34px 60px rgba(0, 0, 0, 0.25),
    0 40px 90px rgba(0, 0, 0, 0.25);
}
.orb--large {
  width: 390px;
  height: 390px;
  right: 22px;
  top: 115px;
}
.orb--small {
  width: 110px;
  height: 110px;
  left: 70px;
  top: 94px;
  background: radial-gradient(circle at 35% 30%, #e4f6fd, #4db7e5 60%, #2c4063);
}
.bottle {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}
.bottle span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.7);
}
.bottle--one {
  width: 122px;
  height: 360px;
  left: 105px;
  bottom: 46px;
  border-radius: 64px 64px 30px 30px;
  background: linear-gradient(
    160deg,
    rgba(225, 242, 250, 0.38),
    rgba(44, 64, 99, 0.72)
  );
}
.bottle--one:before {
  content: "";
  position: absolute;
  width: 58px;
  height: 52px;
  top: -38px;
  border-radius: 14px 14px 2px 2px;
  background: #9cb4c8;
}
.bottle--two {
  width: 154px;
  height: 292px;
  right: 45px;
  bottom: 15px;
  border-radius: 22px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.22),
    rgba(0, 149, 217, 0.42)
  );
}
.bottle--two:before {
  content: "";
  position: absolute;
  width: 64px;
  height: 42px;
  top: -27px;
  background: #d7e8f2;
  border-radius: 10px 10px 0 0;
}
.botanical {
  position: absolute;
  width: 180px;
  height: 70px;
  border: 1px solid rgba(0, 149, 217, 0.7);
  border-radius: 100%;
  transform: rotate(-24deg);
}
.botanical:before,
.botanical:after {
  content: "";
  position: absolute;
  width: 90px;
  height: 34px;
  border: 1px solid rgba(0, 149, 217, 0.5);
  border-radius: 100%;
}
.botanical:before {
  left: 25px;
  top: -28px;
  transform: rotate(35deg);
}
.botanical:after {
  left: 72px;
  top: 47px;
  transform: rotate(-20deg);
}
.botanical--one {
  right: 135px;
  top: 64px;
}
.botanical--two {
  left: 18px;
  bottom: 170px;
  transform: rotate(44deg) scale(0.75);
}
.hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 34px;
  align-items: center;
  padding: 21px 0;
  animation: marquee 28s linear infinite;
  font-size: 11px;
  letter-spacing: 0.19em;
  color: rgba(255, 255, 255, 0.75);
}
.marquee__track i {
  font-style: normal;
  color: var(--lime);
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.intro {
  background: var(--cream);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 100px;
}
.intro h2 {
  max-width: 13ch;
  margin-bottom: 0;
}
.intro__copy {
  padding-top: 70px;
}
.intro__copy p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.intro__copy p + p {
  margin-top: 18px;
}
.intro__copy .text-link {
  margin-top: 20px;
}
.solutions {
  background: var(--paper);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 54px;
}
.section-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 390px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.solution-card {
  min-height: 525px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f4f8fb;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  overflow: hidden;
}
.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.solution-card__top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.solution-card__visual {
  height: 310px;
  display: grid;
  place-items: center;
}
.solution-card__shape {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  display: block;
  background: radial-gradient(circle at 35% 30%, #e0f3fb, #0095d9 62%, #2c4063);
  box-shadow: 0 32px 60px rgba(44, 64, 99, 0.18);
  transition: 0.4s ease;
}
.solution-card:hover .solution-card__shape {
  transform: scale(1.06) rotate(5deg);
}
.solution-card--skin .solution-card__shape {
  border-radius: 38% 62% 58% 42%/48% 38% 62% 52%;
  /* background: radial-gradient(circle at 40% 26%, #edf7fb, #65b9df 60%, #385680); */
}
.solution-card--clean .solution-card__shape {
  border-radius: 32px;
  /* background: linear-gradient(145deg, #d9eff8, #2c78a5); */
  transform: rotate(9deg);
}
.solution-card--air .solution-card__shape {
  border-radius: 50% 20% 50% 20%;
  /* background: radial-gradient(circle at 30% 30%, #e5f1f8, #5c79a1); */
}
.solution-card--oil .solution-card__shape {
  width: 355px;
  border-radius: 80px 60px 45px 35px;
  /* background: linear-gradient(145deg, #72c3e6, #2c4063); */
}
.solution-card--sauna .solution-card__shape {
  border-radius: 50% 50% 15% 15%;
  /* background: linear-gradient(145deg, #8bccea, #385680); */
}
.solution-card h3 {
  margin: 0 0 12px;
}
.solution-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}
.method {
  background: var(--forest);
  color: white;
}
.method__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
}
.method__sticky {
  position: sticky;
  top: 130px;
  align-self: start;
}
.method__sticky h2 {
  max-width: 9ch;
}
.method__sticky > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 480px;
  font-size: 17px;
  margin-bottom: 30px;
}
.method-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 34px;
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.method-step > span {
  font-size: 12px;
  color: var(--lime);
  font-weight: 800;
}
.method-step h3 {
  font-size: 42px;
  margin: 0 0 13px;
}
.method-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
}
.lab {
  background: var(--cream);
}
.lab__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.lab__visual {
  height: 620px;
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #c9e6f3, #eef5fa);
  overflow: hidden;
}
.lab-card {
  position: absolute;
  padding: 26px;
  border-radius: 22px;
  color: white;
  box-shadow: 0 34px 70px rgba(44, 64, 99, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.lab-card span {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 800;
}
.lab-card strong {
  font-family: Georgia, serif;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -0.05em;
}
.lab-card--a {
  width: 300px;
  height: 410px;
  background: linear-gradient(155deg, #69bde2, #2c4063);
  left: 70px;
  top: 55px;
  transform: rotate(-8deg);
}
.lab-card--b {
  width: 260px;
  height: 330px;
  background: linear-gradient(155deg, #0095d9, #385680);
  right: 45px;
  bottom: 45px;
  transform: rotate(8deg);
}
.lab-line {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(44, 64, 99, 0.24);
  border-radius: 50%;
  left: 100px;
  top: 100px;
}
.lab__copy h2 {
  max-width: 11ch;
}
.lab__copy > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 620px;
}
.feature-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}
.feature-list > div {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.feature-list span {
  font-size: 11px;
  font-weight: 800;
  color: var(--forest);
}
.feature-list strong {
  font-size: 15px;
}
.insights {
  background: var(--paper);
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.insight-card__media {
  display: block;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  background: #e4edf4;
  margin-bottom: 22px;
}
.insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}
.insight-card:hover img {
  transform: scale(1.03);
}
.placeholder-art {
  display: block;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 35% 35%, #9fd8ef 0 15%, transparent 16%),
    radial-gradient(circle at 62% 58%, #5ab4df 0 20%, transparent 21%),
    linear-gradient(145deg, #eef5fa, #9dbbd1);
}
.placeholder-art--2 {
  background: radial-gradient(circle at 65% 28%, #76c5e7 0 14%, transparent 15%),
    linear-gradient(135deg, #2c4063, #b6dceb);
}
.placeholder-art--3 {
  background: radial-gradient(circle at 35% 70%, #0095d9 0 20%, transparent 21%),
    linear-gradient(140deg, #eef5fa, #8fb9d1);
}
.insight-card__meta {
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--ink-soft);
}
.insight-card h3 {
  font-size: 32px;
  margin: 10px 0 22px;
}
.insight-card h3 a:hover {
  opacity: 0.65;
}
.cta-panel {
  background: var(--paper);
  padding-top: 20px;
}
.cta-panel__inner {
  background: var(--forest);
  color: white;
  border-radius: 32px;
  padding: 80px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cta-panel__inner:after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  right: -90px;
  top: -100px;
  background: radial-gradient(circle, rgba(0, 149, 217, 0.25), transparent 66%);
}
.cta-panel h2 {
  max-width: 14ch;
  position: relative;
  z-index: 1;
}
.cta-panel__actions {
  display: flex;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.site-footer {
  background: #1b2c48;
  color: white;
  padding: 90px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr 0.85fr;
  gap: 55px;
}
.brand--footer {
  margin-bottom: 26px;
}
.footer-brand p,
.site-footer p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  font-size: 14px;
}
.footer-kicker {
  color: var(--lime) !important;
  font-size: 10px !important;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-email {
  font-family: Georgia, serif;
  font-size: 30px;
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 12px;
}
.site-footer h3 {
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 800;
  text-transform: uppercase;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li + li {
  margin-top: 10px;
}
.site-footer li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  margin-top: 70px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}
.content-shell {
  padding-top: 170px;
}
.page-hero {
  max-width: 960px;
  margin-bottom: 70px;
}
.page-hero h1 {
  color: var(--ink);
}
.entry-content {
  max-width: 100%;
  font-size: 18px;
  line-height: 1.8;
}
.entry-content h2 {
  font-size: 48px;
  margin-top: 60px;
}
.single-cover {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 60px;
}
.post-list {
  display: grid;
  gap: 20px;
}
.post-card {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.post-card h2 {
  font-size: 40px;
  margin: 8px 0 16px;
}
.post-card__meta {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.error-404 {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.error-404 h1 {
  font-size: 72px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand-wrap .custom-logo-link,
.brand--official {
  display: flex;
  align-items: center;
}
.brand-wrap .custom-logo,
.brand--official img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 70px;
}

.primary-nav__menu .menu-item-has-children {
  position: relative;
}
.primary-nav__menu .sub-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  min-width: 270px;
  padding: 14px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s ease;
}
.primary-nav__menu .menu-item-has-children:hover > .sub-menu,
.primary-nav__menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.primary-nav__menu .sub-menu li + li {
  margin-top: 4px;
}
.primary-nav__menu .sub-menu a {
  display: block;
  padding: 10px 11px;
  border-radius: 9px;
}
.primary-nav__menu .sub-menu a:hover {
  background: var(--cream);
}
.solution-card {
  color: inherit;
}
.institutional-link {
  margin-top: 28px;
}
.footer-logo {
  display: inline-flex;
  background: white;
  padding: 8px 12px;
  border-radius: 12px;
  margin-bottom: 24px;
}
.footer-logo img {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 58px;
}
@media (max-width: 1050px) {
  .primary-nav__menu {
    gap: 18px;
  }
  .nav-cta {
    display: none;
  }
  .hero__grid {
    grid-template-columns: 1fr 0.82fr;
  }
  .hero__art {
    transform: scale(0.8);
    transform-origin: right center;
  }
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .method__grid {
    gap: 60px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lab__grid {
    gap: 50px;
  }
  .lab__visual {
    height: 540px;
  }
  .lab-card--a {
    left: 30px;
  }
  .lab-card--b {
    right: 20px;
  }
}
@media (max-width: 820px) {
  .primary-nav__menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 8px 0 0 16px;
    min-width: 0;
  }
  .primary-nav__menu .sub-menu a {
    font-family: inherit;
    font-size: 17px;
    padding: 7px 0;
  }
  .brand-wrap .custom-logo,
  .brand--official img {
    max-width: 175px;
    max-height: 40px;
  }
  :root {
    --shell: min(100% - 32px, 1240px);
  }
  .section {
    padding: 78px 0;
  }
  .site-header__inner {
    height: 74px;
  }
  .nav-toggle {
    display: block;
  }
  .primary-nav {
    position: fixed;
    inset: 74px 0 0;
    background: var(--paper);
    color: var(--ink);
    padding: 36px 24px;
    display: block;
    transform: translateX(100%);
    transition: 0.3s ease;
  }
  .primary-nav.is-open {
    transform: none;
  }
  .primary-nav__menu {
    display: block;
  }
  .primary-nav__menu li + li {
    margin-top: 14px;
  }
  .primary-nav__menu a {
    font-family: Georgia, serif;
    font-size: 35px;
    line-height: 1.3;
  }
  .hero {
    min-height: auto;
    padding-top: 74px;
  }
  .hero__grid {
    display: block;
    padding-top: 90px;
  }
  .hero__copy {
    position: relative;
    z-index: 3;
  }
  .hero__art {
    height: 520px;
    transform: scale(0.82);
    transform-origin: center center;
    margin-top: -30px;
  }
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero__marquee {
    position: relative;
  }
  .intro__grid,
  .method__grid,
  .lab__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .intro__copy {
    padding-top: 0;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
  .method__sticky {
    position: relative;
    top: auto;
  }
  .insight-grid {
    grid-template-columns: 1fr;
  }
  .insight-card__media {
    height: 420px;
  }
  .lab__visual {
    order: 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-panel__inner {
    padding: 56px 32px;
  }
  .cta-panel__actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: 52px;
  }
  .hero__lead {
    font-size: 16px;
  }
  .hero__art {
    height: 440px;
    transform: scale(0.7);
    margin: -45px -45px 0;
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    min-height: 490px;
  }
  .method-step {
    grid-template-columns: 45px 1fr;
    gap: 12px;
  }
  .lab__visual {
    height: 450px;
  }
  .lab-card--a {
    width: 230px;
    height: 330px;
  }
  .lab-card--b {
    width: 210px;
    height: 270px;
  }
  .lab-card strong {
    font-size: 38px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .cta-panel h2 {
    font-size: 44px;
  }
  .cta-panel__inner {
    min-height: 520px;
  }
  .insight-card__media {
    height: 320px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee__track {
    animation: none;
  }
}


/* =========================================================
  ARCHIVE / BLOG / NOTÍCIAS
========================================================= */

.archive-hero {
  max-width: 850px;
  margin-bottom: 60px;
}

.archive-hero h1 {
  margin: 0 0 20px;
}

.archive-description {
  max-width: 720px;
  color: #5f6878;
  font-size: 1.05rem;
  line-height: 1.8;
}


/* GRID
========================================================= */

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
}


/* CARD
========================================================= */

.archive-card {
  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid rgba(44, 64, 99, 0.10);
  border-radius: 18px;

  overflow: hidden;

  transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease;
}

.archive-card:hover {
  transform: translateY(-6px);

  border-color: rgba(0, 149, 217, 0.28);

  box-shadow:
      0 20px 50px rgba(44, 64, 99, 0.12);
}


/* IMAGEM
========================================================= */

.archive-card__image {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: #eef3f8;
}

.archive-card__thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.archive-card:hover .archive-card__thumbnail {
  transform: scale(1.045);
}

/* CONTEÚDO
========================================================= */

.archive-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px;
}


/* META
========================================================= */

.archive-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-card__category {
  color: #0095d9;
}

.archive-card__date {
  color: #8b93a2;
}

.archive-card__date::before {
  content: "•";
  margin-right: 10px;
  color: #c0c6d0;
}


/* TÍTULO
========================================================= */

.archive-card__title {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.archive-card__title a {
  color: #2c4063;
  text-decoration: none;
  transition: color 0.25s ease;
}

.archive-card__title a:hover {
  color: #0095d9;
}

/* RESUMO
========================================================= */

.archive-card__excerpt {
  color: #697386;
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.archive-card__excerpt p {
  margin: 0;
}

/* LINK
========================================================= */

.archive-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #2c4063;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition:
      color 0.25s ease,
      gap 0.25s ease;
}

.archive-card__link span {
  color: #0095d9;
}

.archive-card__link:hover {
  color: #0095d9;
  gap: 13px;
}


/* PAGINAÇÃO
========================================================= */

.archive-pagination {
  margin-top: 64px;
}

.archive-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(44, 64, 99, 0.15);
  border-radius: 10px;
  background: #ffffff;
  color: #2c4063;
  font-weight: 600;
  text-decoration: none;
  transition:
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease;
}

.archive-pagination .page-numbers:hover {
  border-color: #0095d9;
  color: #0095d9;
}

.archive-pagination .page-numbers.current {
  border-color: #2c4063;
  background: #2c4063;
  color: #ffffff;
}

/* EMPTY
========================================================= */

.archive-empty {
  padding: 60px;
  background: #f5f8fb;
  border-radius: 18px;
  text-align: center;
}

.archive-empty h2 {
  color: #2c4063;
}


/* TABLET
========================================================= */

@media (max-width: 1024px) {

  .archive-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
  }

}


/* MOBILE
========================================================= */

@media (max-width: 640px) {

  .archive-hero {
      margin-bottom: 40px;
  }

  .archive-grid {
      grid-template-columns: 1fr;
      gap: 24px;
  }

  .archive-card__content {
      padding: 24px;
  }

}

/* =========================================================
  ESSÊNCIAS PARA SAUNA
========================================================= */

.sauna-hero {
  position: relative;

  padding: 150px 0 110px;

  background:
      radial-gradient(
          circle at 80% 20%,
          rgba(0, 149, 217, 0.28),
          transparent 32%
      ),
      linear-gradient(
          135deg,
          #1f2d47 0%,
          #2c4063 55%,
          #173a54 100%
      );

  color: #fff;

  overflow: hidden;
}

.sauna-hero::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: -180px;
  bottom: -300px;

  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
}

.sauna-hero__content {
  position: relative;
  z-index: 2;

  max-width: 750px;
}

.sauna-hero h1 {
  margin: 10px 0 25px;

  color: #fff;

  font-size: clamp(3rem, 7vw, 6rem);
  line-height: .95;
}

.sauna-hero p {
  max-width: 650px;

  color: rgba(255,255,255,.78);

  font-size: 1.1rem;
  line-height: 1.8;
}


/* INTRO */

.sauna-intro {
  max-width: 800px;
}

.sauna-intro h2 {
  max-width: 750px;

  margin: 12px 0 24px;

  color: #2c4063;

  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

.sauna-intro > p:last-child {
  max-width: 670px;

  color: #697386;
  line-height: 1.8;
}


/* GRID */

.sauna-products-section {
  padding-top: 20px;
}

.sauna-grid {
  display: grid;

  grid-template-columns:
      repeat(3, minmax(0, 1fr));

  gap: 32px;
}


/* CARD */

.sauna-card {
  overflow: hidden;

  background: #fff;

  border:
      1px solid rgba(44,64,99,.10);

  border-radius: 20px;

  transition:
      transform .35s ease,
      box-shadow .35s ease;
}

.sauna-card:hover {
  transform:
      translateY(-7px);

  box-shadow:
      0 24px 60px
      rgba(44,64,99,.12);
}


/* IMAGE */

.sauna-card__image {
  display: block;
  width: 100%;
  overflow: hidden;
  background:
      linear-gradient(
          135deg,
          #e9f5fb,
          #d7ebf4
      );
}

.sauna-card__thumbnail {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
      transform .6s ease;
}

.sauna-card:hover
.sauna-card__thumbnail {
  transform:
      scale(1.05);
}

.sauna-card__image--placeholder {
  display: flex;

  align-items: center;
  justify-content: center;

  color: #0095d9;

  font-size: 1.3rem;
  font-weight: 700;
}


/* CONTENT */

.sauna-card__content {
  padding: 28px;
}

.sauna-card__type {
  display: block;

  margin-bottom: 12px;

  color: #0095d9;

  font-size: .72rem;
  font-weight: 700;

  letter-spacing: .09em;
  text-transform: uppercase;
}

.sauna-card h2 {
  margin: 0 0 14px;

  font-size: 1.6rem;
  line-height: 1.2;
}

.sauna-card h2 a {
  color: #2c4063;

  text-decoration: none;
}

.sauna-card h2 a:hover {
  color: #0095d9;
}

.sauna-card__excerpt {
  margin-bottom: 24px;

  color: #697386;

  line-height: 1.7;
}

.sauna-card__link {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: #2c4063;

  font-weight: 700;

  text-decoration: none;

  transition:
      color .25s ease,
      gap .25s ease;
}

.sauna-card__link span {
  color: #0095d9;
}

.sauna-card__link:hover {
  color: #0095d9;

  gap: 14px;
}


/* COMMERCIAL CTA */

.sauna-commercial {
  margin-top: 80px;

  padding: 90px 0;

  background: #2c4063;

  color: #fff;
}

.sauna-commercial__inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 60px;
}

.sauna-commercial h2 {
  max-width: 650px;

  margin: 10px 0 18px;

  color: #fff;

  font-size:
      clamp(2rem,4vw,3.5rem);
}

.sauna-commercial p {
  max-width: 650px;

  color:
      rgba(255,255,255,.72);

  line-height: 1.7;
}


/* RESPONSIVE */

@media (max-width: 1024px) {

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

}


@media (max-width: 700px) {

  .sauna-hero {
      padding:
          110px 0 80px;
  }

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

  .sauna-commercial__inner {
      display: block;
  }

  .sauna-commercial__inner
  .button {
      margin-top: 30px;
  }

}

/* =========================================================
  IMAGENS DOS CARDS DE SOLUÇÕES
========================================================= */

.solution-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin: 24px 0;
  overflow: hidden;
  border-radius: 18px;
  background: #eef4f8;
}

.solution-card__shape {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition:
      transform 0.6s ease,
      filter 0.4s ease;
}

/* Leve sobreposição para manter o visual sofisticado */

.solution-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
      linear-gradient(
          180deg,
          rgba(0, 149, 217, 0.5) 20%,
          rgba(44, 64, 99, 0.6) 100%
      );
  transition: background 0.4s ease;
}

/* Efeito de interação */

.solution-card:hover .solution-card__shape {
  transform: scale(1.06);
}

.solution-card:hover .solution-card__visual::after {
  background:
      linear-gradient(
          180deg,
          rgba(0, 149, 217, 0.02) 20%,
          rgba(44, 64, 99, 0.20) 100%
      );
}


/* =========================================================
  IMAGEM ESPECÍFICA DE CADA CARD
========================================================= */

.solution-card--floral .solution-card__shape {
  background-image:
      url("../images/solutions/perfumaria.jpg");
}

.solution-card--skin .solution-card__shape {
  background-image:
      url("../images/solutions/cosmeticos.jpg");
}

.solution-card--clean .solution-card__shape {
  background-image:
      url("../images/solutions/saneantes.jpg");
}

.solution-card--air .solution-card__shape {
  background-image:
      url("../images/solutions/household.jpg");
}

.solution-card--oil .solution-card__shape {
  background-image:
      url("../images/solutions/oleos-essenciais.jpg");
}

.solution-card--sauna .solution-card__shape {
  background-image:
      url("../images/solutions/essencias-para-sauna.jpg");
}