:root {
  --navy: #071a2d;
  --navy-2: #0c263d;
  --steel: #2f6f9f;
  --ivory: #faf7f0;
  --sand: #e8ded1;
  --leather: #8b5e34;
  --text: #5f6b76;
  --white: #fffdf8;
  --line: rgba(7, 26, 45, 0.14);
  --shadow: 0 24px 60px rgba(7, 26, 45, 0.12);
  --title: "Cormorant Garamond", Georgia, serif;
  --ui: "Manrope", Inter, system-ui, sans-serif;
  --body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--navy);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

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

input,
select,
textarea {
  width: 100%;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  transform: translateY(-180%);
  background: var(--navy);
  color: var(--ivory);
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.88);
  border-bottom: 1px solid rgba(7, 26, 45, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 176px;
}

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

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-family: var(--ui);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

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

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
}

.nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 22px;
  font-family: var(--ui);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 3px;
}

.btn--light:focus-visible,
.btn--ghost-light:focus-visible {
  outline-color: var(--ivory);
}

.btn--primary {
  background: var(--navy);
  color: var(--ivory);
  box-shadow: 0 14px 28px rgba(7, 26, 45, 0.18);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--navy-2);
}

.btn--secondary {
  background: rgba(250, 247, 240, 0.72);
  border-color: rgba(139, 94, 52, 0.55);
  color: var(--navy);
}

.btn--light {
  background: var(--ivory);
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.text-link {
  align-self: end;
  color: var(--leather);
  font-family: var(--ui);
  font-size: 0.94rem;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.hero,
.hero-scene {
  position: relative;
  min-height: 560px;
  height: 82svh;
  max-height: 760px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-bg::after,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  background: url("assets/hero-coast-1200.jpg") center / cover no-repeat;
}

.hero-bg::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(250, 247, 240, 0.98) 0%, rgba(250, 247, 240, 0.9) 31%, rgba(250, 247, 240, 0.48) 54%, rgba(250, 247, 240, 0.08) 100%),
    linear-gradient(180deg, rgba(250, 247, 240, 0.08) 0%, rgba(250, 247, 240, 0.18) 68%, var(--ivory) 100%);
  z-index: 1;
}

.hero-bg__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}

.hero__shade {
  z-index: -1;
  background: radial-gradient(circle at 22% 44%, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0) 38%);
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 52px 0 70px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--leather);
  font-family: var(--ui);
  font-size: 0.79rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--title);
  font-weight: 700;
  line-height: 0.98;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: 4.1rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-family: var(--ui);
  font-weight: 800;
  line-height: 1.2;
}

.hero__lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: #243848;
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__aside {
  position: absolute;
  right: 24px;
  bottom: 70px;
  max-width: 210px;
  margin: 0;
  color: var(--leather);
  font-family: var(--title);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
}

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

.commitments {
  position: relative;
  z-index: 3;
  background: rgba(232, 222, 209, 0.56);
  border-top: 1px solid rgba(7, 26, 45, 0.08);
  border-bottom: 1px solid rgba(7, 26, 45, 0.08);
}

.commitments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.commitment {
  min-height: 170px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 30px 24px;
  text-align: center;
}

.commitment + .commitment {
  border-left: 1px solid rgba(7, 26, 45, 0.12);
}

.icon {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.commitment .icon {
  width: 46px;
  height: 46px;
  margin-bottom: 14px;
  color: var(--navy);
}

.commitment h2 {
  margin-bottom: 6px;
  font-family: var(--ui);
  font-size: 1rem;
  line-height: 1.25;
}

.commitment p {
  max-width: 210px;
  margin: 0;
  color: var(--text);
  font-size: 0.93rem;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 750px;
  margin-bottom: 36px;
}

.section-heading h2,
.split-heading h2,
.about h2,
.contact h2,
.final-cta h2 {
  margin-bottom: 16px;
}

.section-heading p:not(.eyebrow),
.split-heading p:not(.eyebrow),
.about p:not(.eyebrow),
.contact p:not(.eyebrow) {
  color: var(--text);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.work-card,
.process-step,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.8);
  box-shadow: 0 12px 34px rgba(7, 26, 45, 0.07);
}

.service-card {
  min-height: 255px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 111, 159, 0.36);
}

.service-card .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 32px;
  color: var(--steel);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
}

.work {
  background: var(--white);
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.split-heading > div {
  max-width: 720px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.work-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.work-card img {
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  object-position: left center;
  background: var(--sand);
}

.work-card__body {
  padding: 18px 18px 20px;
}

.work-card__body p {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.work-card__body h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.work-card__body span {
  color: var(--leather);
  font-size: 0.88rem;
  font-weight: 700;
}

.about {
  padding: 90px 0;
  background:
    linear-gradient(90deg, rgba(250, 247, 240, 0.96), rgba(250, 247, 240, 0.72)),
    radial-gradient(circle at 72% 55%, rgba(47, 111, 159, 0.18), transparent 34%);
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 60px;
}

.about__content {
  max-width: 560px;
}

.about__content .btn {
  margin-top: 10px;
}

.about__visual {
  position: relative;
  margin: 0;
  min-height: auto;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 253, 248, 0.95), rgba(232, 222, 209, 0.7) 68%, rgba(47, 111, 159, 0.18) 100%);
  border: 1px solid rgba(7, 26, 45, 0.08);
}

.about__visual::after {
  content: "";
  position: absolute;
  inset: auto 12% 9% 12%;
  height: 28px;
  background: rgba(7, 26, 45, 0.1);
  filter: blur(18px);
}

.about__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.mascot-showcase {
  padding: 88px 0;
  background:
    linear-gradient(180deg, var(--white), rgba(250, 247, 240, 0.9)),
    var(--white);
  border-top: 1px solid rgba(7, 26, 45, 0.08);
  border-bottom: 1px solid rgba(7, 26, 45, 0.08);
}

.mascot-showcase__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  align-items: center;
  gap: 44px;
}

.mascot-showcase__intro {
  max-width: 430px;
}

.mascot-showcase__intro h2 {
  margin-bottom: 16px;
}

.mascot-showcase__intro p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--text);
}

.mascot-showcase__grid {
  display: grid;
  grid-template-columns: 1.16fr 0.86fr 1fr;
  gap: 16px;
}

.mascot-card {
  min-height: 400px;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 14px 36px rgba(7, 26, 45, 0.08);
}

.mascot-card__visual {
  position: relative;
  display: grid;
  align-items: end;
  justify-items: center;
  min-height: 280px;
  padding: 22px 18px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 64%, rgba(47, 111, 159, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(250, 247, 240, 0.9), rgba(232, 222, 209, 0.45));
}

.mascot-card__visual::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: 2px;
  left: 16%;
  height: 24px;
  background: rgba(7, 26, 45, 0.12);
  border-radius: 50%;
  filter: blur(16px);
}

.mascot-card img {
  position: relative;
  z-index: 1;
  width: auto;
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(7, 26, 45, 0.13));
}

.mascot-card--laptop img {
  max-width: 96%;
  max-height: 284px;
}

.mascot-card--tight img {
  max-height: 306px;
}

.mascot-card--thumb img {
  max-height: 318px;
}

.mascot-card figcaption {
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(7, 26, 45, 0.08);
}

.mascot-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: var(--ui);
  font-size: 0.98rem;
  line-height: 1.25;
}

.mascot-card span {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.5;
}

.process {
  background:
    linear-gradient(180deg, var(--white), var(--ivory));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  position: relative;
  min-height: 245px;
  padding: 28px;
}

.process-step span {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 111, 159, 0.12);
  color: var(--steel);
  font-family: var(--ui);
  font-weight: 800;
}

.process-step .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  color: var(--navy);
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
}

.contact {
  padding: 92px 0;
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 56px;
  align-items: start;
}

.contact__content {
  max-width: 620px;
}

.contact-links {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
}

.contact-links .icon {
  width: 22px;
  height: 22px;
  color: var(--leather);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

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

.form-row label {
  color: var(--navy);
  font-family: var(--ui);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  min-height: 48px;
  border: 1px solid rgba(7, 26, 45, 0.16);
  border-radius: 8px;
  background: var(--ivory);
  color: var(--navy);
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--steel);
  box-shadow: 0 0 0 3px rgba(47, 111, 159, 0.55);
}

.contact-form .btn {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
}

.contact-form .form-consent {
  margin: 14px 0 4px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text);
}

.contact-form .form-consent a {
  color: inherit;
  text-decoration: underline;
}

.final-cta {
  padding: 0 0 72px;
  background: var(--white);
}

.final-cta__inner {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 42px;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(7, 26, 45, 0.98), rgba(8, 42, 66, 0.98)),
    var(--navy);
  color: var(--ivory);
}

.final-cta__inner::before {
  content: "";
  position: absolute;
  left: -42px;
  bottom: -68px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(139, 94, 52, 0.55);
  border-radius: 50%;
}

.final-cta .eyebrow {
  color: #d1ad86;
}

.final-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.1;
}

.site-footer {
  background: var(--ivory);
  border-top: 1px solid rgba(7, 26, 45, 0.09);
  padding: 54px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 44px;
}

.footer-brand img {
  width: 168px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 260px;
  color: var(--text);
  margin-bottom: 0;
}

.footer-grid h2,
.footer-grid h3 {
  margin-bottom: 15px;
  font-family: var(--ui);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 0.93rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--navy);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(7, 26, 45, 0.1);
  color: var(--text);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.ks-legal {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(7, 26, 45, 0.1);
}

.ks-legal summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--ui);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.ks-legal summary::-webkit-details-marker {
  display: none;
}

.ks-legal summary::before {
  content: "+";
  display: inline-block;
  width: 1.1em;
  font-weight: 700;
  color: var(--steel);
}

.ks-legal[open] summary::before {
  content: "–";
}

.ks-legal summary:hover,
.ks-legal summary:focus-visible {
  color: var(--steel);
}

.ks-legal__content {
  margin-top: 16px;
  max-width: 760px;
  color: var(--text);
  font-size: 0.85rem;
  line-height: 1.65;
}

.ks-legal__content h3 {
  margin: 20px 0 6px;
  font-family: var(--ui);
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--navy);
}

.ks-legal__content h3:first-child {
  margin-top: 0;
}

.ks-legal__content p {
  margin: 0 0 8px;
}

.ks-legal__content a {
  color: var(--navy);
  text-decoration: underline;
}

.ks-legal__content a:hover,
.ks-legal__content a:focus-visible {
  color: var(--steel);
}

@media (max-width: 1060px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-open .site-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 16px 20px 26px;
    background: rgba(250, 247, 240, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 45px rgba(7, 26, 45, 0.11);
  }

  .nav-open .site-nav a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(7, 26, 45, 0.08);
  }

  h1 {
    max-width: 610px;
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero__aside {
    display: none;
  }

  .commitments__grid,
  .card-grid,
  .work-grid,
  .mascot-showcase__grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitment:nth-child(3) {
    border-left: 0;
  }

  .commitment:nth-child(n + 3) {
    border-top: 1px solid rgba(7, 26, 45, 0.12);
  }

  .about__inner,
  .mascot-showcase__inner,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .about__visual {
    max-width: 460px;
    min-height: 390px;
  }

  .mascot-showcase__intro {
    max-width: 680px;
  }

  .mascot-card--laptop {
    grid-column: 1 / -1;
  }

  .mascot-card--laptop img {
    max-height: 300px;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand,
  .brand img {
    width: 142px;
  }

  .nav-open .site-nav {
    top: 72px;
  }

  .hero {
    min-height: 80svh;
    height: auto;
    max-height: none;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg,
        rgba(250, 247, 240, 0.95) 0%,
        rgba(250, 247, 240, 0.72) 26%,
        rgba(250, 247, 240, 0.34) 44%,
        rgba(250, 247, 240, 0.3) 60%,
        rgba(250, 247, 240, 0.18) 80%,
        rgba(250, 247, 240, 0.05) 92%,
        var(--ivory) 100%);
  }

  .hero-bg__image {
    object-position: 52% center;
    animation: none;
    transform: none;
  }

  .hero__content {
    justify-content: flex-start;
    padding: 30px 0 36px;
    gap: 2px;
  }

  .hero h1 {
    text-shadow:
      0 1px 14px rgba(250, 247, 240, 0.92),
      0 0 3px rgba(250, 247, 240, 0.8);
  }

  .hero__lead {
    font-weight: 600;
    text-shadow:
      -1px -1px 0 rgba(250, 247, 240, 0.96),
      1px -1px 0 rgba(250, 247, 240, 0.96),
      -1px 1px 0 rgba(250, 247, 240, 0.96),
      1px 1px 0 rgba(250, 247, 240, 0.96),
      0 0 6px rgba(250, 247, 240, 0.92),
      0 1px 12px rgba(250, 247, 240, 0.85);
  }

  h1 {
    max-width: 390px;
    font-size: 2.45rem;
  }

  h2 {
    max-width: 100%;
    font-size: 2.1rem;
    overflow-wrap: break-word;
  }

  .hero__lead {
    max-width: 340px;
    margin-top: 34px;
    font-size: 0.97rem;
    line-height: 1.55;
  }

  .button-row {
    width: 100%;
    margin-top: 76px;
  }

  .button-row .btn {
    width: 100%;
  }

  .commitments__grid,
  .card-grid,
  .work-grid,
  .mascot-showcase__grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .commitment,
  .commitment + .commitment,
  .commitment:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid rgba(7, 26, 45, 0.12);
  }

  .commitment:first-child {
    border-top: 0;
  }

  .section,
  .about,
  .mascot-showcase,
  .contact {
    padding: 68px 0;
  }

  .split-heading,
  .final-cta__inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading,
  .split-heading > div,
  .about__content,
  .mascot-showcase__intro,
  .contact__content {
    max-width: 100%;
    min-width: 0;
  }

  .service-card,
  .work-card,
  .mascot-card,
  .process-step,
  .contact-form {
    min-width: 0;
  }

  .about__visual {
    min-height: 330px;
  }

  .mascot-showcase__inner {
    gap: 28px;
  }

  .mascot-card {
    min-height: auto;
    grid-template-rows: auto auto;
  }

  .mascot-card--laptop {
    grid-column: auto;
  }

  .mascot-card__visual {
    min-height: 255px;
  }

  .mascot-card img,
  .mascot-card--laptop img,
  .mascot-card--tight img,
  .mascot-card--thumb img {
    max-height: 255px;
  }

  .contact-form {
    padding: 22px;
  }

  .final-cta {
    padding-bottom: 54px;
  }

  .final-cta__inner {
    padding: 28px 24px;
  }

  .final-cta h2 {
    font-size: 1.75rem;
  }

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

