:root {
  --navy: #143a46;
  --navy-deep: #0c2b34;
  --teal: #2e706b;
  --ivory: #f7f3ea;
  --paper: #fffdf8;
  --ink: #183238;
  --muted: #647478;
  --brass: #b48a4a;
  --line: rgba(20, 58, 70, 0.16);
  --header-height: 94px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

.site-shell {
  min-width: 320px;
  overflow-x: clip;
}

main {
  padding-top: var(--header-height);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1280px, calc(100% - 48px));
  min-height: 94px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.brand-mark {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: inset(0 0 13.5% 0);
  filter: brightness(0);
  transform: translateY(3px) scale(1.04);
}

.brand-copy {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.2;
  white-space: nowrap;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.header-nav > a:not(.nav-cta) {
  position: relative;
}

.header-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.header-nav > a:not(.nav-cta):hover::after,
.header-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 20px;
  background: var(--navy);
  color: white;
  transition: background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--teal);
}

.nav-cta-short {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 31, 38, 0.96) 0%,
    rgba(10, 42, 50, 0.88) 35%,
    rgba(12, 43, 52, 0.5) 60%,
    rgba(12, 43, 52, 0.08) 100%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(5, 28, 34, 0.42));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: translate3d(100%, 0, 0);
  animation: hero-slide-left 18s infinite cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.hero-slide-one {
  animation-delay: -0.72s;
}

.hero-slide-two {
  animation-delay: 5.28s;
}

.hero-slide-three {
  animation-delay: 11.28s;
}

