:root {
  --ink: #101010;
  --ink-soft: #3f3d39;
  --paper: #f7f4ed;
  --paper-strong: #fffaf0;
  --line: rgba(16, 16, 16, 0.14);
  --red: #d80f2a;
  --red-dark: #9f0b22;
  --yellow: #f4c542;
  --green: #17a66a;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(16, 16, 16, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.82), rgba(16, 16, 16, 0.42));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 34px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  padding: 116px clamp(18px, 5vw, 72px) 34px;
  color: var(--white);
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0), var(--paper));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.08);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.9), rgba(16, 16, 16, 0.54) 48%, rgba(16, 16, 16, 0.2)),
    linear-gradient(0deg, rgba(16, 16, 16, 0.58), rgba(16, 16, 16, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-bottom: 26px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

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

h1 {
  margin-bottom: 22px;
  max-width: 12ch;
  font-size: clamp(3.7rem, 7vw, 7.6rem);
  line-height: 0.86;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.05rem, 4.4vw, 4.5rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.hero-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 20px;
  border-radius: 6px;
  font-weight: 900;
  border: 1px solid transparent;
}

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 980px;
  margin-top: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow);
}

.quick-facts-wrap {
  position: relative;
  z-index: 3;
  margin-top: -32px;
  padding: 0 clamp(18px, 5vw, 72px);
}

.hero-panel div {
  min-height: 86px;
  padding: 16px 22px;
  background: rgba(255, 250, 240, 0.95);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.section {
  padding: clamp(64px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

#programs {
  padding-top: 44px;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 6vw, 84px);
}

.section-intro {
  max-width: 760px;
}

.section-intro.narrow {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

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

.service-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.service-card p,
.team-copy p,
.timeline p,
.contact p,
.process-list p {
  color: var(--ink-soft);
}

.card-index {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--red);
  font-weight: 900;
}

.team-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
  align-items: stretch;
  gap: clamp(24px, 4vw, 54px);
  color: var(--white);
  background: var(--ink);
}

.team-band .eyebrow,
.team-band p {
  color: rgba(255, 255, 255, 0.78);
}

.team-band h2 {
  color: var(--white);
}

.team-copy {
  align-self: center;
  max-width: 680px;
}

.team-image {
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.system {
  background: var(--paper-strong);
}

.process-list {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 44px auto 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list li {
  min-height: 210px;
  padding: 24px;
  background: var(--paper-strong);
}

.process-list li::before {
  counter-increment: process;
  content: "0" counter(process);
  display: inline-block;
  margin-bottom: 48px;
  color: var(--green);
  font-weight: 900;
}

.process-list span {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 900;
}

.results {
  background: var(--paper);
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.feature-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

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

.feature-photo figcaption {
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  padding: 22px 0 22px 24px;
  border-left: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
}

.timeline time {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery {
  background: var(--ink);
  color: var(--white);
}

.community {
  background: var(--paper-strong);
}

.community-card {
  max-width: 1040px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 56px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(16, 16, 16, 0.95), rgba(16, 16, 16, 0.72)),
    url("assets/wk-instagram-6.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.community-card h2 {
  max-width: 840px;
}

.community-card p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
}

.community-card .button {
  margin-top: 12px;
}

.gallery .eyebrow,
.gallery p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-feature {
  margin: 42px 0 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
}

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

.gallery-feature figcaption {
  padding: 14px 18px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  background: var(--paper-strong);
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: rgba(216, 15, 42, 0.52);
}

.contact-links span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.66);
  background: #0b0b0b;
  font-size: 0.86rem;
}

.site-footer p {
  max-width: 640px;
  margin: 0;
}

@media (max-width: 980px) {
  .split,
  .team-band,
  .result-layout,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

  .team-image {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-block;
    position: fixed;
    top: 12px;
    right: 18px;
    flex: 0 0 44px;
  }

  .menu-toggle::before {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    top: 13px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 8px 0 currentColor, 0 16px 0 currentColor;
    color: var(--white);
  }

  .menu-toggle span {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(16, 16, 16, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: 72vh;
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .hero-copy {
    font-size: 1rem;
    max-width: 30ch;
  }

  .hero-actions {
    max-width: 340px;
  }

  .hero .eyebrow {
    max-width: 310px;
    font-size: 0.68rem;
    line-height: 1.35;
  }

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

  .hero-panel,
  .service-grid,
  .process-list,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel div,
  .process-list li,
  .service-card {
    min-height: auto;
  }

  .card-index,
  .process-list li::before {
    margin-bottom: 24px;
  }

  .gallery-grid img {
    min-height: 240px;
    aspect-ratio: 16 / 11;
  }

  .gallery-feature img {
    aspect-ratio: 16 / 11;
  }
}