@media (max-width: 420px) {
  h2 {
    font-size: 1.9rem;
  }

  .btn {
    width: 100%;
    padding-inline: 16px;
  }
}


.site-nav {
  gap: 24px;
}

.positioning,
.service-lab,
.route-section,
.ai-section,
.proof-section,
.studio-section,
.final-cta {
  position: relative;
  overflow: hidden;
}

.positioning {
  padding: 102px 0 92px;
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.98), rgba(255, 253, 248, 0.94)),
    var(--ivory);
  border-top: 1px solid rgba(7, 26, 45, 0.08);
}

.positioning::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(47, 111, 159, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 111, 159, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.positioning__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 66px;
  align-items: center;
}

.positioning__copy h2,
.service-lab h2,
.route-section h2,
.ai-section h2,
.proof-section h2,
.studio-section h2,
.final-cta h2 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4.35rem);
  letter-spacing: 0;
}

.positioning__lead {
  max-width: 720px;
  margin-bottom: 0;
  color: #314555;
  font-size: 1.16rem;
}

.signal-panel {
  position: relative;
  min-height: 390px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  padding: 30px;
  border: 1px solid rgba(250, 247, 240, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 26, 45, 0.98), rgba(12, 38, 61, 0.96)),
    var(--navy);
  color: var(--ivory);
  box-shadow: 0 28px 70px rgba(7, 26, 45, 0.24);
}

.signal-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(232, 222, 209, 0.16);
  border-radius: 8px;
  pointer-events: none;
}

.signal-panel__grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(250, 247, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 247, 240, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.signal-panel__label {
  position: relative;
  margin: 0;
  color: #d1ad86;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-panel strong {
  position: relative;
  z-index: 1;
  max-width: 330px;
  color: var(--white);
  font-family: var(--title);
  font-size: 2.4rem;
  line-height: 1;
}

.signal-panel__route {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 13px;
}

.signal-panel__route span {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47, 111, 159, 0.8), rgba(250, 247, 240, 0.58), transparent);
  transform-origin: left;
  animation: signalSweep 5.8s ease-in-out infinite;
}

.signal-panel__route span:nth-child(2) {
  width: 78%;
  animation-delay: 0.8s;
}

.signal-panel__route span:nth-child(3) {
  width: 58%;
  animation-delay: 1.6s;
}

.signal-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(250, 247, 240, 0.14);
  border-radius: 8px;
  overflow: hidden;
}

.signal-metrics div {
  padding: 16px 14px;
  background: rgba(255, 253, 248, 0.06);
}

.signal-metrics dt {
  color: var(--white);
  font-family: var(--ui);
  font-weight: 800;
}

.signal-metrics dd {
  margin: 2px 0 0;
  color: rgba(250, 247, 240, 0.68);
  font-size: 0.82rem;
}

.service-lab {
  padding: 104px 0;
  background:
    linear-gradient(135deg, rgba(7, 26, 45, 0.99), rgba(10, 47, 73, 0.98)),
    var(--navy);
  color: var(--ivory);
}

.service-lab::before,
.ai-section::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(232, 222, 209, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 222, 209, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.split-heading--dark p:not(.eyebrow),
.service-lab .service-tile span,
.ai-section p,
.ai-list,
.final-cta p {
  color: rgba(250, 247, 240, 0.76);
}

.service-matrix {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-tile {
  position: relative;
  min-height: 282px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(250, 247, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.055);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(47, 111, 159, 0.22), rgba(139, 94, 52, 0.12));
  transition: opacity 180ms ease;
}

.service-tile:hover,
.service-tile:focus-within {
  transform: translateY(-5px);
  border-color: rgba(250, 247, 240, 0.36);
  background: rgba(255, 253, 248, 0.085);
}

.service-tile:hover::before,
.service-tile:focus-within::before {
  opacity: 1;
}

.service-tile--wide {
  grid-column: span 2;
}

.service-tile--accent {
  background:
    linear-gradient(135deg, rgba(47, 111, 159, 0.24), rgba(139, 94, 52, 0.12)),
    rgba(255, 253, 248, 0.06);
}

.service-tile > * {
  position: relative;
  z-index: 1;
}

.service-tile__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(250, 247, 240, 0.24);
  border-radius: 8px;
  color: #9dcced;
}

.service-tile__icon .icon {
  width: 26px;
  height: 26px;
}

.service-tile p {
  margin: 0;
  color: #d1ad86;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-tile h3 {
  max-width: 420px;
  margin: 0;
  color: var(--white);
  font-size: 1.35rem;
}

.service-tile span {
  display: block;
  max-width: 510px;
  font-size: 0.96rem;
}

.route-section {
  padding: 106px 0 112px;
  background:
    linear-gradient(180deg, var(--ivory), var(--white));
}

.route-section__header {
  max-width: 760px;
  margin-bottom: 28px;
}

.route-section__header p:not(.eyebrow) {
  color: var(--text);
  font-size: 1.05rem;
}

.route-map {
  position: relative;
  min-height: 430px;
}

.route-line {
  position: absolute;
  inset: 72px 0 auto;
  width: 100%;
  height: 260px;
  overflow: visible;
}

.route-line path {
  fill: none;
  stroke: rgba(47, 111, 159, 0.52);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 12 14;
  animation: routeCurrent 16s linear infinite;
}

.route-step {
  position: absolute;
  width: 214px;
  min-height: 178px;
  padding: 20px;
  border: 1px solid rgba(7, 26, 45, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 16px 40px rgba(7, 26, 45, 0.08);
}

.route-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(47, 111, 159, 0.12);
  color: var(--steel);
  font-family: var(--ui);
  font-weight: 800;
}

.route-step h3 {
  margin-bottom: 8px;
}

.route-step p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
}

.route-step--one {
  left: 0;
  top: 170px;
}

.route-step--two {
  left: 21%;
  top: 46px;
}

.route-step--three {
  left: 43%;
  top: 184px;
}

.route-step--four {
  right: 15%;
  top: 50px;
}

.route-step--five {
  right: 0;
  top: 156px;
}

.ai-section {
  padding: 108px 0;
  background:
    linear-gradient(135deg, rgba(7, 26, 45, 0.98), rgba(12, 38, 61, 0.96)),
    var(--navy);
  color: var(--ivory);
}

.ai-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 64px;
  align-items: center;
}

.ai-copy p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.05rem;
}

.ai-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.ai-list li {
  position: relative;
  padding-left: 28px;
}

.ai-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 14px;
  height: 2px;
  background: #d1ad86;
}

.ai-flow {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(250, 247, 240, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.055);
}

.ai-flow__grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(250, 247, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 247, 240, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
}

.workflow-node {
  position: absolute;
  z-index: 2;
  width: 210px;
  padding: 18px;
  border: 1px solid rgba(250, 247, 240, 0.2);
  border-radius: 8px;
  background: rgba(7, 26, 45, 0.74);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.workflow-node span {
  display: block;
  margin-bottom: 6px;
  color: #d1ad86;
  font-family: var(--ui);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.workflow-node strong {
  color: var(--white);
  font-family: var(--ui);
  font-size: 1rem;
}

.workflow-node--source {
  top: 52px;
  left: 42px;
}

.workflow-node--ai {
  top: 170px;
  left: 50%;
  transform: translateX(-50%);
  border-color: rgba(47, 111, 159, 0.62);
}

.workflow-node--crm {
  right: 42px;
  top: 68px;
}

.workflow-node--mail {
  right: 84px;
  bottom: 54px;
}

.workflow-beam {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47, 111, 159, 0.9), transparent);
  transform-origin: left;
  animation: flowSignal 4.8s ease-in-out infinite;
}

.workflow-beam--one {
  top: 150px;
  left: 218px;
  width: 170px;
  transform: rotate(26deg);
}

.workflow-beam--two {
  top: 176px;
  right: 224px;
  width: 160px;
  transform: rotate(-24deg);
  animation-delay: 0.8s;
}

.workflow-beam--three {
  right: 188px;
  bottom: 148px;
  width: 150px;
  transform: rotate(54deg);
  animation-delay: 1.4s;
}

.proof-section {
  padding: 106px 0;
  background: var(--white);
}

.proof-section .split-heading p:not(.eyebrow) {
  max-width: 430px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.proof-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(7, 26, 45, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.8), rgba(255, 253, 248, 0.86));
}

.proof-card .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--steel);
}

.proof-card h3 {
  margin-bottom: 8px;
}

.proof-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr;
  gap: 18px;
}

.portfolio-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 45, 0.11);
  border-radius: 8px;
  background: var(--sand);
  box-shadow: 0 18px 42px rgba(7, 26, 45, 0.08);
}

.portfolio-card--large {
  grid-row: span 2;
  min-height: 620px;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.portfolio-card:hover img {
  transform: scale(1.035);
}

.portfolio-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 62px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(7, 26, 45, 0.86));
  color: var(--white);
}

.portfolio-card p {
  margin-bottom: 6px;
  color: rgba(250, 247, 240, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.portfolio-card h3 {
  margin-bottom: 4px;
}

.portfolio-card span {
  color: #d1ad86;
  font-size: 0.88rem;
  font-weight: 800;
}

.studio-section {
  padding: 106px 0;
  background:
    linear-gradient(180deg, var(--ivory), rgba(232, 222, 209, 0.48));
}

.studio-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1fr);
  gap: 58px;
  align-items: center;
}

.studio-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--text);
  font-size: 1.04rem;
}

.studio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.studio-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(7, 26, 45, 0.12);
  border-radius: 999px;
  color: var(--navy);
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
}

.mascot-rail {
  display: grid;
  grid-template-columns: 1.2fr 0.86fr 0.9fr;
  align-items: stretch;
  gap: 14px;
}

.mascot-frame {
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 0;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 45, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(232, 222, 209, 0.54));
  box-shadow: 0 18px 42px rgba(7, 26, 45, 0.08);
}

.mascot-frame img {
  align-self: end;
  justify-self: center;
  width: auto;
  max-height: 318px;
  padding: 18px 14px 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(7, 26, 45, 0.14));
}

.mascot-frame--laptop img {
  max-width: 100%;
  max-height: 300px;
}

.mascot-frame figcaption {
  padding: 14px 18px;
  border-top: 1px solid rgba(7, 26, 45, 0.08);
  color: var(--text);
  font-family: var(--ui);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.final-cta {
  padding: 104px 0;
  background:
    linear-gradient(135deg, rgba(7, 26, 45, 0.99), rgba(8, 42, 66, 0.98)),
    var(--navy);
  color: var(--ivory);
}

.final-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  align-items: start;
  gap: 54px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.final-cta__inner::before {
  content: "";
  position: absolute;
  top: 26px;
  left: -64px;
  width: 260px;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(209, 173, 134, 0.72), transparent);
}

