:root {
  --cloud: #F7F8F3;
  --rice: #FFFDF7;
  --mint-milk: #DCEBDD;
  --pistachio: #BFD39B;
  --aqua-soft: #CDEAE8;
  --papaya: #F6A27D;
  --coral-lab: #E86F51;
  --butter-light: #FFE7A3;
  --cocoa: #594334;
  --ink-green: #253D34;
  --olive-gray: #6B7466;
  --white: #FFFFFF;
  --border-soft: rgba(37, 61, 52, 0.12);
  --glass-soft: rgba(255, 255, 255, 0.72);
  --shadow-soft: 0 24px 70px rgba(37, 61, 52, 0.12);
  --shadow-hover: 0 32px 90px rgba(37, 61, 52, 0.18);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(205, 234, 232, 0.72), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(255, 231, 163, 0.42), transparent 26rem),
    linear-gradient(180deg, var(--rice), var(--cloud));
  color: var(--ink-green);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.has-open-menu {
  overflow: hidden;
}

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

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

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

[id] {
  scroll-margin-top: 112px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(232, 111, 81, 0.62);
  outline-offset: 4px;
}

.section-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad { padding: 112px 0; }

.section-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-lab);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 6vw, 4.5rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

p {
  color: var(--olive-gray);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn--small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.9rem;
}

.btn--coral {
  border-color: transparent;
  background: linear-gradient(135deg, var(--coral-lab), var(--papaya));
  color: var(--white);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink-green);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pistachio), var(--aqua-soft), var(--coral-lab));
}

.lab-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--rice);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.lab-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lab-loader__inner {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.lab-loader__signature {
  width: min(520px, 82vw);
  height: auto;
  fill: none;
  stroke: var(--coral-lab);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.lab-loader__signature path {
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  animation: drawSig 980ms cubic-bezier(.72, 0, .18, 1) forwards;
}

.lab-loader__signature path:nth-child(2) {
  stroke: var(--ink-green);
  animation-delay: 160ms;
}

.lab-loader__monogram,
.lab-loader__name,
.lab-loader p {
  opacity: 0;
  transform: translateY(8px);
  animation: revealLoader 420ms ease forwards;
}

.lab-loader__monogram {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 22px;
  background: var(--mint-milk);
  color: var(--ink-green);
  font-weight: 900;
  letter-spacing: 0.08em;
  animation-delay: 420ms;
}

.lab-loader__name {
  color: var(--ink-green);
  font-size: 1.3rem;
  font-weight: 900;
  animation-delay: 560ms;
}

.lab-loader p {
  margin: 0;
  color: var(--cocoa);
  animation-delay: 680ms;
}

@keyframes drawSig { to { stroke-dashoffset: 0; } }
@keyframes revealLoader { to { opacity: 1; transform: translateY(0); } }

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 100;
  transition: transform 220ms ease;
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 12px 10px 14px;
  transition: background 220ms ease, border 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled .site-header__inner,
.mobile-panel {
  border-color: var(--border-soft);
  background: var(--glass-soft);
  box-shadow: 0 14px 44px rgba(37, 61, 52, 0.10);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid rgba(37, 61, 52, 0.16);
  border-radius: 19px;
  background:
    radial-gradient(circle at 76% 20%, rgba(246, 162, 125, 0.32), transparent 16px),
    linear-gradient(145deg, var(--mint-milk), var(--aqua-soft) 58%, var(--rice)),
    var(--rice);
  box-shadow:
    inset 0 -12px 22px rgba(255, 255, 255, 0.52),
    0 14px 34px rgba(37, 61, 52, 0.11);
  color: var(--ink-green);
  font-weight: 900;
}

.brand__mark::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 18px;
  border: 2px solid var(--ink-green);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  opacity: 0.92;
}

.brand__mark::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 15px;
  width: 35px;
  height: 18px;
  border-top: 3px solid var(--coral-lab);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.brand__mark span {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--ink-green);
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand__mark span:nth-child(1) {
  left: 13px;
  top: 8px;
}

.brand__mark span:nth-child(2) {
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(37, 61, 52, 0.82);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.72);
  color: var(--coral-lab);
  font-size: 0.58rem;
  transform: translate(-50%, -50%);
}

