/* ==========================================
   H- creative solution — v3
   Decorative Minimal / White × Black
   ========================================== */

/* ---------- Variables ---------- */
:root {
  --white:  #ffffff;
  --black:  #0a0a0a;
  --gray:   #888888;
  --gray2:  #555555;
  --light:  #f7f7f7;
  --border: #e2e2e2;
  --border-dark: #222;

  --font-en:    'Inter', sans-serif;
  --font-ja:    'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;

  --nav-h: 64px;
  --max-w: 980px;
  --sp:    clamp(80px, 11vw, 148px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
html,
body {
  max-width: 100%;
  overflow-x: clip;
}
body {
  font-family: var(--font-ja);
  color: var(--black);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 52px);
}

/* ---------- Scroll fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in.in { opacity: 1; transform: translateY(0); }

/* ==========================================
   NAV
   ========================================== */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255,255,255,0);
  transition: background .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.96);
  border-color: var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav__inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: .80rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--black);
}
.nav__logo svg,
.footer__logo svg,
.about-logomark svg {
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  gap: clamp(18px, 3vw, 32px);
}
.nav__links a {
  font-family: var(--font-en);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s;
}
.nav__links a:hover { color: var(--black); }
.nav__top-link { display: none; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  width: 24px;
  padding: 2px 0;
}
.nav__hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--black);
  transition: all .3s;
  transform-origin: center;
}
.nav__hamburger.open span:first-child { transform: translateY(8.5px) rotate(45deg); }
.nav__hamburger.open span:last-child  { transform: translateY(-8.5px) rotate(-45deg); }

@media (max-width: 680px) {
  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h); right: 0;
    width: min(78vw, 300px);
    height: calc(100dvh - var(--nav-h));
    background: var(--white);
    border-left: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 32px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform .35s ease;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: .9rem; color: var(--black); }
  .nav__top-link { display: block; }
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Decorative giant "H" */
.hero__bg-text {
  position: absolute;
  top: 50%;
  right: -13vw;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: clamp(360px, 52vw, 720px);
  font-weight: 900;
  line-height: 1;
  color: rgba(0,0,0,0.018);
  -webkit-text-stroke: 1.5px #d8d8d8;
  user-select: none;
  pointer-events: none;
  letter-spacing: -.05em;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: clamp(80px, 12vw, 140px);
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeUp .8s .1s both;
}
.hero__tag {
  font-family: var(--font-en);
  font-size: .70rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero__divider {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--border);
}

.hero__title {
  max-width: 820px;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -.02em;
  white-space: normal;
  overflow: visible;
  margin-bottom: 28px;
  animation: fadeUp .8s .25s both;
}
.hero__title span {
  display: block;
  white-space: nowrap;
}
.hero__title-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -.01em;
  display: inline-block;
  border-bottom: 2px solid var(--black);
  padding-bottom: 2px;
}

.hero__desc {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--gray2);
  line-height: 1.9;
  margin-bottom: 16px;
  animation: fadeUp .8s .4s both;
}
.hero__desc2 {
  font-size: clamp(.82rem, 1.4vw, .92rem);
  color: var(--gray);
  line-height: 2;
  margin-bottom: 34px;
  animation: fadeUp .8s .5s both;
}
.hero__watercolor {
  width: min(100%, 250px);
  position: static;
  background: #fbfaf4;
  border: 1px solid #e8e2d7;
  padding: 10px;
  margin: 0 0 34px;
  animation: fadeUp .8s .48s both;
}
.hero__watercolor img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: fadeUp .8s .55s both;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
  animation: fadeUp .8s .65s both;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat-num {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--black);
}
.hero__stat-num small {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.hero__stat-label {
  font-family: var(--font-ja);
  font-size: .68rem;
  color: var(--gray);
  letter-spacing: .04em;
}
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 32px 0 0;
  flex-shrink: 0;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 4px;
  transition: opacity .2s, gap .2s;
}
.hero__cta:hover { opacity: .45; gap: 16px; }
.hero__cta--sub {
  font-family: var(--font-ja);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-color: var(--border);
  color: var(--gray);
}
.hero__cta--sub:hover { opacity: .6; gap: 10px; }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: clamp(32px, 6vw, 56px);
  right: clamp(24px, 5vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeUp .8s .8s both;
}
.hero__scroll span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--gray));
  animation: scrollLine 2s ease-in-out infinite;
}
.hero__scroll small {
  font-family: var(--font-en);
  font-size: .60rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--gray);
  writing-mode: vertical-rl;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   INTRO STRIP
   ========================================== */
.intro-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  background: var(--light);
}
.intro-strip__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.intro-strip__track:hover { animation-play-state: paused; }
.intro-strip__text {
  font-family: var(--font-en);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--gray2);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================
   SECTION COMMON
   ========================================== */
