@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');

:root {
  --white: #FFFFFF;
  --black: #1A1A1A;
  --navy: #0F2A5F;
  --orange: #F26522;
  --sky: #D9EEFB;
  --mint: #D6F2E4;
  --pink: #FCE3EC;
  --lavender: #E7E3F7;
  --container: 1120px;
  --content: 720px;
  --shadow: 0 2px 12px rgb(26 26 26 / 6%);
  --focus: 0 0 0 2px var(--black), 0 0 0 4px var(--white);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.5rem 0.75rem;
  color: var(--white);
  background: var(--black);
  border-radius: 0.25rem;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); outline: none; box-shadow: var(--focus); }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.content-narrow { width: min(100%, var(--content)); }

.section { position: relative; padding: 4rem 0; overflow: clip; }
.section--gray { background: var(--white); }
.section--deep { color: var(--black); background: var(--mint); }

.eyebrow {
  display: inline-block;
  margin: 0 0 0.5rem;
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
.section-heading {
  max-width: 18ch;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.35;
}
.section-lead { max-width: var(--content); margin: 1rem 0 0; }
.section-lead--strong { margin-bottom: 2rem; font-weight: 700; }

.scribble {
  width: 8.75rem;
  height: 1rem;
  margin: 0.4rem 0 1.5rem;
  color: var(--orange);
}
.scribble path { fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 5; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.75rem 1.25rem;
  color: var(--white);
  background: var(--orange);
  border: 2px solid var(--black);
  border-radius: 9999px;
  box-shadow: 4px 4px 0 var(--black);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.button:hover { box-shadow: 2px 2px 0 var(--black); transform: translateY(2px); }
.button:active { transform: translateY(2px) scale(0.97); }
.button:focus-visible,
.text-link:focus-visible,
.nav-link:focus-visible,
.menu-toggle:focus-visible,
.footer-link:focus-visible { outline: none; box-shadow: var(--focus); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--black);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}
.text-link:hover { color: var(--orange); }

.header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid rgb(26 26 26 / 12%);
  backdrop-filter: blur(10px);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 4.5rem; gap: 0.75rem; }
.brand { display: block; flex: 0 1 7.5rem; }
.brand img { width: 100%; height: auto; }
.header__controls { display: flex; align-items: center; gap: 0.5rem; }
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 9999px;
  font-weight: 700;
}
.menu-toggle[aria-expanded='true'] { color: var(--white); background: var(--black); }
.menu-toggle__bar { display: inline-flex; width: 1rem; height: 0.7rem; border-top: 2px solid currentColor; border-bottom: 2px solid currentColor; }
.header .button { display: none; min-height: 2.75rem; padding-inline: 1rem; font-size: 1.2rem; }
.nav { display: none; }
.nav.is-open { display: block; position: absolute; top: calc(100% + 1px); right: 0; left: 0; padding: 0.75rem 1rem 1rem; background: var(--white); border-bottom: 1px solid rgb(26 26 26 / 12%); box-shadow: var(--shadow); }
.nav__list { display: grid; gap: 0.2rem; margin: 0; padding: 0; list-style: none; }
.nav-link { display: block; padding: 0.6rem 0.25rem; color: var(--black); font-size: 0.9375rem; font-weight: 700; text-decoration: none; }
.nav-link:hover { color: var(--orange); }

