:root {
  --bg: #f5f0e2;
  --surface: #fff8e7;
  --surface-strong: #ece3d1;
  --ink: #171719;
  --muted: #62645d;
  --primary: #173d35;
  --primary-2: #2458ff;
  --sage: #8bd8bb;
  --terracotta: #ff6848;
  --acid: #d7ff4f;
  --pink: #ef4fa3;
  --sky: #93cfff;
  --line: rgba(23, 23, 25, 0.18);
  --shadow: 8px 8px 0 rgba(23, 23, 25, 0.9);
  --radius: 8px;
  --header-height: 76px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
}

::selection {
  color: #fffdf8;
  background: var(--terracotta);
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(189, 108, 75, 0.55);
  outline-offset: 3px;
}

button,
input,
textarea {
  font: inherit;
}

.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;
}

.page-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fffdf8;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  color: var(--ink);
  background: rgba(247, 244, 238, 0.94);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(23, 33, 36, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand strong {
  font-size: 0.95rem;
}

.brand small {
  margin-top: 4px;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.3vw, 30px);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
  opacity: 0.86;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 2px 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.site-nav a.is-active {
  opacity: 1;
  font-weight: 760;
}

.header-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--primary);
  border-color: var(--primary);
  color: #fffdf8;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(660px, 82svh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fffdf8;
  background: var(--primary);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(18, 36, 34, 0.84) 0%,
      rgba(18, 36, 34, 0.68) 34%,
      rgba(18, 36, 34, 0.18) 70%,
      rgba(18, 36, 34, 0.1) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4b38f;
}

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

h1,
h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.5vw, 6.25rem);
  line-height: 0.92;
  font-weight: 800;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4.5vw, 4.3rem);
  line-height: 0.98;
  font-weight: 780;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.footer-layout div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.88);
  background: rgba(18, 60, 59, 0.38);
  font-size: 0.86rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.hero-status {
  position: absolute;
  right: clamp(20px, 5vw, 56px);
  bottom: clamp(24px, 5vw, 56px);
  z-index: 2;
  width: min(360px, calc(100% - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: var(--radius);
  color: #fffdf8;
  background: rgba(18, 60, 59, 0.54);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.hero-status span {
  display: block;
  margin-bottom: 9px;
  color: #f4b38f;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-status strong {
  display: block;
  margin-bottom: 8px;
  line-height: 1.28;
}

.hero-status p {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--terracotta);
  color: #fffdf8;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #a95d40;
}

.button-secondary {
  border-color: rgba(255, 253, 248, 0.7);
  color: #fffdf8;
}

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

.credential-band {
  background: var(--primary);
  color: #fffdf8;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 253, 248, 0.16);
  border-inline: 1px solid rgba(255, 253, 248, 0.16);
}

.credential-grid div {
  min-height: 126px;
  padding: 28px;
  background: var(--primary);
}

.credential-grid span,
.mock-item span,
.example-card span,
.panel-kicker {
  display: block;
  margin-bottom: 9px;
  color: #f0b28e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.credential-grid strong {
  display: block;
  max-width: 190px;
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.22;
}

.strategy-section {
  padding: clamp(82px, 10vw, 138px) 0;
  background:
    linear-gradient(180deg, #fffdf8 0%, #f7f4ee 100%);
}

.strategy-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.strategy-layout > div:first-child p:last-child {
  max-width: 560px;
  font-size: 1.08rem;
}

.strategy-board {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(23, 33, 36, 0.12);
  border-radius: var(--radius);
  background: #172124;
  box-shadow: var(--shadow);
}

.board-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
  color: #fffdf8;
}

.board-top span {
  color: #f0b28e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-top strong {
  text-align: right;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.board-grid div {
  min-height: 176px;
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.06);
}

.board-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  color: #f0b28e;
  font-weight: 900;
}

.board-grid strong {
  display: block;
  margin-bottom: 7px;
  color: #fffdf8;
  font-size: 1.1rem;
}

.board-grid p {
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.94rem;
  line-height: 1.52;
}

.orientation-section {
  padding: clamp(72px, 8vw, 112px) 0;
  background: #fbf8f1;
}

.orientation-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: start;
}