.brand__mark span:nth-child(3) {
  right: 12px;
  bottom: 8px;
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__text strong {
  color: var(--ink-green);
  line-height: 1;
  font-weight: 900;
}

.brand__text small {
  color: var(--olive-gray);
  font-size: 0.72rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav a {
  position: relative;
  border-radius: 999px;
  padding: 9px 11px;
  color: var(--ink-green);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 99px;
  background: var(--coral-lab);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 4px;
  background: var(--ink-green);
}

.mobile-panel {
  display: none;
  width: min(420px, calc(100% - 32px));
  margin: 10px auto 0;
  border-radius: 28px;
  padding: 18px;
}

.mobile-panel a {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid var(--border-soft);
  font-weight: 800;
}

.mobile-panel .btn {
  margin-top: 14px;
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px 0 72px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.92) 0%, rgba(255, 253, 247, 0.64) 38%, rgba(255, 253, 247, 0.08) 74%),
    linear-gradient(180deg, rgba(37, 61, 52, 0.08) 0%, transparent 38%, var(--cloud) 98%),
    radial-gradient(circle at 23% 72%, rgba(255, 231, 163, 0.30), transparent 19rem);
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero__content::before {
  content: "";
  display: block;
  width: 82px;
  height: 6px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral-lab), var(--papaya), var(--butter-light));
  box-shadow: 0 12px 30px rgba(232, 111, 81, 0.24);
}

.hero h1 {
  max-width: 760px;
  color: var(--ink-green);
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(37, 61, 52, 0.16);
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--cocoa);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 520;
  text-shadow: 0 12px 34px rgba(255, 253, 247, 0.76);
}

.hero__actions,
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__badges {
  margin-top: 30px;
  max-width: 720px;
}

.hero__badges span {
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 42px rgba(37, 61, 52, 0.08);
  padding: 10px 14px 10px 12px;
  color: var(--ink-green);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(16px);
}

.hero__badges span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--coral-lab);
  box-shadow: 0 0 0 5px rgba(232, 111, 81, 0.12);
}

.concept__grid,
.method__grid,
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
}

.concept {
  position: relative;
  overflow: hidden;
}

.concept::before {
  content: "";
  position: absolute;
  left: -8rem;
  top: 8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(205, 234, 232, 0.42);
  filter: blur(34px);
  pointer-events: none;
}

.concept::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 7rem;
  width: 9rem;
  height: 9rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(246, 162, 125, 0.18), rgba(255, 231, 163, 0.20));
  transform: rotate(12deg);
  pointer-events: none;
}

.concept__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(42px, 7vw, 92px);
}

.concept__copy > p {
  max-width: 620px;
  font-size: 1.08rem;
}

.concept__copy h2 {
  max-width: 610px;
  text-wrap: balance;
}

.concept__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.concept__pillars article,
.benefit-card,
.testimonial-card,
.lab-form {
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow-soft);
}

.concept__pillars article {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 20px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.concept__pillars article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--pistachio), var(--aqua-soft), var(--papaya));
}

.concept__pillars article:hover {
  background: var(--white);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.concept__pillars span,
.method-step span {
  color: var(--coral-lab);
  font-weight: 900;
}

.concept__pillars strong {
  display: block;
  margin: 8px 0 7px;
  font-size: 1.04rem;
}

.concept__pillars p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.concept__image,
.method__image,
.compare,
.single-post__image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 36px;
  box-shadow: var(--shadow-soft);
}

.concept__image {
  isolation: isolate;
  transform: rotate(1.2deg);
}

.concept__image::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 26px;
  pointer-events: none;
}

.concept__image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(37, 61, 52, 0.18));
  pointer-events: none;
}

.concept__image img,
.method__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 500ms ease;
}

.concept__image:hover img,
.method__image:hover img,
.visual-card:hover img,
.post-card:hover img {
  transform: scale(1.055);
}

.image-note {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  border-radius: 999px;
  background: var(--glass-soft);
  padding: 10px 14px;
  color: var(--ink-green);
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.concept__lab-note {
  position: absolute;
  z-index: 3;
  right: -24px;
  top: 28px;
  width: min(210px, 48%);
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: var(--shadow-soft);
  padding: 16px 17px;
  color: var(--cocoa);
  font-size: 0.88rem;
  font-weight: 760;
  backdrop-filter: blur(16px);
}

.concept__lab-note span {
  display: block;
  margin-bottom: 4px;
  color: var(--coral-lab);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.benefit-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card,
.testimonial-card {
  position: relative;
  padding: 26px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.benefit-grid {
  counter-reset: benefit;
}

.benefit-card {
  min-height: 230px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(255, 253, 247, 0.58)),
    var(--rice);
}

.benefit-card::before {
  counter-increment: benefit;
  content: "0" counter(benefit);
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(37, 61, 52, 0.12);
  font-size: 2.5rem;
  font-weight: 950;
  line-height: 1;
}

.benefit-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--pistachio), var(--aqua-soft), var(--papaya));
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 220ms ease;
}

.benefit-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: var(--shadow-hover);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-card h3,
.benefit-card p {
  position: relative;
  z-index: 1;
}