.hero { position: relative; min-height: 39rem; padding: 4.25rem 0 3rem; color: var(--black); background: var(--white); overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  z-index: 0;
  left: -15rem;
  bottom: -17rem;
  width: 34rem;
  height: 28rem;
  background: var(--pink);
  border-radius: 48% 52% 39% 61% / 54% 38% 62% 46%;
}
.hero::after { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.035; background-image: radial-gradient(var(--black) 0.65px, transparent 0.65px); background-position: 0 0; background-size: 5px 5px; }
.hero__grid { position: relative; z-index: 1; display: grid; align-items: end; min-height: 32rem; }
.hero__content { position: relative; z-index: 2; max-width: 42rem; }
.hero__title { margin: 0; color: var(--navy); font-size: clamp(2.35rem, 10vw, 4.5rem); font-weight: 900; letter-spacing: -0.08em; line-height: 1.2; white-space: nowrap; }
.hero__lead { max-width: 31rem; margin: 1.4rem 0 0; font-size: 1rem; line-height: 1.9; }
.hero__lead .phrase { display: inline-block; white-space: nowrap; }
.hero__actions { display: grid; justify-items: start; gap: 1rem; margin-top: 1.75rem; }
.hero .text-link { color: var(--black); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.badge { display: inline-flex; align-items: center; padding: 0.45rem 0.65rem; color: var(--black); background: var(--white); border: 1px solid var(--black); border-radius: 9999px; box-shadow: 2px 2px 0 var(--orange); font-size: 0.75rem; font-weight: 900; line-height: 1.3; transform: rotate(-2deg); }
.badge:nth-child(2) { transform: rotate(2deg); }
.badge:nth-child(3) { transform: rotate(-1deg); }
.hero__mascot { display: none; position: absolute; right: -1rem; bottom: -1rem; width: 5rem; z-index: 1; }
.hero__arrow { position: absolute; display: none; right: 1rem; bottom: 12.5rem; width: 3.75rem; color: var(--orange); transform: rotate(7deg); }
.hero__arrow path { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6; }
.hero__note { display: none; }

.marquee { display: flex; overflow: hidden; color: var(--white); background: var(--black); }
.marquee__track { display: flex; width: max-content; padding: 0.8rem 0; white-space: nowrap; animation: marquee 46s linear infinite; }
.marquee__track span { padding-right: 1.75rem; font-size: 0.75rem; font-weight: 900; letter-spacing: 0.16em; }
@keyframes marquee { to { transform: translateX(-50%); } }

.cards { display: grid; gap: 1rem; margin-top: 2rem; }
.service-card { display: flex; flex-direction: column; min-height: 100%; padding: 1.5rem; background: var(--white); border-radius: 1rem; box-shadow: var(--shadow); }
.service-card h3 { margin: 0; color: var(--navy); font-size: 1.25rem; font-weight: 900; line-height: 1.55; }
.service-card p { margin: 0.8rem 0 0; }
.service-card__mark { display: block; margin-bottom: 1rem; color: var(--orange); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.12em; }
.small-services { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 0.75rem; }
.small-service { display: flex; align-items: center; min-height: 6.4rem; padding: 1rem; color: var(--black); background: var(--white); border: 1px solid rgb(26 26 26 / 16%); border-radius: 1rem; font-weight: 700; line-height: 1.6; }
.section-action { margin-top: 2rem; }

.reasons { display: grid; gap: 1rem; margin-top: 2rem; }
.reason { padding: 0 0 1.5rem; border-bottom: 1px solid rgb(26 26 26 / 18%); }
.reason:last-child { padding-bottom: 0; border-bottom: 0; }
.reason__number { display: block; color: var(--orange); font-size: 0.875rem; font-weight: 900; letter-spacing: 0.12em; }
.reason h3 { margin: 0.5rem 0 0; color: var(--navy); font-size: 1.3rem; font-weight: 900; line-height: 1.5; }
.reason p { margin: 0.8rem 0 0; }

.feature { position: relative; padding: 2rem; color: var(--black); background: var(--sky); border-radius: 1rem; overflow: hidden; }
.feature__grid { position: relative; z-index: 1; display: grid; gap: 1.5rem; }
.feature h2 { margin: 0; color: var(--navy); font-size: clamp(1.85rem, 6vw, 2.5rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.4; }
.feature p { max-width: 40rem; margin: 1rem 0 0; }
.feature__tag { display: inline-block; margin-bottom: 0.75rem; padding: 0.35rem 0.6rem; color: var(--black); background: var(--white); border-radius: 9999px; font-size: 0.75rem; font-weight: 900; }
.feature .text-link { color: var(--black); }

.profile { position: relative; isolation: isolate; display: grid; gap: 1.5rem; align-items: start; }
.profile::before { content: ''; position: absolute; z-index: -1; right: -7rem; bottom: -4rem; width: 23rem; height: 23rem; background: var(--pink); border-radius: 56% 44% 61% 39% / 43% 58% 42% 57%; }
.profile__label { margin: 0; color: var(--orange); font-size: 0.875rem; font-weight: 900; letter-spacing: 0.12em; }
.profile__name { margin: 0.35rem 0 0; color: var(--navy); font-size: clamp(2rem, 6vw, 2.75rem); font-weight: 900; letter-spacing: -0.05em; line-height: 1.35; }
.profile__credential { margin: 0.7rem 0 0; font-weight: 700; line-height: 1.75; }
.profile__text { max-width: 43rem; margin: 1rem 0 0; }
.profile__portrait { position: relative; width: min(100%, 22rem); margin-inline: auto; }
.profile__photo { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; border-radius: 1rem; box-shadow: var(--shadow); }
.profile__mascot { position: absolute; right: -0.75rem; bottom: -1rem; width: 5rem; }

.faq-list { display: grid; gap: 0.75rem; margin: 2rem 0 0; }
.faq-item { padding: 1.1rem 1.25rem; background: var(--white); border-radius: 1rem; box-shadow: var(--shadow); }
.faq-item dt { color: var(--black); font-weight: 900; line-height: 1.7; }
.faq-item dd { margin: 0.75rem 0 0; }

.cta { position: relative; display: grid; gap: 1.5rem; align-items: center; }
.cta::after { content: ''; position: absolute; z-index: 0; right: -8rem; bottom: -8rem; width: 23rem; height: 23rem; background: var(--lavender); border-radius: 42% 58% 45% 55% / 62% 40% 60% 38%; }
.cta > * { position: relative; z-index: 1; }
.cta h2 { max-width: 15ch; margin: 0; color: var(--navy); font-size: clamp(2rem, 7vw, 2.75rem); font-weight: 900; letter-spacing: -0.05em; line-height: 1.4; }
.cta p { max-width: 36rem; margin: 0.9rem 0 0; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.cta__details { display: flex; flex-wrap: wrap; gap: 0.65rem; margin: 1.75rem 0 0; padding: 0; list-style: none; }
.cta__details li { padding: 0.35rem 0.55rem; border: 1px solid rgb(26 26 26 / 35%); border-radius: 9999px; font-size: 0.75rem; font-weight: 700; }
.cta__mascot { display: none; }

.footer { position: relative; padding: 3rem 0 2rem; color: var(--black); background: var(--lavender); overflow: clip; }
.footer::before { content: ''; position: absolute; right: -8rem; top: -10rem; width: 24rem; height: 21rem; background: var(--mint); border-radius: 52% 48% 42% 58% / 59% 42% 58% 41%; }
.footer .container { position: relative; z-index: 1; }
.footer__grid { display: grid; gap: 2rem; }
.footer__brand img { width: 7.5rem; height: auto; }
.footer__office { margin: 1rem 0 0; font-size: 0.875rem; line-height: 1.8; }
.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; padding: 0; list-style: none; }
.footer-link { color: var(--black); font-size: 0.875rem; text-decoration: none; }
.footer-link:hover { color: var(--orange); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgb(26 26 26 / 25%); font-size: 0.75rem; }
.footer__mascot { position: relative; z-index: 1; width: 5rem; margin-left: auto; }

.js .reveal { opacity: 0; transform: translateY(0.75rem); transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 768px) {
  .container { width: min(calc(100% - 4rem), var(--container)); }
  .section { padding: 6rem 0; }
  .header__inner { min-height: 5.25rem; }
  .brand { flex-basis: 9rem; }
  .menu-toggle { display: none; }
  .nav { display: block; order: 2; }
  .header__controls { order: 3; }
  .nav__list { display: flex; align-items: center; gap: 1rem; }
  .nav-link { padding: 0.25rem; font-size: 0.8125rem; white-space: nowrap; }
  .header .button { display: inline-flex; }
  .hero { min-height: 45rem; padding: 6rem 0 4rem; }
  .hero__grid { min-height: 35rem; }
  .hero__lead { font-size: 1.125rem; }
  .hero__actions { display: flex; align-items: center; gap: 1.25rem; }
  .hero__mascot { display: block; right: 3%; width: min(20vw, 7.5rem); bottom: 2.5rem; }
  .hero__arrow { display: block; right: calc(3% + 6rem); bottom: 9rem; }
  .marquee__track span { font-size: 0.875rem; }
  .cards--large { grid-template-columns: repeat(2, 1fr); }
  .small-services { grid-template-columns: repeat(4, 1fr); }
  .small-service { min-height: 7rem; }
  .reasons { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .reason { padding: 0; border: 0; }
  .feature { padding: 3rem; }
  .feature__grid { grid-template-columns: 1.25fr 0.75fr; align-items: end; }
  .profile { grid-template-columns: 1fr 0.55fr; gap: 3rem; }
  .profile__portrait { width: 100%; max-width: 24rem; margin-left: auto; }
  .profile__mascot { width: 5.5rem; }
  .faq-list { grid-template-columns: repeat(3, 1fr); }
  .cta { grid-template-columns: 1fr auto; gap: 2rem; }
  .cta__mascot { display: block; width: 6.5rem; align-self: end; }
  .footer__grid { grid-template-columns: 1.25fr 0.75fr; }
  .footer__links { grid-template-columns: repeat(2, max-content); justify-content: end; }
}

@media (min-width: 1120px) {
  .nav__list { gap: 1.3rem; }
  .nav-link { font-size: 0.875rem; }
  .hero__mascot { right: 7%; width: 7.5rem; }
  .hero__arrow { right: calc(7% + 6rem); }
  .service-card { padding: 1.75rem; }
}

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

/* T2 service-page components */
.page-hero { position: relative; padding: 4rem 0 3.5rem; background: var(--white); overflow: clip; }
.page-hero::before { content: ''; position: absolute; z-index: 0; right: -10rem; top: -9rem; width: 27rem; height: 24rem; background: var(--sky); border-radius: 43% 57% 62% 38% / 48% 42% 58% 52%; }
.page-hero--mint::before { background: var(--mint); }
.page-hero--pink::before { background: var(--pink); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__label { margin: 0 0 0.5rem; color: var(--black); font-size: 0.875rem; font-weight: 900; letter-spacing: 0.12em; }
.page-hero h1 { max-width: 16ch; margin: 0; color: var(--navy); font-size: clamp(2.45rem, 10vw, 4.5rem); font-weight: 900; letter-spacing: -0.075em; line-height: 1.2; }
.page-hero__lead { max-width: 44rem; margin: 1.3rem 0 0; font-size: 1rem; line-height: 1.9; }
.page-hero__mascot { position: absolute; z-index: 1; right: 2rem; bottom: 1.5rem; width: 5.5rem; }

.page-hero--dark { color: var(--white); background: var(--black); padding-bottom: 9rem; }
.page-hero--dark::before { content: none; }
.page-hero--dark::after { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(100deg, rgb(26 26 26 / 68%) 0%, rgb(26 26 26 / 55%) 45%, rgb(26 26 26 / 34%) 100%); }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.page-hero--dark .page-hero__label { color: var(--sky); }
.page-hero--dark h1 { color: var(--white); }
.page-hero--dark .page-hero__mascot { bottom: -7.5rem; }
.section--sky { background: var(--sky); }
.section--mint { background: var(--mint); }
.section--pink { background: var(--pink); }
.section--lavender { background: var(--lavender); }
.section .container { position: relative; }
.page-section-title { max-width: 21ch; margin: 0; color: var(--navy); font-size: clamp(1.9rem, 6vw, 2.6rem); font-weight: 900; letter-spacing: -0.05em; line-height: 1.35; }
.page-section-intro { max-width: 45rem; margin: 1rem 0 0; }
.content-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.content-card { padding: 1.4rem; background: var(--white); border-radius: 1rem; box-shadow: var(--shadow); }
.content-card h3 { margin: 0; color: var(--navy); font-size: 1.25rem; font-weight: 900; line-height: 1.55; }
.content-card p { margin: 0.75rem 0 0; }
.content-card p + p { margin-top: 0.45rem; }
.content-card--wide { grid-column: 1 / -1; }
.bullet-list { display: grid; gap: 0.65rem; margin: 1.75rem 0 0; padding: 0; list-style: none; }
.bullet-list li { position: relative; padding-left: 1.2rem; }
.bullet-list li::before { content: '•'; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.process-grid { display: grid; gap: 1rem; margin-top: 2rem; counter-reset: step; }
.process-card { position: relative; padding: 1.4rem; background: var(--white); border-radius: 1rem; box-shadow: var(--shadow); }
.process-card::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: block; margin-bottom: 0.7rem; color: var(--orange); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.12em; }
.process-card h3 { margin: 0; color: var(--navy); font-size: 1.2rem; font-weight: 900; line-height: 1.5; }
.process-card p { margin: 0.75rem 0 0; }
.note { max-width: 52rem; margin: 1.4rem 0 0; font-size: 0.9375rem; }
.table-scroll { margin-top: 1.75rem; overflow-x: auto; }
.price-table, .comparison-table { width: 100%; min-width: 38rem; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow); }
.price-table th, .price-table td, .comparison-table th, .comparison-table td { padding: 0.95rem 1rem; border: 1px solid rgb(26 26 26 / 18%); text-align: left; vertical-align: top; }
.price-table th, .comparison-table th { color: var(--navy); background: var(--sky); font-weight: 900; }
.comparison-table th:first-child { width: 32%; }
.faq-details { display: grid; gap: 0.75rem; margin-top: 2rem; }
.faq-details details { padding: 1rem 1.2rem; background: var(--white); border-radius: 1rem; box-shadow: var(--shadow); }
.faq-details summary { color: var(--black); cursor: pointer; font-weight: 900; line-height: 1.7; }
.faq-details summary::marker { color: var(--orange); }
.faq-details p { margin: 0.85rem 0 0; }
.page-cta { position: relative; overflow: clip; color: var(--black); background: var(--mint); }
.page-cta--pink { background: var(--pink); }
.page-cta--lavender { background: var(--lavender); }
.page-cta::before { content: ''; position: absolute; right: -7rem; bottom: -9rem; width: 22rem; height: 22rem; background: var(--sky); border-radius: 61% 39% 42% 58% / 50% 56% 44% 50%; }
.page-cta .container { position: relative; z-index: 1; }
.page-cta h2 { max-width: 15ch; margin: 0; color: var(--navy); font-size: clamp(2rem, 7vw, 2.75rem); font-weight: 900; letter-spacing: -0.05em; line-height: 1.4; }
.page-cta p { max-width: 44rem; margin: 0.9rem 0 0; }
.page-cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 1.5rem; }
.page-cta__mascot { display: none; }

@media (min-width: 768px) {
  .page-hero { padding: 6rem 0 5rem; }
  .page-hero__lead { font-size: 1.125rem; }
  .page-hero__mascot { right: 7%; bottom: 2.5rem; width: 7.5rem; }
  .page-hero--dark .page-hero__mascot { bottom: 2.5rem; }
  .content-grid--two { grid-template-columns: repeat(2, 1fr); }
  .content-grid--three { grid-template-columns: repeat(3, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid--three { grid-template-columns: repeat(3, 1fr); }
  .page-cta__mascot { display: block; position: absolute; right: 8%; bottom: 1.5rem; width: 6.5rem; }
}

/* T3 profile and FAQ components */
.profile-hero { position: relative; padding: 4rem 0; overflow: clip; background: var(--white); }
.profile-hero::before { content: ''; position: absolute; z-index: 0; left: -10rem; bottom: -11rem; width: 25rem; height: 25rem; background: var(--pink); border-radius: 51% 49% 39% 61% / 62% 44% 56% 38%; }
.profile-hero .container { position: relative; z-index: 1; display: grid; gap: 2rem; align-items: center; }
.profile-hero h1 { margin: 0; color: var(--navy); font-size: clamp(2.4rem, 10vw, 4.25rem); font-weight: 900; letter-spacing: -0.075em; line-height: 1.2; }
.profile-hero__kana { display: inline-block; margin-top: 0.55rem; font-size: 0.5em; letter-spacing: 0; }
.profile-hero__role { margin: 1.25rem 0 0; font-weight: 700; line-height: 1.75; }
.profile-hero__contact { margin: 1.25rem 0 0; font-size: 0.9375rem; line-height: 1.8; }
.profile-hero__portrait { position: relative; width: min(100%, 20rem); margin-inline: auto; }
.profile-hero__photo { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center top; border-radius: 1rem; box-shadow: var(--shadow); }
.profile-hero__mascot { position: absolute; right: -0.5rem; bottom: -0.75rem; width: 4.5rem; }
.story { max-width: 48rem; }
.story p { margin: 0; }
.story p + p { margin-top: 1.1rem; }
.profile-facts { display: grid; gap: 1rem; margin-top: 2rem; }
.profile-fact { padding: 1.25rem; background: var(--white); border-radius: 1rem; box-shadow: var(--shadow); }
.profile-fact h3 { margin: 0; color: var(--navy); font-size: 1.05rem; font-weight: 900; }
.profile-fact p { margin: 0.45rem 0 0; }
.timeline { position: relative; display: grid; gap: 1.4rem; margin: 2rem 0 0; }
.timeline::before { content: ''; position: absolute; top: 0.4rem; bottom: 0.4rem; left: 0.4rem; width: 2px; background: var(--black); }
.timeline-item { position: relative; padding-left: 2rem; }
.timeline-item::before { content: ''; position: absolute; top: 0.45rem; left: 0; width: 0.85rem; height: 0.85rem; background: var(--orange); border: 2px solid var(--black); border-radius: 50%; }
.timeline-item h3 { margin: 0; color: var(--navy); font-size: 1.15rem; font-weight: 900; line-height: 1.55; }
.timeline-item p { margin: 0.45rem 0 0; }
.faq-category + .faq-category { margin-top: 3.5rem; }
.faq-category__title { margin: 0; color: var(--navy); font-size: clamp(1.65rem, 5vw, 2.1rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.35; }
.faq-page-details { display: grid; gap: 0.75rem; margin-top: 1.25rem; }
.faq-page-details details { padding: 1rem 1.2rem; background: var(--white); border-radius: 1rem; box-shadow: var(--shadow); }
.faq-page-details summary { color: var(--black); cursor: pointer; font-weight: 900; line-height: 1.7; }
.faq-page-details summary::marker { color: var(--orange); }
.faq-page-details p { margin: 0.85rem 0 0; }

@media (min-width: 768px) {
  .profile-hero { padding: 6rem 0; }
  .profile-hero .container { grid-template-columns: 1fr 0.6fr; gap: 4rem; }
  .profile-hero__portrait { width: 100%; max-width: 24rem; margin-left: auto; }
  .profile-facts { grid-template-columns: repeat(3, 1fr); }
}

/* T4 contact and privacy components */
.contact-grid { display: grid; gap: 1.5rem; align-items: start; }
.contact-form { padding: 1.5rem; background: var(--white); border-radius: 1rem; box-shadow: var(--shadow); }
.form-field { display: grid; gap: 0.45rem; }
.form-field + .form-field { margin-top: 1.15rem; }
.form-field label { color: var(--black); font-weight: 900; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 0.75rem 0.85rem; color: var(--black); background: var(--white); border: 2px solid var(--black); border-radius: 0.5rem; line-height: 1.5; }
.form-field textarea { min-height: 9rem; resize: vertical; }
.form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible { outline: none; box-shadow: var(--focus); }
.form-submit { margin-top: 1.5rem; }
.form-privacy { margin: 1rem 0 0; font-size: 0.8125rem; line-height: 1.7; }
.form-success { margin-bottom: 1.5rem; padding: 1rem 1.2rem; color: var(--black); background: var(--mint); border: 2px solid var(--black); border-radius: 1rem; font-weight: 700; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-aside { display: grid; gap: 1rem; }
.contact-aside__card { padding: 1.4rem; background: var(--white); border-radius: 1rem; box-shadow: var(--shadow); }
.contact-aside__card h2 { margin: 0; color: var(--navy); font-size: 1.35rem; font-weight: 900; line-height: 1.45; }
.contact-aside__card p { margin: 0.75rem 0 0; }
.line-qr { width: min(100%, 12rem); margin: 1rem auto 0; border: 2px solid var(--black); border-radius: 0.75rem; }
.privacy-doc { max-width: 50rem; }
.privacy-doc > p { margin: 0; }
.privacy-doc section { margin-top: 2.25rem; }
.privacy-doc h2 { margin: 0; color: var(--navy); font-size: 1.35rem; font-weight: 900; line-height: 1.5; }
.privacy-doc section p { margin: 0.7rem 0 0; }
.privacy-doc__date { margin-top: 2.5rem !important; font-weight: 700; }

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: minmax(0, 1fr) 0.6fr; gap: 2.5rem; }
  .contact-form { padding: 2rem; }
}