.final-cta__copy {
  max-width: 760px;
}

.final-cta__copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.btn--ghost-light {
  border-color: rgba(250, 247, 240, 0.28);
  background: rgba(250, 247, 240, 0.04);
  color: var(--ivory);
}

.contact-links--dark {
  grid-template-columns: repeat(2, max-content);
  margin-top: 30px;
}

.contact-links--dark a {
  color: rgba(250, 247, 240, 0.84);
}

.contact-form--dark {
  border: 1px solid rgba(250, 247, 240, 0.16);
  background: rgba(255, 253, 248, 0.065);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.contact-form--dark .form-row label {
  color: var(--ivory);
}

.contact-form--dark .form-row input,
.contact-form--dark .form-row select,
.contact-form--dark .form-row textarea {
  border-color: rgba(250, 247, 240, 0.2);
  background: rgba(255, 253, 248, 0.08);
  color: var(--ivory);
}

.contact-form--dark .form-row input:focus,
.contact-form--dark .form-row select:focus,
.contact-form--dark .form-row textarea:focus {
  border-color: rgba(157, 204, 237, 0.82);
  box-shadow: 0 0 0 3px rgba(47, 111, 159, 0.45);
}

.contact-form--dark .form-row select option {
  color: var(--navy);
}

.contact-form--dark .form-status {
  color: rgba(250, 247, 240, 0.72);
}

.ks-cta .contact-form--dark .form-consent {
  color: rgba(250, 247, 240, 0.62);
}

.js [data-reveal] {
  opacity: 1;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@keyframes signalSweep {
  0%,
  100% {
    opacity: 0.34;
    transform: scaleX(0.72);
  }
  48% {
    opacity: 0.92;
    transform: scaleX(1);
  }
}

@keyframes routeCurrent {
  to {
    stroke-dashoffset: -160;
  }
}

@keyframes flowSignal {
  0%,
  100% {
    opacity: 0.22;
    filter: none;
  }
  50% {
    opacity: 0.86;
    filter: drop-shadow(0 0 8px rgba(47, 111, 159, 0.72));
  }
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 0;
  }

  .positioning__inner,
  .ai-section__inner,
  .studio-section__inner,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .signal-panel,
  .ai-flow {
    min-height: 360px;
  }

  .service-matrix,
  .proof-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-tile--wide,
  .portfolio-card--large {
    grid-column: 1 / -1;
  }

  .portfolio-card--large {
    min-height: 430px;
  }

  .route-map {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .route-line {
    display: none;
  }

  .route-step,
  .route-step--one,
  .route-step--two,
  .route-step--three,
  .route-step--four,
  .route-step--five {
    position: relative;
    inset: auto;
    width: auto;
  }

  .mascot-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .positioning,
  .service-lab,
  .route-section,
  .ai-section,
  .proof-section,
  .studio-section,
  .final-cta {
    padding: 72px 0;
  }

  .positioning__copy h2,
  .service-lab h2,
  .route-section h2,
  .ai-section h2,
  .proof-section h2,
  .studio-section h2,
  .final-cta h2 {
    font-size: 2.15rem;
    line-height: 1;
  }

  .positioning__lead,
  .route-section__header p:not(.eyebrow),
  .ai-copy p:not(.eyebrow),
  .studio-copy p:not(.eyebrow),
  .final-cta__copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .signal-panel {
    min-height: 330px;
    padding: 24px;
  }

  .signal-panel strong {
    font-size: 2rem;
  }

  .signal-metrics,
  .service-matrix,
  .proof-grid,
  .portfolio-grid,
  .route-map,
  .mascot-rail {
    grid-template-columns: 1fr;
  }

  .service-tile,
  .proof-card,
  .route-step {
    min-height: auto;
  }

  .ai-section__inner {
    gap: 34px;
  }

  .ai-flow {
    min-height: 560px;
  }

  .workflow-node {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% - 40px);
    margin: 22px auto;
    transform: none;
  }

  .workflow-node--ai {
    transform: none;
  }

  .workflow-beam {
    display: none;
  }

  .portfolio-card,
  .portfolio-card--large {
    min-height: 340px;
  }

  .mascot-frame {
    min-height: 320px;
  }

  .mascot-frame img,
  .mascot-frame--laptop img {
    max-height: 270px;
  }

  .contact-links--dark {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Kerno Studio distinctive art direction */
.positioning,
.service-lab,
.route-section,
.ai-section,
.proof-section,
.studio-section,
.final-cta {
  position: relative;
  overflow: hidden;
}

.positioning {
  padding: 118px 0 104px;
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.98), rgba(255, 253, 248, 0.96)),
    var(--ivory);
  border-top: 1px solid rgba(7, 26, 45, 0.08);
}

.chart-lines {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(47, 111, 159, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 111, 159, 0.08) 1px, transparent 1px),
    repeating-linear-gradient(118deg, transparent 0 44px, rgba(139, 94, 52, 0.08) 45px 46px);
  background-size: 78px 78px, 78px 78px, 260px 260px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.positioning::after {
  content: "";
  position: absolute;
  right: -6vw;
  bottom: -80px;
  width: 48vw;
  height: 260px;
  border-top: 1px solid rgba(47, 111, 159, 0.22);
  border-radius: 52% 48% 0 0;
  transform: rotate(-4deg);
  pointer-events: none;
}

.positioning__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
}

.manifesto-copy {
  max-width: 760px;
}

.manifesto-copy h2,
.system-intro h2,
.route-section__header h2,
.ai-copy h2,
.board-copy h2,
.studio-copy h2,
.final-cta h2 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.5vw, 4.8rem);
  letter-spacing: 0;
}

.positioning__lead {
  max-width: 700px;
  margin-bottom: 24px;
  color: #263c4c;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.manifesto-note {
  max-width: 620px;
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid rgba(139, 94, 52, 0.42);
  color: var(--text);
}

.navigation-console,
.system-readout,
.system-module,
.ai-flow,
.reliability-console,
.portfolio-pin,
.departure-card {
  --mx: 50%;
  --my: 50%;
}

.navigation-console {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(7, 26, 45, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(7, 26, 45, 0.98), rgba(11, 43, 66, 0.96));
  color: var(--ivory);
  box-shadow: 0 30px 80px rgba(7, 26, 45, 0.24);
  transition: transform 220ms ease, border-color 220ms ease;
}

.navigation-console:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 111, 159, 0.48);
}

.navigation-console::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(250, 247, 240, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.console-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(250, 247, 240, 0.68);
  font-family: var(--ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compass-ui {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(290px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from 18deg, rgba(250, 247, 240, 0.04), rgba(47, 111, 159, 0.3), rgba(250, 247, 240, 0.04), rgba(139, 94, 52, 0.28), rgba(250, 247, 240, 0.04)),
    repeating-conic-gradient(rgba(250, 247, 240, 0.22) 0deg 1deg, transparent 1deg 15deg);
  box-shadow: inset 0 0 0 1px rgba(250, 247, 240, 0.14);
}

.compass-ring {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(250, 247, 240, 0.18);
  border-radius: 50%;
}

.compass-ring--inner {
  inset: 74px;
  border-color: rgba(47, 111, 159, 0.52);
}

.compass-needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 42%;
  border-radius: 999px;
  background: linear-gradient(180deg, #d1ad86, rgba(250, 247, 240, 0.4));
  transform-origin: 50% 0;
  transform: rotate(34deg) translate(-50%, -2px);
  animation: compassDrift 8s ease-in-out infinite;
}

.compass-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9dcced;
  box-shadow: 0 0 18px rgba(157, 204, 237, 0.7);
}

.compass-dot--one {
  top: 23%;
  left: 24%;
}

.compass-dot--two {
  right: 18%;
  top: 46%;
}

.compass-dot--three {
  left: 50%;
  bottom: 17%;
}

.signal-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(250, 247, 240, 0.14);
  border-radius: 8px;
}

.signal-metrics div {
  padding: 16px 14px;
  background: rgba(255, 253, 248, 0.06);
}

.signal-metrics dt {
  color: #d1ad86;
  font-family: var(--ui);
  font-weight: 800;
}

.signal-metrics dd {
  margin: 2px 0 0;
  color: rgba(250, 247, 240, 0.74);
  font-size: 0.82rem;
}

.console-current {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.console-current span {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47, 111, 159, 0.9), rgba(250, 247, 240, 0.72), transparent);
  transform-origin: left;
  animation: signalSweep 5.8s ease-in-out infinite;
}

.console-current span:nth-child(2) {
  width: 74%;
  animation-delay: 0.7s;
}

.console-current span:nth-child(3) {
  width: 54%;
  animation-delay: 1.4s;
}

.service-lab {
  padding: 116px 0;
  background:
    linear-gradient(135deg, rgba(7, 26, 45, 0.99), rgba(9, 45, 70, 0.98)),
    var(--navy);
  color: var(--ivory);
}

.service-lab::before,
.ai-section::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(232, 222, 209, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 222, 209, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.service-system {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.system-intro {
  position: sticky;
  top: 112px;
  min-height: 520px;
  display: grid;
  align-content: start;
  gap: 22px;
}

.system-intro p:not(.eyebrow),
.ai-copy p:not(.eyebrow),
.final-cta__copy p:not(.eyebrow) {
  color: rgba(250, 247, 240, 0.76);
}

.system-readout {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(360px, 100%);
  padding: 22px;
  border: 1px solid rgba(250, 247, 240, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.18), transparent 34%),
    rgba(255, 253, 248, 0.055);
}

.readout-label {
  display: block;
  margin-bottom: 10px;
  color: #d1ad86;
  font-family: var(--ui);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.system-readout strong {
  display: block;
  color: var(--white);
  font-family: var(--ui);
  font-size: 1rem;
}

.system-readout p {
  margin: 18px 0 0;
  color: rgba(250, 247, 240, 0.7);
  font-size: 0.9rem;
}

.readout-bars {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.readout-bars span {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(47, 111, 159, 0.95), rgba(209, 173, 134, 0.72), transparent);
  animation: modulePulse 4.6s ease-in-out infinite;
}

.readout-bars span:nth-child(2) {
  width: 78%;
  animation-delay: 0.5s;
}

.readout-bars span:nth-child(3) {
  width: 58%;
  animation-delay: 1s;
}

.module-bay {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.module-bay::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(250, 247, 240, 0.22), transparent);
  pointer-events: none;
}

.system-module {
  position: relative;
  min-height: 230px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-content: end;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(250, 247, 240, 0.15);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.2), transparent 34%),
    rgba(255, 253, 248, 0.052);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.system-module:hover {
  transform: translateY(-5px);
  border-color: rgba(157, 204, 237, 0.5);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.26), transparent 38%),
    rgba(255, 253, 248, 0.076);
}

.system-module--wide {
  grid-column: 1 / -1;
  min-height: 290px;
}

.system-module--accent {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(209, 173, 134, 0.2), transparent 36%),
    linear-gradient(135deg, rgba(47, 111, 159, 0.22), rgba(139, 94, 52, 0.12)),
    rgba(255, 253, 248, 0.06);
}

.module-port {
  align-self: start;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(250, 247, 240, 0.18);
  border-radius: 50%;
  color: #d1ad86;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
}

.system-module .icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 32px;
  height: 32px;
  color: rgba(157, 204, 237, 0.82);
}

.system-module p {
  margin-bottom: 8px;
  color: #d1ad86;
  font-family: var(--ui);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-module h3 {
  max-width: 420px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.26rem;
}

.system-module span:not(.module-port):not(.module-signal) {
  display: block;
  max-width: 500px;
  color: rgba(250, 247, 240, 0.74);
  font-size: 0.95rem;
}

.module-signal {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: 96px;
  height: 2px;
  background: rgba(250, 247, 240, 0.1);
}

.module-signal i {
  display: block;
  width: 44%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #9dcced, transparent);
  animation: signalSweep 3.8s ease-in-out infinite;
}

.route-section {
  padding: 120px 0;
  background:
    linear-gradient(180deg, var(--ivory), var(--white));
}

.route-shell {
  position: relative;
}

.route-section__header {
  max-width: 740px;
  margin-bottom: 38px;
}

.route-section__header p:not(.eyebrow),
.board-copy p,
.studio-copy p:not(.eyebrow) {
  color: var(--text);
  font-size: 1.05rem;
}

.route-map {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(7, 26, 45, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 26, 45, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 45, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(250, 247, 240, 0.92), rgba(232, 222, 209, 0.36));
  background-size: 64px 64px, 64px 64px, auto;
}

.route-map::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 520px;
  height: 360px;
  border: 1px solid rgba(47, 111, 159, 0.2);
  border-radius: 56% 44% 0 0;
  transform: rotate(-14deg);
}

