:root {
  --ivory: #f6f0e8;
  --ivory-deep: #ede2d5;
  --paper: #fffaf4;
  --charcoal: #302b2a;
  --muted: #746a67;
  --rose: #b77c7d;
  --wine: #744b50;
  --wine-dark: #5e3b40;
  --gold: #b6975a;
  --gold-light: #d8bd83;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-header {
  height: 96px;
  padding: 0 clamp(28px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 250, 244, .96);
  border-bottom: 1px solid rgba(182, 151, 90, .48);
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .24em;
  position: relative;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(25px, 2.2vw, 34px);
  letter-spacing: .035em;
  white-space: nowrap;
}
.brand strong { color: var(--rose); font-size: 1.14em; font-weight: 500; }
.brand i {
  position: absolute;
  left: 22%; right: 12%; bottom: -11px;
  height: 10px;
  border-top: 2px solid var(--gold);
  border-radius: 50%;
  transform: rotate(-2deg);
}

.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.25vw, 40px); }
.desktop-nav a {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  letter-spacing: .06em;
  position: relative;
  padding: 12px 0;
}
.desktop-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 4px;
  height: 1px;
  background: var(--gold);
  transition: right .18s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.desktop-nav .nav-contact {
  border: 1px solid var(--gold);
  padding: 13px 20px;
  color: var(--wine);
  transition: background .2s ease, color .2s ease;
}
.desktop-nav .nav-contact:hover { background: var(--wine); color: white; border-color: var(--wine); }

.mobile-menu { display: none; }

.hero {
  min-height: 688px;
  display: grid;
  grid-template-columns: 51% 49%;
  background:
    radial-gradient(circle at 2% 8%, rgba(183,124,125,.12), transparent 23%),
    radial-gradient(circle at 40% 100%, rgba(182,151,90,.12), transparent 30%),
    var(--paper);
  overflow: hidden;
  border-bottom: 1px solid rgba(182,151,90,.45);
}

.hero-copy {
  padding: clamp(72px, 8vw, 120px) clamp(38px, 7.8vw, 120px) 66px;
  position: relative;
  isolation: isolate;
}
.hero-copy::before, .hero-copy::after {
  content: "";
  position: absolute;
  width: 230px; height: 230px;
  border: 1px solid rgba(183,124,125,.18);
  border-radius: 48% 52% 38% 62%;
  transform: rotate(24deg);
  z-index: -1;
}
.hero-copy::before { left: -145px; top: -90px; }
.hero-copy::after { right: -60px; bottom: -160px; }

.eyebrow {
  margin: 0 0 30px;
  color: #967842;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: .28em;
  display: flex;
  align-items: center;
  gap: 17px;
}
.eyebrow::after { content: ""; width: 80px; height: 1px; background: var(--gold); }

h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(48px, 4.45vw, 72px);
  line-height: 1.32;
  font-weight: 500;
  letter-spacing: .025em;
}
h1 em { font-style: normal; font-family: Georgia, "Times New Roman", serif; letter-spacing: .08em; font-size: 1.12em; }
.hero-lead {
  margin: 24px 0 30px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.9;
  letter-spacing: .055em;
}
.mobile-only { display: none; }