.orientation-copy h2,
.format-layout h2 {
  font-size: clamp(2.05rem, 3.8vw, 3.8rem);
}

.orientation-grid {
  display: grid;
  gap: 14px;
}

.orientation-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  min-height: 168px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.orientation-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fffdf8;
  background: var(--primary);
  font-weight: 900;
}

.orientation-card h3 {
  max-width: 620px;
  margin-bottom: 10px;
  font-size: clamp(1.24rem, 2vw, 1.62rem);
}

.orientation-card p {
  margin-bottom: 0;
}

.section {
  padding: clamp(82px, 11vw, 142px) 0;
}

.section-intro {
  background: var(--bg);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: end;
  margin-bottom: 54px;
}

.split-heading p:last-child {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.services-grid,
.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.example-card {
  min-height: 292px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card p {
  margin-bottom: 20px;
}

.example-card p {
  margin-bottom: 0;
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3 {
  margin-top: 0;
}

.service-result {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--primary);
  font-size: 0.92rem;
  line-height: 1.35;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.service-list li {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(18, 60, 59, 0.14);
  border-radius: 999px;
  color: var(--primary);
  background: #f7f4ee;
  font-size: 0.78rem;
  font-weight: 780;
}

.format-section {
  padding: clamp(82px, 10vw, 124px) 0;
  color: #fffdf8;
  background:
    linear-gradient(135deg, rgba(18, 60, 59, 0.96), rgba(31, 87, 83, 0.92)),
    var(--primary);
}

.format-section p {
  color: rgba(255, 253, 248, 0.72);
}

.format-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.56fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.format-card {
  display: flex;
  flex-direction: column;
  min-height: 322px;
  padding: 26px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.07);
}

.format-card.is-featured {
  background: #fffdf8;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.format-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 88px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: 50%;
  color: #f4b38f;
  font-weight: 900;
}

.format-card.is-featured span {
  border-color: rgba(18, 60, 59, 0.18);
  color: var(--primary);
}

.format-card h3 {
  color: #fffdf8;
  font-size: 1.44rem;
}

.format-card.is-featured h3 {
  color: var(--primary);
}

.format-card.is-featured p {
  color: var(--muted);
}

.format-card p {
  margin-bottom: 24px;
}

.format-card > strong {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 253, 248, 0.14);
  color: #fffdf8;
  line-height: 1.36;
}

.format-card.is-featured > strong {
  border-color: var(--line);
  color: var(--primary);
}

.audience-section,
.examples-section {
  background: var(--surface-strong);
}

.section-header {
  max-width: 850px;
  margin-bottom: 44px;
}

.section-header.compact {
  max-width: 710px;
}

.section-header p:last-child {
  margin-bottom: 0;
}

.audience-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.audience-tabs {
  display: grid;
  gap: 8px;
}

.audience-tab {
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(23, 33, 36, 0.12);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 253, 248, 0.55);
  cursor: pointer;
  text-align: left;
  font-weight: 800;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.audience-tab:hover,
.audience-tab:focus-visible,
.audience-tab.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fffdf8;
}

.audience-panel {
  min-height: 406px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.audience-panel h3 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.04;
}

.audience-panel p {
  max-width: 700px;
  font-size: 1.05rem;
}

.audience-panel ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.audience-panel li {
  min-height: 94px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--primary);
  background: #f9f6ef;
  font-weight: 750;
  line-height: 1.35;
}

.process-section {
  background: #fbf8f1;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 96px);
}

.process-layout > div:first-child {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  align-self: start;
}