.benefit-card h3 {
  max-width: 240px;
}

.benefit-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.line-icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border: 1px solid rgba(37, 61, 52, 0.10);
  border-radius: 18px;
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 231, 163, 0.55), transparent 14px),
    linear-gradient(135deg, var(--mint-milk), var(--aqua-soft));
  box-shadow: inset 0 -10px 18px rgba(255, 255, 255, 0.48), 0 12px 28px rgba(37, 61, 52, 0.10);
  position: relative;
  z-index: 1;
}

.line-icon::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 2px solid var(--ink-green);
  border-top-color: var(--coral-lab);
  border-radius: 8px;
}

.line-icon::before {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--coral-lab);
}

.line-icon--flow::after { border-radius: 999px 8px; }
.line-icon--choice::after { transform: rotate(45deg); }
.line-icon--warm { background: linear-gradient(135deg, var(--butter-light), var(--papaya)); }
.line-icon--grid::after { box-shadow: 8px 8px 0 -5px var(--ink-green); }
.line-icon--life { background: linear-gradient(135deg, var(--pistachio), var(--mint-milk)); }

.line-icon--spark::after {
  border-radius: 50%;
  transform: rotate(12deg);
}

.line-icon--warm::before {
  background: var(--ink-green);
}

.deliverables {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 22%, rgba(205, 234, 232, 0.46), transparent 24rem),
    linear-gradient(180deg, var(--rice), rgba(247, 248, 243, 0.82));
}

.deliverables__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: clamp(34px, 6vw, 82px);
}

.deliverables__intro {
  position: sticky;
  top: 132px;
}

.deliverables__intro h2 {
  max-width: 560px;
  text-wrap: balance;
}

.deliverables__intro p {
  max-width: 500px;
  margin-bottom: 26px;
  font-size: 1.05rem;
}

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

.deliverable-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--border-soft);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 253, 247, 0.62)),
    var(--rice);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.deliverable-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--coral-lab), var(--papaya), var(--pistachio), var(--aqua-soft));
}

.deliverable-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: var(--shadow-hover);
}

.deliverable-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 16px;
  background: var(--mint-milk);
  color: var(--coral-lab);
  font-weight: 950;
}

.deliverable-card h3 {
  max-width: 260px;
}

.deliverable-card p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.inspirations {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(220, 235, 221, 0.52), rgba(255, 253, 247, 0.22)),
    var(--cloud);
}

.inspirations::before {
  content: "";
  position: absolute;
  right: -6rem;
  top: 5rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: rgba(246, 162, 125, 0.16);
  filter: blur(44px);
  pointer-events: none;
}

.inspirations .section-wrap {
  position: relative;
  z-index: 1;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: inspiration;
}

.visual-card,
.post-card {
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 34px;
  background: var(--rice);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.visual-card {
  position: relative;
  background:
    linear-gradient(180deg, var(--rice), rgba(255, 255, 255, 0.82)),
    var(--rice);
}

.visual-card::before {
  counter-increment: inspiration;
  content: "Mood 0" counter(inspiration);
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.74);
  box-shadow: 0 12px 32px rgba(37, 61, 52, 0.10);
  padding: 8px 11px;
  color: var(--ink-green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.visual-card:hover,
.post-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 0.82;
  border-bottom: 1px solid rgba(37, 61, 52, 0.10);
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 500ms ease, filter 500ms ease;
}

.visual-card:hover img {
  filter: saturate(1.12) contrast(1.05);
}

.visual-card div,
.post-card {
  padding: 24px;
}

.visual-card div {
  position: relative;
  z-index: 1;
  padding: 26px 24px 25px;
}

.visual-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  text-wrap: balance;
}

.visual-card p {
  margin-bottom: 20px;
}

.visual-card a,
.post-card a,
.back-link {
  color: var(--coral-lab);
  font-weight: 900;
}

.visual-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.visual-card a::after {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: width 220ms ease;
}

.visual-card:hover a::after {
  width: 42px;
}

.method {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 24%, rgba(246, 162, 125, 0.18), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(205, 234, 232, 0.42), transparent 30%),
    linear-gradient(180deg, var(--rice), var(--cloud));
}

.method::before {
  content: "";
  position: absolute;
  inset: 9% auto auto 50%;
  width: min(520px, 42vw);
  height: min(520px, 42vw);
  border: 1px solid rgba(37, 61, 52, 0.08);
  border-radius: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.method__grid {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(36px, 6vw, 82px);
}

.method__image {
  isolation: isolate;
  transform: rotate(-1deg);
}

.method__image::before {
  content: "Creative process";
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.76);
  color: var(--ink-green);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 14px 36px rgba(37, 61, 52, 0.12);
  backdrop-filter: blur(14px);
}