.route-line {
  position: absolute;
  inset: 46px 0 auto;
  width: 100%;
  height: 430px;
  overflow: visible;
}

.route-line path {
  fill: none;
  stroke-linecap: round;
}

.route-line__depth {
  stroke: rgba(47, 111, 159, 0.18);
  stroke-width: 1.4;
  stroke-dasharray: 5 13;
}

.route-line__main {
  stroke: rgba(47, 111, 159, 0.72);
  stroke-width: 3;
  stroke-dasharray: 12 14;
  filter: drop-shadow(0 0 8px rgba(47, 111, 159, 0.22));
  animation: routeCurrent 16s linear infinite;
}

.route-compass {
  position: absolute;
  top: 38px;
  right: 42px;
  width: 110px;
  aspect-ratio: 1;
  border: 1px solid rgba(7, 26, 45, 0.16);
  border-radius: 50%;
}

.route-compass::before,
.route-compass::after,
.route-compass span {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 1px;
  height: 78px;
  background: rgba(139, 94, 52, 0.42);
  transform-origin: top;
}

.route-compass::after {
  transform: rotate(90deg);
}

.route-compass span {
  height: 54px;
  background: rgba(47, 111, 159, 0.62);
  transform: rotate(34deg);
}

.route-step {
  position: absolute;
  width: 210px;
  min-height: auto;
  padding: 0 0 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 1px 0 rgba(255, 253, 248, 0.72);
}

.route-step::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--steel);
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 0 0 8px rgba(47, 111, 159, 0.1);
}

.route-step span {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 8px;
  border-radius: 0;
  background: transparent;
  color: var(--leather);
  font-family: var(--ui);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.route-step h3 {
  margin-bottom: 7px;
  color: var(--navy);
}

.route-step p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
}

.route-step--one {
  left: 6%;
  top: 338px;
}

.route-step--two {
  left: 23%;
  top: 112px;
}

.route-step--three {
  left: 44%;
  top: 286px;
}

.route-step--four {
  right: 15%;
  top: 126px;
}

.route-step--five {
  right: 4%;
  top: 300px;
}

.ai-section {
  padding: 122px 0;
  background:
    linear-gradient(135deg, rgba(7, 26, 45, 0.98), rgba(12, 38, 61, 0.96)),
    var(--navy);
  color: var(--ivory);
}

.ai-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1fr);
  gap: 68px;
  align-items: center;
}

.ai-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.ai-chips span {
  padding: 9px 12px;
  border: 1px solid rgba(250, 247, 240, 0.16);
  border-radius: 999px;
  color: rgba(250, 247, 240, 0.82);
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
}

.ai-flow {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(250, 247, 240, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.2), transparent 34%),
    rgba(255, 253, 248, 0.05);
}

.ai-flow__grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(250, 247, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 247, 240, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
}

.ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157, 204, 237, 0.58);
  border-radius: 50%;
  background: rgba(7, 26, 45, 0.84);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 34px rgba(47, 111, 159, 0.28);
}

.ai-core strong {
  position: relative;
  z-index: 2;
  color: #9dcced;
  font-family: var(--ui);
  letter-spacing: 0.16em;
}

.ai-core__ring {
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(209, 173, 134, 0.62);
  border-radius: 50%;
  animation: coreSpin 12s linear infinite;
}

.workflow-node {
  position: absolute;
  z-index: 4;
  width: 210px;
  padding: 18px;
  border: 1px solid rgba(250, 247, 240, 0.18);
  border-radius: 8px;
  background: rgba(7, 26, 45, 0.78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.workflow-node span {
  display: block;
  margin-bottom: 7px;
  color: #d1ad86;
  font-family: var(--ui);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workflow-node strong {
  color: var(--white);
  font-family: var(--ui);
}

.workflow-node--source {
  top: 58px;
  left: 44px;
}

.workflow-node--ai {
  left: 54px;
  bottom: 72px;
  transform: none;
}

.workflow-node--crm {
  top: 78px;
  right: 46px;
}

.workflow-node--mail {
  right: 74px;
  bottom: 62px;
}

.workflow-beam {
  position: absolute;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47, 111, 159, 0.9), transparent);
  transform-origin: left;
  animation: flowSignal 4.8s ease-in-out infinite;
}

.workflow-beam--one {
  top: 184px;
  left: 210px;
  width: 210px;
  transform: rotate(24deg);
}

.workflow-beam--two {
  top: 174px;
  right: 218px;
  width: 190px;
  transform: rotate(-22deg);
  animation-delay: 0.8s;
}

.workflow-beam--three {
  right: 202px;
  bottom: 178px;
  width: 184px;
  transform: rotate(44deg);
  animation-delay: 1.4s;
}

.workflow-streams {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.workflow-streams span {
  position: absolute;
  left: -12%;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 204, 237, 0.6), transparent);
  animation: streamFlow 9s linear infinite;
}

.workflow-streams span:nth-child(1) {
  top: 22%;
}

.workflow-streams span:nth-child(2) {
  top: 42%;
  animation-delay: 1.8s;
}

.workflow-streams span:nth-child(3) {
  top: 61%;
  animation-delay: 3.4s;
}

.workflow-streams span:nth-child(4) {
  top: 78%;
  animation-delay: 5.2s;
}

.proof-section {
  padding: 118px 0;
  background:
    linear-gradient(180deg, var(--white), var(--ivory));
}

.reliability-board {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.72fr);
  gap: 52px;
  align-items: center;
  margin-bottom: 60px;
}

.board-copy {
  max-width: 740px;
}

.reliability-console {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 45, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(232, 222, 209, 0.5));
  box-shadow: 0 22px 54px rgba(7, 26, 45, 0.09);
}

.reliability-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 26, 45, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 45, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.reliability-status,
.reliability-metrics,
.logbook {
  position: relative;
  z-index: 1;
}

.reliability-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  margin-bottom: 24px;
}

.status-light {
  grid-row: span 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--steel);
  box-shadow: 0 0 18px rgba(47, 111, 159, 0.62);
  animation: beaconPulse 3.4s ease-in-out infinite;
}

.reliability-status strong {
  color: var(--navy);
  font-family: var(--ui);
}

.reliability-status em {
  color: var(--text);
  font-style: normal;
  font-size: 0.9rem;
}

.reliability-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 45, 0.1);
  border-radius: 8px;
}

.reliability-metrics div {
  padding: 18px;
  background: rgba(255, 253, 248, 0.58);
}

.reliability-metrics dt {
  color: var(--navy);
  font-family: var(--ui);
  font-weight: 800;
}

.reliability-metrics dd {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 0.88rem;
}

.logbook {
  display: grid;
  gap: 10px;
}

.logbook p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
}

.logbook span {
  margin-right: 10px;
  color: var(--leather);
  font-family: var(--ui);
  font-weight: 800;
}

.portfolio-map {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 0.98fr;
  gap: 18px;
}

.portfolio-map__line {
  position: absolute;
  inset: 12% 4% auto;
  height: 68%;
  border: 1px solid rgba(47, 111, 159, 0.18);
  border-right: 0;
  border-bottom: 0;
  transform: skewY(-4deg);
  pointer-events: none;
}

.portfolio-pin {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 45, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.12), transparent 34%),
    var(--sand);
  box-shadow: 0 18px 42px rgba(7, 26, 45, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.portfolio-pin:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 58px rgba(7, 26, 45, 0.13);
}

.portfolio-pin--large {
  grid-row: span 2;
  min-height: 640px;
}

.portfolio-pin:nth-of-type(4) {
  grid-column: 2 / 4;
}

.portfolio-pin img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 540ms ease, filter 540ms ease;
}

.portfolio-pin:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.portfolio-pin div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 74px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(7, 26, 45, 0.9));
  color: var(--white);
}

.portfolio-pin p {
  margin-bottom: 6px;
  color: rgba(250, 247, 240, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.portfolio-pin h3 {
  margin-bottom: 4px;
}

.portfolio-pin span {
  color: #d1ad86;
  font-size: 0.88rem;
  font-weight: 800;
}

.studio-section {
  padding: 120px 0;
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.96), rgba(232, 222, 209, 0.52));
}

.studio-section__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1fr);
  gap: 62px;
  align-items: center;
}

.studio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.studio-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(7, 26, 45, 0.12);
  border-radius: 999px;
  color: var(--navy);
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
}

.mascot-rail {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.84fr 0.9fr;
  align-items: stretch;
  gap: 14px;
}

.mascot-rail::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 56px;
  left: 4%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 94, 52, 0.34), transparent);
}

.mascot-frame {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 45, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(rgba(7, 26, 45, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 45, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.9), rgba(232, 222, 209, 0.54));
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: 0 18px 42px rgba(7, 26, 45, 0.08);
}

.mascot-frame img {
  align-self: end;
  justify-self: center;
  width: auto;
  max-height: 320px;
  padding: 18px 14px 0;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(7, 26, 45, 0.14));
  animation: mascotFloat 7s ease-in-out infinite;
}

.mascot-frame--laptop img {
  max-width: 100%;
  max-height: 306px;
}

.mascot-frame:nth-child(2) img {
  animation-delay: 0.8s;
}

.mascot-frame:nth-child(3) img {
  animation-delay: 1.4s;
}

.mascot-frame figcaption {
  position: relative;
  z-index: 1;
  padding: 14px 18px;
  border-top: 1px solid rgba(7, 26, 45, 0.08);
  color: var(--text);
  font-family: var(--ui);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.final-cta {
  padding: 126px 0 116px;
  background:
    linear-gradient(135deg, rgba(7, 26, 45, 0.99), rgba(8, 42, 66, 0.98)),
    var(--navy);
  color: var(--ivory);
}

.tide-graphic {
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  opacity: 0.26;
  background:
    repeating-radial-gradient(ellipse at 50% 100%, transparent 0 36px, rgba(157, 204, 237, 0.28) 37px 38px);
  animation: tideMove 18s ease-in-out infinite;
}

.final-cta__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.7fr);
  gap: 60px;
  align-items: start;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.final-cta__copy {
  max-width: 760px;
}

.cta-route {
  display: grid;
  grid-template-columns: auto 68px auto 68px auto;
  align-items: center;
  gap: 12px;
  width: min(100%, 520px);
  margin: 30px 0;
  color: rgba(250, 247, 240, 0.76);
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-route i {
  height: 1px;
  background: linear-gradient(90deg, rgba(209, 173, 134, 0.68), transparent);
}

.btn--ghost-light {
  border-color: rgba(250, 247, 240, 0.28);
  background: rgba(250, 247, 240, 0.04);
  color: var(--ivory);
}

.contact-links--dark {
  grid-template-columns: repeat(2, max-content);
  margin-top: 30px;
}

.contact-links--dark a {
  color: rgba(250, 247, 240, 0.84);
}

.departure-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(250, 247, 240, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.22), transparent 34%),
    rgba(255, 253, 248, 0.065);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.departure-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(209, 173, 134, 0.46), transparent);
}

.departure-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(250, 247, 240, 0.14);
  color: rgba(250, 247, 240, 0.72);
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.departure-card__header strong {
  color: var(--white);
  letter-spacing: 0;
  text-transform: none;
}

.contact-form--dark .form-row label {
  color: var(--ivory);
}

.contact-form--dark .form-row input,
.contact-form--dark .form-row select,
.contact-form--dark .form-row textarea {
  border-color: rgba(250, 247, 240, 0.2);
  background: rgba(255, 253, 248, 0.08);
  color: var(--ivory);
}

.contact-form--dark .form-row input:focus,
.contact-form--dark .form-row select:focus,
.contact-form--dark .form-row textarea:focus {
  border-color: rgba(157, 204, 237, 0.82);
  box-shadow: 0 0 0 3px rgba(47, 111, 159, 0.45);
}

.contact-form--dark .form-row select option {
  color: var(--navy);
}

.contact-form--dark .form-status {
  color: rgba(250, 247, 240, 0.72);
}

.ks-cta .contact-form--dark .form-consent {
  color: rgba(250, 247, 240, 0.62);
}