.process-summary {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.process-summary span {
  display: block;
  margin-bottom: 7px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-summary strong {
  display: block;
  color: var(--primary);
  line-height: 1.4;
}

.process-steps {
  display: grid;
  gap: 14px;
}

.process-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  min-height: 146px;
  padding: 26px;
  border-left: 4px solid var(--terracotta);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(23, 33, 36, 0.08);
}

.process-step span {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
}

.about-section {
  background: var(--primary);
  color: #fffdf8;
}

.about-section p {
  color: rgba(255, 253, 248, 0.76);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 94px);
  align-items: center;
}

.profile-panel {
  display: grid;
  gap: 14px;
}

.portrait-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: var(--radius);
  background: #153f3d;
}

.portrait-card::before {
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 2px solid rgba(255, 248, 231, 0.62);
  border-radius: calc(var(--radius) - 4px);
  content: "";
  pointer-events: none;
}

.portrait-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 52% 28%;
  filter: saturate(1.02) contrast(1.02);
}

.portrait-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.profile-notes,
.profile-tags {
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.07);
}

.profile-notes {
  padding: 20px;
}

.profile-notes span {
  display: block;
  margin-bottom: 7px;
  color: #f0b28e;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-notes strong {
  display: block;
  line-height: 1.35;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
}

.profile-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.84);
  background: rgba(255, 253, 248, 0.08);
  font-size: 0.86rem;
  font-weight: 760;
}

.about-copy {
  max-width: 720px;
}

.qualification-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 253, 248, 0.18);
  border: 1px solid rgba(255, 253, 248, 0.18);
}

.qualification-list div {
  padding: 22px;
  background: rgba(255, 253, 248, 0.07);
}

.qualification-list strong,
.qualification-list span {
  display: block;
}

.qualification-list strong {
  margin-bottom: 5px;
}

.qualification-list span {
  color: rgba(255, 253, 248, 0.7);
  line-height: 1.5;
}

.about-quote {
  margin-top: 22px;
  padding: 22px;
  border-left: 4px solid #f0b28e;
  border-radius: var(--radius);
  color: #fffdf8;
  background: rgba(255, 253, 248, 0.07);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.45;
  font-weight: 760;
}

.example-card {
  min-height: 360px;
}

.example-card span {
  color: var(--terracotta);
}

.example-card dl {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.example-card dl div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.example-card dt {
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.example-card dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.faq-section {
  background: #fbf8f1;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-item summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--terracotta);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  padding: clamp(82px, 10vw, 132px) 0;
  color: #fffdf8;
  background: #172124;
}

.contact-section p {
  color: rgba(255, 253, 248, 0.72);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.contact-details a {
  width: fit-content;
  color: #f4b38f;
  font-weight: 800;
}

.contact-details span {
  display: inline-flex;
  margin-left: 8px;
  padding: 2px 7px;
  border: 1px solid rgba(244, 179, 143, 0.42);
  border-radius: 999px;
  color: #f4b38f;
  font-size: 0.72rem;
}

.contact-details p {
  margin: 0;
}

.contact-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 640px;
  margin-top: 34px;
}

.contact-steps div {
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(255, 253, 248, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.06);
}

.contact-steps span {
  display: block;
  margin-bottom: 20px;
  color: #f0b28e;
  font-weight: 900;
}

.contact-steps strong {
  display: block;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.06);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: var(--radius);
  color: #fffdf8;
  background: rgba(0, 0, 0, 0.18);
  outline: none;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 138px;
  padding: 14px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 253, 248, 0.48);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f4b38f;
}

.form-note {
  display: none;
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(244, 179, 143, 0.38);
  border-radius: var(--radius);
  color: #f4b38f;
  background: rgba(244, 179, 143, 0.08);
  font-size: 0.9rem;
}