.section {
  padding: var(--sp) 0;
  border-top: 1px solid var(--border);
}
.section--dark {
  background: var(--black);
  color: var(--white);
  border-top: none;
}

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(48px, 8vw, 96px);
  flex-wrap: wrap;
}
.sec-head__left { }
.sec-head__en {
  display: block;
  font-family: var(--font-en);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.sec-head--light .sec-head__en { color: #666; }
.sec-head__ja {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.sec-head--light .sec-head__ja { color: var(--white); }
.sec-head__desc {
  font-size: clamp(.80rem, 1.4vw, .92rem);
  color: var(--gray);
  line-height: 1.9;
  max-width: 360px;
  text-align: left;
}
.sec-head__desc--light { color: #666; }
@media (min-width: 901px) {
  .sec-head--services {
    flex-wrap: nowrap;
  }
  .sec-head--services .sec-head__desc {
    max-width: none;
    white-space: nowrap;
  }
}

/* ==========================================
   SERVICES
   ========================================== */
.service-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 36px;
}
.service-summary__item {
  border: 1px solid var(--border);
  background: #fafafa;
  padding: 28px 26px;
}
.service-summary__label {
  display: inline-block;
  font-family: var(--font-ja);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--black);
  border: 1px solid var(--black);
  background: #fff;
  padding: 3px 9px;
  margin-bottom: 18px;
}
.service-summary__item h3 {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
}
.service-summary__item p:last-child {
  font-size: .86rem;
  color: var(--gray2);
  line-height: 1.85;
}
.service-list { }
.service-list__item {
  display: grid;
  grid-template-columns: 48px 132px 1fr 24px;
  align-items: center;
  gap: 0 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.service-list__item:first-child { border-top: 1px solid var(--border); }

.service-list__num {
  font-family: var(--font-en);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gray);
  align-self: flex-start;
  padding-top: 4px;
}
.service-list__body { }
.service-list__illust {
  width: 132px;
  aspect-ratio: 1;
  object-fit: contain;
  background: #fbfaf4;
  border: 1px solid #e8e2d7;
  opacity: .9;
}
.service-list__name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.service-list__desc {
  font-size: .855rem;
  color: var(--gray2);
  line-height: 1.85;
}
.service-list__arrow {
  color: var(--border);
  flex-shrink: 0;
  transition: color .2s, transform .2s;
}
.service-list__item:hover .service-list__arrow {
  color: var(--black);
  transform: translateX(4px);
}

@media (min-width: 901px) {
  .service-list--two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .service-list--two-col .service-list__item,
  .service-list--two-col .service-list__item:first-child {
    grid-template-columns: 36px 118px minmax(0, 1fr);
    gap: 0 20px;
    align-items: start;
    min-height: 216px;
    padding: 24px;
    border: 1px solid var(--border);
    background: var(--white);
  }
  .service-list--two-col .service-list__item:nth-child(11) {
    grid-column: 1 / -1;
    grid-template-columns: 36px 140px minmax(0, 1fr);
    min-height: 180px;
  }
  .service-list--two-col .service-list__illust {
    width: 118px;
  }
  .service-list--two-col .service-list__item:nth-child(11) .service-list__illust {
    width: 140px;
  }
  .service-list--two-col .service-list__arrow {
    display: none;
  }
}

@media (max-width: 680px) {
  .service-summary {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }
  .service-summary__item {
    padding: 22px 20px;
  }
  .service-list__item {
    grid-template-columns: 36px 92px 1fr;
    gap: 0 16px;
    align-items: start;
  }
  .service-list__illust {
    width: 92px;
  }
  .service-list__arrow {
    display: none;
  }
  .service-list--mobile-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .service-list--mobile-two-col .service-list__item,
  .service-list--mobile-two-col .service-list__item:first-child {
    display: block;
    padding: 14px;
    border: 1px solid var(--border);
    background: var(--white);
  }
  .service-list--mobile-two-col .service-list__num {
    display: block;
    margin-bottom: 10px;
    padding-top: 0;
  }
  .service-list--mobile-two-col .service-list__illust {
    width: 100%;
    margin-bottom: 12px;
  }
  .service-list--mobile-two-col .service-list__name {
    font-size: .9rem;
    line-height: 1.45;
    margin-bottom: 8px;
  }
  .service-list--mobile-two-col .service-list__desc {
    display: block;
    font-size: .72rem;
    line-height: 1.75;
  }
  .service-list--mobile-two-col .service-list__item:nth-child(11) {
    grid-column: 1 / -1;
    display: block;
    padding: 16px;
  }
  .service-list--mobile-two-col .service-list__item:nth-child(11) .service-list__num {
    display: block;
    margin-bottom: 12px;
  }
  .service-list--mobile-two-col .service-list__item:nth-child(11) .service-list__illust {
    width: calc((100% - 38px) / 2);
    margin-bottom: 18px;
  }
  .service-list--mobile-two-col .service-list__item:nth-child(11) .service-list__body {
    min-width: 0;
  }
  .service-list--mobile-two-col .service-list__item:nth-child(11) .service-list__name {
    font-size: 1.05rem;
    line-height: 1.45;
    margin-bottom: 10px;
  }
  .service-list--mobile-two-col .service-list__item:nth-child(11) .service-list__desc {
    font-size: .82rem;
    line-height: 1.9;
  }
}

.fp-focus {
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--border);
  margin: 56px 0 0;
  padding: 44px 0;
}
.fp-focus__header {
  max-width: 760px;
  margin-bottom: 28px;
}
.fp-focus__header h2 {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.45;
  letter-spacing: 0;
  margin: 10px 0 18px;
}
.fp-focus__header p,
.fp-focus__body p {
  font-size: .95rem;
  line-height: 2;
  color: var(--gray2);
}
.fp-focus__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border);
  margin: 30px 0 32px;
}
.fp-focus__stats div {
  padding: 24px 22px;
  border-left: 1px solid var(--border);
}
.fp-focus__stats div:first-child {
  border-left: 0;
}
.fp-focus__stats strong {
  display: block;
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 8px;
}
.fp-focus__stats span {
  display: block;
  font-size: .82rem;
  line-height: 1.8;
  color: var(--gray);
}
.fp-focus__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
}
.fp-focus__body h3 {
  font-size: .98rem;
  line-height: 1.5;
  margin-bottom: 14px;
}
.fp-focus__body ul {
  display: grid;
  gap: 8px;
}
.fp-focus__body li {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--gray2);
  border-top: 1px solid var(--border);
  padding-top: 8px;
}