.method__image::after {
  content: "";
  position: absolute;
  inset: auto 24px 24px auto;
  z-index: 2;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(246, 162, 125, 0.72), rgba(205, 234, 232, 0.82)),
    rgba(255, 255, 255, 0.66);
  box-shadow: 0 20px 46px rgba(37, 61, 52, 0.14);
  backdrop-filter: blur(12px);
}

.method__content {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(220, 235, 221, 0.58)),
    var(--glass-soft);
  padding: clamp(30px, 5vw, 58px);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.method__content::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--papaya), var(--pistachio), var(--aqua-soft));
}

.method__content::after {
  content: "";
  position: absolute;
  left: clamp(53px, 5vw, 78px);
  top: 190px;
  bottom: 58px;
  width: 1px;
  background: linear-gradient(180deg, rgba(232, 111, 81, 0.4), rgba(191, 211, 155, 0.42), rgba(205, 234, 232, 0.25));
}

.method-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: start;
  margin-top: 14px;
  padding: 20px 18px;
  border: 1px solid transparent;
  border-radius: 26px;
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.method-step:hover {
  border-color: var(--border-soft);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 46px rgba(37, 61, 52, 0.1);
  transform: translateX(6px);
}

.method-step span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(232, 111, 81, 0.22);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 231, 163, 0.66), rgba(255, 255, 255, 0.72)),
    var(--rice);
  box-shadow: 0 12px 28px rgba(37, 61, 52, 0.1);
}

.method-step h3 {
  margin-bottom: 7px;
}

.method-step p {
  margin-bottom: 0;
}

.before-after {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(246, 162, 125, 0.22), transparent 28%),
    radial-gradient(circle at 86% 80%, rgba(191, 211, 155, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(205, 234, 232, 0.48), rgba(255, 231, 163, 0.28)),
    var(--cloud);
}

.before-after::before {
  content: "";
  position: absolute;
  inset: 9% 7% auto auto;
  width: min(420px, 34vw);
  height: min(420px, 34vw);
  border: 1px solid rgba(37, 61, 52, 0.09);
  border-radius: 38% 62% 48% 52%;
  pointer-events: none;
}

.compare {
  height: min(640px, 64vw);
  min-height: 330px;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  isolation: isolate;
  border: 10px solid rgba(255, 253, 247, 0.72);
  border-radius: 44px;
  background: var(--rice);
  box-shadow: 0 34px 96px rgba(37, 61, 52, 0.18);
}

.compare::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 31px;
  pointer-events: none;
}

.compare::after {
  content: "Glissez pour comparer";
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.76);
  color: var(--ink-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
  box-shadow: 0 16px 34px rgba(37, 61, 52, 0.12);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.02);
}

.compare__before,
.compare__after {
  position: absolute;
  inset: 0;
}

.compare__after {
  left: auto;
  right: 0;
  overflow: hidden;
  border-left: 4px solid rgba(255, 255, 255, 0.96);
  box-shadow: -16px 0 34px rgba(37, 61, 52, 0.12);
}

.compare__after img {
  position: absolute;
  right: 0;
  width: var(--compare-width, 1160px);
  max-width: none;
}

.compare__handle {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 64px;
  height: 64px;
  border: 8px solid rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 231, 163, 0.96), transparent 34%),
    linear-gradient(135deg, var(--coral-lab), var(--papaya));
  box-shadow: 0 22px 54px rgba(37, 61, 52, 0.22);
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.compare:hover .compare__handle {
  box-shadow: 0 28px 70px rgba(37, 61, 52, 0.28);
  transform: translate(-50%, -50%) scale(1.05);
}

.compare__handle::before,
.compare__handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

.compare__handle::before {
  left: 14px;
  transform: translateY(-50%) rotate(-45deg);
}

.compare__handle::after {
  right: 14px;
  transform: translateY(-50%) rotate(135deg);
}

.compare__range {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare__label {
  position: absolute;
  z-index: 3;
  top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.76);
  padding: 10px 15px;
  color: var(--ink-green);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(37, 61, 52, 0.1);
  backdrop-filter: blur(14px);
}

.compare__label--before { left: 24px; }
.compare__label--after { right: 24px; }

.blog-preview {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(205, 234, 232, 0.38), transparent 28%),
    radial-gradient(circle at 92% 72%, rgba(246, 162, 125, 0.14), transparent 30%),
    var(--rice);
}

.blog-preview::before {
  content: "";
  position: absolute;
  inset: 12% auto auto 7%;
  width: min(340px, 28vw);
  height: min(340px, 28vw);
  border: 1px solid rgba(37, 61, 52, 0.08);
  border-radius: 44% 56% 50% 50%;
  pointer-events: none;
}