@keyframes hero-slide-left {
  0% {
    z-index: 3;
    transform: translate3d(100%, 0, 0);
  }

  4% {
    z-index: 3;
    transform: translate3d(0, 0, 0);
  }

  5%, 33.333333% {
    z-index: 2;
    transform: translate3d(0, 0, 0);
  }

  37.333333% {
    z-index: 1;
    transform: translate3d(-100%, 0, 0);
  }

  38.333333%, 100% {
    z-index: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

@supports not (transform: translate3d(0, 0, 0)) {
  @keyframes hero-slide-left {
    0% {
      z-index: 3;
      transform: translateX(100%);
    }

    4% {
      z-index: 3;
      transform: translateX(0);
    }

    5%, 33.333333% {
      z-index: 2;
      transform: translateX(0);
    }

    37.333333% {
      z-index: 1;
      transform: translateX(-100%);
    }

    38.333333%, 100% {
      z-index: 0;
      transform: translateX(-100%);
    }
  }
}

@media (forced-colors: active) {
  .hero-slide {
    opacity: 1;
  }
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  align-items: center;
  padding-block: 92px;
}

.hero-copy {
  max-width: 780px;
  color: white;
}

.eyebrow,
.section-index {
  margin: 0 0 26px;
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.21em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #e0ece9;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
}

.hero h1,
.concerns-section h2,
.section-heading h2,
.record-heading h2,
.strengths-intro h2,
.message-copy h2,
.profile-copy h2,
.fees-heading h2,
.flow-heading h2,
.faq-heading h2,
.x-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-break: strict;
  word-break: normal;
  text-wrap: balance;
}

.hero-lead,
.section-heading > p,
.record-heading > p,
.strengths-intro > p,
.message-lead,
.message-body p,
.profile-lead,
.profile-copy > p,
.fees-heading > p,
.faq-heading > p,
.contact-copy > p {
  line-break: strict;
  word-break: normal;
  text-wrap: pretty;
}

.hero h1 {
  color: white;
  font-size: clamp(42px, 5.1vw, 70px);
  line-height: 1.35;
  text-shadow: 0 2px 24px rgba(4, 27, 33, 0.22);
}

.hero h1 em {
  position: relative;
  color: #f6dfae;
  font-style: normal;
  isolation: isolate;
  white-space: nowrap;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 7px;
  background: rgba(255, 244, 210, 0.2);
  z-index: -1;
}

.hero-lead {
  max-width: 690px;
  margin: 34px 0 0;
  color: #d5e3e0;
  font-size: 16px;
  line-height: 2.05;
  text-wrap: pretty;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.button-primary {
  background: var(--ivory);
  color: var(--navy-deep);
  box-shadow: 0 16px 32px rgba(4, 26, 31, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: white;
  transform: translateY(-2px);
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.hero-notes {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: #d5e3e0;
  list-style: none;
  font-size: 12px;
}

.hero-notes li::before {
  content: "✓";
  margin-right: 7px;
  color: #f6dfae;
}

.hero-promise {
  width: fit-content;
  margin-top: 28px;
  padding: 9px 16px 9px 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 35, 42, 0.5);
  backdrop-filter: blur(8px);
}

.hero-promise-mascot {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-promise p,
.hero-promise small,
.hero-promise strong {
  display: block;
}

.hero-promise p {
  margin: 0;
}

.hero-promise small {
  color: #9fc6be;
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.hero-promise strong {
  margin-top: 3px;
  color: white;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.hero-scene-label {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 38px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 35, 42, 0.42);
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
  backdrop-filter: blur(7px);
}

.hero-scene-label i {
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.hero-panel {
  position: relative;
  padding: 48px 38px 36px;
  background: var(--navy);
  color: white;
  box-shadow: 22px 24px 0 rgba(46, 112, 107, 0.13);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  pointer-events: none;
}

.panel-kicker,
.panel-location {
  color: #a7cdc5;
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.18em;
}

.panel-mascot {
  width: 142px;
  height: 136px;
  margin: 15px auto 2px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.mascot-knockout {
  width: 100%;
  height: auto;
  display: block;
  clip-path: inset(0 0 13.5% 0);
  filter: brightness(0) invert(1);
  transform: translateY(3px) scale(1.04);
}

.panel-title {
  margin: 8px 0 23px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(27px, 3vw, 37px);
  line-height: 1.55;
}

.panel-rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.panel-label {
  margin: 25px 0 9px;
  color: #a7cdc5;
  font-size: 11px;
  font-weight: 700;
}

.hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  padding: 8px 0;
  font-size: 13px;
}

.hero-panel li span {
  margin-right: 12px;
  color: var(--brass);
  font-family: Georgia, serif;
}

.panel-location {
  margin: 30px 0 0;
  text-align: right;
}

.concerns-section {
  padding: 118px 0;
  background: var(--paper);
}

.concerns-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.concerns-section h2,
.section-heading h2,
.record-heading h2,
.strengths-intro h2,
.message-copy h2,
.profile-copy h2,
.fees-heading h2,
.flow-heading h2,
.faq-heading h2,
.x-copy h2,
.contact-copy h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.5;
}

.two-line-heading {
  font-size: clamp(32px, 3.5vw, 42px) !important;
  white-space: nowrap;
}

.concern-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.concern-list li {
  min-height: 92px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.concern-list span {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 13px;
}

.concern-list p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.services-section {
  padding: 125px 0;
  background: #eef3f0;
}

.section-heading {
  margin-bottom: 62px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  text-wrap: pretty;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(20, 58, 70, 0.22);
  border-left: 1px solid rgba(20, 58, 70, 0.22);
}

.service-card {
  min-height: 280px;
  padding: 31px 30px;
  background: rgba(255, 255, 255, 0.55);
  border-right: 1px solid rgba(20, 58, 70, 0.22);
  border-bottom: 1px solid rgba(20, 58, 70, 0.22);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 1;
  background: white;
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(20, 58, 70, 0.09);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 14px;
}

.service-tag {
  padding: 3px 10px;
  border: 1px solid rgba(46, 112, 107, 0.25);
  border-radius: 99px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
}

.service-card h3 {
  margin: 54px 0 17px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  line-height: 1.55;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.record-section {
  padding: 112px 0;
  background: var(--paper);
}

.record-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.record-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.record-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.record-grid li {
  min-height: 185px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 4px 0 var(--brass);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.record-grid li:hover {
  z-index: 1;
  transform: translateY(-4px);
  box-shadow: inset 0 4px 0 var(--brass), 0 14px 34px rgba(20, 58, 70, 0.09);
}

.record-grid span {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.record-grid strong {
  color: var(--navy-deep);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(24px, 2.3vw, 32px);
  letter-spacing: 0.04em;
}

.record-grid small {
  color: var(--brass);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.record-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.strengths-section {
  padding: 126px 0;
  background: var(--navy);
  color: white;
}

.strengths-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.section-index-light {
  color: #9bc8be;
}

.strengths-intro > p:last-child {
  margin: 30px 0 0;
  color: #bdd0d3;
  font-size: 14px;
  line-height: 2;
}

.approach-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.approach-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.approach-list > li > span {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 14px;
}

.approach-list h3 {
  margin: -5px 0 6px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
}

.approach-list p {
  margin: 0;
  color: #bdd0d3;
  font-size: 13px;
}

.message-section {
  padding: 132px 0;
  background: #edf3f0;
}

.message-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.message-lead {
  max-width: 620px;
  margin: 31px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.message-body {
  max-width: 650px;
  margin-top: 24px;
}

.message-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2.1;
}

.message-body p + p {
  margin-top: 18px;
}

.message-credentials {
  max-width: 650px;
  margin: 28px 0 0;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(20, 58, 70, 0.15);
  background: rgba(255, 255, 255, 0.56);
}

.message-credentials dt,
.message-credentials dd {
  margin: 0;
}

.message-credentials dt {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.message-credentials dd {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.message-credentials dd span::before {
  content: "●";
  margin-right: 7px;
  color: var(--brass);
  font-size: 6px;
  vertical-align: 2px;
}

.message-signature {
  max-width: 650px;
  margin-top: 36px;
  padding-top: 23px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(20, 58, 70, 0.22);
}

.message-signature span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.message-signature strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(13px, 4.1vw, 22px);
  line-height: 1.5;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.message-portrait {
  position: relative;
  margin: 0 24px 24px 0;
  isolation: isolate;
}

.message-portrait::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 24px -24px -24px 24px;
  border: 1px solid rgba(46, 112, 107, 0.36);
}

.message-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  display: block;
  object-fit: cover;
  object-position: center;
}

.message-portrait figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 12px 18px;
  background: var(--navy);
  color: #dbe8e5;
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.profile-section {
  padding: 132px 0;
  background: var(--paper);
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(70px, 9vw, 125px);
}

.profile-card {
  position: relative;
  min-height: 560px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--navy);
  background-size: 40px 40px;
  color: white;
}

.profile-card::before,
.profile-card::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(167, 205, 197, 0.25);
  border-radius: 50%;
}

.profile-card::before {
  width: 330px;
  height: 330px;
  right: -170px;
  top: -90px;
}

.profile-card::after {
  width: 210px;
  height: 210px;
  left: -100px;
  bottom: -85px;
}

.profile-monogram {
  position: relative;
  z-index: 1;
  width: 178px;
  height: 188px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.profile-card > div {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-card p {
  margin: 0;
  color: #c3d4d7;
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.profile-card p + p {
  margin-top: 5px;
  font-size: 8px;
}

.profile-lead {
  margin: 31px 0 20px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
}

.profile-copy > p:not(.section-index):not(.profile-lead) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2.05;
}

.office-facts {
  margin: 38px 0 0;
  border-top: 1px solid var(--line);
}

.office-facts div {
  display: grid;
  grid-template-columns: 120px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.office-facts dt,
.office-facts dd {
  margin: 0;
  font-size: 13px;
}

.office-facts dt {
  color: var(--muted);
  font-weight: 700;
}

.fees-section {
  padding: 128px 0;
  background: var(--ivory);
}

.fees-heading {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 90px;
}

.fees-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  line-break: strict;
  word-break: normal;
  text-wrap: pretty;
}

.fee-list {
  border-top: 1px solid rgba(20, 58, 70, 0.24);
}

.fee-list article {
  min-height: 122px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 240px;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid rgba(20, 58, 70, 0.24);
}

.fee-list article > span {
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.fee-list h3,
.fee-list p {
  margin: 0;
}

.fee-list h3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 19px;
}

.fee-list p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.fee-list strong {
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 22px;
  text-align: right;
}

.fee-list small {
  margin-right: 4px;
  color: var(--muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 10px;
}

.fees-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.flow-section {
  padding: 124px 0;
  background: #edf4f1;
}

.flow-heading {
  margin-bottom: 54px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.flow-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid rgba(20, 58, 70, 0.22);
  border-left: 1px solid rgba(20, 58, 70, 0.22);
}

.flow-list li {
  position: relative;
  min-height: 260px;
  padding: 30px 28px;
  border-right: 1px solid rgba(20, 58, 70, 0.22);
  border-bottom: 1px solid rgba(20, 58, 70, 0.22);
}

.flow-list li:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 1;
  top: 42px;
  right: -12px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: #edf4f1;
  color: var(--brass);
  font-size: 14px;
}

.flow-list > li > span {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 14px;
}

.flow-list h3 {
  margin: 60px 0 13px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.faq-section {
  padding: 132px 0;
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-heading > p:last-child {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 48px 25px 0;
  display: flex;
  align-items: center;
  gap: 19px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  color: var(--teal);
  font-size: 22px;
  font-weight: 400;
}

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

.faq-list summary span {
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 17px;
}

.faq-list details > p {
  margin: -2px 0 0;
  padding: 0 48px 25px 38px;
  color: var(--muted);
  font-size: 13px;
  line-height: 2;
}

.x-section {
  padding: 128px 0;
  background: #edf3f0;
}

.x-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  align-items: start;
  gap: clamp(64px, 8vw, 118px);
}

.x-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.x-copy > p:not(.section-index) {
  max-width: 470px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2.05;
  line-break: strict;
  text-wrap: pretty;
}

.x-profile-link {
  width: fit-content;
  margin-top: 34px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 180ms ease, transform 180ms ease;
}

.x-profile-link > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

.x-profile-link > i {
  margin-left: 8px;
  color: #b9d5cf;
  font-style: normal;
}

.x-profile-link:hover,
.x-profile-link:focus-visible {
  background: var(--teal);
  transform: translateY(-2px);
}

.x-timeline-shell {
  min-height: 690px;
  padding: 26px;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(20, 58, 70, 0.16);
  box-shadow: 0 18px 48px rgba(20, 58, 70, 0.1);
}

.x-timeline-label {
  margin-bottom: 18px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
}

.x-timeline-label > span {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.x-timeline-label strong,
.x-timeline-label small {
  display: block;
}

.x-timeline-label strong {
  font-size: 13px;
  line-height: 1.4;
}

.x-timeline-label small {
  margin-top: 2px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 10px;
}

.twitter-timeline {
  display: block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.contact-section {
  padding: 120px 0;
  background: var(--navy);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 105px;
}

.contact-copy > p:not(.section-index) {
  max-width: 600px;
  margin: 31px 0 0;
  color: #bdd0d3;
  font-size: 14px;
  line-height: 2.05;
}

.contact-methods {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 12px;
  font-style: normal;
}

.contact-method {
  min-width: 0;
  padding: 20px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.52);
}

.contact-method > span {
  color: #9bc3bb;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.contact-method strong {
  color: white;
  font-family: Arial, sans-serif;
  font-size: clamp(15px, 1.45vw, 21px);
  letter-spacing: 0.025em;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.contact-method small {
  margin-top: 3px;
  color: #bdd0d3;
  font-size: 10px;
  font-weight: 700;
}

.contact-address {
  grid-column: 1 / -1;
}

.contact-address strong {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

.contact-guide {
  padding: 42px;
  background: white;
  color: var(--ink);
}

.guide-title {
  margin: 0 0 18px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 19px;
  font-weight: 700;
}

.contact-guide ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-guide li {
  padding: 11px 0;
  color: #41575c;
  font-size: 13px;
}

.contact-guide li span {
  margin-right: 13px;
  color: var(--brass);
  font-family: Georgia, serif;
  font-size: 11px;
}

.contact-caution {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.site-footer {
  padding: 42px 0;
  background: var(--navy-deep);
  color: white;
}

.footer-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.08em;
}

.footer-inner p {
  margin: 7px 0 0;
  color: #9fb8bd;
  font-size: 11px;
}

.footer-contact {
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  color: #c4d4d7;
  font-size: 10px;
  font-style: normal;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: white;
}

.footer-right {
  text-align: right;
}

.footer-address {
  margin-top: 10px;
  color: #9fb8bd;
  font-size: 10px;
  font-style: normal;
  line-height: 1.7;
}

.footer-right nav {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  color: #c4d4d7;
  font-size: 10px;
}

.footer-right nav a:hover,
.footer-right nav a:focus-visible {
  color: white;
}

@media (max-width: 1080px) {
  :root {
    --header-height: 122px;
  }

  .header-inner {
    width: 100%;
    min-height: var(--header-height);
    display: grid;
    grid-template-rows: 76px 46px;
    gap: 0;
  }

  .brand {
    min-height: 76px;
    padding-inline: 24px;
  }

  .header-nav {
    width: 100%;
    min-height: 46px;
    padding-inline: 20px;
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    border-top: 1px solid var(--line);
    scrollbar-width: none;
  }

  .header-nav::-webkit-scrollbar {
    display: none;
  }

  .header-nav > a:not(.nav-cta) {
    display: block;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .nav-cta {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero-grid,
  .concerns-grid,
  .section-heading,
  .record-heading,
  .strengths-grid,
  .message-grid,
  .profile-grid,
  .fees-heading,
  .faq-grid,
  .x-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 60px;
  }

  .hero-panel {
    max-width: 500px;
  }

  .concerns-grid,
  .strengths-grid,
  .message-grid,
  .profile-grid,
  .faq-grid,
  .contact-grid {
    gap: 55px;
  }

  .section-heading {
    gap: 28px;
  }

  .record-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .section-heading > p {
    max-width: 600px;
  }

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

  .profile-card {
    min-height: 420px;
    max-width: 550px;
  }

  .message-portrait {
    max-width: 520px;
  }

  .fees-heading {
    gap: 28px;
  }

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

  .flow-list li:nth-child(2)::after {
    display: none;
  }

  .faq-heading {
    position: static;
  }

  .x-copy {
    position: static;
  }

  .x-timeline-shell {
    max-width: 680px;
  }

  .contact-guide {
    max-width: 650px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 112px;
  }

  .container,
  .header-inner {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    width: 100%;
    min-height: var(--header-height);
    grid-template-rows: 68px 44px;
    gap: 0;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .brand {
    min-height: 68px;
    padding-inline: 16px;
    gap: 9px;
  }

  .brand strong {
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    flex: 0 0 auto;
    padding: 6px 9px;
    font-size: 10px;
  }

  .header-nav {
    min-height: 44px;
    padding-inline: 12px;
    gap: 13px;
    font-size: 10px;
  }

  .nav-cta-full {
    display: none;
  }

  .nav-cta-short {
    display: inline;
  }

  .hero {
    min-height: auto;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(7, 31, 38, 0.68) 0%,
      rgba(7, 31, 38, 0.91) 45%,
      rgba(7, 31, 38, 0.97) 100%
    );
  }

  .hero-slide {
    object-position: 58% center;
  }

  .hero-grid {
    padding-block: 72px 78px;
  }

  .hero-scene-label {
    display: none;
  }

  .hero h1 {
    font-size: clamp(35px, 10vw, 48px);
  }

  .two-line-heading {
    font-size: clamp(22px, 7.2vw, 32px) !important;
    letter-spacing: 0.015em;
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button {
    justify-content: space-between;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-notes {
    display: grid;
    gap: 6px;
  }

  .hero-promise {
    width: 100%;
  }

  .hero-panel {
    padding: 39px 30px 31px;
  }

  .panel-mascot {
    width: 126px;
    height: 121px;
  }

  .concerns-section,
  .services-section,
  .record-section,
  .strengths-section,
  .message-section,
  .profile-section,
  .fees-section,
  .flow-section,
  .faq-section,
  .x-section,
  .contact-section {
    padding-block: 82px;
  }

  .concern-list li {
    grid-template-columns: 45px 1fr;
  }

  .concern-list p {
    font-size: 14px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .record-grid {
    grid-template-columns: 1fr;
  }

  .record-grid li {
    min-height: 150px;
  }

  .service-card {
    min-height: 245px;
  }

  .profile-card {
    min-height: 330px;
    padding: 31px;
  }

  .message-signature {
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }

  .message-credentials {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .message-portrait {
    margin: 0 16px 16px 0;
  }

  .message-portrait::before {
    inset: 16px -16px -16px 16px;
  }

  .profile-monogram {
    width: 138px;
    height: 148px;
  }

  .office-facts div {
    grid-template-columns: 95px 1fr;
  }

  .fee-list article {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 25px 0;
  }

  .fee-list strong {
    text-align: left;
  }

  .flow-heading {
    display: block;
  }

  .flow-list {
    grid-template-columns: 1fr;
  }

  .flow-list li {
    min-height: auto;
  }

  .flow-list li::after {
    display: none;
  }

  .flow-list h3 {
    margin-top: 25px;
  }

  .faq-list summary {
    align-items: flex-start;
    font-size: 13px;
  }

  .faq-list details > p {
    padding-left: 0;
    padding-right: 25px;
  }

  .x-grid {
    gap: 42px;
  }

  .x-timeline-shell {
    min-height: 640px;
    padding: 18px;
  }

  .x-timeline-label {
    margin-bottom: 12px;
    padding-bottom: 15px;
  }

  .contact-guide {
    padding: 29px 24px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-right {
    text-align: left;
  }

  .footer-right nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-contact {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