@media (max-width: 760px) {
  .fp-focus {
    margin-top: 38px;
    padding: 34px 0;
  }
  .fp-focus__stats,
  .fp-focus__body {
    grid-template-columns: 1fr;
  }
  .fp-focus__stats div {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .fp-focus__stats div:first-child {
    border-top: 0;
  }
}

/* ==========================================
   COMMIT BANNER
   ========================================== */
.commit-banner {
  background: var(--black);
  color: var(--white);
  padding: clamp(40px, 6vw, 72px) 0;
  text-align: center;
}
.commit-banner__text {
  font-size: clamp(.92rem, 2vw, 1.15rem);
  line-height: 2;
  letter-spacing: .02em;
}
.commit-banner__text em {
  font-style: normal;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 1px;
}
.commit-banner__statement {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: clamp(28px, 5vw, 72px);
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px) 0 clamp(6px, 1.5vw, 14px);
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
  align-items: start;
}
.commit-banner__statement-label {
  font-family: var(--font-en);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.34);
  padding-top: .65em;
}
.commit-banner__statement-main {
  font-family: var(--font-serif);
  font-size: clamp(1.65rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .01em;
  color: var(--white);
  margin-bottom: clamp(18px, 3vw, 28px);
}
.commit-banner__statement-main span {
  display: block;
}
.commit-banner__statement-em {
  display: inline-block;
  width: fit-content;
  padding-bottom: .08em;
  border-bottom: 1px solid rgba(255,255,255,.58);
}
.commit-banner__statement-text {
  max-width: 680px;
  font-size: clamp(.96rem, 1.5vw, 1.08rem);
  font-weight: 700;
  line-height: 1.9;
  color: rgba(255,255,255,.78);
  letter-spacing: .02em;
}
/* Philosophy 9-item grid: 3col → 2col → 1col */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1020px;
  margin: 0 auto 64px;
  background: rgba(255,255,255,.08);
}
@media (max-width: 860px) {
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .commit-banner__statement {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .commit-banner__statement-label {
    padding-top: 0;
  }
}
@media (max-width: 540px) {
  .philosophy-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   STRENGTHS
   ========================================== */
.strength-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.strength-item {
  background: var(--light);
  padding: clamp(32px, 5vw, 56px);
}
.strength-item__illust {
  width: 118px;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  background: #f5f0e8;
  border: 1px solid #222;
  margin-bottom: 26px;
  opacity: .94;
}
.strength-item__num {
  font-family: var(--font-en);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--gray);
  margin-bottom: 24px;
}
.strength-item__title {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 16px;
  color: var(--black);
}
.strength-item__desc {
  font-size: .855rem;
  color: var(--gray2);
  line-height: 1.9;
}
.strength-page-intro {
  display: grid;
  grid-template-columns: minmax(420px, .85fr) minmax(360px, .75fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 86px);
}
.strength-page-intro__lead {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.75;
  max-width: 18em;
}
.strength-page-intro__text {
  color: var(--gray2);
  line-height: 2;
  font-size: .92rem;
  max-width: 620px;
  padding-top: clamp(20px, 3vw, 42px);
}
.strength-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  margin-bottom: clamp(48px, 7vw, 86px);
}
.strength-proof__item {
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--border);
  background: var(--white);
}
.strength-proof__item:last-child { border-right: 0; }
.strength-proof__num {
  display: flex;
  align-items: baseline;
  gap: .04em;
  font-family: var(--font-en);
  font-size: clamp(1.85rem, 3.25vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 10px;
  white-space: nowrap;
}
.strength-proof__num small {
  font-size: .42em;
  font-weight: 800;
  letter-spacing: -.02em;
}
.strength-proof__label {
  font-size: .78rem;
  color: var(--gray);
  line-height: 1.7;
}
.strength-item__tag {
  display: inline-block;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-en);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--gray);
  text-transform: uppercase;
}

@media (max-width: 580px) {
  .strength-grid { grid-template-columns: 1fr; }
  .strength-page-intro,
  .strength-proof {
    grid-template-columns: 1fr;
  }
  .strength-proof__item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .strength-proof__item:last-child { border-bottom: 0; }
}

/* ==========================================
   ABOUT
   ========================================== */