.blog-preview .section-wrap,
.blog-listing .section-wrap {
  position: relative;
  z-index: 1;
}

.blog-preview__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -8px 0 28px;
  border-top: 1px solid var(--border-soft);
  padding-top: 22px;
}

.blog-preview__toolbar span {
  color: var(--cocoa);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-listing {
  background:
    radial-gradient(circle at 88% 14%, rgba(205, 234, 232, 0.38), transparent 24rem),
    linear-gradient(180deg, var(--rice), var(--cloud));
}

.post-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 24px;
  counter-reset: post-card;
}

.post-grid--archive {
  gap: 30px 24px;
}

.post-card {
  position: relative;
  isolation: isolate;
  padding: 0;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 247, 0.9)),
    var(--rice);
}

.post-card::before {
  counter-increment: post-card;
  content: "Note 0" counter(post-card);
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.74);
  color: var(--ink-green);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(37, 61, 52, 0.1);
  backdrop-filter: blur(14px);
}

.post-card__media {
  display: block;
  overflow: hidden;
  color: inherit;
}

.post-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--papaya), var(--pistachio), var(--aqua-soft));
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: opacity 260ms ease, transform 260ms ease;
}

.post-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.post-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-bottom: 1px solid rgba(37, 61, 52, 0.1);
  filter: saturate(1.04) contrast(1.02);
  transition: transform 500ms ease, filter 500ms ease;
}

.post-card:hover img {
  filter: saturate(1.1) contrast(1.05);
}

.post-card__blank {
  width: 100%;
  aspect-ratio: 1.18;
  background:
    linear-gradient(135deg, rgba(220, 235, 221, 0.86), rgba(205, 234, 232, 0.78)),
    var(--rice);
}

.post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 24px 10px;
}

.post-card__meta span {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(37, 61, 52, 0.08);
  background: rgba(220, 235, 221, 0.74);
  padding: 7px 11px;
  color: var(--ink-green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.post-card__meta time {
  color: var(--olive-gray);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.post-card h3,
.post-card p,
.post-card__link {
  margin-left: 24px;
  margin-right: 24px;
}

.post-card h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  text-wrap: balance;
}

.post-card h3 a {
  color: var(--ink-green);
}

.post-card p {
  margin-bottom: 22px;
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--coral-lab);
  font-weight: 900;
}

.post-card__link::after {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: width 220ms ease;
}

.post-card:hover .post-card__link::after {
  width: 42px;
}

.post-grid .navigation {
  grid-column: 1 / -1;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.nav-links a,
.nav-links span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 9px 13px;
  color: var(--ink-green);
  font-weight: 850;
}

.nav-links .current {
  background: var(--ink-green);
  color: var(--rice);
}

.testimonials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(191, 211, 155, 0.3), transparent 28%),
    radial-gradient(circle at 88% 26%, rgba(205, 234, 232, 0.34), transparent 30%),
    linear-gradient(180deg, var(--cloud), var(--rice));
}

.testimonials::before {
  content: "“";
  position: absolute;
  right: 7vw;
  top: 54px;
  color: rgba(232, 111, 81, 0.12);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 15vw, 16rem);
  line-height: 0.7;
  pointer-events: none;
}

.testimonial-grid {
  position: relative;
  counter-reset: testimonial;
}

.testimonial-card {
  isolation: isolate;
  overflow: hidden;
  min-height: 100%;
  border-color: rgba(37, 61, 52, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 253, 247, 0.74)),
    var(--glass-soft);
  backdrop-filter: blur(16px);
}

.testimonial-card::before {
  counter-increment: testimonial;
  content: "Client 0" counter(testimonial);
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: -1;
  color: rgba(37, 61, 52, 0.06);
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto 26px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--pistachio), var(--papaya), var(--aqua-soft));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 240ms ease;
}

.testimonial-card:hover::after {
  transform: scaleX(1);
}

.stars {
  display: inline-flex;
  margin-bottom: 24px;
  border: 1px solid rgba(232, 111, 81, 0.14);
  border-radius: 999px;
  background: rgba(255, 231, 163, 0.34);
  padding: 8px 11px;
  color: var(--coral-lab);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  box-shadow: 0 12px 26px rgba(37, 61, 52, 0.08);
}

.testimonial-card p {
  position: relative;
  margin-bottom: 28px;
  color: var(--cocoa);
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.45;
  text-wrap: balance;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--ink-green);
  font-size: 1rem;
}

.testimonial-card span {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  border: 1px solid rgba(37, 61, 52, 0.08);
  border-radius: 999px;
  background: rgba(220, 235, 221, 0.54);
  padding: 7px 11px;
  color: var(--olive-gray);
  font-size: 0.78rem;
  font-weight: 800;
}

