@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Zen+Kaku+Gothic+Antique:wght@400;500;700;900&family=Newsreader:ital,wght@0,400;0,500;0,600;1,400&display=swap");

:root {
  --paper: #f4efe4;
  --paper-soft: #faf6ed;
  --paper-deep: #e5dccd;
  --ink: #11130f;
  --muted: #5e6259;
  --green: #153c2c;
  --green-dark: #0d281e;
  --line: rgba(17, 19, 15, 0.18);
  --copper: #aa7049;
  --copper-soft: #c79a68;
  --paper-line: rgba(17, 19, 15, 0.105);
  --shadow: 0 18px 42px rgba(24, 24, 20, 0.16);
  --shadow-soft: 0 10px 28px rgba(24, 24, 20, 0.1);
  --latin-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --display-serif: "Newsreader", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(17, 19, 15, 0.08) 0, transparent 9%, transparent 91%, rgba(17, 19, 15, 0.08) 100%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.82), transparent 28%),
    radial-gradient(circle at 90% 30%, rgba(170, 112, 73, 0.12), transparent 24%),
    var(--paper);
  color: var(--ink);
  font-family:
    "Zen Kaku Gothic Antique", "Manrope", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", system-ui, sans-serif;
  letter-spacing: 0.005em;
}

.motion-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--green));
  box-shadow: 0 8px 22px rgba(13, 40, 30, 0.18);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  transition: transform 0.08s linear;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.46;
  background-image:
    linear-gradient(rgba(17, 19, 15, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 15, 0.03) 1px, transparent 1px);
  background-size: 22px 22px;
  animation: paper-grid-drift 28s linear infinite;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(21, 60, 44, 0.035) 47.1% 47.4%, transparent 47.5% 100%),
    linear-gradient(24deg, transparent 0 63%, rgba(255, 255, 255, 0.26) 63.1% 63.3%, transparent 63.4% 100%),
    radial-gradient(circle at 8% 42%, rgba(170, 112, 73, 0.1), transparent 18%),
    radial-gradient(circle at 88% 72%, rgba(21, 60, 44, 0.08), transparent 22%);
  animation: ambient-shift 18s ease-in-out infinite alternate;
}

button,
a {
  color: inherit;
  font: inherit;
}

.melds-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: currentColor;
}

.melds-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 82px;
  padding: 0 clamp(22px, 3.4vw, 52px);
  transform: translateX(-50%);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  height: 82px;
  border-bottom: 1px solid rgba(17, 19, 15, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.98), rgba(244, 239, 228, 0.92)),
    rgba(244, 239, 228, 0.94);
  box-shadow: 0 8px 24px rgba(24, 24, 20, 0.055);
  backdrop-filter: blur(14px);
  content: "";
}

.site-header.is-scrolled::before {
  background: rgba(255, 252, 245, 0.965);
  box-shadow: 0 10px 28px rgba(24, 24, 20, 0.075);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: clamp(192px, 17vw, 260px);
  height: 58px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.1vw, 38px);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: none;
  align-items: center;
  gap: 32px;
  color: #24342b;
  font-family: var(--latin-sans);
  font-size: 16.5px;
  font-weight: 900;
}

.nav a,
.nav button {
  position: relative;
  border: 0;
  background: transparent;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.nav button {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(21, 60, 44, 0.2);
  background: rgba(255, 252, 245, 0.58);
  box-shadow: 0 8px 18px rgba(24, 24, 20, 0.045);
  color: var(--green);
  font-weight: 950;
}

.nav a::after,
.nav button::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav a:hover,
.nav button:hover {
  color: var(--copper);
}

.nav button:hover {
  border-color: rgba(170, 112, 73, 0.36);
  background: rgba(255, 252, 245, 0.88);
}

.nav a:hover::after,
.nav button:hover::after {
  opacity: 0.42;
  transform: scaleX(1);
}

.site-header {
  animation: header-enter 0.72s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.nav a:first-child {
  color: var(--green);
}

.menu-button {
  display: grid;
  width: 52px;
  height: 52px;
  gap: 5px;
  place-content: center;
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 999px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  box-shadow: 0 10px 24px rgba(13, 40, 30, 0.22);
}

.menu-button span {
  display: block;
  width: 23px;
  height: 2px;
  background: #fffaf0;
}

main {
  overflow: hidden;
}

.section-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(76px, 9vw, 122px) clamp(22px, 3.4vw, 52px);
  border-bottom: 1px solid rgba(17, 19, 15, 0.16);
}

.section-frame[id] {
  scroll-margin-top: 118px;
}

.section-frame::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(21, 60, 44, 0.035) 0 1px, transparent 1px 24px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 35%, rgba(170, 112, 73, 0.035) 80%, transparent),
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.56), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(170, 112, 73, 0.08), transparent 26%);
  background-size: 24px 24px, auto, auto;
  transform: translate3d(0, calc(var(--section-shift, 0) * -0.16px), 0);
  transition: transform 0.08s linear;
}

.section-frame::after {
  position: absolute;
  inset: 18px;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(17, 19, 15, 0.035);
  content: "";
}

.hero {
  min-height: 660px;
  padding-top: clamp(88px, 7vw, 112px);
  padding-bottom: 42px;
}

.hero::before {
  position: absolute;
  left: clamp(24px, 5vw, 72px);
  bottom: 54px;
  width: min(42vw, 520px);
  height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent);
  content: "";
  opacity: 0.42;
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: 18px;
  width: 520px;
  height: 320px;
  background:
    linear-gradient(rgba(21, 60, 44, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 60, 44, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.24);
  background-size: 20px 20px;
  content: "";
  transform: rotate(-3deg);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.hero-copy::before {
  position: absolute;
  top: 34px;
  left: -26px;
  width: 2px;
  height: 490px;
  background: var(--copper);
  content: "";
}

.owner {
  margin: 0 0 26px;
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 900;
  color: #121712;
}

.hero .owner {
  animation: hero-kicker 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

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

h1 {
  margin-bottom: 34px;
  font-size: clamp(44px, 4.7vw, 54px);
  font-weight: 950;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.hero h1 {
  clip-path: inset(0 0 0 0);
  animation: hero-title-slam 0.92s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
  font-size: clamp(33px, 3.6vw, 46px);
  line-height: 1.34;
}

.title-mobile {
  display: none;
}

.mobile-break {
  display: none;
}

.lead {
  max-width: 540px;
  margin-bottom: 24px;
  font-size: clamp(14px, 1.45vw, 17px);
  font-weight: 700;
  line-height: 2;
  overflow-wrap: anywhere;
}

.hero .lead {
  animation: hero-lead-rise 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both;
}

.primary-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 386px);
  min-height: 68px;
  padding: 0 32px;
  border: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 16px 36px rgba(13, 40, 30, 0.22);
  color: #fffaf0;
  font-family: var(--latin-sans);
  font-size: 17px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button::before {
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 240, 0.14);
  content: "";
}

.primary-button span {
  position: relative;
  z-index: 1;
}

.primary-button span[aria-hidden="true"] {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.38);
  border-radius: 999px;
  font-size: 15px;
}

.primary-button:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 26px 58px rgba(13, 40, 30, 0.3);
}

.primary-button::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0 34%, rgba(255, 255, 255, 0.2) 43%, transparent 54% 100%);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.primary-button:hover::after {
  transform: translateX(120%);
}

.primary-button.centered {
  display: flex;
  margin: 46px auto 0;
}

.hero-actions {
  position: relative;
  z-index: 4;
  width: min(100%, 860px);
  margin-top: 12px;
}

.hero-cta-note {
  width: min(100%, 520px);
  margin: 10px 0 0;
  color: #455047;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.domain-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px 22px;
  width: min(100%, 720px);
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.domain-list li {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(17, 19, 15, 0.5);
  font-family: var(--latin-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  animation: tile-pop 0.68s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(0.62s + var(--tile-index, 0) * 80ms);
}

.domain-list li:nth-child(1) { --tile-index: 0; }
.domain-list li:nth-child(2) { --tile-index: 1; }
.domain-list li:nth-child(3) { --tile-index: 2; }
.domain-list li:nth-child(4) { --tile-index: 3; }
.domain-list li:nth-child(5) { --tile-index: 4; }
.domain-list li:nth-child(6) { --tile-index: 5; }
.domain-list li:nth-child(7) { --tile-index: 6; }

.domain-list li::before {
  display: none;
}

.domain-list li:hover {
  transform: none;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: var(--green);
}

.domain-list svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.domain-list span {
  display: block;
  line-height: 1;
}

.proof-title {
  width: min(calc(100vw - 144px), 1120px);
  margin: 38px 0 0;
  padding-bottom: 4px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-title::after {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-left: 12px;
  background: var(--green);
  vertical-align: middle;
  content: "";
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(calc(100vw - 144px), 1120px);
  margin-top: 10px;
}

.proof-strip p {
  display: grid;
  align-content: center;
  min-height: 118px;
  margin: 0;
  padding: 24px 28px;
  border: 1px solid rgba(21, 60, 44, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.82), rgba(244, 239, 228, 0.7)),
    rgba(255, 252, 245, 0.72);
  box-shadow: 0 12px 28px rgba(24, 24, 20, 0.08);
  color: #202820;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.62;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  animation: proof-slide 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(0.86s + var(--proof-index, 0) * 90ms);
}

.proof-strip p:nth-child(1) { --proof-index: 0; }
.proof-strip p:nth-child(2) { --proof-index: 1; }
.proof-strip p:nth-child(3) { --proof-index: 2; }

.proof-strip p:hover {
  transform: translateY(-6px) rotate(-0.45deg);
  border-color: rgba(170, 112, 73, 0.45);
  box-shadow: 0 20px 40px rgba(24, 24, 20, 0.12);
}

.proof-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 23px;
  font-weight: 900;
}

.desk-collage {
  position: absolute;
  right: clamp(-190px, -6vw, -20px);
  bottom: 44px;
  z-index: 1;
  width: min(58vw, 790px);
  height: 830px;
}

.image-collage {
  right: clamp(-170px, -7vw, -48px);
  top: clamp(132px, 12vw, 168px);
  bottom: auto;
  width: min(61vw, 820px);
  height: 560px;
  overflow: visible;
}

.image-collage::before,
.image-collage::after {
  display: none;
}

.image-collage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 86% 50%;
  filter: drop-shadow(0 26px 46px rgba(24, 24, 20, 0.14));
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.74) 11%, #000 23%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.74) 11%, #000 23%);
  transform: translate3d(
      calc((var(--pointer-x, 0) * 18px) + (var(--scroll-y, 0) * -0.018px)),
      calc((var(--pointer-y, 0) * 14px) + (var(--scroll-y, 0) * 0.026px)),
      0
    )
    scale(1.035);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s ease;
  animation: collage-float 7s ease-in-out infinite alternate;
}

.desk-collage::before {
  position: absolute;
  right: -18px;
  top: 96px;
  z-index: 8;
  width: 190px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #15120f 0 28%, #d2a46d 28% 34%, #0d0d0b 34% 78%, #b6814e 78% 100%);
  box-shadow: 0 12px 22px rgba(17, 19, 15, 0.2);
  content: "";
  transform: rotate(-28deg);
}

.desk-collage::after {
  position: absolute;
  right: 120px;
  top: 132px;
  z-index: 0;
  width: 390px;
  height: 360px;
  background:
    linear-gradient(rgba(21, 60, 44, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 60, 44, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.42);
  background-size: 18px 18px;
  box-shadow: var(--shadow-soft);
  content: "";
  transform: rotate(-2deg);
}

.strategy-book {
  position: absolute;
  top: 36px;
  right: -180px;
  z-index: 0;
  width: 270px;
  height: 250px;
  padding: 58px 34px;
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(145deg, #1c4937, #0b241b);
  box-shadow: 0 26px 56px rgba(13, 40, 30, 0.34);
  color: #d2a46d;
  font-family: var(--display-serif);
  font-size: 23px;
  font-style: italic;
  text-align: right;
  transform: rotate(7deg);
}

.strategy-book::after {
  position: absolute;
  right: 26px;
  bottom: 36px;
  width: 116px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1a1713, #d9b079 38%, #1a1713);
  box-shadow: 0 9px 0 #111;
  content: "";
  transform: rotate(-34deg);
}

.paper {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 243, 235, 0.94)),
    var(--paper);
  border: 1px solid rgba(17, 19, 15, 0.115);
  box-shadow: 0 18px 38px rgba(24, 24, 20, 0.125);
}