.about-body { }
.about-main {
  max-width: 660px;
  margin-bottom: 56px;
}
.about-lead {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.9;
  margin-bottom: 24px;
  letter-spacing: .01em;
}
.about-text {
  font-size: clamp(.88rem, 1.5vw, .98rem);
  color: var(--gray2);
  line-height: 2.1;
}
.about-meta { max-width: 560px; }
.about-meta__row {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.about-meta__row:first-child { border-top: 1px solid var(--border); }
.about-meta dt {
  font-family: var(--font-en);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray);
  min-width: 76px;
  flex-shrink: 0;
}
.about-meta dd {
  font-size: .92rem;
  font-weight: 500;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px,3vw,28px);
}
.testimonial-card {
  background: var(--light);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.testimonial-card__client {
  display: grid;
  grid-template-columns: 176px 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
}
.testimonial-card__avatar {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  background: #fbfaf4;
  object-fit: contain;
  object-position: center;
  border-right: 1px solid #e2ded6;
}
.testimonial-card__quote {
  font-size: .95rem;
  line-height: 2;
  color: var(--gray2);
  position: relative;
  padding: clamp(30px,3.5vw,40px) clamp(34px,4vw,46px) clamp(34px,4vw,46px);
}
.testimonial-card__quote::before {
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--border);
  display: block;
  margin-bottom: 6px;
}
.testimonial-card__author {
  font-family: var(--font-en);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--black);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-self: center;
  padding: 28px clamp(24px,3vw,34px);
}
.testimonial-card__author span {
  font-weight: 400;
  color: var(--gray);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
@media (max-width: 680px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card__client { grid-template-columns: 112px 1fr; }
  .testimonial-card__avatar {
    height: auto;
  }
  .testimonial-card__author {
    padding: 22px;
  }
  .testimonial-card__quote {
    padding: 28px;
  }
}

/* ==========================================
   TRUST / ASSURANCE
   ========================================== */
.trust-panel {
  border: 1px solid var(--border);
  background: #fafafa;
  padding: clamp(28px, 5vw, 48px);
  margin-top: clamp(48px, 7vw, 80px);
}
.trust-panel__head {
  display: grid;
  grid-template-columns: minmax(300px, .3fr) minmax(0, 1fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 44px);
}
.trust-panel__title {
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.55;
  max-width: 18em;
}
.trust-panel__title span {
  display: block;
  white-space: nowrap;
}
.trust-panel__lead {
  font-size: .88rem;
  line-height: 1.95;
  color: var(--gray2);
  max-width: 980px;
}
.trust-panel__illust {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  margin: 0;
  background: #fbfaf4;
  border: 1px solid #e8e2d7;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.trust-item {
  background: var(--white);
  min-height: 176px;
  padding: clamp(28px, 3.2vw, 40px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-item__num {
  font-family: var(--font-en);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gray);
  margin-bottom: 16px;
}
.trust-item__title {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 14px;
  letter-spacing: -.015em;
}
.trust-item__text {
  font-size: .88rem;
  line-height: 1.95;
  color: var(--gray2);
  max-width: 24em;
}
.assurance-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: clamp(48px, 7vw, 72px);
}
.assurance-item {
  background: var(--white);
  padding: clamp(28px, 4vw, 40px);
}
.assurance-item__label {
  font-family: var(--font-en);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gray);
  margin-bottom: 18px;
}
.assurance-item__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.55;
}
.assurance-item__text {
  font-size: .84rem;
  line-height: 1.95;
  color: var(--gray2);
}
.contact-guide {
  max-width: 980px;
  margin: 56px auto 0;
  text-align: left;
  border: 1px solid var(--border);
  background: #fafafa;
  padding: clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.contact-guide__illust {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  background: #fbfaf4;
  border: 1px solid #e8e2d7;
  margin: 0;
}
.contact-guide__content {
  padding-top: 2px;
}
.contact-guide__title {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.65;
}
.contact-guide__text {
  font-size: clamp(.9rem, 1.2vw, .98rem);
  color: var(--gray2);
  line-height: 1.9;
  margin-bottom: 28px;
}
.contact-guide__list {
  display: grid;
  gap: 12px;
}
.contact-guide__list li {
  font-size: clamp(.9rem, 1.15vw, .96rem);
  color: var(--gray2);
  line-height: 1.8;
  padding-left: 1.2em;
  position: relative;
}
.contact-guide__list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--black);
  position: absolute;
  left: 0;
  top: .78em;
}
.contact-guide--simple {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-top: 34px;
  margin-bottom: 34px;
  padding: clamp(24px, 4vw, 38px);
}
.contact-guide--simple .contact-guide__text {
  margin-bottom: 22px;
}
@media (max-width: 860px) {
  .trust-panel__head { grid-template-columns: 1fr; }
  .trust-panel__illust { max-width: 260px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .assurance-list { grid-template-columns: 1fr; }
  .flow__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-guide {
    grid-template-columns: 1fr;
  }
  .contact-guide__illust {
    grid-column: auto;
    grid-row: auto;
    width: min(100%, 260px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
  .flow__steps { grid-template-columns: 1fr; }
}

/* ==========================================
   FAQ
   ========================================== */
.section--faq {
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.faq-item {
  background: var(--white);
  padding: clamp(28px, 3.5vw, 42px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-item__question {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 14px;
  letter-spacing: -.015em;
}
.faq-item__answer {
  font-size: .88rem;
  line-height: 1.95;
  color: var(--gray2);
}
@media (max-width: 760px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ==========================================
   CONTACT
   ========================================== */
.section--contact {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: var(--sp) 0;
}
.contact-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 8px;
  line-height: 1.15;
}
.contact-desc {
  font-size: clamp(.84rem, 1.5vw, .98rem);
  color: var(--gray);
  line-height: 2.1;
  margin-bottom: 28px;
  margin-top: 20px;
}
.contact-illust {
  width: min(100%, 250px);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 38px;
  background: #fbfaf4;
  border: 1px solid #e8e2d7;
}
.page-hero--contact .container {
  max-width: 760px;
  text-align: left;
}
.page-hero--contact .page-hero__desc {
  margin-left: 0;
  margin-right: 0;
}
.page-hero--contact .page-hero__illust {
  width: 100%;
  max-width: 320px;
  margin: 0;
}
.contact-panel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 28px 34px;
  min-width: min(100%, 520px);
}
.contact-address {
  font-family: var(--font-en);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--black);
  line-height: 1.4;
  user-select: text;
  overflow-wrap: anywhere;
}
.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  background: var(--black);
  color: var(--white);
  min-height: 46px;
  padding: 0 22px;
  transition: opacity .2s, gap .2s, background .2s, color .2s;
}
.contact-copy {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  min-height: 46px;
  padding: 0 22px;
  font: inherit;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.contact-btn:hover {
  opacity: .8;
  gap: 16px;
}
.contact-copy:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.contact-note {
  font-size: .78rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 44px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-en);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
}
.footer__nav {
  display: flex;
  gap: 28px;
}
.footer__nav a {
  font-family: var(--font-en);
  font-size: .70rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color .2s;
}
.footer__nav a:hover { color: var(--black); }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  width: 100%;
}
.footer__legal a {
  font-size: .72rem;
  color: var(--gray);
  letter-spacing: .04em;
  transition: color .2s;
}
.footer__legal a:hover { color: var(--black); }
.footer__copy {
  width: 100%;
  font-size: .70rem;
  color: #bbb;
  font-family: var(--font-en);
  letter-spacing: .06em;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

/* ==========================================
   CONCEPT / SKILL COMBINATION
   ========================================== */
.section--concept { }
.concept-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 96px);
  align-items: center;
}
.concept-text .sec-head__en { margin-bottom: 12px; }
.concept-title {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.35;
  margin-bottom: 28px;
}
.concept-desc {
  font-size: clamp(.84rem, 1.4vw, .95rem);
  color: var(--gray2);
  line-height: 2.1;
}
.concept-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.skill-diagram {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* ==========================================
   SERVICE FLOW
   ========================================== */
.flow {
  margin-top: clamp(48px, 7vw, 80px);
  padding-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid var(--border);
}
.flow__heading {
  margin-bottom: 40px;
}
.flow__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.flow--services .flow__steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flow__step {
  min-height: 210px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.flow__num {
  font-family: var(--font-en);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--gray);
  margin-bottom: 22px;
}
.flow__icon {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--black);
  flex-shrink: 0;
}
.flow__name {
  font-size: clamp(.98rem, 1.35vw, 1.08rem);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -.01em;
  line-height: 1.45;
}
.flow__desc {
  font-size: .86rem;
  color: var(--gray2);
  line-height: 1.9;
}
.flow__connector {
  padding-top: 40px;
  color: var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 860px) {
  .flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flow--services .flow__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .flow__steps {
    grid-template-columns: 1fr;
  }
  .flow--services .flow__steps {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ABOUT STATS
   ========================================== */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  margin-top: clamp(34px, 5vw, 64px);
  margin-bottom: clamp(48px, 7vw, 80px);
}
.about-stat {
  padding: clamp(24px, 4vw, 40px) clamp(16px, 3vw, 28px);
  border-right: 1px solid var(--border);
  text-align: center;
}
.about-stat:last-child { border-right: none; }
.about-stat__num {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.about-stat__num small {
  font-size: clamp(.9rem, 1.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -.02em;
}
.about-stat__label {
  font-size: .74rem;
  color: var(--gray);
  line-height: 1.55;
  letter-spacing: .01em;
}

/* ==========================================
   ABOUT LOGO MARK
   ========================================== */
.about-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.about-logomark img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}
.about-content {
  display: flex;
  flex-direction: column;
}
.about-main {
  margin-bottom: 40px;
}
.about-meta { max-width: 100%; }

/* ==========================================
   BLOG ARTICLE COMPONENTS
   ========================================== */
.article-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--black);
}
.article-body blockquote {
  border-left: 3px solid var(--black);
  margin: 36px 0;
  padding: 4px 0 4px 24px;
}
.article-body blockquote p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--black);
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0;
  line-height: 1.9;
}
.article-body ul:not(.article-resources) {
  padding-left: 0;
  margin-bottom: 28px;
  list-style: none;
}
.article-body ul:not(.article-resources) li {
  font-size: 1rem;
  line-height: 2;
  color: var(--gray2);
  margin-bottom: 4px;
  padding-left: 1.2em;
  position: relative;
}
.article-body ul:not(.article-resources) li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gray);
}
.article-body .action-box {
  background: var(--light);
  border-left: 3px solid var(--black);
  padding: 28px 32px;
  margin: 40px 0;
}
.article-body .action-box p {
  margin-bottom: 12px;
  font-size: .95rem;
}
.article-body .action-box p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 900px) {
  .concept-layout { grid-template-columns: 1fr; }
  .concept-visual { display: none; } /* hide diagram on small screens, text is enough */
}