.primary-cta {
  width: min(100%, 535px);
  min-height: 82px;
  padding: 13px 22px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, var(--wine) 0%, #8f5a60 100%);
  color: white;
  box-shadow: 0 12px 28px rgba(116,75,80,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.primary-cta:hover, .primary-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 17px 32px rgba(116,75,80,.26);
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
}
.cta-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.cta-icon svg { width: 25px; fill: currentColor; }
.primary-cta small { display: block; font-size: 11px; letter-spacing: .12em; opacity: .75; margin-bottom: 5px; }
.primary-cta span:nth-child(2) { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(16px, 1.25vw, 20px); letter-spacing: .04em; }
.primary-cta b { font-size: 24px; font-weight: 300; }
.cta-note { margin: 18px 0 0 4px; color: var(--rose); font-size: 14px; letter-spacing: .08em; }

.hero-visual {
  min-height: 688px;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 46% 38%;
  background: #e7d4c8;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 18px 0 35px rgba(90,61,53,.08);
  background: linear-gradient(90deg, rgba(116,75,80,.08), transparent 32%);
  pointer-events: none;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(.72) sepia(.08) brightness(1.04);
  animation: portrait-breathe 8s ease-in-out infinite alternate;
}
.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 34px; top: 38px;
  width: 92px; height: 92px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  color: white;
  font-family: Georgia, serif;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: .18em;
  text-shadow: 0 1px 7px rgba(0,0,0,.28);
}
.portrait-caption {
  position: absolute;
  z-index: 2;
  left: 34px; bottom: 28px;
  padding: 14px 22px;
  color: white;
  background: rgba(85,58,58,.76);
  backdrop-filter: blur(8px);
  border-left: 2px solid var(--gold-light);
}
.portrait-caption span { display: block; font-size: 10px; letter-spacing: .18em; opacity: .78; }
.portrait-caption strong { display: block; margin-top: 4px; font-family: Georgia, serif; font-size: 17px; letter-spacing: .12em; }

.trust-strip {
  height: 132px;
  padding: 0 clamp(28px, 8vw, 150px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  background: var(--ivory);
}
.trust-strip article { min-height: 74px; display: flex; justify-content: center; align-items: center; gap: 24px; }
.trust-strip article + article { border-left: 1px solid rgba(182,151,90,.55); }
.trust-icon {
  width: 58px; height: 58px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: Georgia, serif;
  font-size: 28px;
}
.trust-strip p { margin: 0; }
.trust-strip small { display: block; color: var(--rose); font-family: Georgia, serif; font-size: 10px; letter-spacing: .18em; margin-bottom: 5px; text-transform: uppercase; }
.trust-strip strong { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: clamp(17px, 1.6vw, 23px); font-weight: 500; letter-spacing: .06em; }

@keyframes portrait-breathe { from { transform: scale(1); } to { transform: scale(1.015); } }

@media (max-width: 1040px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 13px; }
  .desktop-nav .nav-contact { padding: 11px 14px; }
  .hero-copy { padding-left: 55px; padding-right: 42px; }
  .trust-strip { padding-inline: 26px; }
}