.paper::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(21, 60, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 60, 44, 0.03) 1px, transparent 1px);
  background-size: 18px 18px;
  mix-blend-mode: multiply;
}

.paper-title {
  margin-bottom: 18px;
  color: #47594f;
  font-family: var(--latin-sans);
  font-size: 13px;
  font-weight: 800;
}

.desk-collage .paper {
  position: absolute;
  padding: 26px;
}

.desk-collage .paper::before,
.voice-paper::before,
.pin-card::before {
  position: absolute;
  top: -10px;
  left: 50%;
  z-index: 2;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #b77d48;
  box-shadow: 0 5px 10px rgba(17, 19, 15, 0.22);
  content: "";
  transform: translateX(-50%);
}

.desk-collage .paper > * {
  position: relative;
  z-index: 1;
}

.ec-paper {
  left: 0;
  bottom: 152px;
  z-index: 1;
  width: 286px;
  min-height: 292px;
  transform: rotate(-5deg);
}

.mini-line-chart {
  position: relative;
  height: 112px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(21, 60, 44, 0.22);
  background-image:
    linear-gradient(rgba(21, 60, 44, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 60, 44, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.mini-line-chart::before {
  position: absolute;
  left: 8%;
  right: 9%;
  top: 58%;
  height: 2px;
  background: linear-gradient(115deg, transparent 0 8%, #446251 8% 18%, transparent 18% 22%, #446251 22% 40%, transparent 40% 44%, #446251 44% 57%, transparent 57% 62%, #446251 62% 76%, transparent 76% 80%, #446251 80% 100%);
  content: "";
  transform: skewY(-18deg);
}

.mini-line-chart i {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.pie-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
}

.pie-row span {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  background: conic-gradient(#6d7970 0 54%, #d0d4cc 54% 72%, #9aa49c 72% 100%);
}

.pie-row ul {
  margin: 0;
  padding-left: 1.2em;
  color: #4f574f;
  font-size: 12px;
  line-height: 1.8;
}

.chart-paper {
  top: 54px;
  right: 80px;
  width: 360px;
  height: 250px;
  transform: rotate(5deg);
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 16px;
  height: 150px;
  padding-top: 34px;
  border-bottom: 2px solid rgba(21, 60, 44, 0.22);
}

.bar-chart span {
  display: block;
  width: 42px;
  height: var(--h);
  background: linear-gradient(#d1d5cc, #8a978e);
}

.memo-paper {
  top: 82px;
  left: 36px;
  z-index: 6;
  width: 290px;
  min-height: 306px;
  transform: rotate(-4deg);
}

.memo-paper ul,
.workflow-paper ul,
.voice-paper ul,
.profile-note ul {
  margin: 0;
  padding-left: 1.2em;
  color: #3c403a;
  line-height: 2;
}

.profile-board-lead {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 19, 15, 0.1);
  color: #4a504a;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.75;
}

.hand-note {
  margin: 20px 0 0;
  color: #4d463f;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 18px;
  line-height: 1.8;
}

.workflow-paper {
  top: 250px;
  right: 8px;
  z-index: 4;
  width: 380px;
  min-height: 300px;
  transform: rotate(1deg);
}

.flow-row {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.flow-row span,
.flow-row b {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(21, 60, 44, 0.35);
  color: #25382f;
  font-family: var(--latin-sans);
  font-size: 13px;
  font-weight: 900;
}

.flow-row b {
  border-radius: 999px;
  background: var(--green);
  color: #fff;
}

.board-paper {
  right: 6px;
  bottom: 20px;
  z-index: 5;
  width: 430px;
  min-height: 250px;
}

.board-paper table {
  width: 100%;
  border-collapse: collapse;
  color: #4e544d;
  font-size: 13px;
}

.board-paper th,
.board-paper td {
  padding: 10px;
  border: 1px solid rgba(17, 19, 15, 0.14);
  text-align: left;
}

.green-note {
  position: absolute;
  left: 284px;
  bottom: 50px;
  z-index: 7;
  width: 250px;
  padding: 34px 26px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  box-shadow: var(--shadow);
  color: #c49764;
  font-family: var(--latin-sans);
  font-size: 18px;
  transform: rotate(-8deg);
}

.org-paper {
  left: 288px;
  bottom: -14px;
  z-index: 3;
  width: 300px;
  min-height: 260px;
  transform: rotate(1deg);
}

.org-map {
  position: relative;
  height: 112px;
  margin-bottom: 10px;
}

.org-map::before {
  position: absolute;
  inset: 24px 42px 28px;
  border-top: 1px solid rgba(17, 19, 15, 0.35);
  border-left: 1px solid rgba(17, 19, 15, 0.2);
  border-right: 1px solid rgba(17, 19, 15, 0.2);
  content: "";
}

.org-map span {
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(17, 19, 15, 0.45);
  border-radius: 999px;
}

.org-map span:nth-child(1) { left: calc(50% - 16px); top: 0; }
.org-map span:nth-child(2) { left: 32px; bottom: 10px; }
.org-map span:nth-child(3) { left: 90px; bottom: 10px; }
.org-map span:nth-child(4) { right: 90px; bottom: 10px; }
.org-map span:nth-child(5) { right: 32px; bottom: 10px; }

.org-paper ul {
  margin: 0;
  padding-left: 1.2em;
  color: #3c403a;
  line-height: 1.8;
}

.green-list {
  position: absolute;
  left: -12px;
  bottom: 4px;
  z-index: 4;
  width: 260px;
  padding: 22px 24px;
  background: linear-gradient(145deg, #1b4b38, var(--green-dark));
  box-shadow: var(--shadow);
  color: #fffaf0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  transform: rotate(-2deg);
}

.green-list p {
  margin: 0 0 12px;
}

.sticky-note {
  position: absolute;
  top: 390px;
  right: 4px;
  padding: 24px 26px;
  background: #ead9bd;
  box-shadow: var(--shadow);
  color: #54463a;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 18px;
  line-height: 1.6;
  transform: rotate(-3deg);
}

.section-heading p {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
}

.section-heading p::after {
  width: 58px;
  height: 1px;
  background: linear-gradient(90deg, rgba(21, 60, 44, 0.48), transparent);
  content: "";
}

.section-heading span {
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 30px;
}

.section-heading h2 {
  margin-bottom: 36px;
  font-size: clamp(27px, 3.25vw, 40px);
  font-weight: 950;
  line-height: 1.35;
  text-wrap: balance;
}

.section-heading small {
  display: block;
  max-width: 620px;
  margin: -16px 0 42px;
  color: #535b52;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
}

.note .section-heading small {
  max-width: none;
}

.why {
  padding-bottom: clamp(34px, 4vw, 54px);
  background: rgba(255, 252, 245, 0.32);
}

.why::after {
  position: absolute;
  right: -40px;
  top: 72px;
  z-index: 0;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(21, 60, 44, 0.12);
  border-radius: 999px;
  content: "";
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  align-items: start;
}

.why-text p {
  max-width: 760px;
  color: #2b2f2a;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}

.voice-paper {
  margin-top: -108px;
  padding: 28px;
  transform: rotate(3deg);
}

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

.pin-card {
  position: relative;
  min-height: 226px;
  padding: 30px 24px 26px;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.78), rgba(250, 246, 237, 0.94)),
    rgba(250, 246, 237, 0.92);
  border: 1px solid rgba(17, 19, 15, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(24, 24, 20, 0.18);
}

.pin-card::before {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #b27a47;
  box-shadow: 0 4px 8px rgba(17, 19, 15, 0.2);
  content: "";
  transform: translateX(-50%);
}

.pin-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.pin-card h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.005em;
}

.pin-card p {
  color: #4a504a;
  font-size: 13.5px;
  line-height: 1.78;
}

.service-card p,
.note-card h3,
.profile p,
.final-cta p {
  color: #3f453e;
  line-height: 1.9;
}

.message-panel {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 48px;
  padding: 36px;
  background:
    radial-gradient(circle at 100% 0, rgba(215, 161, 109, 0.16), transparent 34%),
    linear-gradient(145deg, var(--green), var(--green-dark));
  box-shadow: var(--shadow);
  color: #fffaf0;
}

.message-panel span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.message-panel p {
  margin: 0;
  color: #fffaf0;
  font-size: clamp(18px, 2.1vw, 24px);
  font-weight: 900;
  line-height: 1.55;
}

.message-panel strong {
  color: #d7a16d;
}

.message-panel small {
  grid-column: 2;
  color: rgba(255, 250, 240, 0.82);
  font-size: 15px;
}

.approach-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.approach-track {
  margin-top: 28px;
}
.approach-track__label {
  margin: 0 0 16px;
  padding-left: 14px;
  border-left: 3px solid var(--green);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.approach-track--people .approach-track__label {
  border-left-color: var(--copper);
  color: var(--copper);
}

.approach {
  padding-top: clamp(36px, 4vw, 56px);
  padding-bottom: clamp(36px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 48%),
    rgba(232, 224, 211, 0.58);
}

.approach .section-heading {
  max-width: 620px;
}

.approach .section-heading h2 {
  margin-bottom: 52px;
}

.approach-map::before {
  display: none;
}

.approach-map article {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 24px 26px;
  border: 1px solid rgba(17, 19, 15, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 252, 245, 0.84), rgba(244, 239, 228, 0.94)),
    rgba(250, 246, 237, 0.9);
  box-shadow: var(--shadow-soft);
}

.approach-map article::after {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border-top: 1px solid rgba(170, 112, 73, 0.36);
  border-right: 1px solid rgba(170, 112, 73, 0.36);
  content: "";
}

.approach-map article span,
.service-number,
.note-card p {
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 26px;
  font-weight: 900;
}

.approach-map h3 {
  font-size: 16px;
}

.approach-map p {
  color: #464b44;
  line-height: 1.8;
}

.ai-core {
  display: none;
}

.service {
  position: relative;
  padding-top: clamp(36px, 4vw, 58px);
  padding-bottom: clamp(36px, 4vw, 58px);
  background:
    radial-gradient(circle at 12% 8%, rgba(170, 112, 73, 0.1), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(21, 60, 44, 0.08), transparent 28%),
    rgba(244, 239, 228, 0.88);
  color: var(--ink);
}

.service::before {
  position: absolute;
  right: -42px;
  top: 18px;
  color: rgba(21, 60, 44, 0.055);
  content: "SERVICE";
  font-family: var(--latin-sans);
  font-size: clamp(78px, 14vw, 190px);
  font-weight: 900;
  line-height: 1;
}

.service::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 60, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 60, 44, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
}

.service .section-heading p,
.service .section-heading h2,
.service .section-heading small {
  position: relative;
  z-index: 1;
  color: var(--green);
}

.service .section-heading h2 {
  color: var(--ink);
}

.service .section-heading small {
  max-width: none;
  color: #535b52;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: min(100%, 1160px);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) minmax(240px, 320px);
  gap: 30px;
  min-height: 218px;
  padding: 34px 38px 34px 32px;
  border: 1px solid rgba(17, 19, 15, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 252, 245, 0.92), rgba(246, 240, 228, 0.98)),
    #f6f0e4;
  box-shadow: 0 18px 42px rgba(24, 24, 20, 0.14);
  color: var(--ink);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(170, 112, 73, 0.34);
  box-shadow: 0 28px 62px rgba(24, 24, 20, 0.16);
}

.service-card::before {
  position: absolute;
  left: 50%;
  top: -12px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #191915;
  box-shadow: 0 8px 14px rgba(17, 19, 15, 0.24);
  content: "";
  transform: translateX(-50%);
}

.service-card p {
  font-size: 14px;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  position: absolute;
  right: 34px;
  bottom: 28px;
  z-index: 0;
  width: 58px;
  height: 58px;
  color: rgba(21, 60, 44, 0.34);
}

.service-card.featured .service-icon {
  color: rgba(170, 112, 73, 0.42);
}

.service-number {
  grid-column: 1;
  grid-row: 1 / span 5;
  margin: 0;
  align-self: start;
  color: var(--copper);
  font-family: var(--display-serif);
  font-size: clamp(72px, 7vw, 108px) !important;
  font-weight: 400;
  line-height: 1;
}

.service-card > p:not(.service-number) {
  grid-column: 2;
  max-width: 620px;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.9;
}

.service-card p,
.service-card dd,
.service-points {
  line-height: 1.78;
}

.service-label {
  display: inline-block;
  grid-column: 2;
  width: fit-content;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(17, 19, 15, 0.5);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-label::before {
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-right: 8px;
  background: rgba(17, 19, 15, 0.4);
  vertical-align: middle;
  content: "";
}

.service-card::after {
  position: absolute;
  left: 198px;
  top: 32px;
  bottom: 32px;
  width: 1px;
  height: auto;
  background: rgba(17, 19, 15, 0.18);
  content: "";
}

.service-card.featured {
  background:
    linear-gradient(145deg, #fffdf6, #fff6e8),
    #fffaf0;
  outline: 1px solid rgba(180, 129, 83, 0.64);
  transform: none;
}

.service-card.featured:hover {
  transform: translateY(-8px);
}

.service-card.featured::before {
  position: absolute;
  left: 50%;
  top: -12px;
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 999px;
  background: #191915;
  color: transparent;
  content: "";
  transform: translateX(-50%);
}

.service-card h3 {
  grid-column: 2;
  margin-bottom: 14px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.42;
}

.service-card dl {
  display: grid;
  grid-column: 3;
  grid-row: 1 / span 5;
  align-self: center;
  gap: 14px;
  margin: 0;
  padding: 22px;
  border: 1.5px solid var(--green);
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(21, 60, 44, 0.08);
}

.service-points {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  border-top: 0;
  color: rgba(17, 19, 15, 0.55);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.6;
  list-style: none;
}

.service-points li {
  position: relative;
  padding: 5px 10px;
  border: 1px solid rgba(17, 19, 15, 0.14);
  background: transparent;
}

.service-points li::before {
  content: none;
}

.deliverables {
  grid-column: 3;
  grid-row: 1 / span 3;
  align-self: start;
  margin-top: 0;
  padding: 16px;
  border: 1px solid rgba(170, 112, 73, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent),
    rgba(170, 112, 73, 0.07);
}

.service-card.featured dl {
  grid-row: 4 / span 2;
  align-self: end;
}

.deliverables span {
  display: block;
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 950;
}

.deliverables p {
  margin: 0;
  color: #30372f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.7;
}

.service-card div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(17, 19, 15, 0.14);
}

.service-card dt {
  color: rgba(17, 19, 15, 0.55);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  font-size: 15.5px;
  line-height: 1.5;
}

.service-card dd:last-child {
  color: var(--green);
  font-family: var(--latin-sans);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.service > .primary-button {
  position: relative;
  z-index: 1;
}

.profile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  column-gap: 64px;
  row-gap: 0;
  align-items: start;
  grid-template-areas:
    "head photo"
    "copy photo"
    "results results";
  padding-top: clamp(42px, 4.5vw, 64px);
  padding-bottom: clamp(42px, 4.5vw, 64px);
}

.profile-heading {
  grid-area: head;
}
.profile-copy {
  grid-area: copy;
}
.profile-note {
  grid-area: photo;
}
.profile-results {
  grid-area: results;
}

.profile::before {
  position: absolute;
  right: 54px;
  bottom: 34px;
  width: 360px;
  height: 230px;
  background:
    linear-gradient(rgba(21, 60, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 60, 44, 0.03) 1px, transparent 1px);
  background-size: 18px 18px;
  content: "";
  transform: rotate(-2deg);
}

.profile-copy p {
  max-width: 760px;
  font-size: 16px;
  font-weight: 600;
}

.profile-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.profile-results,
.profile-results__main,
.profile-results__steps,
.profile-results__extras {
  min-width: 0;
}
.profile-results__extras li {
  min-width: 0;
}
.profile-results__extras li span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.profile-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 690px;
  margin-top: 28px;
}

.profile-highlights span {
  padding: 10px 14px;
  border: 1px solid rgba(21, 60, 44, 0.24);
  background: rgba(238, 232, 218, 0.72);
  color: #24342b;
  font-size: 13px;
  font-weight: 900;
}

.profile-highlights span:nth-child(even) {
  background: rgba(232, 239, 229, 0.68);
}

.profile-actions {
  margin-top: 30px;
}

.profile-more {
  text-decoration: none;
}

.profile-note {
  padding: 34px;
  transform: rotate(2deg);
}

.profile-board {
  position: relative;
  z-index: 1;
}

.profile-photo {
  position: relative;
  height: 238px;
  margin: -12px -12px 24px;
  overflow: hidden;
  background:
    linear-gradient(rgba(21, 60, 44, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 60, 44, 0.035) 1px, transparent 1px),
    #eef1e7;
  background-size: 18px 18px;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 23%;
}

.profile-role {
  margin: -8px 0 22px;
  color: #596159;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.signature {
  margin: 24px 0 0;
  color: var(--copper);
  font-family: var(--display-serif);
  font-size: 26px;
  font-style: italic;
}

.note-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.note-grid::before {
  position: absolute;
  right: 0;
  top: -72px;
  color: rgba(21, 60, 44, 0.075);
  content: "melds NOTE";
  font-family: var(--latin-sans);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.note {
  padding-top: clamp(42px, 4.5vw, 64px);
  padding-bottom: clamp(42px, 4.5vw, 64px);
  background:
    radial-gradient(circle at 15% 12%, rgba(170, 112, 73, 0.08), transparent 26%),
    rgba(244, 239, 228, 0.78);
}

.note::after {
  position: absolute;
  right: 7%;
  top: 78px;
  width: 210px;
  height: 120px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: var(--shadow-soft);
  content: "";
  transform: rotate(4deg);
}

.media {
  padding-top: clamp(42px, 4.5vw, 64px);
  padding-bottom: clamp(42px, 4.5vw, 64px);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.48), rgba(244, 239, 228, 0.56)),
    rgba(255, 252, 245, 0.36);
}

.media::after {
  position: absolute;
  right: 10%;
  bottom: 44px;
  width: 220px;
  height: 160px;
  background:
    linear-gradient(rgba(21, 60, 44, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 60, 44, 0.035) 1px, transparent 1px);
  background-size: 18px 18px;
  box-shadow: var(--shadow-soft);
  content: "";
  transform: rotate(-5deg);
}

.media-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.25fr);
  gap: 44px;
  align-items: start;
}

.media-intro {
  position: relative;
  z-index: 1;
}

.media .section-heading h2 {
  margin-bottom: 18px;
}

.media .section-heading small {
  margin-bottom: 22px;
}

.media-copy p {
  position: relative;
  z-index: 1;
  color: #3f453e;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.media-copy {
  position: relative;
}

.media-copy::before {
  position: absolute;
  left: -4px;
  top: -24px;
  color: rgba(21, 60, 44, 0.08);
  content: "Speaking Notes";
  font-family: var(--display-serif);
  font-size: clamp(56px, 8vw, 108px);
  font-style: italic;
  line-height: 0.9;
  white-space: nowrap;
}

.media-list {
  display: grid;
  align-self: start;
  gap: 0;
  border-top: 1px solid rgba(17, 19, 15, 0.14);
  box-shadow: var(--shadow-soft);
}

.media-list article {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 18px;
  align-items: center;
  min-height: 70px;
  padding: 18px 22px 18px 28px;
  border: 0;
  border-bottom: 1px solid rgba(17, 19, 15, 0.14);
  background: rgba(250, 246, 237, 0.92);
  box-shadow: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

.media-list article::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--green);
  content: "";
  opacity: 0.75;
}