.js [data-reveal] {
  opacity: 1;
  transform: translateY(22px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

@keyframes compassDrift {
  0%,
  100% {
    transform: rotate(31deg) translate(-50%, -2px);
  }
  50% {
    transform: rotate(38deg) translate(-50%, -2px);
  }
}

@keyframes signalSweep {
  0%,
  100% {
    opacity: 0.34;
    transform: scaleX(0.72);
  }
  48% {
    opacity: 0.92;
    transform: scaleX(1);
  }
}

@keyframes modulePulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.78);
    transform-origin: left;
  }
  50% {
    opacity: 0.95;
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes routeCurrent {
  to {
    stroke-dashoffset: -160;
  }
}

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

@keyframes flowSignal {
  0%,
  100% {
    opacity: 0.22;
    filter: none;
  }
  50% {
    opacity: 0.88;
    filter: drop-shadow(0 0 8px rgba(47, 111, 159, 0.72));
  }
}

@keyframes streamFlow {
  to {
    transform: translateX(300%);
  }
}

@keyframes beaconPulse {
  0%,
  100% {
    opacity: 0.55;
    box-shadow: 0 0 10px rgba(47, 111, 159, 0.36);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 22px rgba(47, 111, 159, 0.68);
  }
}

@keyframes mascotFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes tideMove {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

@media (max-width: 1060px) {
  .site-nav {
    gap: 0;
  }

  .positioning__inner,
  .service-system,
  .ai-section__inner,
  .reliability-board,
  .studio-section__inner,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .system-intro {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .system-readout {
    position: relative;
    width: 100%;
  }

  .module-bay,
  .portfolio-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .system-module--wide,
  .portfolio-pin--large {
    grid-column: 1 / -1;
  }

  .portfolio-pin--large {
    min-height: 440px;
  }

  .portfolio-pin:nth-of-type(4) {
    grid-column: auto;
  }

  .route-map {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
    padding: 26px;
  }

  .route-map::before {
    top: 36px;
    bottom: 36px;
    left: 41px;
    right: auto;
    width: 1px;
    height: auto;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, rgba(47, 111, 159, 0.18), rgba(47, 111, 159, 0.48), rgba(47, 111, 159, 0.18));
    transform: none;
  }

  .route-line,
  .route-compass {
    display: none;
  }

  .route-step,
  .route-step--one,
  .route-step--two,
  .route-step--three,
  .route-step--four,
  .route-step--five {
    position: relative;
    inset: auto;
    width: auto;
    min-height: auto;
    padding: 18px 8px 24px 50px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .route-step::before {
    top: 24px;
    left: 18px;
  }

  .mascot-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .positioning,
  .service-lab,
  .route-section,
  .ai-section,
  .proof-section,
  .studio-section,
  .final-cta {
    padding: 74px 0;
  }

  .manifesto-copy h2,
  .system-intro h2,
  .route-section__header h2,
  .ai-copy h2,
  .board-copy h2,
  .studio-copy h2,
  .final-cta h2 {
    font-size: 2.2rem;
    line-height: 1;
  }

  .positioning__lead,
  .route-section__header p:not(.eyebrow),
  .ai-copy p:not(.eyebrow),
  .board-copy p,
  .studio-copy p:not(.eyebrow),
  .final-cta__copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .navigation-console {
    min-height: 390px;
    padding: 22px;
  }

  .compass-ui {
    width: min(238px, 72vw);
  }

  .signal-metrics,
  .module-bay,
  .route-map,
  .reliability-metrics,
  .portfolio-map,
  .mascot-rail {
    grid-template-columns: 1fr;
  }

  .module-bay::before,
  .portfolio-map__line,
  .mascot-rail::before {
    display: none;
  }

  .system-module,
  .system-module--wide {
    min-height: auto;
    padding: 22px;
  }

  .system-module .icon {
    position: static;
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }

  .system-module div {
    grid-column: 2;
  }

  .module-signal {
    display: none;
  }

  .ai-section__inner {
    gap: 36px;
  }

  .ai-flow {
    min-height: auto;
    display: grid;
    gap: 16px;
    padding: 22px;
  }

  .ai-core,
  .workflow-node {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .ai-core {
    width: 96px;
    justify-self: center;
  }

  .workflow-beam,
  .workflow-streams {
    display: none;
  }

  .portfolio-pin,
  .portfolio-pin--large {
    min-height: 340px;
  }

  .mascot-frame {
    min-height: 330px;
  }

  .mascot-frame img,
  .mascot-frame--laptop img {
    max-height: 270px;
  }

  .cta-route {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cta-route i {
    width: 1px;
    height: 28px;
  }

  .contact-links--dark {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.001ms !important;
  }

  .js [data-reveal],
  .js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

/* Final Kerno coastal premium direction */
.hero h1 {
  max-width: 610px;
}

.hero__lead {
  max-width: 570px;
}

.ks-manifesto,
.ks-waypoints,
.ks-escales,
.ks-navigation,
.ks-ai,
.ks-trust,
.ks-cta {
  position: relative;
  overflow: hidden;
}

.ks-manifesto h2,
.ks-waypoints h2,
.ks-escales h2,
.ks-navigation h2,
.ks-ai h2,
.ks-trust h2,
.ks-cta h2 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  letter-spacing: 0;
}

.ks-section-heading {
  max-width: 780px;
}

.ks-section-heading p:not(.eyebrow),
.ks-manifesto p,
.ks-waypoints__intro p,
.ks-ai__copy p,
.ks-trust p,
.ks-cta p {
  color: var(--text);
  font-size: 1.05rem;
}

.ks-manifesto {
  padding: 124px 0 118px;
  background:
    linear-gradient(180deg, rgba(250, 247, 240, 0.98), rgba(255, 253, 248, 0.96)),
    var(--ivory);
}

.ks-manifesto::before,
.ks-navigation::before,
.ks-trust::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(47, 111, 159, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 111, 159, 0.07) 1px, transparent 1px),
    repeating-linear-gradient(118deg, transparent 0 44px, rgba(139, 94, 52, 0.07) 45px 46px);
  background-size: 76px 76px, 76px 76px, 280px 280px;
  pointer-events: none;
}

.ks-manifesto__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
}

.ks-manifesto__copy p:not(.eyebrow) {
  max-width: 720px;
  color: #263c4c;
  font-size: clamp(1.12rem, 1.8vw, 1.34rem);
}

.ks-business-log {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 460px;
  display: grid;
  align-content: end;
  padding: 30px;
  border: 1px solid rgba(7, 26, 45, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(232, 222, 209, 0.54));
  box-shadow: 0 28px 70px rgba(7, 26, 45, 0.12);
}

.ks-log-k {
  position: absolute;
  top: 28px;
  left: 30px;
  color: rgba(7, 26, 45, 0.09);
  font-family: var(--title);
  font-size: 13rem;
  font-weight: 700;
  line-height: 0.75;
}

.ks-business-log::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 32px;
  width: 170px;
  aspect-ratio: 1;
  border: 1px solid rgba(47, 111, 159, 0.22);
  border-radius: 50%;
  background:
    repeating-conic-gradient(rgba(47, 111, 159, 0.2) 0 1deg, transparent 1deg 18deg),
    radial-gradient(circle, rgba(47, 111, 159, 0.13), transparent 58%);
  animation: ksSpin 28s linear infinite;
}

.ks-business-log ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 45, 0.1);
  border-radius: 8px;
  list-style: none;
}

.ks-business-log li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.62);
}

.ks-business-log strong {
  color: var(--navy);
  font-family: var(--ui);
}

.ks-business-log span:not(.ks-log-k) {
  color: var(--text);
}

.ks-waypoints {
  padding: 124px 0;
  background:
    radial-gradient(circle at 72% 12%, rgba(47, 111, 159, 0.16), transparent 32%),
    linear-gradient(180deg, var(--ivory), var(--white));
}

.ks-waypoints::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: 130px;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(47, 111, 159, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.ks-waypoints__intro {
  position: relative;
  max-width: 760px;
  margin-bottom: 52px;
}

.ks-waypoints__scene {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.ks-waypoints__scene::before {
  content: "";
  position: absolute;
  top: 46%;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 94, 52, 0.3), rgba(47, 111, 159, 0.28), transparent);
}

.ks-waypoint {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 30px;
  border: 1px solid rgba(7, 26, 45, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.13), transparent 35%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(232, 222, 209, 0.46));
  box-shadow: 0 18px 44px rgba(7, 26, 45, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.ks-waypoint:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 62px rgba(7, 26, 45, 0.12);
}

.ks-waypoint--sail {
  margin-top: 44px;
}

.ks-waypoint__icon {
  position: relative;
  min-height: 210px;
  display: grid;
  place-items: center;
}

.ks-waypoint span:not(.ks-lighthouse):not(.ks-sail):not(.ks-signal) {
  color: var(--leather);
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ks-waypoint h3 {
  margin: 9px 0 10px;
  color: var(--navy);
  font-size: 1.35rem;
}

.ks-waypoint p {
  margin: 0;
  color: var(--text);
}

.ks-lighthouse {
  position: relative;
  width: 46px;
  height: 154px;
  border: 2px solid var(--navy);
  border-top-width: 10px;
  background: linear-gradient(90deg, rgba(250, 247, 240, 0.92), rgba(232, 222, 209, 0.86));
}

.ks-lighthouse::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 280px;
  height: 80px;
  background: radial-gradient(ellipse at left, rgba(157, 204, 237, 0.42), transparent 68%);
  transform: translateX(-4px);
  animation: ksBeacon 5.8s ease-in-out infinite;
}

.ks-lighthouse::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  bottom: -18px;
  height: 18px;
  background: var(--navy);
  border-radius: 999px 999px 0 0;
}

.ks-sail {
  position: relative;
  width: 140px;
  height: 132px;
  border-bottom: 3px solid var(--navy);
}

.ks-sail::before {
  content: "";
  position: absolute;
  left: 48px;
  bottom: 0;
  width: 2px;
  height: 120px;
  background: var(--navy);
}

.ks-sail::after {
  content: "";
  position: absolute;
  left: 52px;
  bottom: 12px;
  width: 82px;
  height: 102px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(157, 204, 237, 0.28));
  clip-path: polygon(0 0, 100% 100%, 0 82%);
  border: 1px solid rgba(7, 26, 45, 0.24);
  transform-origin: left bottom;
  animation: ksSail 6.4s ease-in-out infinite;
}

.ks-signal {
  position: relative;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(47, 111, 159, 0.28);
  border-radius: 50%;
  background:
    repeating-conic-gradient(rgba(47, 111, 159, 0.18) 0 2deg, transparent 2deg 24deg),
    radial-gradient(circle, rgba(7, 26, 45, 0.9) 0 28px, transparent 29px);
}

.ks-signal::before,
.ks-signal::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(157, 204, 237, 0.46);
  border-radius: 50%;
  animation: ksSignal 4.8s ease-in-out infinite;
}

.ks-signal::after {
  inset: 50px;
  animation-delay: 0.8s;
}

.ks-escales {
  padding: 128px 0;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(7, 26, 45, 0.99), rgba(8, 43, 68, 0.98)),
    var(--navy);
}

.ks-escales::before,
.ks-ai::before,
.ks-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(232, 222, 209, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 222, 209, 0.07) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.ks-section-heading--dark p:not(.eyebrow),
.ks-escales .ks-section-heading p:not(.eyebrow) {
  color: rgba(250, 247, 240, 0.74);
}

.ks-escale-list {
  position: relative;
  display: grid;
  gap: 22px;
  margin-top: 60px;
  padding-left: 0;
  list-style: none;
}

.ks-escale-list::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(209, 173, 134, 0.54), transparent);
}

.ks-escale {
  --mx: 50%;
  --my: 50%;
  position: relative;
  width: min(560px, 48%);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(250, 247, 240, 0.15);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.22), transparent 35%),
    rgba(255, 253, 248, 0.055);
  transition: transform 220ms ease, border-color 220ms ease;
}

.ks-escale:nth-child(even) {
  justify-self: end;
}

.ks-escale:hover {
  transform: translateY(-5px);
  border-color: rgba(157, 204, 237, 0.48);
}

.ks-escale > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(250, 247, 240, 0.18);
  border-radius: 50%;
  color: #d1ad86;
  font-family: var(--ui);
  font-weight: 800;
}

.ks-escale h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.28rem;
}

.ks-escale p {
  margin: 0;
  color: rgba(250, 247, 240, 0.74);
}

.ks-navigation {
  padding: 126px 0;
  background:
    linear-gradient(180deg, var(--ivory), var(--white));
}

