:root {
  --navy: #082b54;
  --navy-deep: #05223f;
  --navy-soft: #1b4267;
  --gold: #d4b47c;
  --gold-light: #e7d4ad;
  --ivory: #f8f4ec;
  --paper: #fffdf9;
  --ink: #1e2b37;
  --muted: #6c746f;
  --line: #ded6c8;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
  --sans: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button { font: inherit; }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #b68a4b;
  outline-offset: 4px;
}
[id] { scroll-margin-top: 112px; }
main:focus { outline: none; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 1rem;
  padding: .7rem 1rem;
  color: #fff;
  background: var(--navy);
  transform: translateY(-110%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 0 clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(8, 43, 84, .12);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: .08em;
  white-space: nowrap;
}
.brand-name { font-size: clamp(18px, 2vw, 28px); }
.brand-service { font-size: clamp(14px, 1.4vw, 20px); }
.brand-divider { width: 1px; height: 28px; background: #8794a1; }

.menu-button {
  position: relative;
  z-index: 32;
  display: grid;
  gap: 7px;
  width: 54px;
  margin-left: auto;
  padding: 10px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button span {
  display: block;
  height: 3px;
  border-radius: 4px;
  background: var(--navy);
  transition: transform .3s ease, opacity .3s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
.site-menu {
  position: fixed;
  inset: 92px 0 auto;
  display: grid;
  gap: 2px;
  padding: 22px clamp(24px, 6vw, 96px) 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .99);
  box-shadow: 0 22px 40px rgba(8, 43, 84, .12);
  opacity: 0;
  transform: translateY(-18px);
  visibility: hidden;
  pointer-events: none;
  transition: .25s ease;
}
.site-menu.is-open { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
.site-menu a {
  padding: 15px 4px;
  border-bottom: 1px solid #e8e1d5;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: .06em;
}
.site-menu .nav-cta { border: 0; color: #fff; text-align: center; background: var(--navy); }

.hero {
  position: relative;
  min-height: min(940px, calc(100vh - 40px));
  overflow: hidden;
  background: url("assets/hero-desk.png") center / cover no-repeat;
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.94) 34%, rgba(255,255,255,.6) 58%, rgba(255,255,255,.03) 86%),
    linear-gradient(0deg, rgba(255,253,249,.96) 0%, rgba(255,255,255,0) 24%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, 55vw);
  padding: clamp(78px, 9vh, 118px) 0 70px clamp(36px, 7vw, 112px);
}
.eyebrow {
  display: none;
  margin: 0 0 26px;
  color: var(--navy-soft);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .16em;
}
.botanical-mark {
  width: 176px;
  height: 48px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--gold);
  transform: skewY(-6deg);
  opacity: .9;
}
.botanical-mark::before,
.botanical-mark::after,
.botanical-mark span::before {
  position: absolute;
  width: 18px;
  height: 8px;
  border: 1px solid var(--gold);
  border-right: 0;
  border-bottom: 0;
  border-radius: 100% 0;
  content: "";
}
.botanical-mark::before { margin: 14px 0 0 20px; transform: rotate(-20deg); }
.botanical-mark::after { margin: 27px 0 0 38px; transform: rotate(18deg); }
.botanical-mark span::before { margin: 5px 0 0 40px; transform: rotate(-36deg); }
.hero h1 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(48px, 5.4vw, 82px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: .045em;
}
.hero h1 span { display: block; white-space: nowrap; }
.hero-lead {
  margin: 32px 0 0;
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 2;
  letter-spacing: .08em;
}
.service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: max-content;
  max-width: 100%;
  margin: 46px 0 0;
  padding: 14px 0;
  border-block: 1px solid var(--gold);
  color: var(--navy);
  font-size: 16px;
  letter-spacing: .04em;
}
.service-line span + span::before { margin: 0 12px; color: var(--gold); content: "/"; }
.hero-badges { display: flex; gap: 14px; margin-top: 28px; }
.hero-badges span {
  padding: 13px 23px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(245, 238, 226, .94);
  font-size: 16px;
  white-space: nowrap;
}
.hero-badges b { color: var(--navy); font-family: var(--sans); font-size: 13px; }
.primary-cta {
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  align-items: center;
  width: min(610px, 100%);
  min-height: 92px;
  margin-top: 30px;
  padding: 10px 30px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  outline: 5px solid var(--navy);
  outline-offset: -4px;
  color: #fff;
  background: linear-gradient(120deg, var(--navy-deep), #0b3a70);
  box-shadow: 0 16px 32px rgba(8,43,84,.23);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(8,43,84,.3); }
.primary-cta:focus-visible { outline-color: #fff; }
.primary-cta > span:nth-child(2) { text-align: center; font-size: 27px; letter-spacing: .14em; }
.cta-icon { color: var(--gold-light); font-family: var(--sans); font-size: 26px; }
.cta-arrow { font-family: var(--sans); font-size: 42px; font-weight: 200; }
.hero-note { margin: 18px 0 0; color: #555f66; font-family: var(--sans); font-size: 12px; letter-spacing: .04em; }

.intro-section {
  position: relative;
  overflow: hidden;
  padding: 120px 24px;
  background:
    radial-gradient(circle at 50% 0, rgba(229,214,185,.35), transparent 38%),
    var(--ivory);
  text-align: center;
}
.intro-section::before {
  position: absolute;
  top: -66px;
  left: 50%;
  width: 120%;
  height: 100px;
  border-radius: 50% 50% 0 0;
  background: var(--ivory);
  content: "";
  transform: translateX(-50%);
}
.section-shell { position: relative; z-index: 1; width: min(1080px, 100%); margin: 0 auto; }
.intro-shell { width: min(800px, 100%); }
.section-kicker { margin: 0 0 20px; color: #9d7b48; font-family: var(--sans); font-size: 13px; letter-spacing: .2em; }
.intro-section h2 { margin: 0; color: var(--navy); font-size: clamp(34px, 4.4vw, 58px); font-weight: 500; line-height: 1.55; letter-spacing: .08em; }
.reason-layout { display: grid; grid-template-columns: 1.25fr .85fr; gap: 64px; margin-top: 54px; text-align: left; }
.reason-copy > p { margin: 0 0 20px; font-size: 18px; line-height: 2.05; }
.reason-copy strong { color: var(--navy); }
.reason-copy blockquote {
  margin: 34px 0 0;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--gold);
  color: var(--navy);
  font-size: 20px;
  line-height: 1.9;
}
.thought-card { padding: 34px; border: 1px solid #e0d5c3; background: rgba(255,255,255,.68); }
.thought-title { margin: 0 0 20px; color: var(--navy); font-size: 18px; letter-spacing: .08em; }
.check-list { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 26px; line-height: 1.7; }
.check-list li::before { position: absolute; left: 0; color: var(--gold); content: "—"; }

.section-pad { padding: 124px 28px; }
.section-heading { margin-bottom: 58px; }
.heading-left { display: flex; align-items: flex-start; gap: 42px; }
.heading-center { width: min(800px, 100%); margin-right: auto; margin-left: auto; text-align: center; }
.section-number { margin: 0; color: var(--gold); font-family: var(--serif); font-size: 58px; line-height: 1; letter-spacing: -.04em; }
.section-heading h2,
.profile-copy h2,
.approach-copy h2,
.contact-shell h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(34px, 4.1vw, 54px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .06em;
}
.section-heading > p:last-child { margin: 24px auto 0; font-size: 17px; line-height: 1.9; }
.section-intro { width: min(800px, 100%); margin: -18px 0 54px 100px; font-size: 18px; line-height: 2; }

.organize-section { background: #fff; }
.topic-grid { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); }
.topic-grid article { min-height: 260px; padding: 32px 24px; border-right: 1px solid var(--line); background: #fff; }
.topic-grid article:last-child { border-right: 0; }
.topic-grid article:nth-child(even) { background: #fbf8f2; }
.topic-grid span { color: #ae8750; font-family: var(--sans); font-size: 12px; letter-spacing: .18em; }
.topic-grid h3 { margin: 46px 0 16px; color: var(--navy); font-size: 20px; font-weight: 500; line-height: 1.5; }
.topic-grid p { margin: 0; color: #566069; font-family: var(--sans); font-size: 14px; line-height: 1.85; }

.divide-section { background: var(--ivory); }
.divide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.divide-card { padding: 50px clamp(28px, 4vw, 56px); border-top: 3px solid var(--gold); background: #fff; box-shadow: 0 16px 40px rgba(45,39,28,.06); }
.expert-card { color: #fff; border-top-color: var(--gold-light); background: var(--navy); }
.card-label { margin: 0 0 20px; color: #a27d48; font-family: var(--sans); font-size: 12px; letter-spacing: .18em; }
.expert-card .card-label { color: var(--gold-light); }
.divide-card h3 { margin: 0 0 30px; color: var(--navy); font-size: 27px; font-weight: 500; line-height: 1.55; }
.expert-card h3 { color: #fff; }
.line-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.line-list li { padding: 15px 0 15px 28px; border-bottom: 1px solid #e5dfd4; line-height: 1.6; }
.expert-card .line-list li { border-color: rgba(255,255,255,.16); }
.line-list li::before { display: inline-block; width: 28px; margin-left: -28px; color: var(--gold); content: "○"; }
.small-note { color: #70766f; font-family: var(--sans); font-size: 12px; line-height: 1.75; }
.expert-card .small-note { color: rgba(255,255,255,.68); }
.emphasis-note { margin: 28px 0 0; padding: 18px 20px; border: 1px solid rgba(232,213,176,.55); color: var(--gold-light); line-height: 1.7; }

.services-section { background: #f4f1ea; }
.service-panel {
  display: grid;
  grid-template-columns: 150px 1fr;
  margin-top: 30px;
  border: 1px solid #ded7ca;
  background: #fff;
  box-shadow: 0 18px 42px rgba(53,45,30,.055);
}
.service-index { display: flex; flex-direction: column; align-items: center; padding: 46px 20px; border-right: 1px solid #ded7ca; color: var(--navy); background: #faf7f1; }
.service-index span { font-family: var(--sans); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.service-index b { margin-top: 12px; color: var(--gold); font-size: 52px; font-weight: 400; }
.service-body { padding: clamp(38px, 5vw, 68px); }
.service-tag { margin: 0 0 10px; color: #a47d44; font-family: var(--sans); font-size: 13px; letter-spacing: .16em; }
.service-body h3 { margin: 0; color: var(--navy); font-size: clamp(29px, 3.4vw, 43px); font-weight: 500; letter-spacing: .06em; }
.service-summary { width: min(820px, 100%); margin: 25px 0 38px; font-size: 17px; line-height: 2; }
.service-detail-grid { display: grid; grid-template-columns: 1.4fr .75fr; gap: 54px; align-items: start; padding-top: 34px; border-top: 1px solid #dfd8cb; }
.service-detail-grid h4,
.details-grid h4 { margin: 0 0 16px; color: var(--navy); font-size: 17px; font-weight: 500; }
.service-detail-grid ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 26px; margin: 0; padding-left: 20px; font-family: var(--sans); font-size: 14px; line-height: 1.7; }
.price-block { padding: 28px; border-left: 1px solid var(--gold); background: #faf6ed; }
.price-block > span { display: block; color: #987243; font-family: var(--sans); font-size: 12px; letter-spacing: .12em; }
.price-block > strong { display: inline-block; margin-top: 8px; color: var(--navy); font-size: clamp(25px, 2.6vw, 36px); font-weight: 500; }
.price-block > small { color: #5f676c; }
.price-block p { margin: 24px 0 0; font-family: var(--sans); font-size: 13px; line-height: 1.8; }
.phase-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 18px; margin: 34px 0; }
.phase-row > div { min-height: 130px; padding: 24px; border: 1px solid #ddd4c3; background: #faf8f4; }
.phase-row span { display: block; color: var(--gold); font-family: var(--sans); font-size: 12px; }
.phase-row strong { display: block; margin-top: 12px; color: var(--navy); font-size: 18px; font-weight: 500; }
.phase-row small { display: block; margin-top: 9px; color: #5a646d; font-family: var(--sans); }
.phase-row i { color: var(--gold); font-size: 24px; font-style: normal; }
.service-details { margin: 28px 0 20px; border-block: 1px solid #dfd8cb; }
.service-details summary { padding: 20px 0; color: var(--navy); cursor: pointer; font-size: 16px; }
.details-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 4px 0 28px; }
.details-grid > div { padding: 22px; background: #faf8f4; }
.details-grid p { margin: 0; font-family: var(--sans); font-size: 13px; line-height: 1.8; }

.approach-section { color: #fff; background: linear-gradient(145deg, #05223f, #0a3a6a); }
.approach-shell { text-align: center; }
.approach-copy { width: min(790px, 100%); margin: 0 auto; }
.light-kicker { color: var(--gold-light); }
.approach-copy h2,
.contact-shell h2 { color: #fff; }
.approach-copy h2 span { display: block; white-space: nowrap; }
.flow-section .section-heading h2 span { display: block; white-space: nowrap; }
.approach-copy > p:not(.section-kicker) { margin: 25px auto 0; font-size: 17px; line-height: 2; }
.approach-strong { color: var(--gold-light); }
.approach-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin: 64px 0 45px; padding: 0; list-style: none; }
.approach-steps li { position: relative; min-height: 150px; padding: 26px 12px; border: 1px solid rgba(231,212,173,.4); }
.approach-steps li + li::before { position: absolute; top: 50%; left: -12px; width: 12px; color: var(--gold); content: "→"; transform: translateY(-50%); }
.approach-steps span { color: var(--gold-light); font-family: var(--sans); font-size: 12px; }
.approach-steps p { margin: 24px 0 0; font-size: 15px; line-height: 1.7; }
.secondary-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(440px, 100%);
  margin: 44px auto 0;
  padding: 19px 24px;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}
.secondary-cta:hover { color: #fff; background: var(--navy); }
.light-cta { border-color: var(--gold-light); color: #fff; }
.light-cta:hover { color: var(--navy); background: var(--gold-light); }

.profile-section { background: #fff; }
.profile-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(48px, 8vw, 110px); align-items: center; }
.profile-photo {
  position: relative;
  margin: 0;
  border: 1px solid #dcd1bf;
  background: #f3f1ed;
  box-shadow: 18px 18px 0 #eee4d4;
}
.profile-photo::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212,180,124,.72);
  content: "";
  pointer-events: none;
}
.profile-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}
.profile-copy h2 { margin-bottom: 28px; }
.profile-copy h2 span { font-size: .78em; }
.profile-copy > p:not(.section-kicker) { font-size: 17px; line-height: 2; }
.credential-list { margin: 34px 0 0; border-top: 1px solid var(--line); }
.credential-list div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.credential-list dt { color: #9b7747; font-family: var(--sans); font-size: 13px; }
.credential-list dd { margin: 0; line-height: 1.6; }

.fees-section { background: var(--ivory); }
.fee-table { width: min(900px, 100%); margin: 0 auto; border: 1px solid #d9d0c1; background: #fff; }
.fee-row { display: grid; grid-template-columns: 1fr 280px; min-height: 68px; border-bottom: 1px solid #e4ddd1; }
.fee-row:last-child { border-bottom: 0; }
.fee-row span,
.fee-row strong { display: flex; align-items: center; padding: 16px 28px; }
.fee-row strong { border-left: 1px solid #e4ddd1; color: var(--navy); font-size: 18px; font-weight: 500; }
.fee-head { min-height: 52px; color: #fff; background: var(--navy); }
.fee-head span { font-family: var(--sans); font-size: 12px; letter-spacing: .12em; }
.fee-head span + span { border-left: 1px solid rgba(255,255,255,.24); }
.fee-note { width: min(900px, 100%); margin: 16px auto 0; }
.condition-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.condition-grid article { padding: 30px 24px; border-top: 2px solid var(--gold); background: #fff; }
.condition-grid article > span { color: #b08d5a; font-family: var(--sans); font-size: 11px; letter-spacing: .12em; }
.condition-grid h3 { margin: 22px 0 13px; color: var(--navy); font-size: 20px; font-weight: 500; }
.condition-grid p { margin: 0; font-family: var(--sans); font-size: 13px; line-height: 1.8; }
.condition-grid .free-consult { color: #fff; background: var(--navy); }
.condition-grid .free-consult h3 { color: #fff; }

.faq-section { background: #fff; }
.faq-shell { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px, 8vw, 110px); align-items: start; }
.compact-heading { position: sticky; top: 140px; }
.faq-list { border-top: 1px solid #cfc7b9; }
.faq-list details { border-bottom: 1px solid #cfc7b9; }
.faq-list summary { position: relative; padding: 27px 50px 27px 44px; color: var(--navy); cursor: pointer; font-size: 18px; line-height: 1.6; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before { position: absolute; left: 0; color: var(--gold); font-family: var(--sans); content: "Q"; }
.faq-list summary::after { position: absolute; right: 12px; color: var(--gold); content: "+"; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 42px 26px 44px; font-family: var(--sans); font-size: 14px; line-height: 1.95; }

.flow-section { background: #f7f4ee; }
.flow-list { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; margin: 0; padding: 0; list-style: none; }
.flow-list::before { position: absolute; top: 30px; right: 6%; left: 6%; height: 1px; background: var(--gold); content: ""; }
.flow-list li { position: relative; padding-top: 0; text-align: center; }
.flow-list > li > span { position: relative; z-index: 1; display: grid; place-items: center; width: 60px; height: 60px; margin: 0 auto 24px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); background: #f7f4ee; font-family: var(--sans); font-size: 12px; }
.flow-list h3 { margin: 0 0 12px; color: var(--navy); font-size: 16px; font-weight: 500; line-height: 1.5; }
.flow-list p { margin: 0; color: #60696f; font-family: var(--sans); font-size: 12px; line-height: 1.75; }

.contact-section { color: #fff; background: linear-gradient(145deg, #082b54, #041c35); text-align: center; }
.contact-shell { width: min(980px, 100%); }
.contact-shell > p:not(.section-kicker) { margin: 26px 0 0; font-size: 17px; line-height: 1.9; }
.contact-points { display: flex; justify-content: center; gap: 0; margin: 32px 0 0; color: var(--gold-light); }
.contact-points span + span::before { margin: 0 16px; color: rgba(255,255,255,.35); content: "/"; }
.contact-methods { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 12px; margin-top: 48px; }
.contact-methods a { position: relative; display: flex; flex-direction: column; justify-content: center; min-height: 128px; padding: 24px 40px 24px 24px; border: 1px solid rgba(255,255,255,.28); color: #fff; text-align: left; text-decoration: none; transition: background .2s ease, color .2s ease; }
.contact-methods a:hover { color: var(--navy); background: #fff; }
.contact-methods .contact-primary { color: var(--navy); background: var(--gold-light); }
.contact-methods small { margin-bottom: 9px; font-family: var(--sans); font-size: 11px; letter-spacing: .12em; }
.contact-methods strong { font-size: 17px; font-weight: 500; line-height: 1.5; overflow-wrap: anywhere; }
.contact-methods a > span { position: absolute; right: 20px; font-size: 22px; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: end; padding: 48px clamp(24px, 6vw, 90px); color: #d8dee4; background: #03172a; }
.site-footer p { margin: 0; line-height: 1.8; }
.footer-brand { color: #fff; font-size: 19px; letter-spacing: .1em; }
.site-footer a { color: var(--gold-light); font-family: var(--sans); font-size: 12px; text-decoration: none; }
.site-footer small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-family: var(--sans); font-size: 11px; }
.mobile-contact { display: none; }

@media (max-width: 760px) {
  [id] { scroll-margin-top: 82px; }
  .site-header { min-height: 70px; padding: 0 18px; }
  .brand { gap: 9px; letter-spacing: .04em; }
  .brand-name { font-size: 16px; }
  .brand-service { font-size: 12px; }
  .brand-divider { height: 20px; }
  .menu-button { width: 42px; gap: 6px; }
  .menu-button span { height: 2px; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .site-menu { inset: 70px 0 auto; }
  .hero {
    min-height: 850px;
    background-position: 59% top;
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.28) 28%, rgba(255,255,255,.95) 58%, #fff 86%),
      linear-gradient(90deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.08) 85%);
  }
  .hero-inner {
    width: 100%;
    padding: 256px 24px 72px;
  }
  .botanical-mark { width: 104px; height: 34px; margin-bottom: 12px; }
  .hero h1 { font-size: min(8.8vw, 52px); line-height: 1.45; letter-spacing: .03em; }
  .hero-lead { margin-top: 20px; font-size: 15px; line-height: 1.9; letter-spacing: .04em; }
  .service-line { display: block; margin-top: 28px; padding: 10px 0; font-size: 13px; line-height: 1.9; }
  .service-line span { display: inline; }
  .service-line span + span::before { margin: 0 5px; }
  .hero-badges { gap: 8px; margin-top: 20px; }
  .hero-badges span { flex: 1; padding: 10px 8px; font-size: 13px; text-align: center; }
  .primary-cta { grid-template-columns: 26px 1fr 20px; min-height: 72px; margin-top: 22px; padding: 8px 22px; }
  .primary-cta > span:nth-child(2) { font-size: 22px; }
  .cta-icon { font-size: 20px; }
  .cta-arrow { font-size: 32px; }
  .hero-note { text-align: center; }
  .intro-section { padding: 86px 24px 96px; }
  .intro-section h2 { font-size: 32px; }
  .reason-layout { grid-template-columns: 1fr; gap: 28px; margin-top: 38px; }
  .reason-copy > p { font-size: 16px; line-height: 2; }
  .reason-copy blockquote { margin-top: 26px; padding-left: 20px; font-size: 17px; }
  .thought-card { padding: 26px 22px; }
  .section-pad { padding: 86px 22px; }
  .section-heading { margin-bottom: 40px; }
  .heading-left { gap: 20px; }
  .heading-left .section-number { font-size: 38px; }
  .heading-center .section-number { font-size: 44px; }
  .section-heading h2,
  .profile-copy h2,
  .approach-copy h2,
  .contact-shell h2 { font-size: 31px; line-height: 1.55; }
  .approach-copy h2 { font-size: min(7vw, 31px); letter-spacing: .04em; }
  .flow-section .section-heading h2 { font-size: min(8.4vw, 31px); letter-spacing: .04em; }
  .section-intro { margin: -8px 0 34px; font-size: 16px; line-height: 1.95; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-grid article { min-height: auto; padding: 26px 24px; border-right: 0; border-bottom: 1px solid var(--line); }
  .topic-grid article:last-child { border-bottom: 0; }
  .topic-grid h3 { margin: 14px 0 9px; }
  .divide-grid { grid-template-columns: 1fr; }
  .divide-card { padding: 36px 24px; }
  .divide-card h3 { font-size: 23px; }
  .service-panel { grid-template-columns: 1fr; }
  .service-index { flex-direction: row; justify-content: space-between; padding: 16px 22px; border-right: 0; border-bottom: 1px solid #ded7ca; }
  .service-index b { margin: 0; font-size: 30px; }
  .service-body { padding: 32px 22px; }
  .service-body h3 { font-size: 29px; line-height: 1.5; }
  .service-summary { font-size: 15px; line-height: 1.95; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .service-detail-grid ul { grid-template-columns: 1fr; }
  .price-block { border-top: 1px solid var(--gold); border-left: 0; }
  .phase-row { grid-template-columns: 1fr; gap: 8px; }
  .phase-row i { transform: rotate(90deg); }
  .phase-row > div { min-height: auto; }
  .details-grid { grid-template-columns: 1fr; }
  .approach-steps { grid-template-columns: 1fr; gap: 8px; margin-top: 44px; }
  .approach-steps li { min-height: auto; padding: 20px; text-align: left; }
  .approach-steps li + li::before { top: -12px; left: 50%; transform: translateX(-50%) rotate(90deg); }
  .approach-steps p { margin: 8px 0 0; }
  .profile-grid { grid-template-columns: 1fr; gap: 42px; }
  .profile-photo { width: min(340px, 100%); margin: 0 auto; box-shadow: 12px 12px 0 #eee4d4; }
  .credential-list div { grid-template-columns: 86px 1fr; }
  .fee-row { grid-template-columns: 1fr 138px; }
  .fee-row span,
  .fee-row strong { padding: 14px 13px; }
  .fee-row strong { font-size: 14px; }
  .condition-grid { grid-template-columns: 1fr 1fr; }
  .faq-shell { grid-template-columns: 1fr; gap: 12px; }
  .compact-heading { position: static; }
  .faq-list summary { padding-right: 40px; font-size: 16px; }
  .flow-list { display: grid; grid-template-columns: 1fr; gap: 0; }
  .flow-list::before { top: 0; right: auto; bottom: 0; left: 24px; width: 1px; height: auto; }
  .flow-list li { display: grid; grid-template-columns: 50px 1fr; gap: 18px; padding-bottom: 28px; text-align: left; }
  .flow-list > li > span { width: 50px; height: 50px; margin: 0; }
  .flow-list h3 { font-size: 18px; }
  .flow-list p { font-size: 13px; }
  .contact-points { flex-direction: column; gap: 8px; }
  .contact-points span + span::before { display: none; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-methods a { min-height: 102px; }
  .site-footer { grid-template-columns: 1fr; padding-bottom: 110px; }
  .mobile-contact { position: fixed; z-index: 28; right: 12px; bottom: 12px; left: 12px; display: flex; align-items: center; justify-content: space-between; padding: 13px 20px; border: 1px solid var(--gold); border-radius: 4px; color: #fff; background: rgba(5,34,63,.96); box-shadow: 0 10px 30px rgba(0,0,0,.25); text-decoration: none; }
  .mobile-contact span { font-family: var(--sans); font-size: 10px; }
  .mobile-contact strong { font-size: 16px; font-weight: 500; letter-spacing: .08em; }
}

@media (max-width: 430px) {
  .brand-divider,
  .brand-service { display: none; }
  .desktop-break { display: none; }
  .hero { min-height: 825px; }
  .hero-inner { padding-top: 238px; }
  .hero-badges { flex-direction: column; }
  .condition-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