.media-list article:hover {
  background: rgba(255, 252, 245, 0.98);
  transform: translateX(4px);
}

.media-theme-button {
  display: grid;
  width: 100%;
  grid-template-columns: 46px minmax(0, 1fr) auto auto;
  column-gap: 14px;
  row-gap: 6px;
  align-items: center;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.media-theme-button:hover {
  background: rgba(21, 60, 44, 0.05);
}

.media-theme-button:hover .media-theme-arrow {
  transform: translateX(4px);
  color: var(--green);
}

.media-theme-button:focus-visible {
  outline: 2px solid rgba(21, 60, 44, 0.42);
  outline-offset: -6px;
}

.media-theme-icon {
  grid-column: 1;
  grid-row: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(21, 60, 44, 0.2);
  background: rgba(21, 60, 44, 0.06);
  color: var(--green);
}

.media-theme-icon svg {
  width: 20px;
  height: 20px;
}

.media-list p {
  grid-column: 1 / 3;
  grid-row: 1;
  margin: 0;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 15px;
  font-weight: 900;
}

.media-list h3 {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 16px;
}

.media-list article > p {
  grid-column: 1;
  grid-row: 1;
  font-size: 13px;
  line-height: 1;
}

.media-list article > h3 {
  grid-column: 1;
  grid-row: 2;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.media-list article > span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  min-width: 72px;
  padding: 8px 10px;
  border: 1px solid rgba(21, 60, 44, 0.18);
  color: var(--green);
  background: rgba(21, 60, 44, 0.06);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.media-theme-badge {
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  min-width: 64px;
  padding: 7px 10px;
  border: 1px solid rgba(21, 60, 44, 0.18);
  background: rgba(21, 60, 44, 0.06);
  color: var(--green);
  font-family: var(--latin-sans);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.media-theme-arrow {
  grid-column: 4;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  margin-left: 6px;
  color: rgba(21, 60, 44, 0.55);
  font-family: var(--latin-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.media-detail {
  width: min(100%, 860px);
  padding: 34px;
  border: 1px solid rgba(21, 60, 44, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.96), rgba(250, 246, 237, 0.9)),
    var(--paper);
}

.media-detail::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--green), rgba(170, 112, 73, 0.82), transparent);
  content: "";
}

.media-detail h2 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.34;
}

.media-detail-visual {
  margin: 0 0 22px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 15, 0.12);
  background: rgba(229, 220, 205, 0.42);
  aspect-ratio: 16 / 9;
}

.media-detail-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-detail-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

.media-detail-lead {
  max-width: 760px;
  margin: 0 0 20px !important;
  color: #30372f !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.85 !important;
}

.media-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.75fr);
  gap: 24px;
  align-items: start;
  margin-top: 18px;
}

.media-detail-grid h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 15px;
  line-height: 1.5;
}

.media-detail-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 19, 15, 0.12);
}

.media-detail > .media-detail-list {
  margin-top: 20px;
}

.media-detail-list li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid rgba(17, 19, 15, 0.1);
  color: #3f453e;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.8;
}

.media-detail-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--copper);
  content: "";
  transform: rotate(45deg);
}

.media-detail-list.compact li {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 13px;
  line-height: 1.7;
}

.profile-page {
  padding-top: 96px;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: center;
  padding-top: clamp(42px, 5vw, 72px);
  padding-bottom: clamp(42px, 5vw, 72px);
}

.profile-hero-copy h1 {
  max-width: 920px;
  margin: 0 0 22px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.14;
}

.profile-hero-copy > p {
  max-width: 780px;
  color: #3f453e;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.profile-portrait {
  padding: 24px;
  background: rgba(250, 246, 237, 0.9);
}

.profile-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 23%;
}

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