@media (max-width: 680px) {
  .hero__title {
    max-width: min(100%, 360px);
    white-space: normal !important;
    font-size: clamp(1.42rem, 6.1vw, 1.62rem);
    line-height: 1.52;
    overflow-wrap: normal;
  }
  .hero__title span { display: block; white-space: normal; }
  .hero__desc,
  .hero__desc2 {
    max-width: min(100%, 340px);
    overflow-wrap: anywhere;
  }
  .hero__bg-text {
    top: 34%;
    font-size: 58vw;
    right: auto;
    left: 64%;
    transform: translate(-50%, -50%);
    color: rgba(0,0,0,0.045);
    -webkit-text-stroke-width: 0;
  }
  .hero__actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero__stats { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .hero__stat { padding: 0; }
  .hero__stat-num { font-size: 1.6rem; }
  .hero__stat-divider { display: none; }
  .intro-strip { padding: 10px 0; }
  .intro-strip__text { font-size: .6rem; letter-spacing: .06em; }
  .hero__scroll { display: none; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .sec-head__desc { text-align: left; max-width: 100%; }
  .hero__watercolor {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 240px);
    margin: 0 0 34px;
  }
  .service-list__item { grid-template-columns: 40px 96px 1fr; gap: 0 18px; }
  .service-list__arrow { display: none; }
  .section--contact { text-align: left; }
  .page-hero--contact .container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }
  .page-hero--contact .page-hero__desc {
    margin-left: 0;
    margin-right: 0;
  }
  .page-hero--contact .page-hero__illust {
    width: min(100%, 260px);
    margin: 0 auto;
  }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
    width: 100%;
    max-width: 100%;
  }
  .footer__nav a {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .footer__copy { text-align: left; }

  /* Flow: compact stack on mobile */
  .flow__step { min-height: auto; padding: 24px; }

  /* Stats: 2×2 grid */
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stat:nth-child(2) { border-right: none; }
  .about-stat:nth-child(3) { border-top: 1px solid var(--border); }
  .about-stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  /* About: stack logo below text */
  .about-body { grid-template-columns: 1fr; }
  .about-logomark { display: none; } /* hide on mobile for space */
  .about-inline-illust {
    margin-left: 0;
  }
  .contact-guide__illust {
    width: min(100%, 260px);
    margin-left: auto;
    margin-right: auto;
  }
}

