:root {
  --ink: #20231f;
  --muted: #62675f;
  --gold: #a17d45;
  --gold-deep: #80602e;
  --gold-pale: #f1eadf;
  --green: #285c43;
  --green-light: #477a60;
  --line: #d8d5cd;
  --ivory: #f6f5f1;
  --paper: #ffffff;
  --shadow: 0 14px 42px rgba(48, 42, 31, 0.09);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
.section[id], .contact-section[id], .site-footer[id] { scroll-margin-top: 108px; }
a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid rgba(173, 129, 53, .55); outline-offset: 4px; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 1000; padding: 9px 14px; color: #fff; background: var(--green); }
.skip-link:focus { top: 10px; }
.container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.container.narrow { width: min(900px, calc(100% - 48px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 100px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(60, 56, 48, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 3px 18px rgba(35, 37, 33, .035);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.98); box-shadow: 0 7px 24px rgba(35,37,33,.11); }
.header-inner { width: min(1200px, calc(100% - 48px)); height: 100%; margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-logo { flex: 0 0 auto; font-family: var(--serif); font-size: clamp(22px, 2.4vw, 30px); font-weight: 600; letter-spacing: .03em; white-space: nowrap; }
.site-logo::after { display: none; }
.global-nav { height: 100%; display: flex; align-items: center; gap: clamp(18px, 2.5vw, 36px); font-size: 16px; font-weight: 700; }
.global-nav > a:not(.nav-line) { position: relative; display: grid; place-items: center; height: 100%; }
.global-nav > a:not(.nav-line)::after { content: ""; position: absolute; bottom: 20px; left: 0; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .38s cubic-bezier(.22, 1, .36, 1); }
.global-nav > a:hover::after { transform: scaleX(1); }
.nav-line, .button-line { color: #fff; background: var(--green); }
.nav-line { min-height: 58px; display: inline-flex; align-items: center; padding: 14px 17px; border-radius: 4px; box-shadow: 0 6px 16px rgba(41, 91, 64, .18); white-space: nowrap; transition: background-color .15s ease, box-shadow .15s ease; }
.nav-line:hover { background: #214f39; box-shadow: 0 8px 20px rgba(41,91,64,.22); }
.nav-phone { min-width: 184px; flex-direction: column; justify-content: center; gap: 1px; padding: 8px 16px; line-height: 1.15; }
.nav-phone span { color: rgba(255,255,255,.78); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.nav-phone strong { font-family: Arial, sans-serif; font-size: 16px; font-weight: 700; letter-spacing: .035em; }
.line-badge { display: inline-grid; place-items: center; min-width: 31px; height: 22px; margin-right: 7px; padding-inline: 4px; border-radius: 50%; color: var(--green); background: #fff; font-size: 7px; font-weight: 900; letter-spacing: -.03em; vertical-align: middle; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-color: #eee8dc;
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid #e5dfd3;
}
.hero::before { display: none; }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(250,248,244,.94) 0%, rgba(250,248,244,.82) 38%, rgba(250,248,244,.3) 61%, rgba(250,248,244,.03) 79%); }
.hero-inner { position: relative; z-index: 1; width: min(1150px, calc(100% - 96px)); min-height: 600px; margin-inline: auto; }
.hero-copy { position: relative; z-index: 2; width: min(760px, 72%); padding: 82px 0 72px; }
.hero-kicker { margin: 0 0 2px; color: var(--gold-deep); font-size: 13px; font-weight: 700; letter-spacing: .2em; }
.hero h1 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(54px, 5.3vw, 67px); font-weight: 500; line-height: 1.4; letter-spacing: .01em; }
.hero-lead { margin: 0 0 24px; color: #292e28; font-family: var(--serif); font-size: clamp(21px, 2vw, 25px); font-weight: 700; line-height: 1.82; }
.hero-note { margin: 0; color: #454b44; font-size: 15px; font-weight: 500; line-height: 2.05; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 38px; }
.hero-actions .button { min-width: 280px; min-height: 74px; padding-inline: 24px; font-size: 17px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 12px 26px; border: 1px solid transparent; border-radius: 5px; font-size: 15px; font-weight: 700; letter-spacing: .02em; transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease; }
.button:hover { box-shadow: 0 8px 20px rgba(45, 40, 31, .1); }
.button-line { background: linear-gradient(135deg, #285c43, #397153); box-shadow: 0 7px 18px rgba(40,92,67,.18); }
.button-primary { color: #fff; background: linear-gradient(135deg, #285c43, #397153); box-shadow: 0 8px 21px rgba(40,92,67,.2); }
.button-primary:hover { background: linear-gradient(135deg, #214f39, #326448); box-shadow: 0 11px 26px rgba(40,92,67,.24); }
.button-outline { color: var(--gold-deep); background: rgba(255,255,255,.9); border-color: var(--gold); box-shadow: 0 6px 18px rgba(76,63,39,.07); }
.button-outline:hover { background: #fff; border-color: var(--gold-deep); }
.hero-actions .mail-icon { width: 24px; height: 20px; }

.need-card, .support-card, .profile-card, .service-card, .faq details { box-shadow: 0 7px 24px rgba(52,46,36,.04); transition: box-shadow .15s ease, border-color .15s ease; }
@media (hover: hover) {
  .need-card:hover, .service-card:hover, .faq details:hover { border-color: #c9c3b8; box-shadow: 0 10px 28px rgba(52,46,36,.07); }
}

.section { padding: 72px 0; }
.section-heading { margin-bottom: 34px; text-align: center; }
.section-heading h2 { position: relative; margin: 0; padding-bottom: 18px; font-family: var(--serif); font-size: clamp(25px, 3vw, 34px); font-weight: 600; line-height: 1.5; letter-spacing: .06em; }
.section-heading h2::after { content: ""; position: absolute; bottom: 0; left: calc(50% - 17px); width: 34px; height: 1px; background: var(--gold); }
.section-heading p { margin: 12px 0 0; color: #4f514d; font-size: 15px; }

.needs { padding: 64px 0 68px; background: #fff; border-top: 1px solid #ece9e2; }
.needs .container { width: min(1152px, calc(100% - 48px)); }
.needs .section-heading { margin-bottom: 26px; }
.needs .section-heading h2 { padding-bottom: 17px; }
.needs-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.need-card { min-height: 228px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 10px 20px; text-align: center; border: 1px solid #ddd9d1; border-radius: 14px; background: #fff; }
.need-card .icon { width: 80px; height: 80px; display: grid; place-items: center; color: var(--gold-deep); line-height: 1; }
.need-card .icon svg { width: 88px; height: 88px; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.need-card h3 { margin: 13px 0 0; font-size: 16px; line-height: 1.8; letter-spacing: -.02em; }
.needs-advice { margin: 29px 0 0; color: #3f453e; text-align: center; font-weight: 700; font-size: 18px; line-height: 32px; }
.needs-advice span { width: 32px; height: 32px; display: inline-grid; place-items: center; margin-right: 10px; color: var(--gold); border: 1px solid var(--gold); border-radius: 50%; font-family: var(--serif); font-size: 18px; line-height: 1; }

.support { padding: 68px 0 72px; background: #f5f3ee; }
.support .container { width: min(1268px, calc(100% - 64px)); }
.support .section-heading { margin-bottom: 25px; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.support-card { position: relative; min-width: 0; min-height: 520px; display: grid; grid-template-rows: 150px minmax(0, 1fr) 71px; padding: 36px 42px 29px; overflow: hidden; border: 1px solid #d8d3c9; border-radius: 16px; background: #fff; box-shadow: 0 12px 34px rgba(56,47,34,.055); }
.support-card::before { display: none; }
.support-card.gold { color: var(--gold-deep); }
.support-card.green { color: var(--green); }
.support-head { min-height: 0; display: grid; grid-template-columns: 126px minmax(0, 1fr); gap: 24px; align-items: start; margin-inline: -8px; }
.support-head > div:last-child { min-width: 0; }
.support-symbol { width: 126px; height: 126px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #987024, #c19a4d); box-shadow: inset 0 0 0 1px rgba(255,255,255,.2); }
.green .support-symbol { background: linear-gradient(135deg, #3d744e, #72a77d); }
.support-symbol svg { width: 86px; height: 86px; fill: none; stroke: currentColor; stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
.support-symbol.building svg { width: 91px; height: 91px; }
.support-card h3 { margin: 7px 0 8px; font-family: var(--serif); font-size: clamp(27px, 2.4vw, 34px); line-height: 1.42; letter-spacing: .02em; overflow-wrap: anywhere; text-wrap: balance; }
.support-card .support-head p:last-child { max-width: 100%; margin: 0; color: #4a5049; font-size: 16px; font-weight: 500; line-height: 2.05; overflow-wrap: anywhere; }
.price-list { align-self: stretch; margin: 14px 0 18px; }
.price-list > div { min-height: 65px; display: flex; justify-content: space-between; align-items: center; padding: 12px 10px; border-bottom: 1px solid var(--line); }
.price-list dt { font-size: 20px; font-weight: 700; line-height: 1.2; }
.price-list dd { margin: 0; font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.gold .price-list { color: var(--ink); }
.gold .price-list dd { color: var(--gold-deep); }
.green .price-list { color: var(--green); }
.price-list strong { font-size: 26px; }
.support-button { min-height: 71px; display: flex; align-items: center; justify-content: center; gap: 12px; margin-inline: 16px; color: #fff; background: linear-gradient(135deg, #8d692f, #ad8747); border-radius: 6px; box-shadow: 0 7px 18px rgba(132,96,34,.14); font-size: 20px; font-weight: 700; transition: background-color .15s ease, box-shadow .15s ease; }
.green .support-button { background: linear-gradient(135deg, #3c7b4e, #60a06e); }
.support-button span { font-size: 28px; line-height: 1; }
.support-button:hover { box-shadow: 0 10px 22px rgba(70,76,57,.18); }

.flow { padding: 72px 0 84px; background: #fff; }
.flow .container { width: min(1260px, calc(100% - 64px)); }
.flow-list { width: min(1232px, 100%); margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(5, 198px); justify-content: space-between; gap: 0; list-style: none; transform: translateX(-14px); }
.flow-list li { position: relative; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid #e1dbd2; border-radius: 50%; background: radial-gradient(circle at 38% 30%, #fff, #faf7f1 80%); text-align: center; }
.flow-list li:not(:last-child)::after { content: "→"; position: absolute; top: calc(50% - 18px); right: -48px; color: var(--gold); font-size: 31px; font-family: var(--serif); font-weight: 400; line-height: 1; }
.flow-list .step { position: absolute; top: -22px; left: calc(50% - 22px); width: 44px; height: 44px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #9c752f, #bd9650); border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px rgba(157,118,48,.25); font: 21px/1 Georgia, serif; }
.flow-icon { width: 88px; height: 88px; display: grid; place-items: center; color: #907b59; line-height: 1; }
.flow-icon svg { width: 94px; height: 94px; fill: none; stroke: currentColor; stroke-width: 2.7; stroke-linecap: round; stroke-linejoin: round; }
.flow-list strong { font-size: 18px; line-height: 1.5; }

.about { padding: 96px 0; background: #f5f3ee; }
.about .profile-container { width: min(1260px, calc(100% - 64px)); }
.profile-layout { display: grid; grid-template-columns: minmax(0, 1.48fr) minmax(360px, .82fr); gap: 0; align-items: stretch; overflow: hidden; background: linear-gradient(110deg, #fff 0%, #fff 57%, #f2eee6 100%); border: 1px solid #d9d1c3; box-shadow: 0 18px 48px rgba(54,47,36,.065); }
.profile-story { position: relative; padding: 58px 64px 62px 68px; overflow: hidden; background: transparent; border: 0; box-shadow: none; }
.profile-story::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 4px; background: var(--gold); }
.profile-story::after { content: ""; position: absolute; right: -118px; bottom: -154px; width: 310px; height: 310px; border: 1px solid rgba(161,125,69,.12); border-radius: 50%; box-shadow: 0 0 0 34px rgba(161,125,69,.025); pointer-events: none; }
.profile-kicker { position: relative; z-index: 1; margin: 0 0 18px; color: var(--gold-deep); font-family: Georgia, serif; font-size: 12px; font-weight: 700; letter-spacing: .24em; }
.profile-title-row { position: relative; z-index: 1; display: flex; align-items: baseline; gap: 20px; padding-bottom: 24px; border-bottom: 1px solid #ded9cf; }
.profile-title-row span { color: #565b55; font-size: 15px; font-weight: 700; letter-spacing: .12em; }
.profile-title-row h2 { margin: 0; font-family: var(--serif); font-size: clamp(40px, 4.2vw, 54px); font-weight: 500; line-height: 1.25; letter-spacing: .11em; }
.profile-story blockquote { position: relative; z-index: 1; margin: 31px 0 22px; font-family: var(--serif); font-size: clamp(23px, 2.4vw, 31px); font-weight: 600; line-height: 1.75; letter-spacing: .035em; }
.profile-copy { position: relative; z-index: 1; max-width: 720px; }
.profile-copy p { margin: 0 0 16px; color: #454b45; font-size: 15px; font-weight: 500; line-height: 2; }
.profile-copy p:last-child { margin-bottom: 0; }
.profile-career { padding: 48px 42px 42px; color: var(--ink); background: transparent; border: 0; box-shadow: none; }
.profile-office { margin: 0 0 37px; padding-bottom: 22px; color: #433f38; border-bottom: 1px solid #cfc3b0; font-family: var(--serif); font-size: 20px; letter-spacing: .08em; }
.profile-career h3 { margin: 0 0 12px; color: var(--gold-deep); font-family: Georgia, serif; font-size: 12px; letter-spacing: .26em; text-transform: uppercase; }
.career-list { margin: 0; padding: 0; list-style: none; counter-reset: career; }
.career-list li { position: relative; display: grid; grid-template-columns: 88px 1fr; gap: 18px; padding: 19px 0 19px 18px; border-bottom: 1px solid #d5cbb9; }
.career-list li::before { content: ""; position: absolute; top: 26px; left: 0; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 4px rgba(161,125,69,.12); }
.career-list time { color: var(--gold-deep); font-size: 12px; font-weight: 700; line-height: 1.8; white-space: nowrap; }
.career-list p { margin: 0; color: #3e423d; font-size: 14px; font-weight: 600; line-height: 1.8; }

.startup { padding: 68px 0 72px; background: #fff; }
.startup .container { width: min(1268px, calc(100% - 64px)); }
.startup .section-heading { margin-bottom: 28px; }
.startup .section-heading h2::after { width: 42px; left: calc(50% - 21px); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 218px; display: grid; grid-template-columns: 86px 1fr; align-items: start; gap: 18px; padding: 30px 26px; border: 1px solid #ddd9d1; border-radius: 14px; background: #fff; }
.service-icon { width: 86px; height: 100%; display: grid; place-items: center; color: var(--gold-deep); }
.service-icon svg { width: 80px; height: 96px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0 0 20px; font-family: var(--serif); font-size: 23px; line-height: 1.65; }
.service-card p { margin: 0; color: #4d534c; font-size: 16px; font-weight: 500; line-height: 2.05; }

.faq { height: auto; padding: 72px 0 84px; background: #f5f3ee; }
.faq .container { width: min(1258px, calc(100% - 116px)); }
.faq .section-heading { margin-bottom: 30px; }
.faq .section-heading h2 { font-size: 34px; }
.faq .section-heading h2::after { width: 42px; left: calc(50% - 21px); }
.faq-list { display: grid; gap: 12px; }
.faq details { min-height: 0; overflow: hidden; padding: 8px 40px; background: #fff; border: 1px solid #ddd9d1; border-radius: 12px; }
.faq summary { min-height: 66px; display: grid; grid-template-columns: 50px 1fr 24px; align-items: center; gap: 30px; cursor: pointer; list-style: none; font-family: var(--sans); font-size: 21px; font-weight: 700; line-height: 1.45; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font: 27px/1 var(--serif); text-align: center; }
.faq details[open] summary::after { content: "−"; }
.q-mark { width: 50px; height: 50px; display: grid; place-items: center; color: var(--gold); border: 2px solid var(--gold); border-radius: 50%; font: 30px/1 Georgia, serif; }
.faq-answer { margin: 3px 60px 0 80px; color: #4f554e; font-size: 15px; font-weight: 500; line-height: 1.8; }
.faq-answer > div { padding-bottom: 14px; }
.faq summary:hover { color: #5e4821; }

.journal { padding: 92px 0 100px; background: #fff; }
.journal-container { width: min(1060px, calc(100% - 64px)); }
.journal-heading { margin-bottom: 43px; }
.section-eyebrow { margin: 0 0 5px !important; color: var(--gold-deep) !important; font-family: Georgia, serif; font-size: 11px !important; font-weight: 700; letter-spacing: .28em; }
.journal-heading h2 { font-size: clamp(34px, 3.4vw, 43px); }
.journal-list { margin: 0; padding: 0; border-top: 1px solid #dcd8cf; list-style: none; }
.journal-list li { min-height: 96px; display: grid; grid-template-columns: 115px 94px minmax(0, 1fr); align-items: center; gap: 22px; padding: 20px 8px; border-bottom: 1px solid #e5e2db; }
.journal-list time { color: #686d67; font-family: Arial, sans-serif; font-size: 14px; font-weight: 600; letter-spacing: .035em; }
.journal-tag { min-height: 32px; display: inline-flex; align-items: center; justify-content: center; padding: 5px 10px; color: #6b5631; background: #f5f1e8; border: 1px solid #d8cdbb; font-size: 12px; font-weight: 700; line-height: 1.3; }
.journal-title { min-width: 0; display: block; font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.7; letter-spacing: .025em; }
.journal-title.is-link { display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: color .25s ease, transform .35s cubic-bezier(.22,1,.36,1); }
.journal-title.is-link > span { flex: 0 0 auto; color: var(--gold-deep); font-family: Georgia, serif; font-size: 19px; }
.journal-title.is-link:hover { color: var(--gold-deep); transform: translateX(5px); }
.journal-empty { margin: 0; padding: 32px; color: var(--muted); background: var(--ivory); border: 1px solid var(--line); text-align: center; }
.journal-actions { display: flex; gap: 16px; margin-top: 34px; }
.journal-button { min-width: 240px; min-height: 60px; display: inline-flex; align-items: center; justify-content: space-between; gap: 26px; padding: 13px 23px; border: 1px solid #74766f; font-size: 15px; font-weight: 700; transition: color .25s ease, background-color .25s ease, border-color .25s ease; }
.journal-button span { color: var(--gold-deep); font-family: Georgia, serif; font-size: 21px; line-height: 1; }
.journal-button:hover { color: #fff; background: #2c332e; border-color: #2c332e; }
.journal-button:hover span { color: #fff; }

.journal-page { min-height: 68vh; padding: clamp(70px, 8vw, 112px) 0 120px; background: #f7f5ef; }
.journal-page-container { width: min(940px, calc(100% - 64px)); margin-inline: auto; }
.journal-breadcrumb { margin: 0 0 37px; color: #6b706a; font-size: 12px; font-weight: 600; }
.journal-breadcrumb a { transition: color .2s ease; }
.journal-breadcrumb a:hover { color: var(--gold-deep); }
.journal-article { padding: clamp(42px, 7vw, 80px); background: #fff; border: 1px solid #ddd7cb; box-shadow: 0 20px 52px rgba(45,48,43,.075); }
.journal-article-header { margin-bottom: 48px; padding-bottom: 34px; border-bottom: 1px solid #dcd7cc; }
.journal-post-meta { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; color: #696e68; font-size: 13px; font-weight: 600; }
.journal-post-category { display: inline-flex; align-items: center; min-height: 30px; padding: 5px 11px; color: #664f29; background: #f3eee4; border: 1px solid #d8cbb6; font-size: 11px; font-weight: 700; }
.journal-article h1 { margin: 0; font-family: var(--serif); font-size: clamp(32px, 4.5vw, 48px); font-weight: 600; line-height: 1.55; letter-spacing: .035em; }
.journal-featured-image { margin: 0 0 48px; }
.journal-featured-image img { width: 100%; display: block; }
.journal-post-content { color: #3f4741; font-size: 16px; line-height: 2.05; }
.journal-post-content > *:first-child { margin-top: 0; }
.journal-post-content > *:last-child { margin-bottom: 0; }
.journal-post-content h2 { margin: 52px 0 20px; padding: 15px 18px; background: #f3f0e8; border-left: 4px solid var(--gold); font-family: var(--serif); font-size: 27px; line-height: 1.65; }
.journal-post-content h3 { margin: 38px 0 15px; color: var(--green); font-family: var(--serif); font-size: 22px; line-height: 1.7; }
.journal-post-content p, .journal-post-content ul, .journal-post-content ol, .journal-post-content blockquote { margin: 0 0 22px; }
.journal-post-content ul, .journal-post-content ol { padding-left: 1.6em; }
.journal-post-content blockquote { padding: 20px 24px; color: #4c534d; background: #f7f5ef; border-left: 3px solid #c6aa7b; }
.journal-post-content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.journal-article-footer { margin-top: 55px; padding-top: 30px; border-top: 1px solid #dcd7cc; }
.journal-back-link { min-height: 56px; display: inline-flex; align-items: center; gap: 14px; padding: 11px 22px; color: #fff; background: var(--green); font-size: 14px; font-weight: 700; transition: background-color .2s ease, transform .2s ease; }
.journal-back-link:hover { background: #204c37; transform: translateY(-2px); }

.journal-archive-header { margin-bottom: 42px; }
.journal-archive-header .section-eyebrow { margin-bottom: 11px !important; }
.journal-archive-header h1 { margin: 0; font-family: var(--serif); font-size: clamp(36px, 5vw, 54px); font-weight: 600; line-height: 1.5; letter-spacing: .04em; }
.journal-archive-header > h1 + p { margin: 16px 0 0; color: #59605a; font-size: 15px; line-height: 1.9; }
.journal-archive-description { margin: 16px 0 0; color: #59605a; font-size: 15px; line-height: 1.9; }
.journal-archive-description > * { margin: 0; }
.journal-archive-header > p.journal-archive-count { margin: 18px 0 0; color: #756c5d; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.journal-archive-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.journal-archive-card { padding: 29px 32px; background: #fff; border: 1px solid #ddd8ce; }
.journal-archive-card .journal-post-meta { margin-bottom: 13px; }
.journal-archive-card h2 { margin: 0; font-family: var(--serif); font-size: 23px; line-height: 1.7; }
.journal-archive-card h2 a { transition: color .2s ease; }
.journal-archive-card h2 a:hover { color: var(--gold-deep); }
.journal-archive-card p { margin: 13px 0 0; color: #555d56; font-size: 14px; line-height: 1.9; }
.journal-read-more { display: inline-flex; gap: 11px; margin-top: 17px; color: var(--green); font-size: 13px; font-weight: 700; }
.journal-pagination { margin-top: 38px; }
.journal-pagination, .journal-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.journal-pagination .page-numbers { min-width: 42px; height: 42px; display: grid; place-items: center; padding: 5px 10px; background: #fff; border: 1px solid #d7d2c8; font-size: 13px; font-weight: 700; }
.journal-pagination .page-numbers.current { color: #fff; background: var(--green); border-color: var(--green); }

.service-detail-main { background: #fff; }
.service-hero { position: relative; overflow: hidden; padding: 104px 0 96px; background: linear-gradient(118deg, #f5f1e8, #fbfaf7 60%, #eee7da); border-bottom: 1px solid #ddd5c8; }
.service-hero::after { content: ""; position: absolute; right: -120px; bottom: -210px; width: 430px; height: 430px; border: 1px solid rgba(161,125,69,.17); border-radius: 50%; box-shadow: 0 0 0 52px rgba(161,125,69,.025); }
.service-hero-inner { position: relative; z-index: 1; width: min(980px, calc(100% - 64px)); margin-inline: auto; }
.breadcrumb { margin: 0 0 46px; color: #77776f; font-size: 12px; font-weight: 600; }
.breadcrumb a { transition: color .2s ease; }
.breadcrumb a:hover { color: var(--gold-deep); }
.service-page-eyebrow { margin: 0 0 12px; color: var(--gold-deep); font-family: Georgia, serif; font-size: 12px; font-weight: 700; letter-spacing: .25em; }
.service-hero h1 { max-width: 850px; margin: 0; font-family: var(--serif); font-size: clamp(40px, 5vw, 62px); font-weight: 500; line-height: 1.38; letter-spacing: .05em; }
.service-hero-lead { max-width: 760px; margin: 28px 0 0; color: #444a44; font-size: 17px; font-weight: 600; line-height: 2; }
.service-page-section { padding: 90px 0; }
.service-page-section.is-ivory { background: #f6f4ef; }
.service-detail-container { width: min(1080px, calc(100% - 64px)); margin-inline: auto; }
.service-detail-split { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(310px, .75fr); gap: 54px; align-items: start; }
.service-detail-copy h2, .service-page-heading { margin: 0 0 26px; font-family: var(--serif); font-size: clamp(29px, 3.1vw, 39px); font-weight: 600; line-height: 1.55; letter-spacing: .04em; }
.service-detail-copy p { margin: 0 0 18px; color: #4a5049; font-size: 16px; line-height: 2; }
.service-fee-card { padding: 36px 32px; background: #fff; border: 1px solid #d8d0c2; box-shadow: 0 14px 34px rgba(69,57,39,.06); }
.service-fee-card h2 { margin: 0 0 19px; padding-bottom: 16px; color: var(--gold-deep); border-bottom: 1px solid #ddd6c9; font-family: var(--serif); font-size: 23px; }
.service-fee-card dl { margin: 0; }
.service-fee-card dl > div { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid #e6e1d8; }
.service-fee-card dt { font-size: 14px; font-weight: 700; }
.service-fee-card dd { margin: 0; color: var(--gold-deep); font-family: var(--serif); font-size: 18px; font-weight: 600; text-align: right; }
.service-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-feature { min-height: 252px; padding: 32px 28px; background: #fff; border: 1px solid #dcd6ca; }
.service-feature-number { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 24px; color: #fff; background: var(--gold-deep); border-radius: 50%; font: 15px/1 Georgia, serif; }
.service-feature h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 21px; line-height: 1.6; }
.service-feature p { margin: 0; color: #535952; font-size: 14px; line-height: 1.9; }
.service-notice { display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: start; padding: 32px 36px; color: #493b23; background: #f1e9da; border-left: 3px solid var(--gold); }
.service-notice-mark { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; font-family: Georgia, serif; font-size: 23px; }
.service-notice h2 { margin: 0 0 7px; font-family: var(--serif); font-size: 22px; }
.service-notice p { margin: 0; color: #5b5140; font-size: 14px; line-height: 1.9; }
.service-detail-cta { padding: 82px 0; text-align: center; color: #fff; background: #2f3731; }
.service-detail-cta .service-detail-container { max-width: 820px; }
.service-detail-cta h2 { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(27px, 3.2vw, 39px); font-weight: 500; }
.service-detail-cta p { margin: 0 0 28px; color: #e3e5e1; font-size: 15px; line-height: 1.9; }
.service-detail-cta .button { min-width: 280px; min-height: 62px; background: #fff; border-color: #fff; color: #2f3731; }
.service-detail-cta .button:hover { color: #fff; background: transparent; }

.contact-section { padding: 92px 0 112px; background: #f1f0ec; border-top: 1px solid #e1ded7; }
.contact-container { width: min(1080px, calc(100% - 64px)); }
.contact-heading { max-width: 920px; margin: 0 auto 52px; text-align: center; }
.contact-eyebrow { margin: 0 0 11px; color: var(--gold-deep); font-family: Georgia, serif; font-size: 12px; font-weight: 700; letter-spacing: .3em; }
.contact-heading h2 { position: relative; margin: 0; padding-bottom: 22px; font-family: var(--serif); font-size: clamp(42px, 4.3vw, 58px); font-weight: 600; line-height: 1.35; letter-spacing: .05em; }
.contact-heading h2::after { content: ""; position: absolute; bottom: 0; left: calc(50% - 48px); width: 96px; height: 2px; background: var(--ink); }
.contact-heading > p:last-child { margin: 34px 0 0; color: #555b54; font-size: 18px; font-weight: 600; line-height: 2; }
.phone-panel { min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 54px; padding: 28px; text-align: center; background: #262b27; border: 1px solid #262b27; color: #fff; }
.phone-panel-label { margin-bottom: 7px; color: #d8d4cb; font-size: 17px; font-weight: 700; letter-spacing: .04em; }
.phone-panel strong { font-family: Arial, sans-serif; font-size: clamp(48px, 6.4vw, 78px); font-weight: 600; line-height: 1.12; letter-spacing: .035em; }
.phone-panel-hours { margin-top: 12px; color: #d8d4cb; font-size: 16px; font-weight: 600; }
.contact-form-card { padding: 58px 64px 64px; background: #fff; border: 1px solid #dedbd4; box-shadow: 0 16px 48px rgba(44,42,36,.055); }
.contact-form-intro { margin-bottom: 38px; text-align: center; }
.contact-form-intro p { margin: 0 0 5px; color: var(--gold-deep); font-family: Georgia, serif; font-size: 11px; font-weight: 700; letter-spacing: .28em; }
.contact-form-intro h3 { margin: 0; font-family: var(--serif); font-size: 29px; font-weight: 600; letter-spacing: .04em; }
.contact-form-intro span { display: block; margin-top: 9px; color: var(--muted); font-size: 13px; }
.contact-form-intro b, .form-field > span b { display: inline-flex; align-items: center; margin-left: 7px; padding: 2px 6px; color: #fff; background: var(--gold-deep); font-size: 10px; font-weight: 700; line-height: 1.4; letter-spacing: .05em; vertical-align: 2px; }
.contact-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 24px; }
.form-field { min-width: 0; display: grid; gap: 9px; }
.form-field-wide { grid-column: 1 / -1; }
.form-field > span { color: #353a35; font-size: 15px; font-weight: 700; }
.contact-form input:not([type="checkbox"]), .contact-form textarea, .contact-form select,
.wpcf7 input:not([type="submit"]):not([type="checkbox"]), .wpcf7 textarea, .wpcf7 select { width: 100%; border: 1px solid #d4d2cc; border-radius: 0; color: var(--ink); background: #fbfbf9; font: inherit; outline: none; transition: border-color .15s ease, background-color .15s ease; }
.contact-form input:not([type="checkbox"]), .wpcf7 input:not([type="submit"]):not([type="checkbox"]) { min-height: 58px; padding: 12px 14px; }
.contact-form select, .wpcf7 select { min-height: 58px; padding: 12px 14px; }
.contact-form textarea, .wpcf7 textarea { min-height: 220px; padding: 14px; resize: vertical; line-height: 1.8; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus, .wpcf7 input:focus, .wpcf7 textarea:focus, .wpcf7 select:focus { border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(40,92,67,.08); }
.privacy-consent { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 30px 0 22px; color: #50564f; font-size: 13px; font-weight: 600; }
.privacy-consent input { width: 18px; height: 18px; accent-color: var(--green); }
.privacy-consent .privacy-policy-link { color: var(--green); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.privacy-consent .privacy-policy-link:hover { color: #214b35; }

.standard-page { min-height: 65vh; padding: clamp(72px, 8vw, 118px) 0; background: #f7f5ef; }
.standard-page .container.narrow { width: min(900px, calc(100% - 64px)); }
.standard-page-article { padding: clamp(38px, 6vw, 76px); background: #fff; border: 1px solid #ddd7cb; box-shadow: 0 18px 48px rgba(45,48,43,.07); }
.standard-page-header { margin-bottom: 44px; padding-bottom: 29px; border-bottom: 1px solid #d8d1c4; }
.standard-page-header p { margin: 0 0 10px; color: var(--gold); font-family: Georgia, serif; font-size: 12px; font-weight: 700; letter-spacing: .2em; }
.standard-page-header h1 { margin: 0; font-family: var(--serif); font-size: clamp(32px, 4.2vw, 48px); font-weight: 600; line-height: 1.5; letter-spacing: .04em; }
.standard-page-content { color: #3f4741; font-size: 16px; line-height: 2; }
.standard-page-content > *:first-child { margin-top: 0; }
.standard-page-content > *:last-child { margin-bottom: 0; }
.standard-page-content h2 { margin: 48px 0 18px; padding-left: 17px; border-left: 3px solid var(--gold); font-family: var(--serif); font-size: 26px; line-height: 1.65; }
.standard-page-content h3 { margin: 34px 0 13px; color: var(--green); font-family: var(--serif); font-size: 21px; line-height: 1.7; }
.standard-page-content p, .standard-page-content ul, .standard-page-content ol { margin: 0 0 20px; }
.standard-page-content ul, .standard-page-content ol { padding-left: 1.5em; }
.standard-page-content a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

.policy-page { min-height: 70vh; padding: clamp(54px, 7vw, 96px) 0 clamp(86px, 9vw, 132px); background: #f5f2eb; }
.policy-page__inner { width: min(980px, calc(100% - 64px)); margin-inline: auto; }
.policy-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 0 0 26px; color: #6d706b; font-size: 12px; font-weight: 600; }
.policy-breadcrumb a { transition: color .2s ease; }
.policy-breadcrumb a:hover { color: var(--gold-deep); }
.policy-breadcrumb span[aria-hidden] { color: #ae9b7c; }
.policy-doc { position: relative; overflow: hidden; padding: clamp(48px, 7vw, 82px) clamp(38px, 7.5vw, 86px) clamp(58px, 8vw, 92px); background: #fff; border: 1px solid #ddd5c8; box-shadow: 0 22px 58px rgba(50,43,32,.075); }
.policy-doc::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 4px; background: linear-gradient(90deg, var(--gold-deep), #c2a573 46%, var(--green)); }
.policy-doc__header { margin-bottom: 6px; padding-bottom: clamp(36px, 5vw, 51px); border-bottom: 1px solid #dcd6ca; }
.policy-doc__eyebrow { margin: 0 0 12px; color: var(--gold-deep); font-family: Georgia, serif; font-size: 11px; font-weight: 700; letter-spacing: .28em; }
.policy-doc__title { margin: 0; font-family: var(--serif); font-size: clamp(35px, 4.8vw, 50px); font-weight: 600; line-height: 1.45; letter-spacing: .045em; }
.policy-doc__lead { max-width: 720px; margin: 24px 0 0; color: #4e554e; font-size: 16px; line-height: 2; }
.policy-doc__section { padding: clamp(34px, 4.5vw, 48px) 0; border-bottom: 1px solid #e4e0d8; }
.policy-doc__section:last-child { padding-bottom: 0; border-bottom: 0; }
.policy-doc__heading { position: relative; margin: 0 0 19px; padding-left: 19px; font-family: var(--serif); font-size: clamp(20px, 2.6vw, 25px); font-weight: 600; line-height: 1.65; letter-spacing: .025em; }
.policy-doc__heading::before { content: ""; position: absolute; top: .42em; bottom: .42em; left: 0; width: 3px; background: var(--gold); }
.policy-doc__section p { margin: 0 0 17px; color: #454d47; font-size: 15px; line-height: 2; }
.policy-doc__section p:last-child { margin-bottom: 0; }
.policy-doc__section ul { display: grid; gap: 7px; margin: 18px 0 0; padding: 0; list-style: none; }
.policy-doc__section li { position: relative; padding-left: 24px; color: #454d47; font-size: 15px; line-height: 1.85; }
.policy-doc__section li::before { content: ""; position: absolute; top: .78em; left: 3px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 4px rgba(161,125,69,.1); }
.policy-doc__section a { color: var(--green); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; overflow-wrap: anywhere; }
.policy-doc__section a:hover { color: #1f4b36; }
.policy-doc__section--contact { margin-top: 7px; }
.policy-doc__contact { display: grid; margin: 28px 0 0; padding: 5px 28px; background: #f5f1e8; border: 1px solid #ded3c2; }
.policy-doc__contact > div { min-height: 66px; display: grid; grid-template-columns: 128px minmax(0, 1fr); align-items: center; gap: 24px; padding: 13px 0; border-bottom: 1px solid #ddd3c3; }
.policy-doc__contact > div:last-child { border-bottom: 0; }
.policy-doc__contact dt { color: var(--gold-deep); font-size: 13px; font-weight: 700; letter-spacing: .06em; }
.policy-doc__contact dd { margin: 0; color: #343a35; font-size: 15px; font-weight: 600; line-height: 1.75; }
.contact-submit, .wpcf7 .wpcf7-submit { width: min(520px, 100%); min-height: 68px; display: flex; align-items: center; justify-content: center; gap: 18px; margin: 0 auto; padding: 14px 28px; color: #fff; background: var(--green); border: 0; border-radius: 0; box-shadow: none; font-family: var(--sans); font-size: 17px; font-weight: 700; letter-spacing: .05em; cursor: pointer; transition: background-color .15s ease; }
.contact-submit:hover, .wpcf7 .wpcf7-submit:hover { background: #204c37; }
.wpcf7 form { margin: 0; }
.wpcf7-form-control-wrap { display: block; }
.wpcf7 .wpcf7-list-item { margin: 0; }
.wpcf7 .wpcf7-acceptance label { display: flex; align-items: center; justify-content: center; gap: 9px; }
.wpcf7 .wpcf7-not-valid-tip { margin-top: 6px; color: #a13f36; font-size: 12px; }
.wpcf7 .wpcf7-spinner { display: block; margin: 10px auto 0; }
.wpcf7 form .wpcf7-response-output { margin: 22px 0 0; padding: 12px 16px; border-width: 1px; font-size: 13px; text-align: center; }
.mail-icon { width: 31px; height: 25px; margin-right: 3px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.mobile-contact-bar { display: none; }

.site-footer { min-height: 218px; padding: 30px 0; color: #fff; background: repeating-linear-gradient(100deg, rgba(255,255,255,.018) 0 1px, transparent 1px 76px), linear-gradient(112deg, #444542 0%, #343533 48%, #292a2b 100%); border-top: 1px solid rgba(255,255,255,.16); }
.footer-inner { width: min(1320px, calc(100% - 76px)); min-height: 157px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 38px; }
.footer-logo { margin: 0 0 10px; font-family: var(--serif); font-size: 29px; font-weight: 500; line-height: 1.4; letter-spacing: .02em; }
.site-footer p:not(.footer-logo) { margin: 0; color: #e5e5e2; font-size: 20px; line-height: 1.4; }
.site-footer .footer-services { font-size: 14px; line-height: 1.65; }
.footer-address { display: grid; gap: 1px; margin-top: 11px; color: #d9d9d5; font-size: 13px; font-style: normal; line-height: 1.65; letter-spacing: .02em; }
.site-footer .footer-registration { margin-top: 4px; color: #d9d9d5; font-size: 13px; line-height: 1.65; letter-spacing: .02em; }
.site-footer small { color: #e5e5e2; font-size: 18px; line-height: 1.55; }
.footer-meta { margin-right: 13px; text-align: right; transform: translateY(7px); }
.footer-meta nav { display: flex; justify-content: flex-end; align-items: center; gap: 0; margin-bottom: 20px; font-size: 20px; font-weight: 600; line-height: 1.55; }
.footer-meta nav a { padding: 0 34px; border-right: 1px solid rgba(255,255,255,.58); }
.footer-meta nav a:first-child { padding-left: 0; }
.footer-meta nav a:last-child { padding-right: 0; border-right: 0; }

@media (max-width: 1080px) {
  .site-header { height: 74px; }
  .menu-toggle { width: 48px; height: 48px; display: grid; place-content: center; gap: 5px; padding: 6px; border: 0; color: var(--ink); background: transparent; cursor: pointer; }
  .menu-toggle span { width: 26px; height: 1px; display: block; background: currentColor; transform-origin: center; transition: transform .46s cubic-bezier(.22, 1, .36, 1), opacity .24s ease; }
  .menu-toggle b { margin-top: 0; font-size: 8px; letter-spacing: .08em; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .global-nav { position: absolute; top: 74px; left: 0; right: 0; height: auto; display: flex; visibility: hidden; opacity: 0; gap: 0; padding: 8px 22px 22px; flex-direction: column; align-items: stretch; pointer-events: none; background: rgba(255,255,255,.985); border-top: 1px solid var(--line); box-shadow: 0 15px 25px rgba(40,38,34,.1); transform: translateY(-14px); transform-origin: top; transition: opacity .32s ease, transform .46s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .46s; will-change: opacity, transform; }
  .global-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); transition-delay: 0s; }
  .global-nav > a { opacity: 0; transform: translateY(-6px); transition: opacity .28s ease, transform .42s cubic-bezier(.22, 1, .36, 1), background-color .2s ease; }
  .global-nav.is-open > a { opacity: 1; transform: translateY(0); }
  .global-nav.is-open > a:nth-child(1) { transition-delay: .05s; }
  .global-nav.is-open > a:nth-child(2) { transition-delay: .08s; }
  .global-nav.is-open > a:nth-child(3) { transition-delay: .11s; }
  .global-nav.is-open > a:nth-child(4) { transition-delay: .14s; }
  .global-nav.is-open > a:nth-child(5) { transition-delay: .17s; }
  .global-nav > a:not(.nav-line) { display: block; height: auto; padding: 14px 8px; border-bottom: 1px solid #eeeae3; }
  .global-nav > a:not(.nav-line)::after { display: none; }
  .nav-line { margin-top: 12px; text-align: center; }
  .hero { min-height: 550px; }
  .hero-inner { min-height: 550px; }
  .needs-grid { grid-template-columns: repeat(3, 1fr); }
  .support-card { min-height: 0; grid-template-rows: 180px minmax(0, 1fr) 71px; }
  .support-head { min-height: 0; grid-template-columns: 76px 1fr; gap: 15px; margin-inline: 0; }
  .support-symbol { width: 70px; height: 70px; font-size: 45px; }
  .support-symbol svg, .support-symbol.building svg { width: 52px; height: 52px; }
  .support-card h3 { font-size: clamp(23px, 2.6vw, 28px); }
  .flow .container { width: min(900px, calc(100% - 48px)); }
  .flow-list { width: auto; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 25px; transform: none; }
  .flow-list li:not(:last-child)::after { right: -24px; font-size: 20px; }
  .flow-list .step { top: -17px; left: calc(50% - 17px); width: 34px; height: 34px; font-size: 16px; }
  .flow-icon { width: 66px; height: 66px; }
  .flow-icon svg { width: 58px; height: 58px; }
  .flow-list strong { font-size: 13px; }
  .profile-layout { grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr); }
  .profile-story { padding: 48px 42px 52px 46px; }
  .profile-career { padding: 43px 30px 35px; }
  .career-list li { grid-template-columns: 76px 1fr; gap: 12px; padding-left: 15px; }
  .service-card { height: auto; min-height: 260px; grid-template-columns: 1fr; align-content: start; text-align: center; }
  .service-icon { width: 76px; height: 76px; margin-inline: auto; }
  .service-icon svg { width: 70px; height: 70px; }
  .faq .container { width: min(100% - 48px, 900px); }
  .faq details { padding-inline: 24px; }
  .faq summary { grid-template-columns: 44px 1fr 20px; gap: 18px; font-size: 18px; }
  .q-mark { width: 44px; height: 44px; font-size: 25px; }
  .faq-answer { margin-left: 62px; font-size: 13px; }
  .contact-container { width: min(900px, calc(100% - 48px)); }
  .contact-form-card { padding: 48px; }
  .site-footer { height: auto; min-height: 177px; padding: 32px 0; }
  .footer-inner { width: min(100% - 48px, 900px); grid-template-columns: 1fr; gap: 22px; transform: none; }
  .footer-logo { margin-bottom: 8px; font-size: 26px; }
  .site-footer p:not(.footer-logo), .site-footer small { font-size: 13px; }
  .footer-address { margin-top: 9px; font-size: 12px; }
  .site-footer .footer-registration { margin-top: 3px; font-size: 12px; }
  .footer-meta { margin-right: 0; text-align: left; transform: none; }
  .footer-meta nav { justify-content: flex-start; margin-bottom: 10px; font-size: 15px; }
}

@media (max-width: 860px) {
  .support-grid { grid-template-columns: 1fr; }
  .support-card { width: min(620px, 100%); min-height: 520px; grid-template-rows: 150px minmax(0, 1fr) 71px; margin-inline: auto; }
  .support-head { grid-template-columns: 126px minmax(0, 1fr); gap: 24px; }
  .support-symbol { width: 126px; height: 126px; }
  .support-symbol svg, .support-symbol.building svg { width: 86px; height: 86px; }
}

@media (max-width: 760px) {
  .container, .container.narrow { width: min(100% - 32px, 620px); }
  .header-inner { width: calc(100% - 24px); }
  .site-logo { font-size: 20px; }
  .site-logo::after { display: none; }
  .hero { min-height: 570px; background-position: 64% center; }
  .hero::after { inset: 0; width: auto; background: linear-gradient(90deg, rgba(250,248,244,.94) 0%, rgba(250,248,244,.84) 57%, rgba(250,248,244,.42) 100%); }
  .hero-inner { width: calc(100% - 36px); }
  .hero-copy { width: 100%; padding-block: 60px; }
  .hero-kicker { font-size: 11px; }
  .hero h1 { margin-bottom: 20px; font-size: clamp(35px, 9.4vw, 42px); line-height: 1.45; letter-spacing: -.01em; }
  .hero-lead { font-size: 18px; }
  .hero-note { max-width: 440px; font-size: 12px; }
  .hero-actions { gap: 10px; }
  .button { min-height: 51px; padding-inline: 17px; font-size: 13px; }
  .section { padding-block: 46px; }
  .section-heading { margin-bottom: 28px; }
  .section-heading h2 { font-size: 24px; }
  .section-heading p { font-size: 13px; }
  .needs-grid { display: flex; gap: 12px; margin-inline: -16px; padding: 0 16px 8px; overflow-x: auto; scroll-snap-type: x mandatory; }
  .need-card { min-width: 150px; min-height: 175px; scroll-snap-align: start; }
  .need-card .icon { width: 64px; height: 64px; }
  .need-card .icon svg { width: 58px; height: 58px; }
  .need-card h3 { font-size: 13px; }
  .needs-advice { font-size: 12px; }
  .support-grid { grid-template-columns: 1fr; }
  .support { padding: 46px 0; }
  .support .container { width: min(100% - 32px, 620px); }
  .support-card { min-height: 0; display: block; padding: 23px 18px; }
  .support-head { min-height: 0; grid-template-columns: 66px 1fr; gap: 13px; }
  .support-symbol { width: 62px; height: 62px; font-size: 38px; }
  .support-symbol svg, .support-symbol.building svg { width: 46px; height: 46px; }
  .support-card h3 { font-size: 23px; }
  .support-card .support-head p:last-child { color: #4c534b; font-size: 13px; line-height: 1.9; }
  .price-list { margin: 18px 0 20px; }
  .price-list > div { min-height: 55px; padding-inline: 7px; }
  .price-list dt { font-size: 15px; }
  .price-list dd { font-size: 17px; }
  .support-button { margin-inline: 0; font-size: 13px; }
  .flow-list { grid-template-columns: 1fr; gap: 22px; max-width: 420px; margin-inline: auto; }
  .flow-list li { min-height: 105px; aspect-ratio: auto; display: grid; grid-template-columns: 70px 1fr; border-radius: 55px; padding: 18px 30px; text-align: left; }
  .flow-list li:not(:last-child)::after { content: "↓"; top: auto; right: 50%; bottom: -26px; transform: translateX(50%); font-size: 20px; }
  .flow-list .step { top: 50%; left: -9px; transform: translateY(-50%); }
  .flow-icon { width: 58px; height: 58px; }
  .flow-icon svg { width: 50px; height: 50px; }
  .flow-list strong { font-size: 14px; }
  .about { padding: 46px 0; }
  .about .profile-container { width: min(100% - 32px, 620px); }
  .profile-layout { grid-template-columns: 1fr; gap: 0; background: #fff; }
  .profile-story { padding: 37px 24px 39px 28px; }
  .profile-story::after { right: -112px; bottom: -148px; width: 250px; height: 250px; }
  .profile-kicker { margin-bottom: 12px; font-size: 10px; }
  .profile-title-row { gap: 13px; padding-bottom: 17px; }
  .profile-title-row span { font-size: 12px; }
  .profile-title-row h2 { font-size: 35px; }
  .profile-story blockquote { margin: 23px 0 18px; font-size: 20px; line-height: 1.8; }
  .profile-story blockquote br { display: none; }
  .profile-copy p { margin-bottom: 13px; font-size: 13px; line-height: 1.9; }
  .profile-copy p br { display: none; }
  .profile-career { padding: 35px 25px 28px; background: linear-gradient(145deg, #f0ebe1, #e7dfd0); border-top: 1px solid #d5cbb8; }
  .profile-office { margin-bottom: 27px; padding-bottom: 18px; font-size: 17px; }
  .career-list li { grid-template-columns: 82px 1fr; gap: 13px; padding: 16px 0 16px 15px; }
  .career-list time { font-size: 11px; }
  .career-list p { font-size: 13px; }
  .service-grid { grid-template-columns: 1fr; }
  .startup { padding: 46px 0; }
  .startup .container { width: min(100% - 32px, 620px); }
  .service-card { height: auto; min-height: 0; grid-template-columns: 60px 1fr; text-align: left; }
  .service-icon { width: 60px; height: 70px; }
  .service-icon svg { width: 54px; height: 54px; }
  .service-card h3 { margin-bottom: 10px; font-size: 18px; }
  .service-card p { font-size: 13px; line-height: 1.85; }
  .faq { height: auto; padding: 46px 0; }
  .faq .container { width: min(100% - 32px, 620px); }
  .faq .section-heading { margin-bottom: 24px; }
  .faq .section-heading h2 { font-size: 24px; }
  .faq-list { gap: 10px; }
  .faq details { height: auto; min-height: 0; padding: 9px 14px; }
  .faq summary { min-height: 54px; grid-template-columns: 38px 1fr 20px; gap: 10px; font-size: 14px; line-height: 1.55; }
  .q-mark { width: 38px; height: 38px; border-width: 1px; font-size: 21px; }
  .faq-answer { margin: 5px 28px 0 48px; font-size: 13px; line-height: 1.75; }
  .journal { padding: 57px 0 65px; }
  .journal-container { width: min(100% - 32px, 620px); }
  .journal-heading { margin-bottom: 29px; }
  .journal-heading h2 { font-size: 27px; }
  .journal-list li { min-height: 0; grid-template-columns: 93px 1fr; gap: 10px 13px; padding: 19px 4px; }
  .journal-list time { font-size: 12px; }
  .journal-tag { width: fit-content; min-height: 27px; padding: 4px 8px; font-size: 10px; }
  .journal-title { grid-column: 1 / -1; font-size: 16px; line-height: 1.7; }
  .journal-title.is-link { gap: 14px; }
  .journal-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 25px; }
  .journal-button { min-width: 0; min-height: 54px; gap: 10px; padding: 11px 13px; font-size: 12px; }
  .journal-page { padding: 52px 0 84px; }
  .journal-page-container { width: min(100% - 32px, 620px); }
  .journal-breadcrumb { margin-bottom: 27px; }
  .journal-article { padding: 31px 20px 38px; }
  .journal-article-header { margin-bottom: 33px; padding-bottom: 25px; }
  .journal-post-meta { flex-wrap: wrap; gap: 9px 12px; margin-bottom: 15px; font-size: 12px; }
  .journal-article h1 { font-size: 29px; }
  .journal-featured-image { margin-bottom: 33px; }
  .journal-post-content { font-size: 15px; line-height: 1.95; }
  .journal-post-content h2 { margin-top: 42px; padding: 13px 14px; font-size: 23px; }
  .journal-post-content h3 { margin-top: 32px; font-size: 20px; }
  .journal-article-footer { margin-top: 42px; }
  .journal-back-link { width: 100%; justify-content: center; }
  .journal-archive-header { margin-bottom: 30px; }
  .journal-archive-header h1 { font-size: 34px; }
  .journal-archive-card { padding: 24px 20px; }
  .journal-archive-card h2 { font-size: 20px; }
  .service-hero { padding: 66px 0 60px; }
  .service-hero::after { right: -170px; bottom: -240px; }
  .service-hero-inner, .service-detail-container { width: min(100% - 32px, 620px); }
  .breadcrumb { margin-bottom: 30px; }
  .service-hero h1 { font-size: 36px; }
  .service-hero-lead { margin-top: 21px; font-size: 14px; line-height: 1.9; }
  .service-page-section { padding: 56px 0; }
  .service-detail-split { grid-template-columns: 1fr; gap: 27px; }
  .service-detail-copy h2, .service-page-heading { margin-bottom: 19px; font-size: 25px; }
  .service-detail-copy p { font-size: 13px; line-height: 1.9; }
  .service-fee-card { padding: 28px 22px; }
  .service-feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-feature { min-height: 0; padding: 26px 22px; }
  .service-feature-number { margin-bottom: 17px; }
  .service-notice { grid-template-columns: 44px 1fr; gap: 15px; padding: 25px 20px; }
  .service-notice-mark { width: 42px; height: 42px; font-size: 18px; }
  .service-notice h2 { font-size: 19px; }
  .service-detail-cta { padding: 58px 0 74px; }
  .service-detail-cta p { font-size: 13px; }
  .service-detail-cta .button { width: 100%; min-width: 0; }
  .contact-section { padding: 64px 0 76px; }
  .contact-container { width: min(100% - 32px, 620px); }
  .contact-heading { margin-bottom: 36px; }
  .contact-heading h2 { font-size: 38px; }
  .contact-heading > p:last-child { margin-top: 25px; font-size: 14px; line-height: 1.9; }
  .contact-heading > p:last-child br { display: none; }
  .phone-panel { min-height: 172px; margin-bottom: 28px; padding: 24px 14px; }
  .phone-panel-label { font-size: 14px; }
  .phone-panel strong { font-size: clamp(32px, 9.5vw, 44px); letter-spacing: .01em; }
  .phone-panel-hours { font-size: 13px; }
  .contact-form-card { padding: 32px 22px 36px; }
  .contact-form-intro { margin-bottom: 27px; }
  .contact-form-intro h3 { font-size: 23px; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 20px; }
  .form-field-wide { grid-column: auto; }
  .contact-form input:not([type="checkbox"]), .wpcf7 input:not([type="submit"]):not([type="checkbox"]) { min-height: 55px; }
  .contact-form textarea, .wpcf7 textarea { min-height: 190px; }
  .privacy-consent { align-items: flex-start; margin-block: 24px 19px; text-align: left; }
  .standard-page { padding: 54px 0 72px; }
  .standard-page .container.narrow { width: min(100% - 32px, 620px); }
  .standard-page-article { padding: 31px 20px 38px; }
  .standard-page-header { margin-bottom: 30px; padding-bottom: 22px; }
  .standard-page-header h1 { font-size: 30px; }
  .standard-page-content { font-size: 15px; line-height: 1.95; }
  .standard-page-content h2 { margin-top: 38px; font-size: 23px; }
  .standard-page-content h3 { font-size: 19px; }
  .policy-page { padding: 39px 0 78px; }
  .policy-page__inner { width: min(100% - 28px, 620px); }
  .policy-breadcrumb { margin-bottom: 19px; font-size: 11px; }
  .policy-doc { padding: 39px 20px 48px; }
  .policy-doc__header { padding-bottom: 31px; }
  .policy-doc__eyebrow { margin-bottom: 9px; font-size: 9px; }
  .policy-doc__title { font-size: 29px; letter-spacing: .02em; }
  .policy-doc__lead { margin-top: 18px; font-size: 14px; line-height: 1.9; }
  .policy-doc__section { padding: 31px 0; }
  .policy-doc__heading { margin-bottom: 15px; padding-left: 15px; font-size: 19px; }
  .policy-doc__section p, .policy-doc__section li { font-size: 14px; line-height: 1.9; }
  .policy-doc__contact { margin-top: 22px; padding: 2px 17px; }
  .policy-doc__contact > div { grid-template-columns: 1fr; gap: 3px; padding: 14px 0; }
  .policy-doc__contact dd { font-size: 14px; }
  .contact-submit, .wpcf7 .wpcf7-submit { min-height: 60px; font-size: 15px; }
  .mail-icon { width: 24px; }
  .mobile-contact-bar { position: fixed; z-index: 150; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: minmax(0, 1fr); gap: 8px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); border-top: 1px solid #ddd7cc; box-shadow: 0 -8px 24px rgba(37,40,35,.14); backdrop-filter: blur(12px); }
  .mobile-contact-bar a { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; border-radius: 7px; font-size: 13px; font-weight: 700; }
  .mobile-contact-line { color: #fff; background: linear-gradient(135deg, #2d7745, #3d9156); }
  .mobile-contact-form { color: var(--gold-deep); background: #fff; border: 1px solid var(--gold); }
  .mobile-contact-bar .line-badge { min-width: 31px; height: 23px; margin-right: 2px; }
  .mobile-contact-bar .mail-icon { width: 21px; height: 17px; }
  .site-footer { padding-bottom: 100px; }
  .footer-inner { width: min(100% - 32px, 620px); align-items: flex-start; }
  .footer-meta { width: 100%; }
  .footer-meta nav { justify-content: flex-start; flex-wrap: wrap; }
  .footer-meta nav a:first-child { padding-left: 0; }
}

@media (max-width: 450px) {
  .site-logo { font-size: 18px; }
  .hero { min-height: 600px; }
  .hero-copy { padding-block: 50px; }
  .hero h1 { font-size: 36px; }
  .hero-lead br, .hero-note br { display: none; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .section-heading h2 { font-size: 21px; }
  .support-head { grid-template-columns: 54px 1fr; }
  .support-symbol { width: 51px; height: 51px; font-size: 31px; }
  .support-card h3 { font-size: 20px; }
  .profile-title-row { display: grid; gap: 3px; }
  .career-list li { grid-template-columns: 1fr; gap: 4px; }
  .journal-actions { grid-template-columns: 1fr; }
  .phone-panel strong { font-size: 31px; }
  .contact-form-card { padding-inline: 17px; }
  .footer-meta nav { display: grid; gap: 7px; }
  .footer-meta nav a { padding: 0; border: 0; }
}

@media (max-width: 760px) {
  body.single-post .site-footer, body.archive .site-footer, body.blog .site-footer, body.journal-static .site-footer { padding-bottom: 32px; }
}

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