:root {
  color-scheme: light;
  --ink: #10252d;
  --muted: #5a727b;
  --paper: #eef5f4;
  --surface: #f9fcfb;
  --line: rgba(16, 37, 45, 0.14);
  --line-strong: rgba(16, 37, 45, 0.22);
  --teal: #0f5e6c;
  --teal-dark: #0a4150;
  --coral: #dc8f63;
  --foam: #88d4cf;
  --deep: #05151d;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(6, 23, 25, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  background:
    radial-gradient(circle at top left, rgba(136, 212, 207, 0.14), transparent 28%),
    radial-gradient(circle at right 18%, rgba(15, 94, 108, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(238, 245, 244, 0.98), rgba(249, 252, 251, 1) 42%, rgba(238, 245, 244, 1));
  color: var(--ink);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 18px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(6, 23, 25, 0.74), rgba(6, 23, 25, 0));
  transition: background 0.25s ease, color 0.25s ease, min-height 0.25s ease, border-color 0.25s ease;
}

.site-header.is-solid {
  min-height: 64px;
  color: var(--ink);
  background: rgba(252, 253, 250, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  letter-spacing: 0.04em;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 14px;
  font-weight: 650;
}

nav a {
  opacity: 0.86;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

nav a:hover,
.text-link:hover,
.footer-links a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 21, 29, 0.92) 0%, rgba(4, 21, 29, 0.66) 34%, rgba(4, 21, 29, 0.14) 68%, rgba(4, 21, 29, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 21, 29, 0.22), rgba(4, 21, 29, 0.78));
  z-index: 1;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background:
    radial-gradient(120% 120% at 50% 100%, rgba(136, 212, 207, 0.2), transparent 62%),
    repeating-radial-gradient(circle at 50% 115%, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 18px);
  z-index: 1;
  opacity: 0.55;
  pointer-events: none;
}

.hero-image,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  object-position: center right;
  transform: scale(1.04);
  animation: heroDrift 12s ease-out forwards;
}

.hero-inner,
.page-hero-inner,
.section,
.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 132px 0 clamp(46px, 8vh, 86px);
}

.page-hero {
  min-height: 760px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: end;
  min-height: 760px;
  padding: 130px 0 70px;
}

.page-hero-copy {
  max-width: 640px;
}