.profile-detail-card {
  padding: 26px;
  border: 1px solid rgba(17, 19, 15, 0.12);
  background: rgba(255, 252, 245, 0.72);
  box-shadow: var(--shadow-soft);
}

.profile-detail-card p {
  margin: 0 0 12px;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 13px;
  font-weight: 900;
}

.profile-detail-card h2 {
  margin: 0 0 14px;
  font-size: 21px;
}

.profile-detail-card ul {
  margin: 0;
  padding-left: 18px;
  color: #3f453e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.profile-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.profile-story-copy p {
  color: #3f453e;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.95;
}

.profile-story-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-story-list li {
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  background: rgba(250, 246, 237, 0.82);
  color: #30372f;
  font-weight: 800;
  line-height: 1.7;
}

.profile-showcase {
  padding-top: 92px;
}

.profile-showcase-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 58px;
  align-items: center;
  min-height: min(760px, calc(100vh - 92px));
  padding-top: clamp(48px, 5vw, 84px);
  padding-bottom: clamp(48px, 5vw, 84px);
  background:
    linear-gradient(135deg, rgba(250, 246, 237, 0.74), rgba(255, 252, 245, 0.45)),
    radial-gradient(circle at 72% 18%, rgba(170, 112, 73, 0.12), transparent 34%);
}

.profile-showcase-copy {
  position: relative;
  z-index: 1;
}

.profile-showcase-copy::before {
  position: absolute;
  left: -8px;
  top: -64px;
  z-index: -1;
  color: rgba(21, 60, 44, 0.06);
  content: "KEISUKE";
  font-family: var(--latin-sans);
  font-size: clamp(72px, 12vw, 168px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.9;
}

.profile-kicker {
  margin: 0 0 18px;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.profile-showcase h1 {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.18;
}

.profile-lead {
  max-width: 820px;
  margin: 0 0 32px;
  color: #30372f;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.95;
}

.profile-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 0 0 30px;
}

.profile-proof-line span {
  padding: 9px 12px;
  border: 1px solid rgba(21, 60, 44, 0.2);
  background: rgba(255, 252, 245, 0.62);
  color: var(--green);
  font-family: var(--latin-sans);
  font-size: 12px;
  font-weight: 950;
}

.profile-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.profile-back-link {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.profile-showcase-panel {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid rgba(21, 60, 44, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.88), rgba(250, 246, 237, 0.72)),
    rgba(255, 252, 245, 0.72);
  box-shadow: var(--shadow-soft);
}

.profile-showcase-panel::before {
  display: none;
  content: none;
}

.profile-showcase-panel figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 60, 44, 0.1);
  background:
    linear-gradient(rgba(21, 60, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 60, 44, 0.03) 1px, transparent 1px),
    #eef1e7;
  background-size: 18px 18px;
}

.profile-showcase-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 23%;
}

.profile-showcase-panel div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding: 18px 2px 2px;
}

.profile-showcase-panel p {
  margin: 0;
  color: var(--copper);
  font-size: 12px;
  font-weight: 950;
}

.profile-showcase-panel strong {
  max-width: 190px;
  color: var(--green);
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

.profile-signature {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 1160px);
  max-width: 1160px;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(28px, 4vw, 64px);
  padding-left: clamp(28px, 4vw, 64px);
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(17, 19, 15, 0.12);
}

.profile-highlight-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 26px;
  border-top: 1px solid rgba(17, 19, 15, 0.1);
  border-bottom: 1px solid rgba(17, 19, 15, 0.1);
  background: rgba(232, 239, 229, 0.46);
}

.profile-highlight-strip p {
  margin: 0;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.7;
  white-space: nowrap;
}

.profile-highlight-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.profile-highlight-strip span {
  padding: 10px 13px;
  border: 1px solid rgba(21, 60, 44, 0.2);
  background: rgba(255, 252, 245, 0.68);
  color: #24342b;
  font-size: 13px;
  font-weight: 900;
}

.profile-results {
  padding-top: clamp(46px, 5vw, 74px);
  padding-bottom: clamp(46px, 5vw, 74px);
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.64), rgba(250, 246, 237, 0.86)),
    rgba(250, 246, 237, 0.72);
}

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

.profile-results-grid article {
  position: relative;
  min-height: 276px;
  padding: 30px 28px;
  border: 1px solid rgba(17, 19, 15, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 252, 245, 0.94), rgba(238, 232, 218, 0.72)),
    rgba(255, 252, 245, 0.8);
  box-shadow: var(--shadow-soft);
}

.profile-card-icon {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(21, 60, 44, 0.18);
  background: rgba(255, 252, 245, 0.56);
  color: var(--green);
}

.profile-results-grid p {
  max-width: calc(100% - 58px);
  margin: 0 0 22px;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 12px;
  font-weight: 950;
}

.profile-results-grid h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.28;
}

.profile-results-grid span {
  color: #3f453e;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.85;
}

.profile-results-grid .profile-card-icon,
.profile-capability-grid .profile-card-icon {
  display: inline-flex;
  color: var(--green);
  font-size: inherit;
  line-height: 1;
}

.profile-signature article {
  position: relative;
  min-height: 260px;
  padding: 30px 26px;
  background: rgba(250, 246, 237, 0.94);
}

.profile-signature span {
  display: block;
  margin: 0 0 32px;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 13px;
  font-weight: 950;
}

.profile-signature .signature-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin: 0 0 24px;
  padding: 9px;
  border: 1px solid rgba(170, 112, 73, 0.22);
  background: rgba(170, 112, 73, 0.08);
  color: var(--copper);
}

.profile-signature h2 {
  margin: 0 0 16px;
  font-size: 21px;
  line-height: 1.45;
}

.profile-signature p {
  margin: 0;
  color: #3f453e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.career-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 52px;
  align-items: start;
  padding-top: clamp(52px, 5vw, 78px);
  padding-bottom: clamp(52px, 5vw, 78px);
}

.career-stage-heading {
  position: sticky;
  top: 112px;
}

.career-stage-heading p {
  margin: 0 0 14px;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 13px;
  font-weight: 950;
}

.career-stage-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.22;
}

.career-stage-heading small {
  display: block;
  margin-top: 18px;
  color: #535b52;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.85;
}

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

.career-timeline article {
  display: grid;
  grid-template-columns: 110px minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid rgba(17, 19, 15, 0.14);
}

.career-timeline article:last-child {
  border-bottom: 1px solid rgba(17, 19, 15, 0.14);
}

.career-timeline p {
  margin: 0;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 12px;
  font-weight: 950;
}

.career-timeline h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.career-timeline span {
  color: #3f453e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.85;
}

.profile-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
  background:
    linear-gradient(180deg, rgba(255, 252, 245, 0.6), rgba(244, 239, 228, 0.78)),
    rgba(250, 246, 237, 0.72);
}

.profile-capability {
  padding-top: clamp(48px, 5vw, 76px);
  padding-bottom: clamp(48px, 5vw, 76px);
  background:
    linear-gradient(180deg, rgba(250, 246, 237, 0.6), rgba(255, 252, 245, 0.76)),
    rgba(255, 252, 245, 0.55);
}

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

.profile-capability-grid article {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid rgba(17, 19, 15, 0.12);
  background: rgba(250, 246, 237, 0.88);
  box-shadow: var(--shadow-soft);
}

.profile-capability-grid p {
  margin: 0 0 28px;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 12px;
  font-weight: 950;
}

.profile-capability-grid h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.45;
}

.profile-capability-grid span {
  color: #3f453e;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.85;
}

.profile-capability-grid .profile-card-icon {
  color: var(--green);
}

.profile-editorial h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.28;
}

.profile-editorial-copy p {
  margin: 0 0 18px;
  color: #30372f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.95;
}

.single-main {
  padding-top: 92px;
}

.single-article {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: clamp(48px, 5vw, 80px);
  padding-bottom: clamp(52px, 5vw, 86px);
}

.single-hero {
  margin-bottom: 30px;
}

.single-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(170, 112, 73, 0.28);
  background: rgba(170, 112, 73, 0.075);
  color: var(--copper);
  font-size: 13px;
  font-weight: 950;
}

.single-hero h1 {
  max-width: 880px;
  margin: 0 0 18px;
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.18;
}

.single-hero time {
  color: #5b665c;
  font-family: var(--latin-sans);
  font-size: 13px;
  font-weight: 850;
}

.single-thumb {
  margin: 0 0 34px;
}

.single-thumb img {
  width: 100%;
  height: auto;
  box-shadow: var(--shadow-soft);
}

.single-content {
  max-width: 760px;
  color: #30372f;
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
}

.single-content h2,
.single-content h3 {
  margin: 2em 0 0.8em;
  color: var(--ink);
  line-height: 1.45;
}

.single-content p {
  margin: 0 0 1.35em;
}

.single-content a {
  color: var(--green);
  font-weight: 850;
}

.single-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 34px 0 0;
}