.ks-route-chart {
  position: relative;
  min-height: 560px;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 45, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(rgba(7, 26, 45, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 45, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(250, 247, 240, 0.92), rgba(232, 222, 209, 0.34));
  background-size: 64px 64px, 64px 64px, auto;
}

.ks-route-chart svg {
  position: absolute;
  inset: 50px 0 auto;
  width: 100%;
  height: 430px;
}

.ks-route-chart path {
  fill: none;
  stroke-linecap: round;
}

.ks-depth {
  stroke: rgba(47, 111, 159, 0.18);
  stroke-width: 1.5;
  stroke-dasharray: 5 14;
}

.ks-route-path {
  stroke: rgba(47, 111, 159, 0.78);
  stroke-width: 3;
  stroke-dasharray: 13 14;
  animation: ksRoute 16s linear infinite;
}

.ks-route-chart ol {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ks-route-point {
  position: absolute;
  display: grid;
  gap: 8px;
  min-width: 150px;
}

.ks-route-point::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid var(--steel);
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 0 0 10px rgba(47, 111, 159, 0.1);
}

.ks-route-point span {
  color: var(--leather);
  font-family: var(--ui);
  font-size: 0.76rem;
  font-weight: 800;
}

.ks-route-point strong {
  color: var(--navy);
  font-family: var(--ui);
}

.ks-route-point--one { left: 7%; top: 330px; }
.ks-route-point--two { left: 18%; top: 142px; }
.ks-route-point--three { left: 35%; top: 260px; }
.ks-route-point--four { left: 55%; top: 128px; }
.ks-route-point--five { right: 17%; top: 286px; }
.ks-route-point--six { right: 5%; top: 120px; }

.ks-ai {
  padding: 128px 0;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(7, 26, 45, 0.98), rgba(12, 38, 61, 0.96)),
    var(--navy);
}

.ks-ai__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(450px, 1fr);
  gap: 68px;
  align-items: center;
}

.ks-ai__copy p:not(.eyebrow) {
  color: rgba(250, 247, 240, 0.76);
}

.ks-ai-board {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 500px;
  padding: 34px;
  border: 1px solid rgba(250, 247, 240, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.22), transparent 35%),
    rgba(255, 253, 248, 0.055);
  overflow: hidden;
}

.ks-ai-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 247, 240, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 247, 240, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.35;
}

.ks-ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 116px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(157, 204, 237, 0.64);
  border-radius: 50%;
  color: #9dcced;
  font-family: var(--ui);
  font-weight: 800;
  letter-spacing: 0.16em;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 34px rgba(47, 111, 159, 0.28);
}

.ks-ai-core::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 1px dashed rgba(209, 173, 134, 0.62);
  border-radius: 50%;
  animation: ksSpin 16s linear infinite;
}

.ks-ai-board ul {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ks-ai-board li {
  min-height: 96px;
  display: grid;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(250, 247, 240, 0.16);
  border-radius: 8px;
  background: rgba(7, 26, 45, 0.68);
  color: var(--white);
  font-family: var(--ui);
  font-weight: 800;
}

.ks-ai-board li:nth-child(even) {
  transform: translateY(52px);
}

.ks-trust {
  padding: 124px 0;
  background:
    linear-gradient(180deg, var(--white), var(--ivory));
}

.ks-trust__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.75fr);
  gap: 58px;
  align-items: center;
}

.ks-trust-ledger {
  position: relative;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(7, 26, 45, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(7, 26, 45, 0.08);
}

.ks-trust-ledger p {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  margin: 0;
  padding: 20px 22px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--navy);
  font-family: var(--ui);
  font-weight: 800;
}

.ks-trust-ledger span {
  color: var(--leather);
}

.ks-cta {
  padding: 128px 0;
  color: var(--ivory);
  background:
    linear-gradient(135deg, rgba(7, 26, 45, 0.99), rgba(8, 42, 66, 0.98)),
    var(--navy);
}

.ks-cta::after {
  content: "";
  position: absolute;
  inset: auto -10% -140px;
  height: 320px;
  opacity: 0.26;
  background: repeating-radial-gradient(ellipse at 50% 100%, transparent 0 34px, rgba(157, 204, 237, 0.28) 35px 36px);
  animation: ksTide 18s ease-in-out infinite;
}

.ks-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.56fr);
  gap: 58px;
  align-items: center;
}

.ks-cta p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(250, 247, 240, 0.76);
}

.ks-audit-note {
  --mx: 50%;
  --my: 50%;
  padding: 30px;
  border: 1px solid rgba(250, 247, 240, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.22), transparent 36%),
    rgba(255, 253, 248, 0.065);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
}

.ks-audit-note span {
  display: block;
  margin-bottom: 18px;
  color: #d1ad86;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ks-audit-note p {
  margin-bottom: 24px;
}

.ks-audit-note a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  font-family: var(--ui);
  font-weight: 800;
}

.btn--ghost-light {
  border-color: rgba(250, 247, 240, 0.28);
  background: rgba(250, 247, 240, 0.04);
  color: var(--ivory);
}

@keyframes ksBeacon {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-4px) scaleX(0.78);
  }
  50% {
    opacity: 0.72;
    transform: translateX(-4px) scaleX(1);
  }
}

@keyframes ksSail {
  0%,
  100% {
    transform: skewX(0deg) scaleX(1);
  }
  50% {
    transform: skewX(-4deg) scaleX(1.035);
  }
}

@keyframes ksSignal {
  0%,
  100% {
    opacity: 0.36;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.04);
  }
}

@keyframes ksRoute {
  to {
    stroke-dashoffset: -170;
  }
}

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

@keyframes ksTide {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(14px);
  }
}

@media (max-width: 1060px) {
  .ks-manifesto__inner,
  .ks-ai__inner,
  .ks-trust__inner,
  .ks-cta__inner {
    grid-template-columns: 1fr;
  }

  .ks-waypoints__scene {
    grid-template-columns: 1fr;
  }

  .ks-waypoint,
  .ks-waypoint--sail {
    min-height: auto;
    margin-top: 0;
  }

  .ks-escale-list::before {
    left: 24px;
  }

  .ks-escale,
  .ks-escale:nth-child(even) {
    width: 100%;
    justify-self: stretch;
  }

  .ks-route-chart {
    min-height: auto;
    padding: 28px;
  }

  .ks-route-chart svg {
    display: none;
  }

  .ks-route-chart ol {
    position: relative;
    display: grid;
    gap: 24px;
  }

  .ks-route-point,
  .ks-route-point--one,
  .ks-route-point--two,
  .ks-route-point--three,
  .ks-route-point--four,
  .ks-route-point--five,
  .ks-route-point--six {
    position: relative;
    inset: auto;
    min-width: 0;
    padding-left: 36px;
  }

  .ks-route-point::before {
    position: absolute;
    left: 0;
    top: 2px;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .ks-manifesto,
  .ks-waypoints,
  .ks-escales,
  .ks-navigation,
  .ks-ai,
  .ks-trust,
  .ks-cta {
    padding: 76px 0;
  }

  .ks-manifesto h2,
  .ks-waypoints h2,
  .ks-escales h2,
  .ks-navigation h2,
  .ks-ai h2,
  .ks-trust h2,
  .ks-cta h2 {
    font-size: 2.18rem;
    line-height: 1;
  }

  .ks-business-log {
    min-height: auto;
    padding: 22px;
  }

  .ks-log-k,
  .ks-business-log::after {
    display: none;
  }

  .ks-business-log li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ks-waypoint {
    padding: 24px;
  }

  .ks-waypoint__icon {
    min-height: 160px;
  }

  .ks-escale {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .ks-ai-board {
    min-height: auto;
    padding: 22px;
  }

  .ks-ai-core {
    position: relative;
    top: auto;
    left: auto;
    width: 96px;
    margin: 0 auto 22px;
    transform: none;
  }

  .ks-ai-board ul {
    grid-template-columns: 1fr;
  }

  .ks-ai-board li:nth-child(even) {
    transform: none;
  }

  .ks-trust-ledger p {
    grid-template-columns: 44px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ks-business-log::after,
  .ks-lighthouse::before,
  .ks-sail::after,
  .ks-signal::before,
  .ks-signal::after,
  .ks-route-path,
  .ks-ai-core::before,
  .ks-cta::after {
    animation: none !important;
  }
}

.ks-method-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(280px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin: clamp(34px, 5vw, 62px) 0 clamp(28px, 4vw, 46px);
}

#reperes,
#services,
#methode,
#ia,
#confiance,
#contact,
#mentions {
  scroll-margin-top: 108px;
}

.ks-method-showcase::before {
  content: "";
  position: absolute;
  inset: 12% 8% 8% 22%;
  z-index: -1;
  border: 1px solid rgba(47, 111, 159, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(47, 111, 159, 0.12) 47% 53%, transparent 53%),
    linear-gradient(0deg, transparent 0 47%, rgba(139, 94, 52, 0.11) 47% 53%, transparent 53%);
  opacity: 0.78;
  transform: rotate(-4deg);
}

.ks-editorial-image,
.ks-inline-photo,
.ks-audit-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(250, 247, 240, 0.62);
  border-radius: 8px;
  background: var(--sand);
  box-shadow: 0 28px 68px rgba(7, 26, 45, 0.18);
  isolation: isolate;
}

.ks-editorial-image::before,
.ks-inline-photo::before,
.ks-audit-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx, 72%) var(--my, 18%), rgba(255, 253, 248, 0.34), transparent 28%),
    linear-gradient(180deg, rgba(250, 247, 240, 0.03), rgba(7, 26, 45, 0.2));
  mix-blend-mode: soft-light;
}

.ks-editorial-image::after,
.ks-inline-photo::after,
.ks-audit-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(250, 247, 240, 0.46);
  border-radius: 6px;
  pointer-events: none;
}

.ks-editorial-image img,
.ks-inline-photo img,
.ks-audit-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.012);
  transition: transform 700ms ease, filter 700ms ease;
}

.ks-editorial-image:hover img,
.ks-inline-photo:hover img,
.ks-audit-visual:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045);
}

.ks-editorial-image--route {
  aspect-ratio: 584 / 454;
}

.ks-method-note {
  position: relative;
  max-width: 560px;
  padding: clamp(26px, 4vw, 44px);
  border-left: 1px solid rgba(139, 94, 52, 0.32);
}

.ks-method-note::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 40px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--steel);
  box-shadow: 0 0 0 8px rgba(47, 111, 159, 0.13), 0 0 34px rgba(47, 111, 159, 0.44);
}

.ks-method-note span,
.ks-audit-note > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ks-method-note span::before,
.ks-audit-note > span::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.62;
}

.ks-method-note p {
  max-width: 23rem;
  margin: 14px 0 0;
  color: rgba(7, 26, 45, 0.72);
  font-size: 1.05rem;
}

.ks-inline-photo {
  width: min(100%, 420px);
  aspect-ratio: 496 / 482;
  margin-top: 32px;
}

.ks-inline-photo::after {
  inset: 10px;
}

.ks-ai__copy {
  align-self: start;
}

.ks-ai-board {
  align-self: center;
}

.ks-audit-note {
  overflow: hidden;
}

.ks-audit-visual {
  aspect-ratio: 496 / 396;
  margin: -18px -18px 26px;
  border-color: rgba(250, 247, 240, 0.2);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.ks-audit-visual::before {
  background:
    radial-gradient(circle at var(--mx, 78%) var(--my, 24%), rgba(255, 253, 248, 0.3), transparent 28%),
    linear-gradient(180deg, rgba(7, 26, 45, 0), rgba(7, 26, 45, 0.34));
}

@media (min-width: 1061px) {
  .ks-route-chart {
    margin-top: 0;
  }
}

@media (max-width: 1060px) {
  .ks-method-showcase {
    grid-template-columns: 1fr;
  }

  .ks-method-showcase::before {
    inset: 18% 0 0 0;
  }

  .ks-method-note {
    padding: 22px 0 8px 28px;
  }

  .ks-inline-photo {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  #reperes,
  #services,
  #methode,
  #ia,
  #confiance,
  #contact,
  #mentions {
    scroll-margin-top: 92px;
  }

  .ks-method-showcase {
    margin-top: 28px;
  }

  .ks-editorial-image,
  .ks-inline-photo,
  .ks-audit-visual {
    border-radius: 7px;
    box-shadow: 0 18px 42px rgba(7, 26, 45, 0.16);
  }

  .ks-editorial-image::after,
  .ks-inline-photo::after,
  .ks-audit-visual::after {
    inset: 8px;
  }

  .ks-inline-photo {
    width: 100%;
    margin-top: 24px;
  }

  .ks-audit-visual {
    margin: -10px -10px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ks-editorial-image img,
  .ks-inline-photo img,
  .ks-audit-visual img {
    transition: none;
    transform: none;
  }
}

:root {
  --title: "Manrope", Inter, system-ui, sans-serif;
}

#solutions,
#realisations,
#studio {
  scroll-margin-top: 108px;
}

.ks-work,
.ks-studio {
  position: relative;
  overflow: hidden;
  padding: 128px 0;
}

.ks-work h2 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  letter-spacing: 0;
}