.form-note.is-visible {
  display: block;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(23, 33, 36, 0.1);
  background: var(--bg);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-layout p,
.footer-layout a {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

/* Creative direction layer: editorial, youth-work studio, slightly artsy. */
body {
  background:
    repeating-linear-gradient(90deg, rgba(23, 23, 25, 0.035) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(23, 23, 25, 0.025) 0 1px, transparent 1px 96px),
    var(--bg);
}

.site-header {
  color: var(--ink);
  background: rgba(245, 240, 226, 0.82);
  border-color: rgba(23, 23, 25, 0.14);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(255, 248, 231, 0.94);
  box-shadow: 0 10px 0 rgba(23, 23, 25, 0.08);
}

.brand-mark {
  border: 2px solid currentColor;
  border-radius: 30% 70% 64% 36% / 42% 34% 66% 58%;
  background: var(--acid);
  color: var(--ink);
}

.header-cta,
.button {
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.header-cta {
  background: var(--acid);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--pink);
  color: var(--ink);
  transform: translate(-1px, -1px);
}

.hero {
  min-height: clamp(720px, 92svh, 920px);
  color: var(--ink);
  background:
    linear-gradient(90deg, #fff8e7 0 53%, rgba(255, 248, 231, 0) 53%),
    var(--bg);
}

.hero::before {
  content: "JUGEND";
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  bottom: clamp(14px, 4vw, 46px);
  z-index: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 23, 25, 0.18);
  font-size: clamp(5rem, 13vw, 13rem);
  font-weight: 950;
  line-height: 0.8;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  top: 118px;
  z-index: 1;
  width: min(36vw, 440px);
  height: min(34vw, 390px);
  border: 2px solid rgba(23, 23, 25, 0.85);
  background:
    repeating-linear-gradient(
      -35deg,
      rgba(215, 255, 79, 0.88) 0 12px,
      rgba(255, 248, 231, 0.2) 12px 24px
    );
  transform: rotate(-5deg);
  pointer-events: none;
}

.hero-image {
  inset: auto clamp(20px, 5vw, 56px) 66px auto;
  z-index: 2;
  width: min(47vw, 650px);
  height: min(66vh, 650px);
  border: 2px solid var(--ink);
  border-radius: 18px 18px 72px 18px;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(1.18) contrast(1.04);
  box-shadow: 14px 14px 0 var(--ink);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 248, 231, 0.96) 0 52%, rgba(255, 248, 231, 0.18) 52% 100%);
}

.hero-content {
  max-width: none;
  margin-inline: auto;
}

.hero .eyebrow {
  width: fit-content;
  padding: 8px 11px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--sky);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-1deg);
}

h1 {
  letter-spacing: 0;
}

.hero h1 {
  color: var(--ink);
  font-size: clamp(3.4rem, 6.2vw, 6.3rem);
  line-height: 0.88;
  max-width: 550px;
}

.hero-copy {
  max-width: 540px;
  color: rgba(23, 23, 25, 0.74);
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
}

.button-primary {
  background: var(--terracotta);
  color: var(--ink);
}

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

.button-secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: #fff8e7;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--sky);
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.hero-proof span,
.service-list li,
.profile-tags span {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: #fff8e7;
  box-shadow: 3px 3px 0 var(--ink);
}

.hero-proof span:nth-child(2),
.service-list li:nth-child(2n),
.profile-tags span:nth-child(2) {
  background: var(--acid);
}

.hero-proof span:nth-child(3),
.service-list li:nth-child(3n),
.profile-tags span:nth-child(3) {
  background: var(--sky);
}

.hero-stickers {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.sticker {
  position: absolute;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--acid);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.sticker-one {
  right: min(42vw, 560px);
  top: 28%;
  transform: rotate(-8deg);
}

.sticker-two {
  right: clamp(32px, 6vw, 84px);
  top: 24%;
  background: var(--pink);
  transform: rotate(7deg);
}

.sticker-three {
  right: min(8vw, 110px);
  bottom: 24%;
  background: var(--sky);
  transform: rotate(-5deg);
}

.hero-status {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--acid);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(2deg);
}