.single-taxonomy a {
  padding: 9px 12px;
  border: 1px solid rgba(21, 60, 44, 0.22);
  background: rgba(232, 239, 229, 0.62);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.single-related {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.media .section-heading,
.media-layout,
.note .section-heading,
.note-grid {
  position: relative;
  z-index: 1;
}

.note-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 248px;
  padding: 30px;
  border: 1px solid rgba(17, 19, 15, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 252, 245, 0.9), rgba(250, 246, 237, 0.94)),
    rgba(250, 246, 237, 0.92);
  box-shadow: 0 15px 34px rgba(24, 24, 20, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.note-card > p {
  width: fit-content;
  margin-bottom: 24px;
  padding: 7px 11px;
  border: 1px solid rgba(170, 112, 73, 0.28);
  background: rgba(170, 112, 73, 0.075);
  font-size: 13px;
  line-height: 1;
}

.note-card-icon {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 1px solid rgba(21, 60, 44, 0.15);
  background: rgba(21, 60, 44, 0.045);
  color: rgba(21, 60, 44, 0.72);
}

.news-card .note-card-icon {
  border-color: rgba(170, 112, 73, 0.2);
  background: rgba(170, 112, 73, 0.065);
  color: rgba(170, 112, 73, 0.78);
}

.note-card::before {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 42px;
  height: 42px;
  background:
    linear-gradient(225deg, rgba(229, 220, 205, 0.96) 0 48%, rgba(170, 112, 73, 0.34) 49% 51%, transparent 52% 100%);
  content: "";
}

.note-card::after {
  display: none;
  content: none;
}

.note-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(24, 24, 20, 0.18);
}

.note-card h3 {
  min-height: 0;
  color: var(--ink);
  font-size: 17px;
}

.note-card h3 a {
  color: inherit;
  text-decoration: none;
}

.note-empty {
  text-align: left;
}

.note-empty .note-card-link {
  justify-self: start;
}

.note-card-thumb {
  width: 100%;
  margin: 0 0 18px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(17, 19, 15, 0.12);
  background: rgba(229, 220, 205, 0.35);
}

.note-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.note-card small {
  display: block;
  min-height: 0;
  margin: 0 0 20px;
  color: #62685f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.note-card button,
.note-card-link {
  align-self: end;
  justify-self: start;
  width: fit-content;
  padding: 12px 20px;
  border: 1px solid rgba(21, 60, 44, 0.45);
  background: transparent;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.note-card button:hover,
.note-card-link:hover {
  background: var(--green);
  color: #fffaf0;
}

.note-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.news-compact {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  padding-top: clamp(34px, 4vw, 54px);
  padding-bottom: clamp(34px, 4vw, 54px);
  border-top: 1px solid rgba(17, 19, 15, 0.12);
  background: rgba(250, 246, 237, 0.62);
}

.news-compact-heading p {
  margin: 0 0 8px;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 12px;
  font-weight: 950;
}

.news-compact-heading h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
}

.news-text-list {
  display: grid;
  border-top: 1px solid rgba(17, 19, 15, 0.12);
}

.news-text-list a {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(17, 19, 15, 0.12);
  color: var(--ink);
  text-decoration: none;
}

.news-text-list time {
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 12px;
  font-weight: 900;
}

.news-text-list span {
  color: #30372f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.news-text-list p {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(17, 19, 15, 0.12);
  color: #62685f;
  font-size: 14px;
  font-weight: 700;
}

.news-text-more {
  align-self: center;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

.archive-actions {
  justify-content: flex-start;
  margin-top: 10px;
}

.note-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 56px;
  padding: 0 30px;
  border: 1px solid rgba(21, 60, 44, 0.72);
  background: var(--green);
  box-shadow: 0 16px 32px rgba(13, 40, 30, 0.16);
  color: #fffaf0;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.note-more::after {
  margin-left: 14px;
  content: "→";
  font-family: var(--latin-sans);
}

.note-more:hover {
  background: var(--green-dark);
  box-shadow: 0 22px 40px rgba(13, 40, 30, 0.22);
  transform: translateY(-2px);
}

.archive-site {
  min-height: 100vh;
}

.archive-hero {
  display: grid;
  min-height: 430px;
  align-content: end;
  padding-top: 132px;
  padding-bottom: 56px;
  background:
    radial-gradient(circle at 14% 22%, rgba(170, 112, 73, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(250, 246, 237, 0.72), rgba(244, 239, 228, 0.84));
}

.archive-hero h1 {
  max-width: 1180px;
  margin: 0 0 22px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.14;
}

.archive-list {
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(64px, 7vw, 104px);
}

.note-category-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}

.note-category-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(21, 60, 44, 0.24);
  background: rgba(250, 246, 237, 0.82);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.note-category-nav a:hover,
.note-category-nav a.is-current {
  border-color: rgba(21, 60, 44, 0.72);
  background: var(--green);
  color: #fffaf0;
}

.archive-grid {
  margin-bottom: 34px;
}

.archive-pagination {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.archive-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.archive-pagination a,
.archive-pagination span {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(21, 60, 44, 0.25);
  background: rgba(250, 246, 237, 0.86);
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.archive-pagination .current,
.archive-pagination a:hover {
  background: var(--green);
  color: #fffaf0;
}

.final-cta {
  display: grid;
  min-height: 320px;
  align-content: center;
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(48px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 0, rgba(170, 112, 73, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(250, 246, 237, 0.6), rgba(229, 220, 205, 0.8));
  text-align: center;
}

.final-cta::before {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: min(72vw, 720px);
  height: min(72vw, 720px);
  border: 1px solid rgba(21, 60, 44, 0.11);
  border-radius: 999px;
  content: "";
  transform: translate(-50%, -50%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.35;
}

.final-cta p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(16, 18, 15, 0.56);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100vw - 36px), 386px);
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(255, 250, 240, 0.24);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 16px 34px rgba(13, 40, 30, 0.28);
  color: #fffaf0;
  font-family: var(--latin-sans);
  font-size: 14px;
  font-weight: 900;
  transform: translateX(-50%);
}

.modal.is-open {
  display: flex;
  animation: modal-backdrop-in 0.22s ease both;
}

.modal-panel {
  position: relative;
  width: min(100%, 460px);
  max-height: calc(100vh - 44px);
  overflow: auto;
  padding: 28px;
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(16, 18, 15, 0.34);
}

.modal.is-open .modal-panel {
  animation: modal-panel-in 0.34s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.modal-label {
  margin: 0 0 14px;
  color: #536c5a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

@keyframes modal-backdrop-in {
  from {
    background: rgba(16, 18, 15, 0);
  }
  to {
    background: rgba(16, 18, 15, 0.56);
  }
}

@keyframes modal-panel-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-panel h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.contact-intent {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.contact-intent span {
  padding: 7px 10px;
  border: 1px solid rgba(21, 60, 44, 0.18);
  background: rgba(21, 60, 44, 0.055);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.modal-panel p:not(.modal-label) {
  color: #555e55;
  line-height: 1.8;
}

.contact-status {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(21, 60, 44, 0.18);
  background: rgba(255, 250, 240, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.contact-status.is-success {
  border-color: rgba(21, 60, 44, 0.34);
  color: var(--green);
}

.contact-status.is-error {
  border-color: rgba(142, 64, 44, 0.38);
  color: #8e402c;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 60, 44, 0.24);
  border-radius: 0;
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
  font: inherit;
}

.contact-form input {
  height: 44px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
  padding: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(21, 60, 44, 0.22);
  outline-offset: 2px;
}

.contact-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-submit {
  width: 100%;
  margin-top: 4px;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 26px;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .menu-button {
    display: none;
  }
}

@media (max-width: 899px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
  }

  body {
    background: var(--paper);
  }

  main {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .section-frame {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    overflow-x: clip;
  }

  .section-frame::before {
    transform: none;
    transition: none;
  }

  body::before,
  body::after {
    animation: none;
    transform: none;
  }

  .site-header {
    width: 100%;
    padding: 0 18px;
    min-height: 74px;
  }

  .site-header::before {
    inset: 0 0 auto;
    height: 74px;
    border-width: 0 0 1px;
    background:
      linear-gradient(180deg, rgba(250, 246, 237, 0.985), rgba(244, 239, 228, 0.94)),
      rgba(244, 239, 228, 0.94);
    box-shadow: 0 2px 8px rgba(24, 24, 20, 0.028);
  }

  body {
    font-size: 16px;
  }

  .section-frame {
    width: 100%;
    max-width: none;
    padding: 46px 18px;
  }

  .why {
    padding-bottom: 34px;
  }

  .approach {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .hero {
    min-height: auto;
    padding-top: 94px;
    padding-bottom: 56px;
  }

  .hero::before {
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(244, 239, 228, 0.99) 0 58%, rgba(244, 239, 228, 0.84) 74%, rgba(244, 239, 228, 0.28) 100%),
      linear-gradient(180deg, rgba(244, 239, 228, 0.86) 0, rgba(244, 239, 228, 0.18) 54%, rgba(244, 239, 228, 0.78) 100%);
  }

  .hero-copy::before {
    display: none;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .owner {
    margin-bottom: 18px;
    font-size: 14.5px;
    line-height: 1.65;
  }

  h1 {
    width: 100%;
    max-width: 360px;
    margin-bottom: 24px;
    font-size: clamp(29px, 7.2vw, 34px);
    line-height: 1.33;
  }

  .title-desktop {
    display: none;
  }

  .title-mobile {
    display: inline;
  }

  .mobile-break {
    display: inline;
  }

  .lead {
    width: 100%;
    max-width: 326px;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.86;
  }

  .lead,
  .why-text p,
  .profile-copy p,
  .final-cta p,
  .pin-card p,
  .service-card p {
    overflow-wrap: anywhere;
    line-break: strict;
  }

  .why-text p,
  .profile-copy p,
  .media-copy p,
  .final-cta p {
    max-width: 334px;
  }

  .primary-button {
    width: 100%;
    max-width: 334px;
    min-height: 58px;
    padding: 0 24px;
    font-size: 16px;
  }

  .hero-actions {
    position: relative;
    z-index: 5;
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    margin-top: 0;
  }

  .hero .primary-button {
    width: calc(100vw - 36px);
    max-width: none;
  }

  .hero-cta-note {
    width: 100%;
    font-size: 12.5px;
  }

  .domain-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: none;
    margin-top: 20px;
    gap: 10px;
  }

  .logo {
    width: 170px;
    height: 48px;
  }

  .menu-button {
    position: fixed;
    top: 10px;
    right: 18px;
    z-index: 24;
    width: 48px;
    height: 48px;
    border-radius: 0;
    box-shadow: 0 4px 10px rgba(13, 40, 30, 0.12);
  }

  .proof-strip {
    display: none;
  }

  .proof-title {
    display: none;
  }

  .domain-list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 18px;
  }
  .domain-list li {
    min-height: 0;
    padding: 0;
    font-size: 11px;
    min-width: 0;
    gap: 5px;
    white-space: nowrap;
  }

  .domain-list span {
    width: auto;
    text-align: left;
    white-space: nowrap;
    overflow-wrap: normal;
    line-height: 1.1;
  }

  .domain-list svg {
    width: 15px;
    height: 15px;
    stroke-width: 1.6;
  }

  .hero {
    position: relative;
    overflow: hidden;
  }
  .hero-copy,
  .hero-actions {
    position: relative;
    z-index: 3;
  }
  .desk-collage,
  .image-collage {
    display: block;
    position: absolute;
    inset: 0;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 0;
    pointer-events: none;
    z-index: 0;
  }
  .image-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% 38%;
    opacity: 0.08;
    filter: none;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, #000 28%, #000 84%, rgba(0, 0, 0, 0.22) 100%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, #000 28%, #000 84%, rgba(0, 0, 0, 0.22) 100%);
    transform: none;
    transition: none;
    animation: none;
  }
  .domain-list li {
    color: rgba(17, 19, 15, 0.72);
  }
  .domain-list svg {
    stroke: rgba(17, 19, 15, 0.72);
  }

  .desk-collage::before {
    right: -78px;
    top: 456px;
    width: 154px;
    height: 10px;
    transform: rotate(-24deg);
  }

  .desk-collage::after {
    right: -44px;
    top: 72px;
    width: 300px;
    height: 360px;
    transform: rotate(8deg);
  }

  .strategy-book {
    right: -108px;
    bottom: 18px;
    top: auto;
    width: 220px;
    height: 210px;
    padding: 50px 28px;
    font-size: 18px;
    transform: rotate(10deg);
  }

  .ec-paper {
    left: -78px;
    bottom: 96px;
    width: 244px;
    min-height: 260px;
  }

  .chart-paper {
    top: 248px;
    left: -72px;
    right: auto;
    width: 246px;
    height: 180px;
  }

  .memo-paper {
    top: 128px;
    left: 108px;
    width: 212px;
    min-height: 255px;
    z-index: 7;
    transform: rotate(-2deg);
  }

  .workflow-paper {
    top: -18px;
    right: -84px;
    width: 280px;
    min-height: 300px;
    transform: rotate(8deg);
  }

  .board-paper {
    display: none;
  }

  .org-paper {
    right: -98px;
    left: auto;
    bottom: 58px;
    width: 278px;
    min-height: 250px;
    transform: rotate(5deg);
  }

  .green-note {
    left: 194px;
    bottom: -8px;
    width: 190px;
    font-size: 14px;
  }

  .green-list {
    left: -4px;
    bottom: -8px;
    width: 230px;
    font-size: 13px;
  }

  .sticky-note {
    top: 160px;
    right: -4px;
    font-size: 14px;
  }

  .section-heading p {
    font-size: 15.5px;
    margin-bottom: 24px;
  }

  .section-heading span {
    font-size: 26px;
  }

  .section-heading h2 {
    font-size: clamp(30px, 7.6vw, 36px);
    margin-bottom: 22px;
    line-height: 1.38;
  }

  .section-heading small {
    margin: -6px 0 22px;
    font-size: 16px;
    line-height: 1.82;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .profile {
    display: block;
  }
  .profile > * {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .profile-note {
    margin-top: 28px;
  }

  .voice-paper {
    margin-top: 0;
    transform: rotate(0);
  }

  .problem-grid,
  .service-grid,
  .note-grid,
  .media-layout {
    grid-template-columns: 1fr;
  }

  .media-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .media-list article > span {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .media-layout {
    gap: 20px;
  }

  .media-copy p {
    margin-bottom: 0;
  }

  .media-theme-button {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    column-gap: 12px;
    row-gap: 5px;
    padding: 14px 18px;
  }

  .media-theme-icon {
    grid-column: 1;
    grid-row: 2;
  }

  .media-theme-button p {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .media-theme-button h3 {
    grid-column: 2;
    grid-row: 2;
  }

  .media-theme-button > span:not(.melds-icon) {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
  }

  .media-detail {
    width: min(100%, 680px);
    padding: 24px;
  }

  .media-detail-visual {
    margin-bottom: 16px;
    aspect-ratio: auto;
  }

  .media-detail-visual img {
    height: auto;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .media-detail-visual picture {
    height: auto;
  }

  .media-detail-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .media-detail-lead {
    font-size: 15px;
    line-height: 1.78 !important;
  }

  .profile-hero,
  .profile-detail-grid,
  .profile-story {
    grid-template-columns: 1fr;
  }

  .profile-page {
    padding-top: 84px;
  }

  .profile-hero-copy h1 {
    font-size: clamp(34px, 9vw, 42px);
  }

  .profile-showcase {
    padding-top: 84px;
  }

  .profile-showcase-hero,
  .career-stage,
  .profile-editorial,
  .profile-highlight-strip {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .profile-highlight-strip {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .profile-highlight-strip p {
    font-size: 17px;
    line-height: 1.62;
  }

  .profile-showcase h1 {
    font-size: clamp(32px, 8.4vw, 42px);
    line-height: 1.22;
  }

  .profile-lead,
  .profile-editorial-copy p {
    font-size: 16px;
    line-height: 1.86;
  }

  .profile-showcase-panel::before {
    display: none;
  }

  .profile-signature {
    grid-template-columns: 1fr;
  }

  .profile-results-grid {
    grid-template-columns: 1fr;
  }

  .profile-results {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .profile-results-grid article {
    min-height: 0;
    padding: 26px 24px;
  }

  .profile-results-grid h3 {
    margin-bottom: 14px;
    font-size: clamp(27px, 7vw, 36px);
    line-height: 1.32;
  }

  .profile-results-grid span {
    line-height: 1.78;
  }

  .profile-highlight-strip div {
    justify-content: flex-start;
  }

  .profile-highlight-strip p {
    white-space: normal;
  }

  .profile-capability-grid {
    grid-template-columns: 1fr;
  }

  .profile-signature article {
    min-height: 0;
  }

  .career-stage-heading {
    position: static;
  }

  .career-timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pin-card,
  .approach-map article,
  .note-card {
    min-height: 0;
    padding: 30px 28px;
  }

  .why-text p,
  .pin-card p,
  .approach-map p,
  .service-card p,
  .service-points,
  .profile-copy p,
  .media-copy p,
  .note-card small,
  .final-cta p {
    font-size: 16px;
    line-height: 1.82;
  }

  .final-cta {
    min-height: 0;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .pin-card h3,
  .approach-map h3,
  .service-card h3,
  .media-list h3,
  .note-card h3 {
    font-size: 19px;
    line-height: 1.52;
  }

  .media-copy::before,
  .note-grid::before {
    display: none;
  }

  .note-card small {
    min-height: 0;
  }

  .note-actions {
    margin-top: 24px;
  }

  .note-more {
    width: 100%;
    max-width: 334px;
  }

  .news-compact {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .news-compact-heading h2 {
    font-size: 30px;
  }

  .news-text-list a,
  .news-text-list p {
    padding: 12px 0;
  }

  .news-text-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .news-text-more {
    width: fit-content;
  }

  .archive-hero {
    min-height: 360px;
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .archive-hero h1 {
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.28;
  }

  .archive-list {
    padding-top: 38px;
  }

  .note-category-nav {
    gap: 8px;
    margin-bottom: 26px;
  }

  .note-category-nav a {
    min-height: 40px;
    padding: 0 14px;
  }

  .message-panel {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .message-panel p {
    font-size: 17px;
    line-height: 1.72;
  }

  .message-panel small {
    grid-column: auto;
  }

  .approach-map {
    grid-template-columns: 1fr;
  }

  .approach-map::before {
    display: none;
  }

  .ai-core {
    display: none;
  }

  .service-card {
    display: block;
    height: auto;
    min-height: 0;
    padding: 26px 24px 28px;
  }

  .service-card::after {
    display: none;
  }

  .service-number {
    display: block;
    margin: 0 0 2px;
    font-size: 44px !important;
    line-height: 1;
  }

  .service-label {
    display: inline-block;
    margin: 4px 0 8px;
    font-size: 12px;
  }

  .service-card h3 {
    margin: 4px 0 12px;
    font-size: 21px;
    line-height: 1.4;
  }

  .service-card > p:not(.service-number) {
    max-width: none;
    margin: 0 0 4px;
    font-size: 15px;
  }

  .service-points {
    gap: 8px;
    margin-top: 16px;
  }

  .service-points li {
    padding: 9px 12px;
    font-size: 13px;
  }

  .service-card dt,
  .service-card dd {
    font-size: 14px;
  }

  .service-card dd:last-child {
    font-size: 20px;
  }

  .service-card dl {
    margin-top: 16px;
  }

  .deliverables {
    margin-top: 16px;
  }

  .service-card.featured {
    transform: none;
  }

  .service {
    padding-top: 34px;
    padding-bottom: 34px;
    background:
      radial-gradient(circle at 12% 8%, rgba(170, 112, 73, 0.1), transparent 28%),
      radial-gradient(circle at 88% 82%, rgba(21, 60, 44, 0.08), transparent 28%),
      rgba(244, 239, 228, 0.88);
  }

  .service .section-heading {
    padding-left: 0;
  }

  .service::before {
    right: -18px;
    top: 18px;
    font-size: 78px;
  }

  .profile::before,
  .media::after,
  .note::after {
    display: none;
  }

  .profile,
  .media,
  .note {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .service-card div {
    grid-template-columns: 64px 1fr;
  }

  .profile-note {
    transform: rotate(0);
  }

  .profile {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .profile-heading {
    order: 0;
  }
  .profile-heading small {
    margin-bottom: 0;
  }
  .profile-note {
    order: 1;
    margin: 0;
  }
  .profile-copy {
    order: 2;
  }
  .profile-results {
    order: 3;
  }
  .profile::before {
    display: none;
  }

  .media-theme-button {
    grid-template-columns: 38px 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 10px;
    row-gap: 4px;
    padding: 16px 14px;
  }
  .media-list p {
    grid-column: 2;
    grid-row: 1;
  }
  .media-list h3 {
    grid-column: 2;
    grid-row: 2;
    font-size: 14.5px;
    line-height: 1.45;
  }
  .media-theme-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .media-theme-badge {
    grid-column: 2;
    grid-row: 3;
    justify-self: start;
    align-self: center;
    min-width: 0;
    margin-top: 6px;
    padding: 4px 10px;
    font-size: 11px;
  }
  .media-theme-arrow {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    align-self: center;
    margin-left: 0;
    font-size: 18px;
  }

  body {
    overflow-x: hidden;
  }
  .media-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .media-block {
    padding: 22px 20px;
  }
}

/* PHILOSOPHY: AI時代の人材育成 思想セクション */
.philosophy {
  padding-top: clamp(42px, 4.5vw, 64px);
  padding-bottom: clamp(42px, 4.5vw, 64px);
  background:
    radial-gradient(circle at 88% 12%, rgba(170, 112, 73, 0.08), transparent 30%),
    var(--paper-soft);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.philosophy-card {
  position: relative;
  padding: 30px 26px 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 15, 0.12);
}
.philosophy-card:nth-child(2) {
  border-color: var(--green);
  background: rgba(21, 60, 44, 0.04);
}
.philosophy-num {
  display: block;
  margin-bottom: 16px;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.philosophy-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.42;
}
.philosophy-card p {
  margin: 0;
  color: #4a504a;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.8;
}
.philosophy-statement {
  margin-top: 28px;
  padding: 28px 32px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: #fffaf0;
}
.philosophy-statement p {
  margin: 0;
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.7;
  text-align: left;
}
.philosophy-statement strong {
  color: #d7a16d;
}
.philosophy-statement__by {
  margin: 14px 0 0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1.7;
  color: rgba(255, 250, 240, 0.82);
  text-align: left;
}

/* Media: 書籍・登壇・取材ブロック */
.writing-books {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 36px 0 52px;
}
.writing-book {
  display: grid;
  grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(17, 19, 15, 0.14);
  background:
    linear-gradient(145deg, rgba(21, 60, 44, 0.06), rgba(215, 161, 109, 0.08)),
    #ffffff;
}
.writing-book__cover {
  margin: 0;
}
.writing-book__cover img {
  display: block;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1600 / 2560;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(17, 19, 15, 0.16);
  box-shadow: 0 18px 34px rgba(17, 19, 15, 0.14);
}
.writing-book__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
}
.writing-book__status {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 10px;
  border: 1px solid rgba(159, 87, 48, 0.26);
  color: var(--copper);
  background: rgba(215, 161, 109, 0.12);
  font-family: var(--latin-sans);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.writing-book h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 1.75vw, 28px);
  font-weight: 900;
  line-height: 1.35;
}
.writing-book p:not(.writing-book__status) {
  max-width: 440px;
  margin: 16px 0 0;
  color: rgba(17, 19, 15, 0.68);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
}
.writing-book ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 22px 0 0;
  list-style: none;
}
.writing-book li {
  padding: 7px 10px;
  border: 1px solid rgba(21, 60, 44, 0.14);
  color: rgba(17, 19, 15, 0.7);
  background: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.writing-books + .media-layout {
  margin-top: 52px;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.media-block {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 28px;
  border: 1px solid rgba(17, 19, 15, 0.14);
  background: #ffffff;
  transition: border-color 0.2s ease;
}
.media-block:hover {
  border-color: rgba(21, 60, 44, 0.5);
}
.media-block__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(17, 19, 15, 0.1);
}
.media-block__icon {
  width: 34px;
  height: 34px;
  color: var(--green);
  border: 1px solid rgba(21, 60, 44, 0.22);
  background: rgba(21, 60, 44, 0.06);
}
.media-block__icon svg {
  width: 18px;
  height: 18px;
}
.media-block__title {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.media-block__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.media-block__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(17, 19, 15, 0.1);
}
.media-block__list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.media-block__list time {
  font-family: var(--latin-sans);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--copper);
  white-space: nowrap;
  padding-top: 2px;
}
.media-block__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.media-block__body a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.2s ease;
}
.media-block__body a:hover {
  color: var(--green);
}
.media-block__body small {
  color: rgba(17, 19, 15, 0.55);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}
.media-block__placeholder {
  margin: 0;
  padding: 24px 0;
  color: rgba(17, 19, 15, 0.55);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  text-align: left;
}

/* ナビメニューモーダル（SP/PC共通） */
.modal--nav .modal-panel.navmenu-panel {
  width: 100%;
  max-width: 480px;
  height: 100vh;
  max-height: 100vh;
  margin: 0;
  padding: 64px 28px 32px;
  border-radius: 0;
  background: var(--paper);
  overflow-y: auto;
}
.modal--nav .modal-close {
  top: 18px;
  right: 18px;
}
.navmenu {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 8px 0 0;
}
.navmenu a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 6px;
  border-bottom: 1px solid rgba(17, 19, 15, 0.1);
  color: var(--ink);
  font-family: var(--latin-sans);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.navmenu a small {
  display: block;
  color: rgba(17, 19, 15, 0.55);
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0;
}
.navmenu a:hover,
.navmenu a:focus {
  color: var(--green);
}
.navmenu-cta {
  margin-top: 28px;
  width: 100%;
  justify-content: center;
}

/* Contactフォーム拡張用 */
.contact-hint {
  display: inline-block;
  margin-left: 6px;
  color: rgba(17, 19, 15, 0.55);
  font-size: 11.5px;
  font-weight: 600;
}
.contact-file input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 1px dashed rgba(17, 19, 15, 0.28);
  background: rgba(255, 252, 245, 0.4);
  font-size: 13px;
  cursor: pointer;
}
.contact-file input[type="file"]::file-selector-button {
  margin-right: 10px;
  padding: 6px 12px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fffaf0;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
@media (max-width: 899px) {

  .sticky-cta.is-visible {
    display: flex;
  }

  body {
    padding-bottom: 104px;
  }
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translate(-50%, -18px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes paper-grid-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 44px 22px, 44px 22px;
  }
}

@keyframes ambient-shift {
  from {
    transform: translate3d(-10px, -6px, 0) scale(1);
  }

  to {
    transform: translate3d(10px, 8px, 0) scale(1.03);
  }
}

@keyframes collage-float {
  from {
    filter: drop-shadow(0 24px 42px rgba(24, 24, 20, 0.13));
  }

  to {
    filter: drop-shadow(0 34px 58px rgba(24, 24, 20, 0.18));
  }
}

.hero-copy,
.hero-actions {
  animation: content-rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-actions {
  animation-delay: 0.12s;
}

@keyframes content-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes hero-kicker {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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

@keyframes hero-title-slam {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-34px) scale(0.985);
  }

  58% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0) scale(1);
  }
}

@keyframes hero-lead-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes tile-pop {
  from {
    opacity: 0;
    transform: translateY(28px) rotate(-1deg) scale(0.9);
  }

  70% {
    opacity: 1;
    transform: translateY(-5px) rotate(0.4deg) scale(1.02);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes proof-slide {
  from {
    opacity: 0;
    transform: translateX(-40px) translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

[data-reveal] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(74px) scale(0.96);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="left"] {
  transform: translateX(-86px) translateY(28px) rotate(-1.2deg) scale(0.97);
}

[data-reveal="right"] {
  transform: translateX(86px) translateY(28px) rotate(1.2deg) scale(0.97);
}

[data-reveal="paper"] {
  transform: translateY(88px) rotate(-2deg) scale(0.94);
}

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

.pin-card,
.approach-map article,
.note-card,
.media-list article,
.profile-note,
.voice-paper {
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.pin-card:hover,
.approach-map article:hover,
.note-card:hover,
.media-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(170, 112, 73, 0.36);
  box-shadow: 0 22px 46px rgba(24, 24, 20, 0.13);
}

.media-list article:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}

.paper,
.pin-card::before,
.voice-paper::before,
.service-card::before {
  will-change: transform;
}

.pin-card::before,
.voice-paper::before,
.service-card::before {
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.pin-card:hover::before,
.voice-paper:hover::before,
.service-card:hover::before {
  transform: translateX(-50%) scale(1.14);
  box-shadow: 0 8px 16px rgba(17, 19, 15, 0.28);
}

.approach-map article:nth-child(1),
.approach-map article:nth-child(4) {
  transform-origin: 50% 80%;
}

.ai-core {
  animation: ai-pulse 3.8s ease-in-out infinite;
}

@keyframes ai-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 22px 44px rgba(13, 40, 30, 0.26);
  }

  50% {
    transform: scale(1.035);
    box-shadow: 0 30px 58px rgba(13, 40, 30, 0.32);
  }
}

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

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

/* ============================================
   Diagram blocks (added 2026-05-27)
   各セクションに視覚図解を追加
   ロールバック: この末尾ブロックと front-page.php の対応HTMLを削除
   ============================================ */

/* [E] Hero 切り分け図 */
.hero-diagram {
  width: min(100%, 560px);
  margin: 28px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(21, 60, 44, 0.18);
  background: rgba(255, 252, 245, 0.62);
}
.hero-diagram__title {
  margin: 0 0 14px;
  color: var(--green);
  font-family: var(--latin-sans);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.hero-diagram__split {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  gap: 0;
}
.hero-diagram__source {
  align-self: center;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}
.hero-diagram__branches {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  padding-left: 36px;
}
/* 業務一覧から右に出る短い水平線 (T字の左横棒) */
.hero-diagram__branches::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--ink);
  content: "";
}
/* T字の縦棒 (上分岐の中央 → 下分岐の中央) */
.hero-diagram__branches::after {
  position: absolute;
  left: 14px;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: var(--ink);
  content: "";
}
/* 各分岐ボックスの左から伸びる水平線 (T字の右の枝) */
.hero-diagram__branch {
  position: relative;
}
.hero-diagram__branch::before {
  position: absolute;
  left: -22px;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--ink);
  content: "";
}
.hero-diagram__branch {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: baseline;
}
.hero-diagram__tag {
  padding: 4px 10px;
  font-family: var(--latin-sans);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-diagram__branch--use .hero-diagram__tag {
  border: 1px solid var(--green);
  background: var(--green);
  color: #fffaf0;
}
.hero-diagram__branch--skip .hero-diagram__tag {
  border: 1px solid rgba(17, 19, 15, 0.32);
  background: transparent;
  color: rgba(17, 19, 15, 0.55);
}
.hero-diagram__desc {
  color: #3f453e;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.6;
}

/* [A] WHY ビフォーアフター (テキスト対比リスト) */
.why-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.why-compare__col {
  padding: 28px 30px 30px;
  border: 1px solid rgba(17, 19, 15, 0.12);
  background: var(--paper-soft);
}
.why-compare__col--bad {
  background: rgba(17, 19, 15, 0.035);
}
.why-compare__col--good {
  border: 1.5px solid var(--green);
  background: #ffffff;
}
.why-compare__label {
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17, 19, 15, 0.14);
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.why-compare__col--good .why-compare__label {
  border-bottom-color: rgba(21, 60, 44, 0.32);
  color: var(--green);
}
.why-compare__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.why-compare__list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px dashed rgba(17, 19, 15, 0.08);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.65;
}
.why-compare__list li:last-child {
  border-bottom: 0;
}
.why-compare__list li::before {
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--latin-sans);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.why-compare__col--bad .why-compare__list li::before {
  background: rgba(170, 70, 70, 0.12);
  color: #a04540;
  content: "×";
}
.why-compare__col--good .why-compare__list li::before {
  background: rgba(21, 60, 44, 0.12);
  color: var(--green);
  content: "✓";
}

/* [B] APPROACH ステップアイコン */
.approach-step-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--green);
}
.approach-step-icon svg {
  width: 100%;
  height: 100%;
}
.approach-map article:not(:last-child) {
  position: relative;
}
.approach-map article:not(:last-child)::before {
  position: absolute;
  right: -14px;
  top: 50%;
  z-index: 3;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  content: "→";
  transform: translateY(-50%);
}

/* [C] SERVICE マトリクス */
.service-matrix {
  margin: 32px 0 44px;
  padding: 26px 30px 28px;
  background: rgba(255, 252, 245, 0.85);
  border: 1px solid rgba(21, 60, 44, 0.22);
}
.service-matrix__title {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.service-matrix__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--latin-sans);
}
.service-matrix__table th,
.service-matrix__table td {
  padding: 12px 10px;
  border: 1px solid rgba(17, 19, 15, 0.14);
  text-align: center;
  vertical-align: middle;
}
.service-matrix__table thead th {
  background: rgba(21, 60, 44, 0.06);
  color: var(--green);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-matrix__table tbody th {
  width: 18%;
  background: rgba(17, 19, 15, 0.04);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  padding-left: 16px;
}
.service-matrix__table tbody td a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 6px 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.service-matrix__table tbody td a span {
  font-size: 18px;
  font-weight: 900;
  color: var(--copper);
}
.service-matrix__table tbody td a:hover {
  background: rgba(21, 60, 44, 0.06);
  color: var(--green);
}
.service-matrix__empty {
  color: rgba(17, 19, 15, 0.22);
  font-size: 18px;
}
.service-matrix__note {
  margin: 14px 0 0;
  color: rgba(17, 19, 15, 0.55);
  font-size: 11.5px;
  letter-spacing: 0.03em;
}

/* [D] PROFILE 実績数字 */
.profile-results {
  margin: 0;
  padding: 26px 28px;
  background: linear-gradient(180deg, var(--paper-soft), rgba(229, 220, 205, 0.42));
  border: 1px solid rgba(21, 60, 44, 0.22);
}
.profile-results__title {
  margin: 0 0 6px;
  color: var(--green);
  font-family: var(--latin-sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.profile-results__main {
  margin: 0;
  padding: 0;
}
.profile-results__caption {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 6px 0 18px;
}
.profile-results__metric {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}
.profile-results__scope {
  color: rgba(17, 19, 15, 0.6);
  font-size: 12px;
  font-weight: 600;
}
.profile-results__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}
.profile-results__step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 14px;
  background: #ffffff;
  border: 1.5px solid rgba(17, 19, 15, 0.14);
  text-align: center;
}
.profile-results__step--neg {
  border-color: rgba(170, 70, 70, 0.7);
}
.profile-results__step--pos {
  border-color: var(--green);
  background: rgba(21, 60, 44, 0.05);
}
.profile-results__period {
  margin-bottom: 10px;
  color: rgba(17, 19, 15, 0.6);
  font-family: var(--latin-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.profile-results__amount {
  font-family: var(--latin-sans);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.profile-results__amount small {
  margin-left: 3px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.7;
}
.profile-results__step--neg .profile-results__amount {
  color: #a04540;
}
.profile-results__step--zero .profile-results__amount {
  color: rgba(17, 19, 15, 0.7);
}
.profile-results__step--pos .profile-results__amount {
  color: var(--green);
}
.profile-results__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 22px;
  font-weight: 900;
}
.profile-results .profile-results__delta {
  margin: 16px 0 0;
  max-width: none;
  padding: 16px 18px;
  background: linear-gradient(145deg, var(--green), var(--green-dark));
  color: #fffaf0;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.01em;
}
.profile-results__delta strong {
  color: #d7a16d;
  font-size: 21px;
  font-weight: 900;
}

/* PC: 緑バー「+2億円改善」を強調 / 写真を少し下げる */
@media (min-width: 900px) {
  .profile-note {
    margin-top: 52px;
  }
  .profile-photo {
    height: 340px;
  }
  .profile-results {
    margin-top: 60px;
  }
  .profile-results .profile-results__delta {
    padding: 26px 22px;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }
  .profile-results__delta strong {
    font-size: 36px;
    letter-spacing: 0.01em;
  }
}
.profile-results__extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.profile-results__extras li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px 16px;
  background: #ffffff;
  border-left: 3px solid var(--copper);
}
.profile-results__big {
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.005em;
  white-space: nowrap;
}
.profile-results__extras li span:last-child {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}
.profile-results__extras strong {
  color: var(--copper);
  font-weight: 900;
}

/* [D] PROFILE クレデンシャル1行 */
.profile-credentials {
  margin: 18px 0 18px;
  padding: 18px 20px;
  border-left: 3px solid var(--green);
  background: rgba(21, 60, 44, 0.05);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.78;
}

/* [A] PROFILE 対応業界帯 */
.profile-industries {
  margin: 22px 0 0;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(17, 19, 15, 0.1);
}
.profile-industries__title {
  margin: 0 0 12px;
  color: rgba(17, 19, 15, 0.6);
  font-family: var(--latin-sans);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.profile-industries__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.profile-industries__list li {
  padding: 6px 12px;
  border: 1px solid rgba(17, 19, 15, 0.16);
  background: #ffffff;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
}

/* [B] PROCESS 4ステップフロー */
.process {
  padding-top: clamp(42px, 4.5vw, 62px);
  padding-bottom: clamp(42px, 4.5vw, 62px);
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}
.process-steps li {
  position: relative;
  padding: 24px 22px 26px;
  background: #ffffff;
  border: 1px solid rgba(17, 19, 15, 0.12);
}
.process-steps li:not(:last-child)::after {
  position: absolute;
  right: -14px;
  top: 50%;
  z-index: 2;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  content: "→";
  transform: translateY(-50%);
}
.process-num {
  display: block;
  margin-bottom: 12px;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}
.process-steps h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.42;
}
.process-steps p {
  margin: 0;
  color: #4a504a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

/* [C] FAQ */
.faq {
  padding-top: clamp(42px, 4.5vw, 62px);
  padding-bottom: clamp(42px, 4.5vw, 62px);
}
.faq-list {
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.faq-item {
  padding: 22px 26px;
  border: 1px solid rgba(17, 19, 15, 0.14);
  background: #ffffff;
  transition: border-color 0.2s ease;
}
.faq-item:hover {
  border-color: var(--green);
}
.faq-item dt {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 15.5px;
  font-weight: 900;
  letter-spacing: 0.005em;
  line-height: 1.55;
}
.faq-item dt::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--latin-sans);
  font-size: 16px;
  font-weight: 900;
  content: "Q.";
}
.faq-item dd {
  margin: 0;
  padding-left: 28px;
  position: relative;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}
.faq-item dd::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--copper);
  font-family: var(--latin-sans);
  font-size: 16px;
  font-weight: 900;
  content: "A.";
}

/* SP対応 */
@media (max-width: 899px) {
  .profile-credentials {
    width: 100%;
    max-width: none;
    padding: 14px 16px;
    font-size: 14px;
  }
  .profile-copy,
  .profile-copy p {
    width: 100%;
    max-width: none;
  }
  .profile-industries {
    padding: 16px 16px 18px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process-steps li:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -18px;
    content: "↓";
    transform: translateX(50%);
  }
  .faq-item {
    padding: 18px 20px;
  }
  .faq-item dt {
    font-size: 14.5px;
  }
  .faq-item dd {
    font-size: 13.5px;
  }
}

/* === SP対応 (max-width: 899px) === */
@media (max-width: 899px) {
  .hero-diagram {
    padding: 14px 16px;
    margin-top: 22px;
  }
  .hero-diagram__split {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-diagram__branches {
    padding-left: 0;
  }
  .hero-diagram__branches::before,
  .hero-diagram__branches::after,
  .hero-diagram__branch::before {
    display: none;
  }
  .hero-diagram__source {
    justify-self: start;
  }
  .why-compare {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 36px;
  }
  .why-compare__col {
    padding: 22px 22px 24px;
  }
  .approach-map article:not(:last-child)::before {
    right: 50%;
    top: auto;
    bottom: -22px;
    content: "↓";
    transform: translateX(50%);
  }
  .service-matrix {
    padding: 18px 14px 20px;
    margin: 24px 0 32px;
    overflow-x: visible;
  }
  /* SP: 2軸テーブル形式を維持（文字を詰めて1画面に収める） */
  .service-matrix__table {
    min-width: 0;
    width: 100%;
    table-layout: fixed;
  }
  .service-matrix__table th,
  .service-matrix__table td {
    padding: 8px 4px;
  }
  .service-matrix__table thead th {
    font-size: 9.5px;
    padding: 6px 3px;
    letter-spacing: 0;
    line-height: 1.25;
  }
  .service-matrix__table tbody th {
    width: 21%;
    padding: 8px 4px;
    font-size: 10.5px;
    text-align: center;
  }
  .service-matrix__table tbody td a {
    padding: 4px 2px;
    font-size: 10px;
    line-height: 1.3;
    gap: 3px;
  }
  .service-matrix__table tbody td a span {
    font-size: 13px;
  }
  .service-matrix__empty {
    font-size: 14px;
  }
  .profile-results {
    padding: 22px 18px;
  }
  .profile-results__caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .profile-results__steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .profile-results__arrow {
    transform: rotate(90deg);
    font-size: 18px;
  }
  .profile-results__extras {
    grid-template-columns: 1fr;
  }
  .profile-results__extras li {
    gap: 4px;
  }
  .profile-results__big {
    font-size: 22px;
  }
}

/* Media grid: SP 1カラム上書き（デフォルト3列定義より後ろに置いて確実に勝たせる） */
@media (max-width: 899px) {
  .writing-books {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 28px 0 42px;
  }
  .writing-book {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 18px;
  }
  .writing-book__cover img {
    max-width: 104px;
  }
  .writing-book__status {
    font-size: 10.5px;
    line-height: 1.5;
  }
  .writing-book p:not(.writing-book__status) {
    font-size: 13.5px;
  }
  .writing-book ul {
    padding-top: 18px;
  }
  .media-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .media-block {
    padding: 22px 20px;
  }
  .media-block__title {
    font-size: 16px;
  }
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .philosophy-card {
    padding: 24px 22px;
  }
  .philosophy-statement {
    padding: 22px 20px;
  }
}

@media (max-width: 520px) {
  .writing-book {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .writing-book__cover img {
    max-width: 128px;
    margin: 0 auto;
  }

  .writing-book__body {
    align-items: flex-start;
  }

  .writing-book h3 {
    font-size: 26px;
    line-height: 1.34;
  }

  .writing-book ul {
    margin-top: 0;
    padding-top: 18px;
  }
}

/* SP: revealアニメの横移動(translateX 86px)が右はみ出し→右空白を生むため縦移動のみに */
@media (max-width: 899px) {
  [data-reveal="left"],
  [data-reveal="right"] {
    transform: translateY(40px) scale(0.98);
  }
}

/* === Note記事 本文タイポグラフィ（single-content 拡張） === */
/* 既存の .single-content h2/h3/p/a に加え、引用・箇条書き・図版・リード・強調を整える */
.single-content .lead {
  max-width: none;
  margin: 0 0 1.9em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid var(--paper-line);
  color: #1d231c;
  font-size: clamp(18px, 1.9vw, 21px);
  font-weight: 700;
  line-height: 1.95;
}

.single-content h2 {
  font-size: clamp(21px, 1.9vw, 24px);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.single-content h2::before {
  display: block;
  width: 40px;
  height: 3px;
  margin-bottom: 20px;
  background: var(--copper);
  content: "";
}

.single-content h3 {
  font-size: clamp(19px, 2.05vw, 23px);
  font-weight: 850;
}

.single-content strong {
  font-weight: 900;
  color: var(--ink);
  background: linear-gradient(transparent 60%, rgba(170, 112, 73, 0.2) 60%);
}

.single-content blockquote {
  margin: 1.9em 0;
  padding: 6px 0 6px 26px;
  border-left: 3px solid var(--green);
  color: #2c3329;
  font-style: normal;
}

.single-content blockquote p {
  margin: 0 0 0.65em;
  font-size: 0.97em;
}

.single-content blockquote p:last-child {
  margin-bottom: 0;
}

.single-content ul,
.single-content ol {
  margin: 0 0 1.5em;
  padding-left: 1.45em;
}

.single-content li {
  margin: 0 0 0.62em;
  padding-left: 0.3em;
}

.single-content ul li::marker {
  color: var(--copper);
}

.single-content ol li::marker {
  color: var(--copper);
  font-weight: 900;
}

.single-content hr {
  margin: 2.7em 0;
  border: 0;
  border-top: 1px solid var(--paper-line);
}

.single-content a {
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.single-content figure {
  margin: 2.3em 0;
}

.single-content figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--paper-line);
  box-shadow: var(--shadow-soft);
}

.single-content figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-family: var(--latin-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media (max-width: 899px) {
  .single-content {
    font-size: 16px;
  }
  .single-content .lead {
    font-size: 17px;
  }
  .single-content blockquote {
    padding-left: 20px;
  }
}

/* === Note記事 レイアウト統一: ヒーロー/見出し/本文/図版/タグを同一幅で中央寄せ === */
/* 旧: single-contentが760px左寄せ → 右に空白。単一カラム(720px中央)に統一して解消 */
.single-hero,
.single-content,
.single-taxonomy {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.single-hero h1 {
  max-width: 100%;
  font-size: clamp(27px, 3.1vw, 40px);
  word-break: keep-all;
}

.single-thumb {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

/* 段落間を広げて読みやすく */
.single-content p {
  margin: 0 0 1.7em;
}

.single-content p.lead {
  margin-bottom: 2em;
}

/* === 強弱・メリハリ: 山場のプルクオート(雑誌的な大きな引用) === */
.single-content blockquote.pull {
  margin: 2.4em auto;
  padding: 26px 0;
  border-top: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
  border-left: 0;
}

.single-content blockquote.pull p {
  margin: 0;
  color: var(--green);
  font-size: clamp(21px, 2.6vw, 29px);
  font-weight: 900;
  line-height: 1.62;
}

/* === 可読性ベストプラクティス(多観点リサーチに基づく) === */
/* 本文: 和文ゴシック長文はRegular(400)。低コントラストの地色。禁則と折返し制御。 */
.single-content {
  max-width: 760px;
  color: #2b2f28;
  font-weight: 400;
  line-height: 1.9;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  text-spacing-trim: trim-start;
}

/* 段落: 段落間 > 行間 の階層 + 末尾の孤立行を抑制 */
.single-content p {
  margin: 0 0 2.1em;
  text-wrap: pretty;
}

.single-content p.lead {
  margin-bottom: 2em;
}

/* 見出し: 章頭を強く区切る(上余白大・下は近接)+行の均等化 */
.single-content h2 {
  margin-top: 3.2em;
  word-break: keep-all;
}

.single-content .lead + h2 {
  margin-top: 2em;
}

.single-content h3 {
  margin-top: 2.4em;
  word-break: keep-all;
}

.single-content :is(h2, h3)[id] {
  scroll-margin-top: 88px;
}

/* 大きい和文だけ約物を詰める(palt)。本文(小サイズ)はベタ組み維持 */
.single-content h2,
.single-content h3,
.single-content .lead,
.single-content blockquote.pull p {
  font-feature-settings: "palt" 1;
}

/* 強調: 本文400化に合わせ700へ(copperマーカー主体) */
.single-content strong {
  font-weight: 700;
}

/* リスト: 項目間 > 行間 で塊を分離 */
.single-content li {
  margin: 0 0 0.7em;
  line-height: 1.8;
}

/* 図版: 本文から十分に離す。キャプションは和文フォントで近接 */
.single-content figure {
  margin: 2.6em 0;
}

.single-content figcaption {
  margin-top: 10px;
  color: #4f574f;
  font-family: inherit;
}

/* プルクオート: 大きい文字を密に */
.single-content blockquote.pull p {
  line-height: 1.55;
}

/* 本文中リンク: 色依存をやめ下線で識別(WCAG 1.4.1)。太さは控えめに */
.single-content p a,
.single-content li a {
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.single-content p a:hover,
.single-content li a:hover {
  text-decoration-color: #8a5a38;
  text-decoration-thickness: 2px;
}

.single-content a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
  border-radius: 2px;
}

.single-content a:focus:not(:focus-visible) {
  outline: none;
}

/* SP: 本文を少し大きく・短い行に合わせ行送りを詰める */
@media (max-width: 899px) {
  .single-content {
    font-size: 16.5px;
    line-height: 1.85;
  }
}

/* === SP: 連続アニメ/重いfilterを停止しメモリ負荷を下げる(iOS Safariのタブ自動リロード対策) === */
/* body::before(方眼) / body::after(ambient) の全画面fixed無限アニメ、コラージュのfloat+drop-shadowを停止 */
@media (max-width: 899px) {
  body::before,
  body::after {
    animation: none;
  }
  .image-collage img {
    animation: none;
    filter: none;
  }
}

/* === Note記事 SP: 図版を少し外側へ広げる === */
@media (max-width: 899px) {
  .single-content figure {
    margin-left: -8px;
    margin-right: -8px;
  }
}

/* === Note記事 PC: 本文を広げ、図版とアイキャッチを外側へ張り出して右の余白を詰める === */
@media (min-width: 900px) {
  .single-content figure,
  .single-thumb {
    width: min(960px, calc(100vw - 120px));
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

/* === SP: サービス機能チップを全幅にして右側の不自然な空きをなくす === */
@media (max-width: 899px) {
  .service-points {
    flex-direction: column;
  }
  .service-points li {
    width: 100%;
  }
}

/* === 画像タップ拡大(lightbox)。記事本文の図版のみ === */
.single-content figure img {
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: rgba(17, 19, 15, 0.93);
  cursor: zoom-out;
}
.lightbox.is-open {
  display: flex;
}
.lightbox img {
  max-width: 100%;
  max-height: 92%;
  width: auto;
  height: auto;
  border: 1px solid rgba(250, 246, 237, 0.18);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.55);
  touch-action: pinch-zoom;
}
.lightbox__close {
  position: absolute;
  top: 12px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(250, 246, 237, 0.4);
  background: rgba(17, 19, 15, 0.45);
  color: #faf6ed;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.lightbox__hint {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  margin: 0;
  color: rgba(250, 246, 237, 0.78);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}