.page-hero-visual {
  align-self: center;
  justify-self: end;
  width: min(100%, 520px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(245, 251, 250, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(3, 14, 20, 0.24);
}

.page-hero-visual img {
  width: 100%;
  border-radius: 14px;
  background: linear-gradient(180deg, #dff2f1, #f7fcfb);
  box-shadow: 0 18px 42px rgba(11, 33, 36, 0.18);
}

.page-inline-visual {
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.page-inline-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(180deg, #dff2f1, #f7fcfb);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(54px, 10vw, 126px);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 850;
}

.page-hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  max-width: 640px;
}

.hero-copy,
.page-hero-lead,
.section-lead {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.hero-copy,
.page-hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

.section {
  padding: clamp(72px, 12vw, 138px) 0;
}

.section-kicker {
  color: var(--foam);
}

.section-title {
  max-width: 860px;
  margin-bottom: 26px;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 850;
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
}

.hero-actions,
.section-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--deep);
  background: var(--white);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-dark {
  color: var(--white);
  background: var(--teal);
}

.button-outline {
  color: var(--ink);
  border-color: var(--line-strong);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 800;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.text-link::after {
  content: "→";
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 920px);
  margin-top: clamp(42px, 7vh, 76px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.hero-meta div {
  min-height: 104px;
  padding: 18px;
  background: rgba(6, 23, 25, 0.34);
}

.hero-meta strong {
  display: block;
  margin-bottom: 7px;
  font-size: clamp(23px, 3.2vw, 38px);
  line-height: 1;
}

.hero-meta span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.4;
}

.intro-grid,
.method-wrap,
.contact,
.editorial-layout,
.page-layout,
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.proof-list,
.steps,
.scope-list,
.fit-list {
  border-top: 1px solid var(--line);
}

.proof-item,
.step,
.scope-item,
.fit-item {
  display: grid;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.proof-item {
  grid-template-columns: 150px 1fr;
}

.proof-item strong,
.activity-index,
.scope-label {
  color: var(--teal);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-item p,
.step p,
.scope-item p,
.fit-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.services-block {
  background: rgba(249, 252, 251, 0.82);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 42px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.activity-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 42px rgba(9, 28, 31, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 94, 108, 0.26);
  box-shadow: 0 22px 54px rgba(9, 28, 31, 0.12);
}

.activity-card img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(180deg, #d7eff1, #f4fbfa);
}

.activity-card-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.activity-card-body h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.04;
}

.activity-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.editorial-layout {
  align-items: center;
}

.atelier-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 22px;
  margin-top: 42px;
}

.atelier-photo {
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.atelier-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atelier-photo-large {
  min-height: 560px;
}

.editorial-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

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

.pillars {
  display: grid;
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--line);
}

.pillars div {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.78);
}

.pillars strong {
  font-size: 15px;
}

.pillars span {
  color: var(--muted);
  line-height: 1.55;
}

.step {
  counter-increment: step;
  grid-template-columns: 74px 1fr;
}

.steps {
  counter-reset: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  color: var(--foam);
  font-size: 15px;
  font-weight: 850;
}

.step h3,
.scope-item h3,
.fit-item h3 {
  margin-bottom: 8px;
  font-size: 27px;
  line-height: 1.1;
}

.quote-band {
  color: var(--white);
  background: var(--deep);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

blockquote {
  margin: 0;
  padding: clamp(28px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(21px, 2.8vw, 34px);
  line-height: 1.22;
}

blockquote span {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  background: var(--white);
}

.form-note,
.page-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.page-section-band {
  background: rgba(255, 255, 255, 0.46);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.overview-panel {
  display: grid;
  gap: 24px;
}

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

.mini-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.mini-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.scope-item {
  grid-template-columns: 126px 1fr;
}

.scope-item ul,
.fit-item ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.inline-cta {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions,
.hero-meta,
.page-hero .eyebrow,
.page-hero h1,
.page-hero-lead,
.page-hero .inline-actions,
.page-hero-visual {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.8s ease forwards;
}

.hero h1,
.page-hero h1 {
  animation-delay: 0.08s;
}

.hero-copy,
.page-hero-lead {
  animation-delay: 0.16s;
}

.hero-actions,
.page-hero .inline-actions {
  animation-delay: 0.24s;
}

.hero-meta,
.page-hero-visual {
  animation-delay: 0.36s;
}

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

@keyframes heroDrift {
  to {
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 880px;
  }

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

  .page-hero-inner,
  .activity-grid,
  .atelier-gallery-grid,
  .intro-grid,
  .method-wrap,
  .contact,
  .editorial-layout,
  .page-layout,
  .two-column,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-inner {
    min-height: auto;
    padding: 118px 0 64px;
  }

  .page-hero-visual {
    justify-self: stretch;
    width: 100%;
  }

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

  .proof-item,
  .scope-item,
  .step {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding-inline: 18px;
  }

  .hero,
  .page-hero {
    min-height: auto;
  }

  .hero::before,
  .page-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 21, 29, 0.84) 0%, rgba(4, 21, 29, 0.58) 42%, rgba(4, 21, 29, 0.9) 100%),
      linear-gradient(90deg, rgba(4, 21, 29, 0.82), rgba(4, 21, 29, 0.28));
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-inner,
  .page-hero-inner,
  .section,
  .site-footer {
    width: min(100% - 32px, 1160px);
  }

  .hero-inner,
  .page-hero-inner {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 76px);
  }

  .hero-actions,
  .section-actions,
  .inline-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-meta,
  .contact-form,
  .mini-grid {
    grid-template-columns: 1fr;
  }

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

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

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