@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #191919;
  --ink-deep: #0d0d0d;
  --ink-soft: #45433d;
  --paper: #f7f5ee;
  --paper-deep: #ece9df;
  --white: #fffdf6;
  --teal: #8a6700;
  --teal-light: #ffe000;
  --mint: #fff4ad;
  --coral: #ffe000;
  --coral-dark: #966d00;
  --yellow: #ffe000;
  --line: rgba(17, 17, 17, 0.16);
  --muted: #706e66;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 42px;
  --content: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
body.nav-open,
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }

.fc-site { min-height: 100vh; overflow: clip; }
.container { width: min(calc(100% - (var(--gutter) * 2)), var(--content)); margin-inline: auto; }
.section { padding: clamp(78px, 10vw, 144px) 0; position: relative; }
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.section--white { background: var(--white); }
.section--ink { color: var(--white); background: var(--ink); }
.section--mint { background: var(--mint); }
.section--paper-deep { background: var(--paper-deep); }
.grid-lines {
  background-image: linear-gradient(to right, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: calc(100% / 6) 100%;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--teal);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 2px; content: ""; background: currentColor; }
.section--ink .eyebrow { color: var(--teal-light); }
.section-heading {
  max-width: 820px;
  margin-bottom: clamp(42px, 6vw, 74px);
}
.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.1fr .72fr;
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
}
.display-title {
  margin-bottom: 0;
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: 1.12;
}
.display-title em { color: var(--coral); font-style: normal; }
.lead { color: var(--ink-soft); font-size: clamp(16px, 1.6vw, 20px); line-height: 1.95; }
.section--ink .lead { color: rgba(255,255,255,.72); }
.microcopy { color: var(--muted); font-size: 12px; letter-spacing: .04em; }

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  color: var(--ink-deep);
  border-bottom: 1px solid rgba(0,0,0,.15);
  background: var(--yellow);
  transition: background .3s, box-shadow .3s, transform .3s;
}
.site-header.is-fixed,
.site-header.scrolled {
  position: fixed;
  color: var(--ink-deep);
  background: rgba(255,224,0,.96);
  box-shadow: 0 14px 45px rgba(14, 42, 40, .09);
  backdrop-filter: blur(14px);
}
.site-header__top {
  height: 34px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: var(--ink-deep);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.site-header.is-fixed .site-header__top,
.site-header.scrolled .site-header__top { display: none; }
.site-header__top-inner,
.site-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__top-inner { height: 100%; }
.site-header__top a { opacity: .86; }
.site-header__main { min-height: 98px; gap: 36px; }
.brand {
  position: relative;
  display: inline-flex;
  width: 188px;
  height: 82px;
  flex: 0 0 auto;
  background: url("assets/friend-career-logo.png") center / contain no-repeat;
}
.brand__mark {
  display: none;
}
.brand__mark::after {
  position: absolute;
  right: -5px;
  bottom: 4px;
  width: 12px;
  height: 12px;
  content: "";
  border: 3px solid currentColor;
  border-radius: 50%;
  background: var(--coral);
}
.brand__text { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.brand__text strong {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  letter-spacing: .05em;
}
.brand__text small { display: block; margin-top: 6px; font-size: 9px; letter-spacing: .1em; opacity: .7; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); margin-left: auto; }
.site-nav > a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.site-nav > a:hover::after,
.site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-nav__cta {
  padding: 13px 19px;
  color: var(--yellow) !important;
  border-radius: 999px;
  background: var(--ink-deep);
}
.site-nav__cta::after { display: none; }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--yellow);
  border: 0;
  border-radius: 50%;
  background: var(--ink-deep);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform .25s, opacity .25s;
}
.nav-open .nav-toggle span,
.menu-open .nav-toggle span { opacity: 0; }
.nav-open .nav-toggle::before,
.menu-open .nav-toggle::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle::after,
.menu-open .nav-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--ink-deep);
}
.hero__media, .hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: center; }
.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5,26,25,.94) 0%, rgba(5,26,25,.76) 34%, rgba(5,26,25,.18) 70%, rgba(5,26,25,.08) 100%),
    linear-gradient(0deg, rgba(5,26,25,.58), transparent 45%);
}
.hero__content { position: relative; z-index: 2; padding-top: 180px; padding-bottom: clamp(64px, 9vw, 118px); }
.hero__kicker { margin-bottom: 28px; color: var(--teal-light); font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.hero h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(48px, 7.6vw, 106px);
  font-weight: 700;
  letter-spacing: -.075em;
  line-height: 1.04;
  text-wrap: balance;
}
.hero h1 span { display: block; color: var(--teal-light); }
.hero__intro { max-width: 610px; margin-bottom: 42px; color: rgba(255,255,255,.8); font-size: clamp(15px, 1.45vw, 18px); line-height: 2; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__aside {
  position: absolute;
  z-index: 3;
  right: var(--gutter);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  writing-mode: vertical-rl;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero__aside::after { width: 1px; height: 48px; content: ""; background: rgba(255,255,255,.55); }
.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn::after { content: "→"; font-family: "DM Sans", sans-serif; font-size: 17px; }
.btn--coral { color: var(--ink-deep); background: var(--coral); }
.btn--coral:hover { background: #ffeb52; }
.btn--light { color: var(--ink); background: var(--white); }
.btn--outline { color: inherit; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.05); }
.btn--outline:hover { background: rgba(255,255,255,.12); }
.btn--ink { color: var(--white); background: var(--ink); }
.btn--text { min-height: auto; padding: 0 0 7px; border-bottom: 1px solid currentColor; border-radius: 0; }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; }
.audience-card {
  position: relative;
  min-height: 530px;
  padding: clamp(48px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.audience-card:first-child { color: var(--ink); background: var(--teal-light); }
.audience-card:last-child { color: var(--white); background: var(--ink); }
.audience-card__number { font-family: "DM Sans", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .18em; }
.audience-card h2 { max-width: 480px; margin: 52px 0 26px; font-size: clamp(34px, 4.3vw, 64px); letter-spacing: -.06em; line-height: 1.22; }
.audience-card p { max-width: 510px; margin-bottom: 38px; color: inherit; opacity: .74; }
.audience-card__orb {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 240px;
  height: 240px;
  border: 54px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.jobs-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.jobs-count { color: var(--muted); font-family: "DM Sans", sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .08em; }
.jobs-count strong { color: var(--coral-dark); font-size: 26px; }
.job-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.job-card {
  position: relative;
  min-height: 390px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.job-card:hover { border-color: transparent; box-shadow: var(--shadow); transform: translateY(-7px); }
.job-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.job-card__category, .pill {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
}
.job-card__new { color: var(--coral-dark); font-family: "DM Sans", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.job-card h3 { margin: 30px 0 26px; font-size: 22px; letter-spacing: -.035em; line-height: 1.5; }
.job-card__facts { display: grid; gap: 10px; margin: 0 0 26px; }
.job-card__fact { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding-bottom: 9px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.job-card__fact strong { color: var(--ink); font-size: 14px; text-align: right; }
.job-card__wage { margin-top: auto; color: var(--coral-dark); font-size: 20px; font-weight: 800; }
.job-card__link { position: absolute; inset: 0; border-radius: inherit; }
.job-card__link:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
.job-card.is-hidden { display: none; }

.values-track { display: grid; grid-template-columns: repeat(5, minmax(160px, 1fr)); border-top: 1px solid rgba(255,255,255,.16); }
.value-item { min-height: 270px; padding: 32px 22px; border-right: 1px solid rgba(255,255,255,.16); }
.value-item:first-child { border-left: 1px solid rgba(255,255,255,.16); }
.value-item__index { color: var(--coral); font-family: "DM Sans", sans-serif; font-size: 11px; }
.value-item h3 { margin: 70px 0 12px; font-family: "DM Sans", sans-serif; font-size: 13px; letter-spacing: .08em; }
.value-item strong { display: block; margin-bottom: 13px; font-size: 22px; }
.value-item p { color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.8; }

.editorial-split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: stretch; }
.editorial-split__media { min-height: 650px; position: relative; overflow: hidden; }
.editorial-split__media img { width: 100%; height: 100%; object-fit: cover; }
.editorial-split__media::after { position: absolute; inset: 0; content: ""; box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
.editorial-split__body { padding: clamp(58px, 8vw, 120px); display: flex; flex-direction: column; justify-content: center; }
.editorial-split__body h2 { margin-bottom: 30px; font-size: clamp(38px, 5vw, 68px); letter-spacing: -.06em; line-height: 1.2; }
.service-list { margin: 42px 0; border-top: 1px solid rgba(255,255,255,.2); }
.service-row { display: grid; grid-template-columns: 42px 1fr auto; gap: 18px; align-items: center; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.service-row span { color: var(--coral); font-family: "DM Sans", sans-serif; font-size: 11px; }
.service-row strong { font-size: 19px; }
.service-row small { color: rgba(255,255,255,.56); }

.journey { display: grid; grid-template-columns: repeat(5, 1fr); counter-reset: journey; }
.journey__step { position: relative; min-height: 230px; padding: 28px 24px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); counter-increment: journey; }
.journey__step:first-child { border-left: 1px solid var(--line); }
.journey__step::before { display: block; margin-bottom: 54px; color: var(--coral-dark); content: "0" counter(journey); font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.journey__step::after { position: absolute; top: 32px; right: -8px; z-index: 2; content: "→"; color: var(--coral-dark); font-family: "DM Sans", sans-serif; }
.journey__step:last-child::after { display: none; }
.journey__step strong { display: block; margin-bottom: 12px; font-size: 18px; }
.journey__step p { color: var(--muted); font-size: 12px; }

.quote-section { background: var(--yellow); }
.quote-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(30px, 7vw, 100px); align-items: start; }
.quote-mark { color: var(--coral-dark); font-family: Georgia, serif; font-size: 150px; line-height: .65; }
.quote-text { margin-bottom: 34px; font-size: clamp(28px, 4vw, 54px); font-weight: 700; letter-spacing: -.055em; line-height: 1.45; }
.quote-meta { font-size: 12px; font-weight: 700; letter-spacing: .08em; }

.area-panel { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 8vw, 110px); align-items: center; }
.area-visual { position: relative; min-height: 430px; }
.area-visual__ring { position: absolute; inset: 5% 12%; border: 1px solid rgba(255,255,255,.26); border-radius: 50%; }
.area-visual__ring:nth-child(2) { inset: 20% 27%; }
.area-visual__pin { position: absolute; top: 48%; left: 50%; width: 118px; height: 118px; display: grid; place-items: center; color: var(--ink-deep); border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 18px rgba(240,111,78,.13); transform: translate(-50%,-50%); font-size: 13px; font-weight: 800; }
.area-visual__label { position: absolute; right: 7%; bottom: 13%; color: rgba(255,255,255,.62); font-family: "DM Sans", sans-serif; font-size: 10px; letter-spacing: .18em; }
.fact-stack { margin-top: 40px; }
.fact-stack__row { display: grid; grid-template-columns: 110px 1fr; gap: 22px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.fact-stack__row dt { color: rgba(255,255,255,.48); font-size: 12px; }
.fact-stack__row dd { margin: 0; font-weight: 600; }

.closing-cta { position: relative; padding: clamp(90px, 12vw, 170px) 0; color: var(--ink-deep); background: var(--teal-light); overflow: hidden; }
.closing-cta::before { position: absolute; top: -160px; right: -100px; width: 460px; height: 460px; content: ""; border: 90px solid rgba(255,255,255,.26); border-radius: 50%; }
.closing-cta__inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: end; }
.closing-cta h2 { max-width: 820px; margin-bottom: 20px; font-size: clamp(42px, 7vw, 88px); letter-spacing: -.07em; line-height: 1.13; }

.site-footer { padding: 70px 0 28px; color: var(--white); background: var(--ink-deep); }
.site-footer .brand { width: 180px; height: 86px; padding: 8px; border-radius: 12px; background-color: var(--yellow); background-size: calc(100% - 16px); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 50px; padding-bottom: 64px; }
.footer-brand p { max-width: 390px; margin: 30px 0 0; color: rgba(255,255,255,.58); font-size: 13px; }
.footer-column h3 { margin-bottom: 20px; color: var(--teal-light); font-family: "DM Sans", sans-serif; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.footer-column a, .footer-column p { display: block; margin: 0 0 10px; color: rgba(255,255,255,.7); font-size: 13px; }
.footer-column a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 22px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.43); font-family: "DM Sans", sans-serif; font-size: 10px; letter-spacing: .05em; }

/* Internal page hero */
.page-hero { position: relative; min-height: 560px; padding: 205px 0 86px; color: var(--white); background: var(--ink); overflow: hidden; }
.page-hero--image { min-height: 690px; display: flex; align-items: flex-end; }
.page-hero__media, .page-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero__media img { object-fit: cover; }
.page-hero__media img[src=""] { display: none; }
.page-hero__media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(5,28,26,.95), rgba(5,28,26,.68) 47%, rgba(5,28,26,.18)); }
.page-hero__pattern { position: absolute; right: -5%; bottom: -45%; width: 590px; height: 590px; border: 110px solid rgba(169,222,214,.08); border-radius: 50%; }
.page-hero__content { position: relative; z-index: 2; }
.page-hero__label { margin-bottom: 22px; color: var(--teal-light); font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.page-hero h1 { max-width: 920px; margin-bottom: 25px; font-size: clamp(46px, 7vw, 90px); letter-spacing: -.07em; line-height: 1.13; }
.page-hero__lead { max-width: 680px; margin-bottom: 0; color: rgba(255,255,255,.72); font-size: clamp(15px, 1.6vw, 19px); line-height: 2; }
.breadcrumb { position: relative; z-index: 2; display: flex; gap: 9px; align-items: center; margin-bottom: 45px; color: rgba(255,255,255,.48); font-family: "DM Sans", sans-serif; font-size: 10px; letter-spacing: .08em; }
.breadcrumb a:hover { color: var(--white); }

.filter-shell { margin-top: -42px; position: relative; z-index: 4; }
.filter-panel { padding: 24px; border-radius: 22px; background: var(--white); box-shadow: var(--shadow); }
.filter-search { display: grid; grid-template-columns: 1fr auto; gap: 14px; margin-bottom: 19px; }
.filter-search label { position: relative; }
.filter-search input { width: 100%; height: 58px; padding: 0 20px; color: var(--ink); border: 1px solid var(--line); border-radius: 14px; background: var(--paper); outline: none; }
.filter-search input:focus { border-color: var(--coral-dark); box-shadow: 0 0 0 3px rgba(255,224,0,.28); }
.filter-search button { min-width: 120px; color: var(--white); border: 0; border-radius: 14px; background: var(--ink); cursor: pointer; }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-button { min-height: 39px; padding: 6px 15px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-size: 12px; font-weight: 700; }
.filter-button:hover, .filter-button.is-active { color: var(--white); border-color: var(--teal); background: var(--teal); }
.jobs-empty { display: none; margin: 54px 0 0; padding: 36px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius-md); }
.jobs-empty.is-visible { display: block; }

.job-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(40px, 6vw, 90px); align-items: start; }
.job-detail__category { margin-bottom: 24px; }
.job-detail h2 { margin-bottom: 28px; font-size: clamp(38px, 5vw, 68px); letter-spacing: -.055em; line-height: 1.25; }
.job-detail__summary { max-width: 700px; color: var(--ink-soft); font-size: 18px; line-height: 2; }
.job-essentials { display: grid; grid-template-columns: repeat(2, 1fr); margin: 52px 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.job-essential { min-height: 125px; padding: 23px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.job-essential span { display: block; margin-bottom: 14px; color: var(--muted); font-size: 11px; }
.job-essential strong { font-size: 17px; }
.job-essential--wage strong { color: var(--coral-dark); font-size: 23px; }
.job-aside { position: sticky; top: 120px; padding: 28px; color: var(--white); border-radius: var(--radius-md); background: var(--ink); }
.job-aside h2 { margin-bottom: 14px; font-size: 21px; }
.job-aside p { color: rgba(255,255,255,.63); font-size: 13px; }
.job-aside .btn { width: 100%; margin-top: 14px; }
.job-aside__phone { margin-top: 24px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.16); }
.job-aside__phone small { display: block; color: rgba(255,255,255,.46); }
.job-aside__phone a { font-family: "DM Sans", sans-serif; font-size: 22px; font-weight: 700; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 300px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.feature-card__num { color: var(--coral-dark); font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 700; }
.feature-card h3 { margin: 70px 0 17px; font-size: 21px; }
.feature-card p { color: var(--muted); font-size: 13px; }
.category-cloud { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.category-tile { min-height: 150px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: var(--white); }
.category-tile span { color: var(--coral-dark); font-family: "DM Sans", sans-serif; font-size: 11px; }
.category-tile strong { font-size: 20px; }

.faq-list { max-width: 900px; margin-left: auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 26px 50px 26px 0; cursor: pointer; list-style: none; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; top: 50%; right: 10px; content: "+"; color: var(--coral-dark); font-family: "DM Sans", sans-serif; font-size: 24px; transform: translateY(-50%); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 45px 25px 0; color: var(--muted); font-size: 14px; }

.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.problem-card { position: relative; min-height: 290px; padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-md); overflow: hidden; }
.problem-card::after { position: absolute; right: -45px; bottom: -45px; width: 150px; height: 150px; content: ""; border: 32px solid rgba(169,222,214,.08); border-radius: 50%; }
.problem-card span { color: var(--coral); font-family: "DM Sans", sans-serif; font-size: 11px; }
.problem-card h3 { margin: 72px 0 14px; font-size: 21px; }
.problem-card p { color: rgba(255,255,255,.57); font-size: 13px; }
.service-detail { display: grid; grid-template-columns: .62fr 1.38fr; padding: 45px 0; border-top: 1px solid var(--line); }
.service-detail:last-child { border-bottom: 1px solid var(--line); }
.service-detail__label { color: var(--teal); font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .13em; }
.service-detail h3 { margin-bottom: 18px; font-size: clamp(26px, 3vw, 38px); }
.service-detail p { max-width: 690px; color: var(--muted); }

/* Institutional RichText: every visible element below is reproducible by the editor. */
.institutional-layout { display: grid; grid-template-columns: 240px minmax(0, 780px); gap: clamp(45px, 8vw, 120px); align-items: start; }
.institutional-index { position: sticky; top: 120px; }
.institutional-index span { display: block; color: var(--coral-dark); font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.institutional-index p { margin-top: 16px; color: var(--muted); font-size: 12px; }
.richtext-content { font-size: 16px; line-height: 2.05; }
.richtext-content > *:first-child { margin-top: 0; }
.richtext-content h2 { margin: 80px 0 26px; padding-top: 18px; border-top: 1px solid var(--line); font-size: clamp(28px, 4vw, 44px); letter-spacing: -.045em; line-height: 1.4; }
.richtext-content h3 { margin: 48px 0 18px; font-size: 22px; }
.richtext-content p { margin-bottom: 24px; color: var(--ink-soft); }
.richtext-content strong { color: var(--ink); }
.richtext-content ul, .richtext-content ol { margin: 26px 0; padding-left: 1.5em; }
.richtext-content li { margin-bottom: 10px; padding-left: .4em; }
.richtext-content blockquote { margin: 50px 0; padding: 36px clamp(28px, 5vw, 55px); color: var(--ink); border: 0; border-left: 5px solid var(--coral); background: var(--mint); font-size: clamp(20px, 3vw, 30px); font-weight: 600; line-height: 1.7; }
.richtext-content hr { margin: 60px 0; border: 0; border-top: 1px solid var(--line); }
.richtext-content figure { margin: 44px 0; }
.richtext-content figcaption { margin-top: 10px; color: var(--muted); font-size: 11px; }
.richtext-content img { width: 100%; border-radius: var(--radius-sm); }
.richtext-content table { width: 100%; margin: 38px 0; border-collapse: collapse; font-size: 14px; }
.richtext-content th, .richtext-content td { padding: 16px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.richtext-content th { width: 32%; color: var(--teal); font-weight: 700; }
.richtext-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 4px; }

.contact-intents { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 62px; }
.contact-intent { min-height: 250px; padding: 32px; border-radius: var(--radius-md); background: var(--mint); }
.contact-intent--business { color: var(--white); background: var(--ink); }
.contact-intent span { color: var(--coral-dark); font-family: "DM Sans", sans-serif; font-size: 11px; font-weight: 700; }
.contact-intent h2 { margin: 54px 0 13px; font-size: 25px; }
.contact-intent p { margin-bottom: 0; opacity: .7; font-size: 13px; }
.contact-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(40px, 8vw, 110px); align-items: start; }
.contact-direct { padding: 32px; color: var(--white); border-radius: var(--radius-md); background: var(--ink); }
.contact-direct__label { color: var(--teal-light); font-family: "DM Sans", sans-serif; font-size: 10px; letter-spacing: .14em; }
.contact-direct__phone { display: block; margin: 22px 0 4px; font-family: "DM Sans", sans-serif; font-size: clamp(28px, 3vw, 38px); font-weight: 700; }
.contact-direct p { color: rgba(255,255,255,.6); font-size: 12px; }
.contact-direct address { margin-top: 36px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.16); font-size: 13px; font-style: normal; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; }
.field { display: grid; gap: 10px; }
.field--wide { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; }
.required { margin-left: 7px; color: var(--coral-dark); font-size: 9px; }
.field input, .field select, .field textarea { width: 100%; padding: 17px 18px; color: var(--ink); border: 1px solid var(--line); border-radius: 12px; background: var(--white); outline: none; }
.field textarea { min-height: 190px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--coral-dark); box-shadow: 0 0 0 3px rgba(255,224,0,.28); }
.form-honeypot { position: absolute; left: -9999px; }
.form-footer { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.form-status { margin: 0; color: var(--teal); font-size: 12px; }
.contact-form .btn { border: 0; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1040px) {
  .site-header__top { display: none; }
  .site-header__main { min-height: 76px; }
  .site-header .brand { width: 132px; height: 62px; }
  .nav-toggle { display: block; position: relative; z-index: 42; }
  .site-nav {
    position: absolute;
    z-index: 40;
    inset: 0;
    width: 100%;
    min-height: 100%;
    padding: calc(110px + env(safe-area-inset-top)) var(--gutter) calc(50px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    color: var(--ink-deep);
    background: var(--yellow);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity .25s, transform .25s;
  }
  .nav-open .site-header,
  .menu-open .site-header {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    min-height: 100vh;
    overflow: hidden;
    background: var(--yellow);
    backdrop-filter: none;
  }
  .nav-open .brand,
  .menu-open .brand,
  .nav-open .nav-toggle,
  .menu-open .nav-toggle { z-index: 42; }
  .nav-open .site-nav,
  .menu-open .site-nav,
  .site-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav > a { font-size: 22px; }
  .site-nav__cta { margin-top: 10px; font-size: 15px !important; }
  .nav-open .site-header,
  .menu-open .site-header { color: var(--ink-deep); }
  .job-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-track { grid-template-columns: repeat(3, 1fr); }
  .value-item:nth-child(4) { border-left: 1px solid rgba(255,255,255,.16); }
  .journey { grid-template-columns: repeat(3, 1fr); }
  .journey__step:nth-child(4) { border-left: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; --radius-lg: 30px; }
  .section { padding: 76px 0; }
  .section-heading--split { grid-template-columns: 1fr; gap: 24px; }
  .display-title { font-size: clamp(37px, 12vw, 56px); }
  .brand__text small { display: none; }
  .hero { min-height: 790px; align-items: flex-end; }
  .hero__media img { object-position: 64% center; }
  .hero__media::after { background: linear-gradient(0deg, rgba(5,26,25,.97) 0%, rgba(5,26,25,.73) 54%, rgba(5,26,25,.15) 100%); }
  .hero__content { padding-top: 135px; padding-bottom: 54px; }
  .hero h1 { max-width: 600px; font-size: clamp(44px, 15vw, 66px); }
  .hero__intro { font-size: 14px; line-height: 1.85; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .hero__aside { display: none; }
  .audience-grid, .editorial-split, .area-panel, .quote-layout, .closing-cta__inner, .contact-layout { grid-template-columns: 1fr; }
  .audience-card { min-height: 440px; padding: 48px 24px; }
  .audience-card h2 { margin-top: 38px; }
  .job-grid, .feature-grid, .problem-grid { grid-template-columns: 1fr; }
  .job-card { min-height: 355px; }
  .jobs-toolbar { align-items: flex-start; flex-direction: column; }
  .values-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .value-item { min-width: 76vw; border-left: 1px solid rgba(255,255,255,.16); scroll-snap-align: start; }
  .editorial-split__media { min-height: 420px; }
  .editorial-split__body { padding: 66px 24px; }
  .service-row { grid-template-columns: 34px 1fr; }
  .service-row small { grid-column: 2; }
  .journey { display: block; }
  .journey__step { min-height: auto; padding: 25px 0 28px 54px; border: 0; border-top: 1px solid var(--line); }
  .journey__step:first-child, .journey__step:nth-child(4) { border-left: 0; }
  .journey__step::before { position: absolute; top: 27px; left: 0; margin: 0; }
  .journey__step::after { top: auto; right: auto; bottom: -11px; left: 8px; transform: rotate(90deg); }
  .quote-mark { font-size: 100px; }
  .area-visual { min-height: 320px; order: -1; }
  .closing-cta__inner .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .page-hero { min-height: 500px; padding-top: 155px; }
  .page-hero--image { min-height: 670px; }
  .page-hero__media img { object-position: center; }
  .page-hero__media::after { background: linear-gradient(0deg, rgba(5,28,26,.95), rgba(5,28,26,.5)); }
  .filter-shell { margin-top: -28px; }
  .filter-panel { padding: 16px; }
  .filter-search { grid-template-columns: 1fr; }
  .filter-search button { height: 48px; }
  .job-detail-grid { grid-template-columns: 1fr; }
  .job-essentials { grid-template-columns: 1fr; }
  .job-aside { position: static; }
  .category-cloud { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 18px; }
  .institutional-layout { grid-template-columns: 1fr; }
  .institutional-index { position: static; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .richtext-content h2 { margin-top: 58px; }
  .richtext-content table { display: block; overflow-x: auto; }
  .contact-intents { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .form-footer { grid-column: auto; align-items: stretch; flex-direction: column; }
  .form-footer .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