.ks-work {
  background:
    linear-gradient(120deg, rgba(47, 111, 159, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(7, 26, 45, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, var(--ivory), #fffdf8);
  background-size: 92px 92px, 64px 64px, auto;
}

.ks-work::before {
  content: "";
  position: absolute;
  inset: 10% -10% auto 40%;
  height: 320px;
  border: 1px solid rgba(47, 111, 159, 0.16);
  border-left: 0;
  border-radius: 999px;
  transform: rotate(-7deg);
  pointer-events: none;
}

.ks-work__inner {
  position: relative;
  display: grid;
  gap: clamp(34px, 5vw, 62px);
}

.ks-featured-project {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  overflow: hidden;
  padding: clamp(16px, 2.4vw, 26px);
  border: 1px solid rgba(7, 26, 45, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(47, 111, 159, 0.13), transparent 24%),
    linear-gradient(135deg, rgba(250, 247, 240, 0.92), rgba(232, 222, 209, 0.42));
  box-shadow: 0 26px 70px rgba(7, 26, 45, 0.12);
}

.ks-featured-project::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(47, 111, 159, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.ks-featured-project figure {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 7px;
  background: var(--sand);
  box-shadow: 0 18px 46px rgba(7, 26, 45, 0.14);
}

.ks-featured-project figure::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(250, 247, 240, 0.5);
  border-radius: 5px;
  pointer-events: none;
}

.ks-featured-project img {
  width: 100%;
  aspect-ratio: 900 / 560;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.ks-featured-project:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.035);
}

.ks-featured-project > div {
  position: relative;
  z-index: 1;
  padding: clamp(8px, 2vw, 18px);
}

.ks-featured-project span,
.ks-studio__copy li::marker {
  color: var(--leather);
}

.ks-featured-project span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--leather);
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ks-featured-project span::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.ks-featured-project h3 {
  margin: 14px 0 14px;
  color: var(--navy);
  font-family: var(--title);
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 0.98;
}

.ks-featured-project p {
  max-width: 35rem;
  margin: 0;
  color: rgba(7, 26, 45, 0.72);
  font-size: 1.02rem;
}

.ks-featured-project dl {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.ks-featured-project dl div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(7, 26, 45, 0.1);
}

.ks-featured-project dt,
.ks-featured-project dd {
  margin: 0;
}

.ks-featured-project dt {
  color: var(--leather);
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ks-featured-project dd {
  color: var(--navy);
  font-weight: 700;
}

.ks-studio {
  background:
    radial-gradient(circle at 20% 18%, rgba(47, 111, 159, 0.12), transparent 28%),
    linear-gradient(135deg, #fffdf8, var(--sand));
}

.ks-studio::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    repeating-linear-gradient(112deg, transparent 0 52px, rgba(139, 94, 52, 0.12) 53px, transparent 54px),
    radial-gradient(circle at 82% 20%, rgba(47, 111, 159, 0.16), transparent 26%);
  pointer-events: none;
}

.ks-studio__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
}

.ks-studio__visual {
  position: relative;
  min-height: 420px;
  margin: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 55%, rgba(47, 111, 159, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(250, 247, 240, 0.86), rgba(232, 222, 209, 0.44));
  border: 1px solid rgba(7, 26, 45, 0.1);
  box-shadow: 0 24px 64px rgba(7, 26, 45, 0.12);
  overflow: hidden;
}

.ks-studio__visual::before,
.ks-studio__visual::after {
  content: "";
  position: absolute;
  inset: auto 10% 12% 10%;
  height: 1px;
  background: rgba(47, 111, 159, 0.18);
  box-shadow: 0 -48px 0 rgba(47, 111, 159, 0.1), 0 -96px 0 rgba(47, 111, 159, 0.06);
}

.ks-studio__visual::after {
  inset: 18% auto auto 12%;
  width: 48%;
  height: 48%;
  border: 1px dashed rgba(139, 94, 52, 0.22);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.ks-studio__visual img {
  position: absolute;
  left: 50%;
  bottom: -6%;
  z-index: 1;
  width: min(86%, 420px);
  max-height: 104%;
  object-fit: contain;
  transform: translateX(-50%);
}

.ks-studio__copy h2 {
  max-width: 12ch;
  margin: 0 0 24px;
  color: var(--navy);
  font-family: var(--title);
  font-size: clamp(2.35rem, 6vw, 5rem);
  line-height: 0.94;
}

.ks-studio__copy p {
  max-width: 40rem;
  color: rgba(7, 26, 45, 0.72);
  font-size: 1.08rem;
}

.ks-studio__copy ul {
  display: grid;
  gap: 12px;
  max-width: 40rem;
  margin: 28px 0 0;
  padding-left: 20px;
  color: var(--navy);
  font-weight: 650;
}

.ks-ai-board li {
  line-height: 1.28;
}

@media (max-width: 1060px) {
  .ks-featured-project,
  .ks-studio__inner {
    grid-template-columns: 1fr;
  }

  .ks-studio__visual {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  #solutions,
  #realisations,
  #studio {
    scroll-margin-top: 92px;
  }

  .ks-work,
  .ks-studio {
    padding: 76px 0;
  }

  .ks-featured-project {
    padding: 12px;
  }

  .ks-featured-project dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .ks-studio__visual {
    min-height: 330px;
  }

  .ks-studio__copy h2 {
    max-width: 14ch;
    font-size: 2.18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ks-featured-project img {
    transition: none;
    transform: none;
  }
}

/* ════════════════════════════════════════════════════════
   SECTION PROBLÈME
════════════════════════════════════════════════════════ */

.ks-problem {
  padding: 124px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.ks-problem::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.45;
  pointer-events: none;
}

.ks-problem__inner {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.ks-problem__statement h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  margin-bottom: 20px;
}

.ks-problem__statement > p {
  color: var(--text);
  font-size: 1.06rem;
  max-width: 480px;
  margin-bottom: 30px;
}

.ks-problem__cards {
  display: grid;
  gap: 16px;
}

.ks-problem-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.8);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.ks-problem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(47, 111, 159, 0.3);
  box-shadow: var(--shadow);
}

.ks-problem-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(47, 111, 159, 0.25);
  border-radius: 10px;
  background: rgba(47, 111, 159, 0.06);
  color: var(--steel);
  flex-shrink: 0;
}

.ks-problem-card h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.3;
}

.ks-problem-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.55;
}

@media (max-width: 1060px) {
  .ks-problem__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ks-problem__statement > p {
    max-width: 100%;
  }

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

@media (max-width: 720px) {
  .ks-problem {
    padding: 72px 0;
  }

  .ks-problem__cards {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════
   SECTION SOLUTIONS
════════════════════════════════════════════════════════ */

.ks-solutions-section {
  padding: 128px 0;
  color: var(--ivory);
  background: linear-gradient(160deg, var(--navy) 0%, #0d2b42 100%);
  position: relative;
  overflow: hidden;
}

.ks-solutions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 247, 240, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 247, 240, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.ks-solutions-section .ks-section-heading--dark {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.ks-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 56px;
  position: relative;
  z-index: 1;
}

.ks-solution-card {
  padding: 32px;
  border: 1px solid rgba(250, 247, 240, 0.1);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ks-solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 111, 159, 0.45);
  background: rgba(255, 253, 248, 0.08);
}

.ks-solution-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.ks-solution-card__num {
  font-family: var(--title);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--leather);
  letter-spacing: -0.02em;
}

.ks-solution-card__icon {
  width: 36px;
  height: 36px;
  color: rgba(250, 247, 240, 0.35);
}

.ks-solution-card h3 {
  color: var(--white);
  font-size: 1.38rem;
  margin-bottom: 0;
}

.ks-solution-card > p {
  color: rgba(250, 247, 240, 0.72);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}

.ks-solution-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  padding-top: 16px;
  margin-top: auto;
}

.ks-solution-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(250, 247, 240, 0.58);
  font-size: 0.87rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(250, 247, 240, 0.06);
}

.ks-solution-card ul li svg {
  flex-shrink: 0;
  color: var(--steel);
}

@media (max-width: 1060px) {
  .ks-solutions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ks-solutions-section {
    padding: 76px 0;
  }
}

/* ════════════════════════════════════════════════════════
   SECTION VISIBILITÉ LOCALE
════════════════════════════════════════════════════════ */

.ks-visibility {
  padding: 124px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.ks-visibility::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.5;
  pointer-events: none;
}

.ks-visibility__inner {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.ks-visibility__copy h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  margin-bottom: 18px;
}

.ks-visibility__copy > p {
  color: var(--text);
  font-size: 1.06rem;
  max-width: 520px;
  margin-bottom: 32px;
}

.ks-visibility__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ks-visibility__list li {
  display: grid;
  grid-template-rows: auto auto;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.ks-visibility__list li:first-child {
  border-top: 1px solid var(--line);
}

.ks-visibility__list strong {
  color: var(--navy);
  font-family: var(--ui);
  font-size: 0.97rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.ks-visibility__list span {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ks-visibility__visual {
  border-radius: 16px;
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.ks-visibility__visual img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1060px) {
  .ks-visibility__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .ks-visibility__visual {
    max-width: 480px;
  }
}

@media (max-width: 720px) {
  .ks-visibility {
    padding: 72px 0;
  }
}

/* ════════════════════════════════════════════════════════
   SECTION MAINTENANCE
════════════════════════════════════════════════════════ */

.ks-maintenance {
  padding: 128px 0;
  color: var(--ivory);
  background: linear-gradient(160deg, #0a2035 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.ks-maintenance::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 247, 240, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 247, 240, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.ks-maintenance > .container {
  position: relative;
  z-index: 1;
}

.ks-maintenance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(250, 247, 240, 0.1);
  border: 1px solid rgba(250, 247, 240, 0.1);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 60px;
}

.ks-maintenance-item {
  padding: 32px 26px;
  background: rgba(7, 26, 45, 0.6);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 200ms ease;
}

.ks-maintenance-item:hover {
  background: rgba(47, 111, 159, 0.12);
}

.ks-maintenance-item__num {
  font-family: var(--title);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--leather);
  letter-spacing: -0.02em;
}

.ks-maintenance-item h3 {
  color: var(--white);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.ks-maintenance-item p {
  color: rgba(250, 247, 240, 0.62);
  font-size: 0.91rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1060px) {
  .ks-maintenance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .ks-maintenance {
    padding: 76px 0;
  }

  .ks-maintenance-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════
   SECTION IA LÉGÈRE
════════════════════════════════════════════════════════ */

.ks-ia-light {
  padding: 124px 0;
  background: var(--sand);
  position: relative;
  overflow: hidden;
}

.ks-ia-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 26, 45, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 45, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.ks-ia-light__inner {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.ks-ia-light__copy h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  margin-bottom: 18px;
}

.ks-ia-light__copy > p {
  color: var(--text);
  font-size: 1.04rem;
  margin-bottom: 0;
}

.ks-ia-light__note {
  margin-top: 18px !important;
  color: rgba(95, 107, 118, 0.72) !important;
  font-size: 0.88rem !important;
  font-style: italic;
  border-left: 2px solid rgba(139, 94, 52, 0.35);
  padding-left: 14px;
}

.ks-ia-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ks-ia-items li {
  display: grid;
  grid-template-rows: auto auto;
  padding: 20px 0;
  border-bottom: 1px solid rgba(7, 26, 45, 0.1);
}

.ks-ia-items li:first-child {
  border-top: 1px solid rgba(7, 26, 45, 0.1);
}

.ks-ia-items strong {
  color: var(--navy);
  font-family: var(--ui);
  font-size: 0.97rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.ks-ia-items span {
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 1060px) {
  .ks-ia-light__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

@media (max-width: 720px) {
  .ks-ia-light {
    padding: 72px 0;
  }
}

/* ════════════════════════════════════════════════════════
   AUDIT NOTE — phone link avec icon
════════════════════════════════════════════════════════ */

.ks-audit-note > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  min-height: 44px;
  color: var(--white);
  font-family: var(--ui);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* ─── Section Problèmes ─── */

.ks-pain {
  padding: 124px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.ks-pain::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.5;
  pointer-events: none;
}

.ks-pain .ks-section-heading {
  max-width: 680px;
  margin-bottom: 52px;
}

.ks-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ks-pain-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.78);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.ks-pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 94, 52, 0.35);
  box-shadow: var(--shadow);
}

.ks-pain-card > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(139, 94, 52, 0.4);
  border-radius: 50%;
  color: var(--leather);
  font-family: var(--ui);
  font-size: 0.76rem;
  font-weight: 800;
  flex-shrink: 0;
}

.ks-pain-card h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.ks-pain-card p {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.55;
}

@media (max-width: 1060px) {
  .ks-pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .ks-pain {
    padding: 72px 0;
  }

  .ks-pain-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Section Offre de lancement ─── */

.ks-launch {
  padding: 128px 0;
  color: var(--ivory);
  background: linear-gradient(160deg, var(--navy) 0%, #0c2840 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ks-launch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 247, 240, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 247, 240, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.ks-launch__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.ks-launch__badge {
  font-family: var(--title);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--leather);
  border: 1px solid rgba(139, 94, 52, 0.4);
  border-radius: 16px;
  padding: 12px 40px;
  letter-spacing: -0.02em;
}

.ks-launch__copy {
  max-width: 680px;
}

.ks-launch__copy .eyebrow {
  color: #d1ad86;
}

.ks-launch__copy h2 {
  color: var(--ivory);
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.ks-launch__copy > p {
  color: rgba(250, 247, 240, 0.78);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.ks-launch__note {
  margin-top: 18px;
  margin-bottom: 0;
  color: rgba(250, 247, 240, 0.48);
  font-size: 0.84rem;
}

@media (max-width: 720px) {
  .ks-launch {
    padding: 76px 0;
  }
}

/* ─── Section FAQ ─── */

.ks-faq {
  padding: 124px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}

.ks-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.5;
  pointer-events: none;
}

.ks-faq .ks-section-heading {
  max-width: 680px;
  margin-bottom: 52px;
}

.ks-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 0;
}

.ks-faq-item {
  border-bottom: 1px solid var(--line);
}

.ks-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  color: var(--navy);
  font-family: var(--ui);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.ks-faq-item summary::-webkit-details-marker {
  display: none;
}

.ks-faq-item summary::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232f6f9f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 220ms ease;
}

.ks-faq-item[open] summary {
  color: var(--steel);
}

.ks-faq-item[open] summary::after {
  transform: rotate(180deg);
}

.ks-faq-item p {
  margin: 0 0 22px;
  padding-right: 36px;
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.65;
}

@media (max-width: 1060px) {
  .ks-faq-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

@media (max-width: 720px) {
  .ks-faq {
    padding: 72px 0;
  }
}

/* ════════════════════════════════════════════════════════
   SUPPRESSION CARREAUX — toutes sections
════════════════════════════════════════════════════════ */

.ks-problem::before,
.ks-solutions-section::before,
.ks-visibility::before,
.ks-maintenance::before,
.ks-ia-light::before,
.ks-launch::before,
.ks-faq::before,
.ks-navigation::before,
.ks-escales::before,
.ks-ai::before,
.ks-cta::before,
.ks-trust::before,
.ks-waypoints::before,
.ks-manifesto::before {
  display: none !important;
}

/* ════════════════════════════════════════════════════════
   SECTION MÉTHODE — TIMELINE PROPRE
════════════════════════════════════════════════════════ */

.ks-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  list-style: none;
  padding: 0;
  margin: 64px 0 0;
  position: relative;
}

.ks-steps::before {
  content: "";
  position: absolute;
  top: 3.6rem;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel) 10%, var(--steel) 90%, transparent);
  opacity: 0.35;
}