.trust {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--rice), rgba(220, 235, 221, 0.34)),
    var(--cloud);
}

.trust::before {
  content: "";
  position: absolute;
  inset: 18% auto auto 7%;
  width: min(420px, 34vw);
  height: min(420px, 34vw);
  border-radius: 50%;
  background: rgba(255, 231, 163, 0.32);
  filter: blur(52px);
  pointer-events: none;
}

.trust__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.trust__content h2 {
  max-width: 600px;
  text-wrap: balance;
}

.trust__content p {
  max-width: 560px;
  font-size: 1.06rem;
}

.trust__list {
  display: grid;
  gap: 14px;
}

.trust-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  padding: 24px 24px 24px 78px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  backdrop-filter: blur(14px);
}

.trust-item::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(37, 61, 52, 0.12);
  border-radius: 14px;
  background:
    radial-gradient(circle at 68% 70%, var(--coral-lab) 0 4px, transparent 5px),
    linear-gradient(135deg, var(--mint-milk), var(--aqua-soft));
}

.trust-item:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: var(--shadow-hover);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 6px;
  color: var(--ink-green);
  font-size: 1.04rem;
}

.trust-item span {
  color: var(--olive-gray);
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(246, 162, 125, 0.2), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(205, 234, 232, 0.42), transparent 32%),
    linear-gradient(180deg, rgba(255, 253, 247, 0), rgba(220, 235, 221, 0.78));
}

.contact::before {
  content: "";
  position: absolute;
  inset: 11% 6% auto auto;
  width: min(460px, 36vw);
  height: min(460px, 36vw);
  border: 1px solid rgba(37, 61, 52, 0.08);
  border-radius: 52% 48% 42% 58%;
  pointer-events: none;
}

.contact::after {
  content: "Project brief";
  position: absolute;
  left: 7vw;
  bottom: 72px;
  color: rgba(37, 61, 52, 0.055);
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 10vw, 9.5rem);
  font-weight: 900;
  line-height: 0.9;
  pointer-events: none;
}

.contact__grid {
  position: relative;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(38px, 6vw, 86px);
}

.contact__copy {
  align-self: start;
  position: sticky;
  top: 130px;
}

.contact__copy h2 {
  max-width: 560px;
}

.contact__copy p:last-child {
  position: relative;
  margin-top: 24px;
  border-left: 4px solid var(--coral-lab);
  border-radius: 0 24px 24px 0;
  background: rgba(255, 255, 255, 0.52);
  padding: 18px 20px;
  box-shadow: 0 18px 44px rgba(37, 61, 52, 0.09);
  backdrop-filter: blur(14px);
}

.contact__assurances {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact__assurances li {
  position: relative;
  padding-left: 24px;
  color: var(--olive-gray);
  font-weight: 680;
}

.contact__assurances li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--coral-lab);
  box-shadow: 0 0 0 5px rgba(232, 111, 81, 0.10);
}

.lab-form {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 253, 247, 0.76)),
    var(--glass-soft);
  padding: clamp(22px, 4vw, 38px);
  box-shadow: 0 30px 86px rgba(37, 61, 52, 0.16);
  backdrop-filter: blur(18px);
}

.lab-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--coral-lab), var(--papaya), var(--pistachio), var(--aqua-soft));
}

.lab-form::after {
  content: "01  02  03";
  position: absolute;
  right: 28px;
  top: 24px;
  color: rgba(37, 61, 52, 0.18);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.form-step {
  display: none;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.form-step.is-active {
  display: grid;
  animation: formStepIn 260ms ease both;
}

.form-step__hint {
  margin: 6px 0 2px;
  color: var(--cocoa);
  font-size: 0.94rem;
}

@keyframes formStepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lab-form label {
  display: grid;
  gap: 9px;
  color: var(--ink-green);
  font-weight: 850;
}

.lab-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 13px 15px;
  color: var(--ink-green);
  font-size: 0.94rem;
  font-weight: 760;
}

.form-status--success {
  background: rgba(220, 235, 221, 0.74);
}

.form-status--error {
  background: rgba(246, 162, 125, 0.20);
}

.lab-form input,
.lab-form select,
.lab-form textarea {
  width: 100%;
  border: 1px solid rgba(37, 61, 52, 0.13);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.82);
  padding: 16px 17px;
  color: var(--ink-green);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.lab-form input:focus,
.lab-form select:focus,
.lab-form textarea:focus {
  border-color: var(--coral-lab);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 111, 81, 0.12);
  transform: translateY(-1px);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.form-dots {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.form-dots span {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  background: rgba(37, 61, 52, 0.14);
}

.form-dots span.is-active {
  background: var(--coral-lab);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink-green);
  color: var(--rice);
  padding: 46px 0;
}

.site-footer p,
.site-footer a,
.site-footer small,
.site-footer span {
  color: rgba(255, 253, 247, 0.76);
}

.site-footer__glow {
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(246, 162, 125, 0.28);
  filter: blur(54px);
}

.footer-cta {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
  margin-bottom: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.14), rgba(205, 234, 232, 0.07) 52%, rgba(246, 162, 125, 0.10)),
    rgba(255, 255, 255, 0.06);
  padding: clamp(26px, 4.5vw, 48px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.16);
}