.hero-status span {
  color: var(--ink);
}

.hero-status p {
  color: rgba(23, 23, 25, 0.72);
}

.signal-strip {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--pink);
}

.signal-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: signal-slide 24s linear infinite;
}

.signal-track span {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  padding: 0 30px;
  border-right: 2px solid var(--ink);
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.48rem);
  font-weight: 950;
  text-transform: uppercase;
}

@keyframes signal-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-45%);
  }
}

.credential-band,
.about-section {
  background: var(--ink);
}

.credential-grid {
  border-inline: 2px solid rgba(255, 248, 231, 0.22);
  background: rgba(255, 248, 231, 0.22);
}

.credential-grid div {
  background: var(--ink);
}

.credential-grid span,
.mock-item span,
.panel-kicker,
.example-card span {
  color: var(--acid);
}

.strategy-section,
.section-intro,
.process-section,
.faq-section {
  background: var(--bg);
}

.orientation-section,
.audience-section,
.examples-section {
  background: var(--surface-strong);
}

.strategy-board,
.service-card,
.orientation-card,
.audience-panel,
.process-step,
.example-card,
.faq-item,
.contact-form,
.process-summary {
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}

.strategy-board {
  background: var(--ink);
  transform: rotate(1deg);
}

.board-grid div {
  border: 2px solid rgba(255, 248, 231, 0.2);
}

.board-grid div:nth-child(2) {
  background: rgba(147, 207, 255, 0.14);
}

.board-grid div:nth-child(3) {
  background: rgba(215, 255, 79, 0.12);
}

.orientation-card:nth-child(1),
.service-card:nth-child(4),
.example-card:nth-child(2) {
  background: #fff8e7;
  transform: rotate(-0.6deg);
}

.orientation-card:nth-child(2),
.service-card:nth-child(2),
.example-card:nth-child(3) {
  background: #eef8ff;
  transform: rotate(0.7deg);
}

.orientation-card:nth-child(3),
.service-card:nth-child(5) {
  background: #f5ffd9;
  transform: rotate(-0.3deg);
}

.orientation-card span,
.service-icon,
.process-step span {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--acid);
  box-shadow: 3px 3px 0 var(--ink);
}

.service-card,
.example-card {
  border-radius: 14px;
}

.service-result {
  border-top: 2px solid var(--ink);
  color: var(--ink);
}

.format-section {
  background:
    repeating-linear-gradient(90deg, rgba(255, 248, 231, 0.08) 0 1px, transparent 1px 72px),
    var(--ink);
}

.format-card {
  border: 2px solid #fff8e7;
  background: rgba(255, 248, 231, 0.06);
  box-shadow: 8px 8px 0 rgba(255, 248, 231, 0.16);
}

.format-card.is-featured {
  border-color: var(--ink);
  background: var(--acid);
  box-shadow: 10px 10px 0 var(--terracotta);
  transform: rotate(-1.2deg);
}

.format-card.is-featured h3,
.format-card.is-featured p,
.format-card.is-featured > strong {
  color: var(--ink);
}

.audience-tab {
  border: 2px solid var(--ink);
  background: #fff8e7;
  box-shadow: 4px 4px 0 var(--ink);
}

.audience-tab:hover,
.audience-tab:focus-visible,
.audience-tab.is-active {
  border-color: var(--ink);
  background: var(--terracotta);
  color: var(--ink);
}

.audience-panel {
  background: #fff8e7;
}

.audience-panel li {
  border: 2px solid var(--ink);
  background: var(--sky);
  box-shadow: 4px 4px 0 var(--ink);
}

.process-step {
  border-left: 2px solid var(--ink);
}

.profile-panel {
  transform: rotate(-0.8deg);
}

.portrait-card,
.profile-notes,
.profile-tags,
.qualification-list,
.about-quote {
  border: 2px solid rgba(255, 248, 231, 0.32);
}