@media (max-width: 760px) {
  .site-header { height: 74px; padding: 0 20px; position: sticky; top: 0; }
  .brand { font-size: 25px; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { list-style: none; width: 42px; height: 42px; display: grid; align-content: center; gap: 5px; padding: 9px; cursor: pointer; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { height: 1px; background: var(--charcoal); display: block; }
  .mobile-menu nav { position: absolute; right: -20px; top: 57px; width: min(88vw, 330px); padding: 18px 24px 24px; background: rgba(255,250,244,.98); border: 1px solid rgba(182,151,90,.4); box-shadow: 0 18px 35px rgba(83,56,48,.13); display: grid; }
  .mobile-menu nav a { padding: 14px 4px; border-bottom: 1px solid rgba(182,151,90,.24); font-family: "Yu Mincho", serif; }
  .mobile-menu nav a:last-child { margin-top: 12px; text-align: center; background: var(--wine); color: white; border: 0; }

  .hero { display: flex; flex-direction: column; }
  .hero-copy { padding: 58px 24px 38px; text-align: center; }
  .eyebrow { justify-content: center; margin-bottom: 22px; font-size: 11px; }
  .eyebrow::after { width: 48px; }
  h1 { font-size: clamp(39px, 12.5vw, 56px); line-height: 1.3; }
  .hero-lead { margin: 18px 0 25px; font-size: 15px; }
  .mobile-only { display: block; }
  .primary-cta { min-height: 75px; grid-template-columns: 38px 1fr auto; gap: 10px; padding: 11px 15px; text-align: left; }
  .cta-icon { width: 36px; height: 36px; }
  .primary-cta span:nth-child(2) { font-size: 15px; }
  .cta-note { font-size: 12px; line-height: 1.7; }
  .hero-visual { order: -1; min-height: 54vh; height: 520px; border-top-left-radius: 0; border-bottom-left-radius: 42% 20%; }
  .hero-visual img { object-position: 50% 27%; }
  .hero-stamp { right: 18px; top: 20px; width: 70px; height: 70px; font-size: 9px; }
  .portrait-caption { left: 18px; bottom: 24px; }

  .trust-strip { height: auto; padding: 12px 18px 26px; grid-template-columns: 1fr; }
  .trust-strip article { min-height: 94px; justify-content: flex-start; padding-left: 12%; }
  .trust-strip article + article { border-left: 0; border-top: 1px solid rgba(182,151,90,.45); }
  .trust-strip strong { font-size: 19px; }
}

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

/* Complete page */
.section-shell { width: min(1200px, calc(100% - 64px)); margin-inline: auto; }
.section-kicker {
  margin: 0 0 20px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: .28em;
  font-weight: 500;
}
.section-kicker::after { content: ""; display: inline-block; width: 55px; height: 1px; margin: 0 0 4px 16px; background: var(--gold); }
.section-kicker.light { color: #ead9d2; }
.section-kicker.light::after { background: rgba(255,255,255,.55); }
h2 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.5;
  letter-spacing: .055em;
  font-weight: 500;
}
.section-lead { font-family: "Yu Mincho", "Hiragino Mincho ProN", serif; font-size: 18px; line-height: 2.05 !important; }

.profile-section {
  padding-block: 150px;
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}
.profile-image-wrap { position: relative; height: 630px; margin-left: 38px; }
.profile-image-wrap::before {
  content: "";
  position: absolute;
  left: -38px; top: -38px;
  width: 72%; height: 70%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.profile-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 58% center; filter: saturate(.76) sepia(.08); }
.vertical-word {
  position: absolute;
  left: -64px; bottom: 0;
  writing-mode: vertical-rl;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: .34em;
}
.profile-copy > p:not(.section-kicker) { color: var(--muted); font-size: 15px; line-height: 2.15; margin: 26px 0 0; }
.profile-facts { margin: 36px 0; border-top: 1px solid rgba(182,151,90,.4); }
.profile-facts div { display: grid; grid-template-columns: 104px 1fr; gap: 22px; padding: 15px 0; border-bottom: 1px solid rgba(182,151,90,.3); align-items: baseline; }
.profile-facts dt { color: var(--gold); font-family: Georgia, serif; font-size: 10px; letter-spacing: .17em; }
.profile-facts dd { margin: 0; font-size: 13px; letter-spacing: .04em; }
.text-link { display: inline-flex; align-items: center; gap: 26px; padding-bottom: 7px; border-bottom: 1px solid var(--gold); color: var(--wine); font-family: "Yu Mincho", serif; font-size: 14px; letter-spacing: .06em; }
.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translateX(5px); }

.method-section {
  padding: 135px 0 150px;
  background:
    radial-gradient(circle at 15% 5%, rgba(183,124,125,.1), transparent 24%),
    radial-gradient(circle at 90% 100%, rgba(182,151,90,.14), transparent 30%),
    #efe6dc;
  border-block: 1px solid rgba(182,151,90,.3);
}
.section-heading.centered { text-align: center; padding-inline: 22px; }
.section-heading.centered .section-kicker::after { display: block; margin: 15px auto 0; }
.section-heading > p:last-child { margin: 22px 0 0; color: var(--muted); font-size: 14px; line-height: 2; }
.method-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.method-grid article {
  min-height: 388px;
  padding: 38px 34px 32px;
  background: rgba(255,250,244,.74);
  border: 1px solid rgba(182,151,90,.34);
  position: relative;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.method-grid article:hover { transform: translateY(-6px); background: var(--paper); box-shadow: 0 20px 48px rgba(104,78,67,.08); }
.card-number { position: absolute; top: 24px; right: 26px; color: rgba(182,151,90,.45); font-family: Georgia, serif; font-size: 36px; }
.method-symbol { width: 74px; height: 74px; margin: 22px auto 35px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: Georgia, serif; font-size: 32px; }
.method-grid h3 { margin: 0; text-align: center; font-family: "Yu Mincho", serif; font-size: 23px; font-weight: 500; letter-spacing: .08em; }
.method-grid p { margin: 22px 0; color: var(--muted); font-size: 14px; line-height: 2; }
.method-grid small { display: block; text-align: center; color: var(--rose); font-family: Georgia, serif; font-size: 9px; letter-spacing: .2em; }

.consult-banner {
  min-height: 400px;
  padding: 90px max(7vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  color: white;
  background:
    linear-gradient(105deg, rgba(89,52,58,.96) 0%, rgba(116,75,80,.88) 58%, rgba(116,75,80,.6)),
    url('../images/trading-desk.webp') center / cover;
}
.consult-banner h2 { font-size: clamp(36px, 3.6vw, 54px); }
.consult-banner p:not(.section-kicker) { margin: 20px 0 0; color: rgba(255,255,255,.75); font-size: 14px; letter-spacing: .05em; }
.consult-banner > a { min-width: 285px; min-height: 68px; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; border: 1px solid rgba(255,255,255,.7); font-family: "Yu Mincho", serif; letter-spacing: .08em; transition: background .2s ease, color .2s ease; }
.consult-banner > a:hover { background: white; color: var(--wine); }

.voices-section { padding-block: 145px; }
.voice-heading { display: grid; grid-template-columns: 1.15fr .85fr; column-gap: 80px; align-items: end; }
.voice-heading .section-kicker, .voice-heading h2 { grid-column: 1; }
.voice-heading > p:last-child { grid-column: 2; grid-row: 1 / span 2; align-self: end; margin-bottom: 14px; }
.voices-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.voices-grid article { min-height: 330px; padding: 34px; background: #fffaf4; border-top: 2px solid var(--gold); box-shadow: 0 14px 45px rgba(91,68,59,.065); display: flex; flex-direction: column; }
.quote-mark { color: rgba(183,124,125,.48); font-family: Georgia, serif; font-size: 68px; line-height: .7; }
.voices-grid article > p { margin: 24px 0 28px; color: var(--muted); font-family: "Yu Mincho", serif; font-size: 15px; line-height: 2.15; }
.voices-grid article > div { margin-top: auto; padding-top: 22px; border-top: 1px solid rgba(182,151,90,.25); display: flex; align-items: center; gap: 16px; }
.voices-grid b { color: rgba(182,151,90,.48); font-family: Georgia, serif; font-size: 31px; font-weight: 400; }
.voices-grid div span { font-family: "Yu Mincho", serif; line-height: 1.4; }
.voices-grid small { color: var(--rose); font-family: Georgia, serif; font-size: 8px; letter-spacing: .16em; }
.voices-link { margin-top: 46px; }

.community-section { display: grid; grid-template-columns: 54% 46%; min-height: 640px; background: #ede2d7; }
.community-image { min-height: 640px; position: relative; overflow: hidden; }
.community-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 66%, rgba(237,226,215,.38)); }
.community-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7) sepia(.08) brightness(.95); }
.community-copy { padding: 100px clamp(50px, 7vw, 110px); align-self: center; }
.community-copy > p:not(.section-kicker) { color: var(--muted); font-size: 15px; line-height: 2.2; margin: 26px 0 35px; }
.community-copy ul { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(182,151,90,.42); }
.community-copy li { padding: 16px 0 16px 28px; position: relative; border-bottom: 1px solid rgba(182,151,90,.35); font-family: "Yu Mincho", serif; font-size: 14px; letter-spacing: .05em; }
.community-copy li::before { content: "◇"; position: absolute; left: 3px; color: var(--gold); }

.journal-section { padding-block: 145px; }
.journal-title { display: flex; justify-content: space-between; align-items: end; }
.journal-title h2 { font-size: clamp(36px, 3.8vw, 54px); }
.journal-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.journal-grid > a { display: block; }
.article-visual { height: 235px; display: grid; place-items: center; overflow: hidden; position: relative; color: rgba(255,255,255,.82); font-family: Georgia, serif; font-size: 12px; letter-spacing: .34em; transition: filter .25s ease; }
.article-visual::before, .article-visual::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; }
.article-visual::before { width: 140px; height: 140px; }
.article-visual::after { width: 92px; height: 92px; }
.article-visual-one { background: linear-gradient(135deg, #aa7778, #744b50); }
.article-visual-two { background: linear-gradient(135deg, #c5aa7e, #937340); }
.article-visual-three { background: linear-gradient(135deg, #8d827c, #4f4946); }
.journal-grid a:hover .article-visual { filter: brightness(1.08); }
.journal-grid time { display: block; margin: 23px 0 13px; color: var(--gold); font-family: Georgia, serif; font-size: 10px; letter-spacing: .12em; }
.journal-grid h3 { margin: 0; min-height: 65px; font-family: "Yu Mincho", serif; font-size: 18px; line-height: 1.75; font-weight: 500; }
.journal-grid p { color: var(--muted); font-size: 13px; line-height: 1.8; }

.final-cta { padding: 115px 30px; text-align: center; background: radial-gradient(circle at 50% -10%, rgba(182,151,90,.16), transparent 35%), var(--paper); border-top: 1px solid rgba(182,151,90,.32); }
.final-cta-inner { width: min(780px, 100%); margin: auto; }
.final-cta .section-kicker::after { display: block; margin: 16px auto 0; }
.final-cta p:not(.section-kicker) { margin: 22px 0 32px; color: var(--muted); font-size: 14px; }
.final-button { margin: auto; text-align: left; }

.site-footer { padding: 70px max(5vw, 30px) 24px; background: #362e2c; color: rgba(255,255,255,.78); }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 42px; }
.footer-brand { color: white; }
.footer-brand i { display: none; }
.footer-top nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px 32px; font-size: 12px; }
.footer-top nav a:hover { color: var(--gold-light); }
.risk-note { margin: 0; padding: 24px 0; border-block: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.46); font-size: 10px; line-height: 1.9; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; color: rgba(255,255,255,.42); font-family: Georgia, serif; font-size: 9px; letter-spacing: .16em; }

.custom-logo-link { display: block; line-height: 0; }
.custom-logo { width: auto; max-width: 280px; max-height: 70px; }
.desktop-nav .menu-item { list-style: none; display: contents; }
.footer-top nav .menu-item { list-style: none; display: contents; }
.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.journal-grid a:hover .post-thumbnail img { transform: scale(1.025); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { width: auto; height: auto; clip: auto; margin: 8px; padding: 12px 18px; background: white; color: var(--wine); z-index: 9999; }
.wp-content-area { padding-block: 120px; min-height: 65vh; }
.archive-heading { margin-bottom: 60px; }
.archive-heading h1 { max-width: 900px; font-size: clamp(38px, 4.6vw, 66px); }
.archive-heading time, .wp-post-card time { color: var(--gold); font-family: Georgia, serif; font-size: 11px; letter-spacing: .12em; }
.wp-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.wp-post-card { padding-bottom: 30px; border-bottom: 1px solid rgba(182,151,90,.35); }
.wp-post-image { display: block; height: 240px; margin-bottom: 22px; overflow: hidden; }
.wp-post-image img { width: 100%; height: 100%; object-fit: cover; }
.wp-post-card h2 { margin: 12px 0; font-size: 23px; line-height: 1.6; }
.wp-post-card p, .entry-content { color: var(--muted); font-size: 15px; line-height: 2; }
.entry-content { max-width: 840px; margin: auto; }
.entry-content h2 { margin: 2em 0 .8em; font-size: 34px; }
.entry-content h3 { margin: 2em 0 .8em; font-family: "Yu Mincho", serif; font-size: 25px; }
.entry-content img, .single-thumbnail img { max-width: 100%; height: auto; }
.single-thumbnail { max-width: 1000px; margin: -20px auto 70px; }
.nav-links { margin-top: 50px; display: flex; gap: 12px; }
.page-numbers { padding: 10px 15px; border: 1px solid rgba(182,151,90,.45); }

@media (max-width: 900px) {
  .profile-section { grid-template-columns: 44% 1fr; gap: 44px; }
  .profile-image-wrap { height: 560px; }
  .method-grid { gap: 12px; }
  .method-grid article { padding-inline: 24px; }
  .voice-heading { column-gap: 42px; }
  .community-copy { padding-inline: 42px; }
}

@media (max-width: 760px) {
  .section-shell { width: min(100% - 40px, 560px); }
  .section-kicker { font-size: 10px; margin-bottom: 15px; }
  h2 { font-size: clamp(31px, 9vw, 42px); line-height: 1.55; }
  .profile-section { padding-block: 95px; display: flex; flex-direction: column; align-items: stretch; gap: 66px; }
  .profile-image-wrap { width: calc(100% - 18px); height: 470px; margin-left: 18px; }
  .profile-image-wrap::before { left: -18px; top: -22px; }
  .vertical-word { left: -32px; }
  .profile-copy > p:not(.section-kicker) { font-size: 14px; }
  .section-lead { font-size: 16px !important; }
  .profile-facts div { grid-template-columns: 80px 1fr; gap: 12px; }
  .profile-facts dd { line-height: 1.7; }

  .method-section { padding: 90px 0 100px; }
  .method-grid { margin-top: 44px; grid-template-columns: 1fr; gap: 14px; }
  .method-grid article { min-height: 340px; }

  .consult-banner { min-height: 480px; padding: 70px 24px; display: block; text-align: center; }
  .consult-banner p:not(.section-kicker) { line-height: 1.9; }
  .consult-banner > a { margin: 36px auto 0; width: 100%; min-width: 0; }

  .voices-section { padding-block: 95px; }
  .voice-heading { display: block; }
  .voice-heading > p:last-child { margin-top: 20px; }
  .voices-grid { margin-top: 44px; grid-template-columns: 1fr; }
  .voices-grid article { min-height: 290px; }

  .community-section { display: flex; flex-direction: column; min-height: 0; }
  .community-image { min-height: 380px; }
  .community-image::after { background: linear-gradient(180deg, transparent 68%, rgba(237,226,215,.5)); }
  .community-copy { padding: 68px 24px 80px; }

  .journal-section { padding-block: 95px; }
  .journal-title { display: block; }
  .journal-title .text-link { margin-top: 28px; }
  .journal-grid { margin-top: 45px; grid-template-columns: 1fr; gap: 48px; }
  .article-visual { height: 230px; }
  .journal-grid h3 { min-height: 0; }

  .final-cta { padding: 90px 20px; }
  .final-cta p:not(.section-kicker) { line-height: 1.9; }
  .site-footer { padding-top: 55px; }
  .footer-top { display: block; }
  .footer-top nav { margin-top: 34px; justify-content: flex-start; display: grid; grid-template-columns: 1fr 1fr; }
  .risk-note { font-size: 9px; }
  .wp-content-area { padding-block: 80px; }
  .wp-post-grid { grid-template-columns: 1fr; }
  .wp-post-image { height: 230px; }
  .entry-content h2 { font-size: 28px; }
}