/* ==========================================
   INNER PAGE HERO
   ========================================== */
.page-hero {
  padding: 140px 0 64px;
  margin-bottom: 56px;
}
.page-hero__en {
  display: block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.page-hero__desc {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--gray2);
  line-height: 1.8;
  max-width: 600px;
}
.page-hero__illust {
  width: min(100%, 260px);
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  background: #fbfaf4;
  border: 1px solid #e8e2d7;
  margin-top: 34px;
}
.about-inline-illust {
  width: min(100%, 320px);
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #fbfaf4;
  border: 1px solid #e8e2d7;
  margin: 0 0 34px auto;
}

/* ==========================================
   BLOG
   ========================================== */
.section--featured-articles {
  background: #fafafa;
}
@media (min-width: 901px) {
  .sec-head--featured-articles {
    flex-wrap: nowrap;
  }
  .sec-head--featured-articles .sec-head__desc {
    max-width: none;
    white-space: nowrap;
  }
}
.featured-article-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.featured-article-card {
  display: flex;
  min-height: 258px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 30px 28px;
  border: 1px solid var(--border);
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: border-color .2s, opacity .2s, transform .2s;
}
.featured-article-card:hover {
  border-color: var(--black);
  opacity: .82;
  transform: translateY(-2px);
}
.featured-article-card__label {
  display: inline-block;
  align-self: flex-start;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--white);
  background: var(--black);
  padding: 3px 9px;
  margin-bottom: 18px;
}
.featured-article-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.featured-article-card__labels .featured-article-card__label {
  margin-bottom: 0;
}
.featured-article-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.65;
  margin-bottom: 12px;
}
.featured-article-card p {
  font-size: .86rem;
  color: var(--gray2);
  line-height: 1.85;
  margin-top: auto;
}
.blog-list { display: grid; gap: 0; }
.blog-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
  align-items: start;
}
.blog-card:first-child { border-top: 1px solid var(--border); }
.blog-card:hover { opacity: .55; }
.blog-card__date {
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .05em;
  color: var(--gray);
  padding-top: 2px;
}
.blog-card__cat {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 2px 8px;
  margin-bottom: 10px;
}
.blog-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 8px;
}
.blog-card__excerpt {
  font-size: .88rem;
  color: var(--gray2);
  line-height: 1.75;
}
.article-related {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  margin: 56px 0 12px;
}
.article-body .article-related {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  margin: 56px 0 12px;
}
.article-related__title {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}
.article-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.article-body .article-related ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.article-related li {
  padding-left: 0;
  margin-bottom: 10px;
}
.article-body .article-related li {
  padding-left: 0;
  margin-bottom: 10px;
}
.article-related li::before,
.article-body .article-related li::before { content: none; }
.article-related a {
  font-size: .95rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.article-related__profile {
  display: inline-block;
  margin-top: 14px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==========================================
   FP LANDING PAGE
   ========================================== */
.fp-lp {
  --fp-blue: #0b4f96;
  --fp-blue-deep: #06376f;
  --fp-sky: #eaf7ff;
  --fp-aqua: #35b8d4;
  --fp-green: #35a66a;
  --fp-ink: #08315f;
  --fp-text: #28445f;
  --fp-soft: #f4fbff;
  color: var(--fp-text);
  background: #f7fcff;
}
.fp-lp .nav {
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.fp-lp .nav__inner {
  max-width: 1180px;
}
.fp-lp .nav__logo {
  color: var(--fp-blue-deep);
}
.fp-lp .nav__links a {
  color: rgba(8,49,95,.72);
  font-weight: 700;
  letter-spacing: .08em;
}
.fp-lp .nav__links a:hover {
  color: var(--fp-blue);
}
.fp-lp .nav__links .fp-nav-cta {
  color: var(--white);
  background: var(--fp-blue);
  border-radius: 999px;
  padding: 10px 20px;
  margin-top: -10px;
}
.fp-page {
  background: #f7fcff;
}
.fp-kicker {
  font-family: var(--font-en);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fp-aqua);
}
.fp-hero {
  position: relative;
  min-height: calc(100dvh - var(--nav-h));
  margin-top: var(--nav-h);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  color: var(--white);
  background: var(--fp-blue);
}
.fp-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/fp/fp-hero-coast.jpg");
  background-size: cover;
  background-position: center bottom;
  transform: scale(1.01);
}
.fp-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,49,93,.74) 0%, rgba(7,72,122,.43) 43%, rgba(10,91,145,.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08) 0%, rgba(10,88,143,.05) 58%, rgba(5,56,103,.45) 100%);
}
.fp-hero__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(42px, 6vh, 72px) clamp(24px,5vw,52px) 184px;
}
.fp-hero__content {
  width: min(100%, 680px);
  padding-top: 0;
}
.fp-hero__title {
  margin: 18px 0 18px;
  color: var(--white);
  font-size: clamp(2.3rem, 4.25vw, 4.05rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: .02em;
  text-shadow: 0 3px 22px rgba(0,47,96,.22);
}
.fp-hero__title span {
  display: block;
}
.fp-hero__line {
  width: 72px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--white);
}
.fp-hero__lead {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.06rem, 2vw, 1.32rem);
  font-weight: 800;
  line-height: 1.65;
  letter-spacing: .04em;
}
.fp-hero__text {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255,255,255,.9);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.9;
  text-shadow: 0 2px 18px rgba(0,47,96,.18);
}
.fp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .06em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.fp-btn:hover {
  opacity: .9;
  transform: translateY(-2px);
}
.fp-btn--primary {
  color: var(--fp-blue-deep);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(6,55,111,.2);
}
.fp-btn--text {
  color: var(--fp-blue);
  background: transparent;
  border-color: rgba(11,79,150,.28);
}
.fp-hero__badges {
  position: absolute;
  left: clamp(24px,5vw,52px);
  bottom: 96px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(760px, calc(100vw - 48px));
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 60px rgba(8,49,95,.18);
  backdrop-filter: blur(10px);
}
.fp-hero__badges div {
  display: grid;
  gap: 6px;
  padding: 18px 24px;
  color: var(--fp-ink);
}
.fp-hero__badges div + div {
  border-left: 1px solid rgba(8,49,95,.12);
}
.fp-hero__badges strong {
  color: var(--fp-blue);
  font-size: 1.02rem;
  line-height: 1.3;
}
.fp-hero__badges span {
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.6;
  color: rgba(8,49,95,.72);
}
.fp-hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 54px);
  min-height: 72px;
  padding: 12px 24px;
  color: var(--white);
  background: rgba(6,55,111,.92);
}
.fp-hero__bottom span {
  font-weight: 800;
  letter-spacing: .08em;
}
.fp-hero__bottom a {
  min-width: 280px;
  padding: 10px 22px;
  color: var(--fp-blue-deep);
  background: var(--white);
  border-radius: 999px;
  text-align: center;
  font-weight: 800;
  font-size: .88rem;
}
.fp-section {
  padding: clamp(78px, 10vw, 122px) 0;
}
.fp-section--intro {
  background: linear-gradient(180deg, #f7fcff 0%, #fff 100%);
}
.fp-section--light {
  background: #f6fbfe;
}
.fp-section--blue {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6,55,111,.96), rgba(12,107,167,.9)),
    url("assets/fp/fp-hero-coast.jpg") center / cover;
  background-blend-mode: multiply;
}
.fp-message {
  max-width: 960px;
  margin: 0;
  text-align: left;
}
.fp-message h2,
.fp-sec-head h2,
.fp-cta__box h2 {
  color: var(--fp-ink);
  font-size: clamp(1.8rem, 3.8vw, 3.1rem);
  line-height: 1.45;
  letter-spacing: .01em;
}
.fp-message h2 {
  max-width: 880px;
  margin: 18px 0 22px;
}
.fp-message p:not(.fp-kicker) {
  max-width: 820px;
}
.fp-message p,
.fp-sec-head p,
.fp-cta__box p {
  color: var(--fp-text);
  line-height: 2.05;
}
.fp-sec-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 44px;
}
.fp-sec-head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.fp-sec-head--problem {
  max-width: 860px;
  margin-bottom: 56px;
}
.fp-sec-head--problem h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: 1.35;
  letter-spacing: .02em;
}
.fp-sec-head--problem p {
  max-width: 560px;
}
.fp-sec-head span {
  font-family: var(--font-en);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fp-aqua);
}
.fp-sec-head--light h2,
.fp-sec-head--light p,
.fp-sec-head--light span {
  color: var(--white);
}
.fp-service-grid,
.fp-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.fp-service-card,
.fp-strength-card {
  min-height: 172px;
  padding: 30px 28px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(8,49,95,.08);
}
.fp-worry-grid {
  counter-reset: worry;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(42px, 6vw, 88px);
  border-top: 1px solid rgba(8,49,95,.16);
}
.fp-worry-card {
  counter-increment: worry;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 0;
  padding: 28px 0 30px;
  color: var(--fp-ink);
  background: transparent;
  border-bottom: 1px solid rgba(8,49,95,.16);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.85;
  box-shadow: none;
}
.fp-worry-card::before {
  content: counter(worry, decimal-leading-zero);
  flex: 0 0 auto;
  padding-top: .08em;
  color: rgba(8,49,95,.42);
  font-family: var(--font-en);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.fp-service-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(11,79,150,.08);
}
.fp-service-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--fp-blue);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: .78rem;
  font-weight: 900;
}
.fp-service-card h3,
.fp-strength-card h3 {
  color: var(--fp-ink);
  font-size: 1.18rem;
}
.fp-service-card p,
.fp-strength-card p {
  color: var(--fp-text);
  font-size: .9rem;
  line-height: 1.9;
}
.fp-strength-card {
  background: rgba(255,255,255,.95);
}
.fp-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.fp-flow__item {
  position: relative;
  min-height: 220px;
  padding: 30px 24px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(8,49,95,.08);
}
.fp-flow__item span {
  display: block;
  margin-bottom: 30px;
  color: var(--fp-aqua);
  font-family: var(--font-en);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.fp-flow__item h3 {
  color: var(--fp-ink);
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.fp-flow__item p {
  color: var(--fp-text);
  font-size: .88rem;
  line-height: 1.85;
}
.fp-faq {
  display: grid;
  gap: 12px;
}
.fp-faq details {
  overflow: hidden;
  border: 1px solid rgba(11,79,150,.12);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(8,49,95,.05);
}
.fp-faq summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--fp-ink);
  font-weight: 800;
  list-style: none;
}
.fp-faq summary::-webkit-details-marker {
  display: none;
}
.fp-faq p {
  padding: 0 26px 24px;
  color: var(--fp-text);
  line-height: 1.9;
}
.fp-cta {
  padding: clamp(72px, 10vw, 112px) 0;
  background: linear-gradient(180deg, #fff 0%, var(--fp-sky) 100%);
}
.fp-cta__box {
  display: grid;
  gap: 20px;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 72px) clamp(28px, 6vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, var(--fp-blue-deep), var(--fp-blue));
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(8,49,95,.2);
}
.fp-cta__box .fp-kicker,
.fp-cta__box h2,
.fp-cta__box p {
  color: var(--white);
}
.fp-cta__box .fp-btn--primary {
  color: var(--fp-blue-deep);
  background: var(--white);
}