.footer-cta::before {
  content: "";
  position: absolute;
  left: clamp(26px, 4vw, 46px);
  right: clamp(26px, 4vw, 46px);
  top: 0;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--coral-lab), var(--papaya), var(--pistachio), var(--aqua-soft));
}

.footer-cta__content {
  max-width: 720px;
}

.footer-cta__kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--papaya);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-cta__visual {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.footer-cta__visual img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.footer-cta__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(37, 61, 52, 0.74));
}

.footer-cta__visual div {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
}

.footer-cta__visual span {
  display: inline-flex;
  margin-bottom: 8px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.88);
  padding: 7px 10px;
  color: var(--ink-green);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-cta__visual strong {
  display: block;
  max-width: 250px;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.18;
}

.footer-cta h2 {
  max-width: 700px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.footer-cta p {
  max-width: 660px;
  margin-bottom: 24px;
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.footer-cta__actions span {
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.9fr 1.1fr;
  gap: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 38px;
}

.site-footer nav,
.site-footer__grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer strong,
.site-footer .brand__text strong {
  color: var(--white);
}

.site-footer .brand__text small {
  color: var(--aqua-soft);
}

.site-footer__brand p {
  max-width: 320px;
  margin-bottom: 0;
}

.footer-link-strong {
  width: fit-content;
  margin-top: 4px;
  color: var(--papaya) !important;
  font-weight: 900;
}

.site-footer__info span {
  display: grid;
  gap: 2px;
}

.site-footer__info b {
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__info small {
  display: block;
  margin-top: 8px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 4px;
}

.footer-legal a {
  color: rgba(255, 253, 247, 0.88);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
}

.footer-bottom strong {
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.footer-bottom small {
  text-align: right;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  border-radius: 999px;
  background: var(--ink-green);
  color: var(--rice);
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.friends-links {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 22%, rgba(205, 234, 232, 0.44), transparent 25rem),
    radial-gradient(circle at 86% 74%, rgba(246, 162, 125, 0.16), transparent 24rem),
    linear-gradient(180deg, var(--cloud), var(--rice));
}

.friends-links__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: start;
  gap: clamp(34px, 6vw, 76px);
}

.friends-links__intro h2 {
  max-width: 560px;
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.friends-links__intro p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 1.03rem;
}

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

.friends-links__list a {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  border: 1px solid var(--border-soft);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 253, 247, 0.66)),
    var(--rice);
  box-shadow: 0 18px 52px rgba(37, 61, 52, 0.09);
  padding: 22px;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.friends-links__list a::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--coral-lab), var(--papaya), var(--pistachio), var(--aqua-soft));
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 220ms ease;
}

