:root {
  --ink: oklch(18% 0.026 238);
  --muted: oklch(43% 0.04 238);
  --paper: oklch(96% 0.012 232);
  --paper-strong: oklch(91% 0.02 232);
  --petrol: oklch(43% 0.13 238);
  --petrol-dark: oklch(25% 0.105 238);
  --copper: oklch(56% 0.16 238);
  --sky: oklch(69% 0.13 226);
  --aqua: oklch(73% 0.11 218);
  --line: oklch(82% 0.026 232);
  --shadow: 0 28px 80px oklch(18% 0.05 238 / 16%);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 12%, oklch(72% 0.12 225 / 24%), transparent 28rem),
    linear-gradient(135deg, var(--paper) 0%, oklch(94% 0.018 232) 46%, oklch(88% 0.032 225) 100%);
  font-family: Manrope, system-ui, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(oklch(24% 0.035 238 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, oklch(24% 0.035 238 / 5%) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  z-index: -1;
}

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

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

.liquid-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.52;
  mix-blend-mode: multiply;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: oklch(96% 0.012 232 / 84%);
  border-bottom: 1px solid oklch(78% 0.03 232 / 48%);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 72px;
  height: auto;
  flex: 0 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: oklch(95% 0.014 232);
}

.footer-logo {
  width: 68px;
  height: auto;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: Archivo, system-ui, sans-serif;
  font-size: 1rem;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  color: oklch(31% 0.035 238);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a,
.header-call,
.mini-cta {
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.header-call:hover,
.mini-cta:hover {
  color: var(--copper);
}

.header-call {
  justify-self: end;
  padding: 11px 16px;
  color: oklch(96% 0.012 232);
  background: var(--petrol-dark);
  border-radius: 999px;
  font-family: Archivo, system-ui, sans-serif;
  font-weight: 800;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(40px, 6vw, 104px);
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 64px) clamp(42px, 6vw, 72px);
}

.hero-copy {
  max-width: 640px;
  padding-right: clamp(8px, 2vw, 28px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: Archivo, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Archivo, system-ui, sans-serif;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 7.2ch;
  font-size: clamp(3.35rem, 7.4vw, 7.1rem);
  font-weight: 800;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 800;
}

.hero-lede {
  max-width: 65ch;
  margin: 24px 0 0;
  color: oklch(31% 0.04 238);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--petrol-dark);
  border-radius: 999px;
  font-family: Archivo, system-ui, sans-serif;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px oklch(22% 0.04 238 / 18%);
}

.button.primary {
  color: oklch(96% 0.012 232);
  background: var(--petrol-dark);
}

.button.secondary {
  color: var(--petrol-dark);
  background: oklch(96% 0.012 232 / 72%);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 40px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.hero-facts div {
  padding: 16px;
  background: oklch(96% 0.012 232 / 72%);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.hero-media {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 940px;
  min-height: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  isolation: isolate;
}

.hero-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 0;
  filter: drop-shadow(0 32px 46px oklch(18% 0.05 238 / 18%));
}

.hero-media::after {
  display: none;
}

.water-panel {
  position: absolute;
  right: 24px;
  bottom: -46px;
  z-index: -1;
  width: min(70%, 520px);
  height: 112px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 0.5;
}

.water-panel span {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 56px;
  background: linear-gradient(90deg, transparent, oklch(62% 0.14 225 / 38%), transparent);
  border-radius: 50%;
  animation: waterSlide 7s ease-in-out infinite;
}

.water-panel span:nth-child(1) {
  top: 16px;
}

.water-panel span:nth-child(2) {
  top: 46px;
  animation-delay: -2.3s;
  opacity: 0.7;
}

.water-panel span:nth-child(3) {
  top: 78px;
  animation-delay: -4.8s;
  opacity: 0.45;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: clamp(28px, 4vw, 46px) clamp(18px, 5vw, 64px);
  color: oklch(95% 0.014 232);
  background: var(--petrol-dark);
}

.intro-text p {
  max-width: 72ch;
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
}

.mini-cta {
  padding: 12px 16px;
  border: 1px solid oklch(82% 0.11 226);
  border-radius: 999px;
  color: oklch(89% 0.12 226);
  font-weight: 800;
  white-space: nowrap;
}

.service-section,
.split-section,
.feature-row,
.workshop-section,
.contact-section {
  padding: clamp(66px, 9vw, 128px) clamp(18px, 5vw, 64px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(24px, 4vw, 72px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-heading h2 {
  max-width: 14ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: oklch(72% 0.04 82);
  border: 1px solid oklch(72% 0.04 82);
}

.service-item {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 38px);
  background: oklch(94% 0.017 82 / 86%);
}

.service-number {
  color: var(--copper);
  font-family: Archivo, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
}

.service-item p,
.split-copy p,
.feature-panel p,
.workshop-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1rem;
}

.service-item h3 {
  max-width: 10ch;
  margin-top: auto;
}

.service-item p {
  margin: 18px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: oklch(91% 0.018 78);
}

.split-image,
.workshop-photo {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-image img,
.workshop-photo img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.split-copy h2,
.workshop-copy h2,
.contact-section h2 {
  max-width: 11ch;
}

.split-copy p,
.workshop-copy p,
.contact-section p {
  max-width: 62ch;
  margin: 22px 0 0;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 5px oklch(69% 0.13 226 / 20%);
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.feature-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid oklch(74% 0.04 84);
  border-radius: var(--radius);
  background: oklch(94% 0.016 82 / 78%);
}

.feature-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-panel div {
  padding: clamp(22px, 3vw, 36px);
}

.feature-panel p:last-child {
  margin-bottom: 0;
}

.workshop-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  color: oklch(94% 0.012 82);
  background:
    linear-gradient(145deg, var(--petrol-dark), oklch(30% 0.12 238) 64%, oklch(42% 0.12 218));
}

.workshop-copy p,
.workshop-copy .eyebrow {
  color: oklch(82% 0.09 218);
}

.workshop-copy h2 {
  color: oklch(96% 0.012 232);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid oklch(73% 0.038 82);
  border-radius: var(--radius);
  background: oklch(73% 0.038 82);
  font-style: normal;
}

.contact-card a {
  display: grid;
  gap: 4px;
  padding: 22px;
  background: oklch(96% 0.012 82 / 82%);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.contact-card a:hover {
  color: oklch(95% 0.012 82);
  background: var(--petrol-dark);
}

.contact-card span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card strong {
  font-family: Archivo, system-ui, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 5vw, 64px);
  color: oklch(86% 0.034 196);
  background: oklch(16% 0.048 205);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer span {
  font-weight: 800;
}

@keyframes waterSlide {
  0%,
  100% {
    transform: translateX(-8%) scaleY(0.8);
  }

  50% {
    transform: translateX(8%) scaleY(1.08);
  }
}

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

  .liquid-canvas {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .split-section,
  .workshop-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    max-width: 9.5ch;
  }

  .section-heading,
  .service-grid,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .service-item {
    min-height: 260px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand small {
    display: none;
  }

  .header-call {
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 13vw, 3.3rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 0;
  }

  .water-panel {
    right: 14px;
    bottom: -28px;
    width: calc(100% - 28px);
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .mini-cta {
    justify-self: start;
    white-space: normal;
  }

  .site-footer {
    flex-direction: column;
  }
}