@media (max-width: 900px) {
  .fp-worry-grid,
  .fp-service-grid,
  .fp-strength-grid,
  .fp-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fp-hero__badges {
    grid-template-columns: 1fr;
    width: min(360px, calc(100vw - 48px));
  }
  .fp-hero__badges div + div {
    border-left: 0;
    border-top: 1px solid rgba(8,49,95,.12);
  }
}
@media (max-width: 680px) {
  .page-hero { padding: 110px 0 40px; margin-bottom: 48px; }
  .fp-lp .nav__links .fp-nav-cta {
    color: var(--fp-blue);
    background: transparent;
    padding: 0;
    margin-top: 0;
  }
  .fp-hero {
    min-height: calc(100svh - var(--nav-h));
    margin-top: var(--nav-h);
    align-items: flex-start;
  }
  .fp-hero__bg {
    background-position: 58% bottom;
  }
  .fp-hero__shade {
    background:
      linear-gradient(180deg, rgba(7,49,93,.68) 0%, rgba(7,73,122,.5) 44%, rgba(6,55,111,.36) 100%);
  }
  .fp-hero__inner {
    padding: 38px 24px 112px;
  }
  .fp-hero__content {
    padding-top: 0;
  }
  .fp-hero__title {
    max-width: 340px;
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.22;
    margin-bottom: 18px;
  }
  .fp-hero__line {
    width: 58px;
    height: 3px;
    margin-bottom: 20px;
  }
  .fp-hero__lead {
    max-width: 310px;
    margin-bottom: 16px;
    font-size: .98rem;
    line-height: 1.75;
  }
  .fp-hero__text {
    max-width: 330px;
    font-size: .84rem;
    line-height: 1.85;
  }
  .fp-hero__badges {
    display: none;
  }
  .fp-hero__bottom {
    min-height: 94px;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px 16px;
  }
  .fp-hero__bottom span {
    font-size: .86rem;
    line-height: 1.5;
    writing-mode: horizontal-tb;
  }
  .fp-hero__bottom a {
    width: min(100%, 320px);
    min-width: 0;
    padding: 10px 18px;
    font-size: .82rem;
  }
  .fp-worry-grid,
  .fp-service-grid,
  .fp-strength-grid,
  .fp-flow {
    grid-template-columns: 1fr;
  }
  .fp-worry-card,
  .fp-service-card,
  .fp-strength-card,
  .fp-flow__item {
    min-height: auto;
  }
  .fp-flow {
    gap: 32px;
  }
  .featured-article-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .featured-article-card {
    min-height: auto;
    padding: 24px 20px;
  }
  .blog-card { grid-template-columns: 1fr; gap: 8px; }
}