.friends-links__list a:hover {
  background: var(--white);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.friends-links__list a:hover::before {
  transform: scaleX(1);
}

.friends-links__list span,
.friends-links__list small {
  display: block;
  position: relative;
  z-index: 1;
}

.friends-links__list span {
  margin-bottom: 8px;
  color: var(--ink-green);
  font-size: 1.04rem;
  font-weight: 900;
}

.friends-links__list small {
  color: var(--olive-gray);
  font-size: 0.84rem;
  font-weight: 800;
}

.archive-hero {
  padding: 160px 0 70px;
  background: linear-gradient(135deg, var(--mint-milk), var(--rice));
}

.single-post__wrap {
  max-width: 820px;
}

.single-post h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.single-post__image {
  margin: 30px 0;
}

.single-post__image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.single-post__content {
  color: var(--cocoa);
  font-size: 1.08rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1040px) {
  .site-nav,
  .site-header__cta { display: none; }
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .menu-toggle { display: block; justify-self: end; }
  .mobile-panel.is-open { display: grid; }
  .benefit-grid,
  .testimonial-grid,
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .concept__grid,
  .method__grid,
  .friends-links__grid,
  .trust__grid,
  .contact__grid { grid-template-columns: 1fr; }
  .concept__image {
    transform: none;
  }
  .concept__lab-note {
    right: 18px;
    top: 18px;
  }
  .concept__image img,
  .method__image img { aspect-ratio: 16 / 10; }
  .contact__copy { position: static; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cta { grid-template-columns: 1fr; }
  .footer-cta__visual {
    min-height: 190px;
  }
  .footer-cta__visual img {
    height: 190px;
  }
  .footer-cta .btn { width: fit-content; }
}

@media (max-width: 760px) {
  .section-wrap { width: min(calc(100vw - 28px), 560px); }
  .section-pad { padding: 76px 0; }
  .site-header__inner {
    position: relative;
    display: flex;
    width: calc(100vw - 32px);
    justify-content: space-between;
    gap: 10px;
    min-height: 64px;
  }
  .brand { min-width: 0; }
  .brand__text { display: none; }
  .menu-toggle {
    position: fixed;
    right: 24px;
    top: 18px;
    display: block;
    z-index: 120;
  }
  .hero {
    min-height: 92svh;
    padding: 116px 0 50px;
  }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 253, 247, 0.88) 0%, rgba(255, 253, 247, 0.76) 48%, var(--cloud) 100%),
      linear-gradient(90deg, rgba(255, 253, 247, 0.72), rgba(255, 253, 247, 0.28)),
      radial-gradient(circle at 50% 68%, rgba(255, 231, 163, 0.26), transparent 15rem);
  }
  .hero__media img { object-position: 58% center; }
  h1 { font-size: clamp(2.1rem, 10vw, 2.62rem); }
  h2 { font-size: clamp(1.9rem, 8vw, 2.55rem); }
  .hero__content::before {
    width: 58px;
    height: 5px;
    margin-bottom: 18px;
  }
  .hero h1 {
    max-width: 360px;
    text-shadow: 0 14px 34px rgba(255, 253, 247, 0.80);
  }
  .hero__lead {
    max-width: 360px;
    font-weight: 560;
  }
  .hero__actions .btn,
  .form-actions .btn {
    width: 100%;
    max-width: calc(100vw - 28px);
  }
  .concept__pillars,
  .benefit-grid,
  .deliverables__grid,
  .deliverables__cards,
  .inspiration-grid,
  .friends-links__list,
  .testimonial-grid,
  .post-grid,
  .site-footer__grid { grid-template-columns: 1fr; }
  .deliverables__intro { position: static; }
  .blog-preview__toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .blog-preview__toolbar .btn {
    width: 100%;
  }
  .trust-item { padding: 22px 22px 22px 72px; }
  .benefit-card {
    min-height: 0;
  }
  .benefit-card::before {
    font-size: 2.1rem;
  }
  .concept__lab-note {
    position: static;
    width: auto;
    margin: 14px;
  }
  .concept__image::before {
    inset: 12px;
  }
  .visual-card img { aspect-ratio: 1.12; }
  .compare {
    height: 430px;
    min-height: 430px;
    border-width: 6px;
    border-radius: 30px;
  }
  .compare::before {
    inset: 10px;
    border-radius: 22px;
  }
  .compare::after {
    bottom: 16px;
    max-width: calc(100% - 32px);
    white-space: nowrap;
    font-size: 0.66rem;
  }
  .compare__label {
    top: 16px;
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  .compare__label--before { left: 16px; }
  .compare__label--after { right: 16px; }
  .compare__handle {
    width: 54px;
    height: 54px;
    border-width: 6px;
  }
  .contact::after {
    display: none;
  }
  .contact__copy p:last-child {
    border-radius: 0 18px 18px 0;
    padding: 15px 17px;
  }
  .lab-form::after {
    right: 20px;
    top: 21px;
    font-size: 0.68rem;
  }
  .footer-cta {
    border-radius: 24px;
    margin-bottom: 36px;
  }
  .footer-cta .btn { width: 100%; }
  .footer-cta__actions { align-items: stretch; }
  .footer-cta__actions span { width: 100%; text-align: center; }
  .footer-cta__visual { display: none; }
  .footer-bottom {
    display: grid;
  }
  .footer-bottom small {
    text-align: left;
  }
  .floating-cta { display: none; }
}

@media (max-width: 420px) {
  .site-header { top: 10px; }
  .site-header__inner {
    display: flex;
    width: calc(100% - 40px);
    justify-content: space-between;
    gap: 10px;
    padding: 8px;
  }
  .brand { min-width: 0; }
  .brand__mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }
  .brand__text { display: none; }
  .menu-toggle {
    flex: 0 0 46px;
  }
  .hero__badges {
    gap: 10px;
    margin-top: 24px;
  }
  .hero__badges span {
    width: 100%;
    padding: 10px 13px;
  }
  .concept__pillars article,
  .benefit-card,
  .deliverable-card,
  .trust-item,
  .testimonial-card,
  .lab-form { border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
  .lab-loader { display: none; }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