.portrait-card {
  box-shadow: 8px 8px 0 rgba(255, 248, 231, 0.85);
}

.about-quote {
  border-left: 2px solid rgba(255, 248, 231, 0.32);
  background: var(--terracotta);
  color: var(--ink);
  box-shadow: 7px 7px 0 rgba(255, 248, 231, 0.85);
}

.faq-item summary::after {
  color: var(--pink);
}

.contact-section {
  background:
    repeating-linear-gradient(-45deg, rgba(255, 248, 231, 0.055) 0 12px, transparent 12px 26px),
    var(--ink);
}

.contact-steps div {
  border: 2px solid rgba(255, 248, 231, 0.28);
  background: rgba(255, 248, 231, 0.08);
}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 18px 20px 24px;
    color: var(--ink);
    background: rgba(247, 244, 238, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 44px rgba(23, 33, 36, 0.13);
  }

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

  .site-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    font-size: 1.08rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(18, 36, 34, 0.88) 0%,
        rgba(18, 36, 34, 0.7) 58%,
        rgba(18, 36, 34, 0.26) 100%
      );
  }

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

  .split-heading,
  .strategy-layout,
  .orientation-layout,
  .format-layout,
  .audience-layout,
  .process-layout,
  .about-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-status {
    display: none;
  }

  .process-layout > div:first-child {
    position: static;
  }

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

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 28px, 1160px);
  }

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

  :root {
    --header-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(18, 36, 34, 0.7) 0%,
        rgba(18, 36, 34, 0.78) 42%,
        rgba(18, 36, 34, 0.92) 100%
      );
  }

  .hero-content {
    align-self: end;
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .credential-grid,
  .board-grid,
  .services-grid,
  .format-grid,
  .example-grid,
  .audience-tabs,
  .audience-panel ul,
  .contact-steps {
    grid-template-columns: 1fr;
  }

  .credential-grid div {
    min-height: 104px;
    padding: 22px;
  }

  .section {
    padding: 72px 0;
  }

  .service-card,
  .example-card {
    min-height: auto;
  }

  .service-card h3 {
    margin-top: 0;
  }

  .hero-proof span {
    width: 100%;
    justify-content: center;
  }

  .orientation-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .board-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .board-top strong {
    text-align: left;
  }

  .format-card {
    min-height: auto;
  }

  .format-card span {
    margin-bottom: 48px;
  }

  .audience-panel {
    min-height: auto;
    padding: 26px;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .portrait-card,
  .portrait-card img {
    min-height: 380px;
  }

  .footer-layout,
  .footer-layout div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .hero {
    color: var(--ink);
    background: var(--surface);
  }

  .hero::after,
  .hero-stickers {
    display: none;
  }

  .hero::before {
    left: 14px;
    bottom: 16px;
    font-size: clamp(4.2rem, 18vw, 9rem);
  }

  .hero-image {
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0.28;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(255, 248, 231, 0.92) 0%,
        rgba(255, 248, 231, 0.86) 58%,
        rgba(255, 248, 231, 0.98) 100%
      );
  }

  .hero h1,
  .hero-copy {
    color: var(--ink);
  }

  .strategy-board,
  .profile-panel,
  .format-card.is-featured,
  .orientation-card,
  .service-card,
  .example-card {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    background: rgba(255, 248, 231, 0.94);
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding-bottom: 64px;
  }

  .hero .eyebrow {
    max-width: 100%;
    line-height: 1.35;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15vw, 5rem);
  }

  .signal-track {
    animation-duration: 18s;
  }

  .signal-track span {
    min-height: 54px;
    padding-inline: 18px;
  }

  .board-grid div {
    min-height: 150px;
  }

  .board-grid span {
    margin-bottom: 28px;
  }

  .contact-steps div {
    min-height: auto;
  }
}