.ks-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
}

.ks-step__num {
  font-family: var(--title);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--leather);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.ks-step__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--steel);
  background: var(--ivory);
  flex-shrink: 0;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.ks-step__title {
  display: block;
  color: var(--navy);
  font-family: var(--ui);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.ks-step__desc {
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1060px) {
  .ks-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 0;
  }

  .ks-steps::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .ks-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}

/* ════════════════════════════════════════════════════════
   SECTION RÉALISATIONS — GRILLE 4 PROJETS
════════════════════════════════════════════════════════ */

.ks-projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.ks-project-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(7, 26, 45, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.ks-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(7, 26, 45, 0.12);
}

.ks-project-card figure {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0;
}

.ks-project-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.ks-project-card:hover figure img {
  transform: scale(1.06);
}

.ks-project-card__body {
  padding: 18px 20px 22px;
}

.ks-project-card__body span {
  display: block;
  color: var(--leather);
  font-family: var(--ui);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 5px;
}

.ks-project-card__body h3 {
  color: var(--navy);
  font-size: 1.04rem;
  margin-bottom: 6px;
}

.ks-project-card__body p {
  color: var(--text);
  font-size: 0.87rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 1060px) {
  .ks-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .ks-projects-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════
   SECTION STUDIO / À PROPOS
════════════════════════════════════════════════════════ */

.ks-about {
  padding: 128px 0;
  background: var(--ivory);
  overflow: hidden;
}

.ks-about__inner {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(44px, 8vw, 100px);
  align-items: center;
}

.ks-about__visual {
  margin: 0;
  position: relative;
}

.ks-about__visual::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sand) 0%, transparent 70%);
  z-index: 0;
}

.ks-about__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(7, 26, 45, 0.14));
  transition: transform 400ms ease;
}

.ks-about__visual:hover img {
  transform: translateY(-6px);
}

.ks-about__copy h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  margin-bottom: 18px;
}

.ks-about__copy > p {
  color: var(--text);
  font-size: 1.06rem;
  margin-bottom: 28px;
  max-width: 520px;
}

.ks-about__list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ks-about__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--ui);
  font-size: 0.96rem;
  font-weight: 600;
}

.ks-about__list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leather);
  flex-shrink: 0;
  margin-top: 7px;
}

.ks-about__list li:first-child {
  border-top: 1px solid var(--line);
}

@media (max-width: 1060px) {
  .ks-about__inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .ks-about__visual {
    max-width: 440px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .ks-about {
    padding: 76px 0;
  }
}

/* ════════════════════════════════════════════════════════
   SECTION TARIFS
════════════════════════════════════════════════════════ */

.ks-tarifs {
  padding: 112px 0;
  background: var(--ivory);
}

.ks-tarifs__inner {
  max-width: 1100px;
}

.ks-tarifs__header {
  margin-bottom: 64px;
  max-width: 660px;
}

.ks-tarifs__header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.ks-tarifs__header h2 em {
  font-style: italic;
  color: var(--steel);
}

.ks-tarifs__intro {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 520px;
  margin-bottom: 0;
}

.ks-tarifs__keyphrase {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--ui);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.ks-tarifs__keyphrase::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--steel);
  flex-shrink: 0;
}

.ks-tarifs__divider {
  height: 1px;
  background: var(--line);
  margin-bottom: 0;
}

/* ── Grille ── */
.ks-tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 1px;
}

/* ── Carte ── */
.ks-tarif-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.28s ease;
}

.ks-tarif-card:hover {
  background: var(--ivory);
}

.ks-tarif-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--navy);
  transition: height 0.32s ease;
}

.ks-tarif-card:hover::before {
  height: 100%;
}

.ks-tarif-card__num {
  display: block;
  font-family: var(--title);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

.ks-tarif-card__name {
  font-family: var(--title);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.ks-tarif-card__desc {
  font-size: 0.84rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 30px;
  min-height: 68px;
}

.ks-tarifs-grid--bottom .ks-tarif-card__desc {
  min-height: auto;
}

.ks-tarif-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ks-tarif-card__from {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ks-tarif-card__amount {
  font-family: var(--title);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--steel);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ks-tarif-card__suffix {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text);
  margin-left: 2px;
}

/* ── Carte mise en avant ── */
.ks-tarif-card--featured {
  background: var(--navy);
}

.ks-tarif-card--featured:hover {
  background: #0d2438;
}

.ks-tarif-card--featured::before {
  display: none;
}

.ks-tarif-card--featured .ks-tarif-card__num {
  color: rgba(250, 247, 240, 0.35);
}

.ks-tarif-card--featured .ks-tarif-card__name {
  color: var(--ivory);
}

.ks-tarif-card--featured .ks-tarif-card__desc {
  color: rgba(250, 247, 240, 0.62);
}

.ks-tarif-card--featured .ks-tarif-card__from {
  color: rgba(250, 247, 240, 0.45);
}

.ks-tarif-card--featured .ks-tarif-card__amount {
  color: var(--ivory);
}

.ks-tarif-card--featured .ks-tarif-card__suffix {
  color: rgba(250, 247, 240, 0.45);
}

/* Vague décorative SVG */
.ks-tarif-card__wave {
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: 180px;
  opacity: 0.09;
  pointer-events: none;
}

/* ── Badge GEO ── */
.ks-geo-tag {
  font-family: var(--ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  vertical-align: middle;
  margin-left: 4px;
}

.ks-geo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 3px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.ks-geo-pill::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--steel);
  animation: geo-pulse 2s ease-in-out infinite;
}

@keyframes geo-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.6); }
}

/* ── Pied de section ── */
.ks-tarifs__footer {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.ks-tarifs__mention {
  font-size: 0.78rem;
  color: var(--text);
  font-style: italic;
  max-width: 400px;
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ks-tarifs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ks-tarifs {
    padding: 72px 0;
  }

  .ks-tarifs-grid {
    grid-template-columns: 1fr;
  }

  .ks-tarif-card {
    padding: 32px 28px;
  }

  .ks-tarif-card__desc {
    min-height: auto !important;
  }

  .ks-tarifs__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ════════════════════════════════════════════════════════
   ANIMATIONS PREMIUM
════════════════════════════════════════════════════════ */

/* ── Barre de progression scroll ── */
#ks-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--steel) 0%, var(--leather) 100%);
  z-index: 10000;
  pointer-events: none;
  will-change: width;
  transition: width 60ms linear;
}

/* ── Kenburns hero image ── */
@keyframes ks-kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-bg {
  overflow: hidden;
}

.hero-bg__image {
  animation: ks-kenburns 22s ease-out forwards;
  transform-origin: 78% center;
}

/* ── Entrée cascade hero ── */
@keyframes ks-hero-in {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

.hero__content .eyebrow    { animation: ks-hero-in 0.7s  cubic-bezier(0.22,1,0.36,1) 0.05s both; }
.hero__content h1          { animation: ks-hero-in 0.85s cubic-bezier(0.22,1,0.36,1) 0.18s both; }
.hero__content .hero__lead { animation: ks-hero-in 0.75s cubic-bezier(0.22,1,0.36,1) 0.34s both; }
.hero__content .button-row { animation: ks-hero-in 0.75s cubic-bezier(0.22,1,0.36,1) 0.48s both; }
.hero__content .hero__aside{ animation: ks-hero-in 0.65s cubic-bezier(0.22,1,0.36,1) 0.62s both; }

/* ── Reveal amélioré : opacity + blur ── */
.js [data-reveal] {
  opacity: 0 !important;
  transform: translateY(24px) !important;
  filter: blur(4px) !important;
  transition:
    opacity   700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter    700ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.js [data-reveal].is-visible {
  opacity:   1 !important;
  transform: none !important;
  filter:    blur(0) !important;
}

/* ── Pulse glow carte vedette tarifs ── */
@keyframes ks-featured-glow {
  0%, 100% { box-shadow: 0 6px 28px rgba(7, 26, 45, 0.28); }
  50%       { box-shadow: 0 6px 48px rgba(47, 111, 159, 0.32), 0 0 0 1px rgba(47, 111, 159, 0.14); }
}

.ks-tarif-card--featured {
  animation: ks-featured-glow 4.5s ease-in-out infinite;
}

/* ── Reduced motion : tout off ── */
@media (prefers-reduced-motion: reduce) {
  #ks-scroll-progress { transition: none; }

  .hero-bg__image,
  .hero__content .eyebrow,
  .hero__content h1,
  .hero__content .hero__lead,
  .hero__content .button-row,
  .hero__content .hero__aside,
  .ks-tarif-card--featured {
    animation: none;
  }

  .js [data-reveal],
  .js [data-reveal].is-visible {
    opacity:   1 !important;
    transform: none !important;
    filter:    none !important;
    transition: none !important;
  }
}

/* ════════════════════════════════════════════════════════
   Hero mobile — titre réduit sur écrans étroits (< 375px)
   pour rester compact et dégager la tête + la tasse de la mascotte.
   Placé en fin de fichier pour primer sur la règle .hero h1 (720px).
════════════════════════════════════════════════════════ */
@media (max-width: 374px) {
  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 339px) {
  .hero h1 {
    font-size: 1.72rem;
  }
}

/* Écrans larges (grands iPhone/Android) : titre agrandi pour garder ~5 lignes,
   afin que le paragraphe reste sous la tête de la mascotte (cadrage cohérent). */
@media (min-width: 415px) and (max-width: 720px) {
  .hero h1 {
    font-size: 2.45rem;
    line-height: 1.08;
  }
}
