:root {
  --ink: #001030;
  --ink-2: #233044;
  --paper: #f8fafc;
  --panel: #ffffff;
  --line: #d9e2e8;
  --teal: #0098b0;
  --teal-2: #00b3c8;
  --silver: #eef2f5;
  --soft-blue: #e9f4f7;
  --shadow: 0 18px 50px rgba(0, 16, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: white;
  background: rgba(0, 16, 48, 0.86);
  border-bottom: 2px solid rgba(0, 179, 200, 0.72);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: min(270px, 52vw);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:hover {
  color: white;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(18px, 5vw, 72px) 70px;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 16, 48, 0.96) 0%, rgba(0, 16, 48, 0.84) 41%, rgba(0, 16, 48, 0.32) 100%),
    linear-gradient(0deg, rgba(0, 16, 48, 0.72) 0%, rgba(0, 16, 48, 0) 44%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -12vw;
  bottom: 0;
  width: 54vw;
  height: 10px;
  background: var(--teal);
  transform: skewX(-34deg);
}

.hero-content {
  position: relative;
  max-width: 820px;
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-2);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 800;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.9rem, 7.4vw, 6.2rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 3.7rem);
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}

.positioning-line {
  margin: 18px 0 0;
  color: var(--teal-2);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
}

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

.button.secondary {
  color: white;
  border-color: rgba(0, 179, 200, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.intro-section,
.proof-section,
.band,
.program-section,
.serve-section,
.practice-section,
.process-section,
.founder-section,
.contact-section {
  padding: clamp(66px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 1080px;
  margin: 0 auto 36px;
}

.section-heading.narrow {
  max-width: 880px;
  text-align: center;
}

.section-logo {
  width: min(360px, 78vw);
  margin: 0 auto 34px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 1.08rem;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 18px;
  padding-top: 0;
}

.proof-section figure {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.proof-section img,
.service-card img,
.practice-image img,
.founder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-large {
  min-height: clamp(420px, 52vw, 640px);
}

.proof-stack {
  display: grid;
  gap: 18px;
}

.proof-section figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  color: white;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.12;
  background: linear-gradient(0deg, rgba(7, 17, 33, 0.86), rgba(7, 17, 33, 0));
}

.band {
  background: var(--soft-blue);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.service-card {
  min-height: 420px;
  padding: 0 26px 26px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(0, 16, 48, 0.08);
  box-shadow: 0 1px 0 rgba(0, 16, 48, 0.05);
}

.service-card img {
  height: 176px;
  margin: 0 -26px 24px;
  width: calc(100% + 52px);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--teal);
  font-weight: 800;
}

.service-card p,
.program-list p,
.serve-grid p,
.process-grid p,
.founder-copy p,
.contact-section p {
  color: var(--ink-2);
}

.program-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 1080px;
  margin: 0 auto;
  background: var(--line);
  border: 1px solid var(--line);
}

.program-list article {
  min-height: 178px;
  padding: 28px;
  background: var(--paper);
  border-top: 3px solid transparent;
}

.program-list article:hover {
  border-top-color: var(--teal);
}

.serve-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(0, 152, 176, 0.16), transparent 36%),
    var(--ink);
}

.serve-section .section-heading h2 {
  color: white;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.serve-grid article {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.serve-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.practice-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 0.8fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--silver);
}

.practice-image {
  min-height: 430px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.practice-copy {
  max-width: 700px;
}

.practice-copy p {
  color: var(--ink-2);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.process-grid div {
  padding-top: 24px;
  border-top: 3px solid var(--teal);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--teal);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
  background: var(--paper);
}

.founder-copy {
  max-width: 860px;
}

.founder-copy h2 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

.bio-copy {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.bio-copy p {
  margin: 0;
}

.expertise-block {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.expertise-block h3 {
  margin-bottom: 16px;
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expertise-list li {
  padding: 9px 12px;
  color: var(--ink);
  background: var(--soft-blue);
  border: 1px solid var(--line);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
}

.founder-media {
  position: relative;
  position: sticky;
  top: 100px;
  min-height: auto;
  aspect-ratio: 1 / 1.16;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.founder-media img {
  object-position: center top;
}

.media-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 20px;
  color: white;
  background: rgba(11, 18, 32, 0.82);
  backdrop-filter: blur(14px);
}

.media-note span {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
}

.media-note p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-top: 5px solid var(--teal);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #c8d4dc;
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: 36px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background:
    repeating-linear-gradient(125deg, rgba(255, 255, 255, 0.08) 0 8px, transparent 8px 24px),
    var(--ink);
  border-top: 5px solid var(--teal);
  font-size: 0.9rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer img {
  width: min(320px, 84vw);
  height: auto;
}

@media (max-width: 960px) {
  .site-header {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(12, 23, 43, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .service-grid,
  .intro-grid,
  .proof-section,
  .process-grid,
  .practice-section,
  .founder-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .founder-media {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: min(220px, 58vw);
  }

  .hero {
    min-height: 760px;
    padding-top: 124px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 16, 48, 0.95) 0%, rgba(0, 16, 48, 0.82) 62%, rgba(0, 16, 48, 0.46) 100%),
      linear-gradient(0deg, rgba(0, 16, 48, 0.76) 0%, rgba(0, 16, 48, 0) 46%);
  }

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

  .program-list,
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .program-list article,
  .serve-grid article {
    min-height: auto;
  }

  .founder-media,
  .practice-image {
    min-height: 320px;
  }

  .founder-media {
    aspect-ratio: 1 / 1.2;
  }

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