:root {
  --bg: #fbf8ef;
  --bg-soft: #f3ead8;
  --white: #fffdf8;
  --ink: #273b32;
  --text: #2f4138;
  --muted: #6f7a70;
  --line: #e3d9c8;
  --green: #2f5b48;
  --green-2: #5f856d;
  --blue: #275979;
  --gold: #b49343;
  --orange: #d9824b;
  --shadow: 0 16px 38px rgba(82, 67, 43, .10);
  --serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif;
  --z-header: 50;
  --z-menu: 40;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  height: auto;
  max-width: 100%;
  width: 100%;
}

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

button {
  color: inherit;
  font: inherit;
}

ul,
ol {
  list-style: none;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.site-header {
  align-items: center;
  background: rgba(255, 253, 248, .96);
  border-bottom: 1px solid rgba(110, 92, 58, .16);
  display: grid;
  gap: 30px;
  grid-template-columns: auto 1fr auto;
  height: 94px;
  left: 0;
  padding: calc(14px + env(safe-area-inset-top)) 72px 14px;
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease-out, height 180ms ease-out;
  z-index: var(--z-header);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 25px rgba(82, 67, 43, .08);
  height: 78px;
}

.brand,
.footer-brand {
  align-items: center;
  display: flex;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  gap: 13px;
  line-height: 1.15;
  white-space: nowrap;
}

.brand small,
.footer-brand small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 4px;
}

.brand-mark {
  align-items: center;
  display: grid;
  flex: 0 0 auto;
  height: 50px;
  justify-items: center;
  width: 50px;
}

.brand-mark svg {
  fill: none;
  height: 42px;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-width: 3.4;
  width: 42px;
}

.global-nav {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  gap: 42px;
  justify-content: flex-end;
}

.global-nav a {
  position: relative;
}

.global-nav a::after {
  background: currentColor;
  bottom: -7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease-out;
  width: 100%;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  background: #3f735c;
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 15px 27px;
  transition: transform 160ms ease-out;
}

.header-cta:hover,
.header-cta:focus-visible {
  outline: 0;
  transform: translateY(-2px);
}

.menu-button,
.mobile-menu,
.mobile-contact-strip,
.mobile-page {
  display: none;
}

.section {
  margin: 0 auto;
  max-width: 1260px;
  padding: 84px 0;
  width: calc(100% - 136px);
}

.hero {
  background: var(--white);
  margin-top: 94px;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, #f5ebd7 0%, #ecf0e6 100%);
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 39%;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 52px;
  grid-template-columns: 610px 1fr;
  margin: 0 auto;
  max-width: 1320px;
  min-height: 600px;
  padding: 56px 64px 50px;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.68;
}

.hero-copy p {
  color: #4e5f57;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.15;
  margin-top: 28px;
  max-width: 510px;
}

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

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-width: 214px;
  padding: 15px 28px;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
}

.button:hover,
.button:focus-visible,
.mini-button:hover,
.mini-button:focus-visible,
.dark-button:hover,
.dark-button:focus-visible,
.outline-button:hover,
.outline-button:focus-visible {
  outline: 0;
  transform: translateY(-2px);
}

.button-orange {
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(232, 107, 50, .22);
  color: var(--white);
}

.hero-phone {
  align-items: center;
  display: grid;
  gap: 0 10px;
  grid-template-columns: 24px auto;
}

.hero-phone span {
  font-size: 22px;
  grid-row: 1 / 3;
}

.hero-phone strong {
  color: var(--ink);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.1;
}

.hero-phone small {
  color: var(--muted);
  font-size: 12px;
}

.hero-mosaic {
  display: grid;
  grid-template-columns: 145px 198px 190px 205px;
  grid-template-rows: 148px 132px 150px;
  height: 430px;
  justify-content: end;
  margin-left: -60px;
  max-width: 760px;
  position: relative;
}

.tile {
  background: transparent;
  border: 0;
  box-shadow: 0 6px 18px rgba(31, 43, 37, .08);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  overflow: hidden;
}

.tile img {
  height: 100%;
  object-fit: cover;
}

.tile-house {
  grid-column: 2 / 5;
  grid-row: 1 / 2;
}

.tile-consult {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.tile-inspect {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
}

.tile-room {
  grid-column: 3 / 5;
  grid-row: 2 / 4;
}

.entry-section {
  background: var(--bg-soft);
  padding: 54px 68px 44px;
}

.entry-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1250px;
}

.entry-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 268px;
  padding: 38px 54px 36px;
  text-align: center;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out;
}

.entry-card:hover,
.entry-card:focus-visible {
  box-shadow: 0 18px 42px rgba(82, 67, 43, .14);
  outline: 0;
  transform: translateY(-4px);
}

.entry-icon {
  color: var(--green);
  display: block;
  height: 42px;
  margin: 0 auto 18px;
  width: 42px;
}

.entry-business .entry-icon {
  color: #719176;
}

.entry-license .entry-icon {
  color: #c09743;
}

.entry-icon svg {
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
  width: 100%;
}

.entry-card h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1.35;
}

.entry-card p {
  color: #657267;
  font-size: 14px;
  line-height: 1.9;
  margin: 18px auto 0;
  max-width: 300px;
}

.mini-button,
.dark-button {
  background: var(--green);
  border-radius: 3px;
  color: var(--white);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  margin-top: auto;
  padding: 10px 20px;
  transition: transform 160ms ease-out;
}

.mini-button::after,
.dark-button::after {
  content: "›";
  margin-left: 12px;
}

.mini-button.blue {
  background: var(--blue);
}

.mini-button.gold {
  background: var(--gold);
}

.section-title {
  margin-bottom: 34px;
  text-align: center;
}

.section-title h2 {
  color: var(--ink);
  display: inline-block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.45;
  position: relative;
}

.section-title h2::after {
  background: currentColor;
  bottom: -12px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 60px;
}

.section-title.left {
  margin-bottom: 28px;
  text-align: left;
}

.section-title.left h2 {
  display: block;
  font-size: 43px;
}

.section-title.left h2::after {
  display: none;
}

.service-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid;
  min-height: 170px;
  padding: 26px 18px 20px;
  text-align: center;
  transition: border-color 160ms ease-out, transform 160ms ease-out, box-shadow 160ms ease-out;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: var(--green);
  box-shadow: var(--shadow);
  outline: 0;
  transform: translateY(-3px);
}

.line-icon {
  align-items: center;
  color: #415148;
  display: grid;
  height: 44px;
  justify-items: center;
  margin: 0 auto;
  width: 44px;
}

.line-icon svg {
  fill: none;
  height: 100%;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
  width: 100%;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 10px;
}

.service-card p {
  color: #4f5f58;
  font-size: 13px;
  line-height: 1.65;
  margin-top: 8px;
}

.info-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
}

.info-card {
  background: #f7f0e3;
  min-height: 440px;
  padding: 28px 28px 24px;
  position: relative;
}

.info-card h2 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 16px;
}

.info-card figure {
  height: 128px;
  margin-bottom: 18px;
  overflow: hidden;
}

.info-card figure img {
  height: 100%;
  object-fit: cover;
}

.info-card dl {
  border-top: 1px solid #ddd2c0;
  font-size: 12px;
}

.info-card dl div {
  border-bottom: 1px solid #ddd2c0;
  display: grid;
  gap: 16px;
  grid-template-columns: 78px 1fr;
  padding: 8px 0;
}

.info-card dt {
  color: var(--muted);
}

.target-card p,
.license-card p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

.target-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 10px;
}

.target-list li {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
}

.target-list span {
  font-weight: 600;
}

.target-list strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.target-list small {
  font-family: var(--sans);
  font-size: 13px;
  margin-left: 3px;
}

.license-card {
  overflow: hidden;
}

.license-image {
  height: 230px !important;
  margin-top: 18px;
}

.round-label {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  bottom: 72px;
  color: var(--ink);
  display: grid;
  font-size: 21px;
  font-weight: 700;
  height: 126px;
  justify-items: center;
  left: 50px;
  line-height: 1.3;
  position: absolute;
  text-align: center;
  width: 126px;
}

.info-card .dark-button {
  bottom: 24px;
  left: 28px;
  position: absolute;
  right: 28px;
}

.concerns {
  padding-top: 54px;
}

.concern-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.concern-grid p {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: #42524a;
  font-size: 13px;
  line-height: 1.65;
  padding: 15px 16px;
}

.center-note {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  margin-top: 22px;
  text-align: center;
}

.profile-section,
.origin,
.detail-section,
.license-detail {
  background: var(--bg);
}

.profile-layout {
  display: grid;
  gap: 70px;
  grid-template-columns: 390px 1fr;
}

.kicker {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.profile-layout h2,
.message-inner h2,
.license-layout h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 50px;
  font-weight: 600;
  line-height: 1.38;
}

.profile-copy {
  color: #52625a;
  line-height: 2.1;
}

.profile-copy p + p {
  margin-top: 16px;
}

.profile-boxes {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.profile-boxes article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px 22px;
}

.profile-boxes span,
.origin-grid span,
.detail-list span {
  color: var(--green);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.profile-boxes strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
}

.message-band {
  background: linear-gradient(135deg, #365f4d 0%, #2f5447 58%, #6f6a3b 140%);
  color: var(--white);
  padding: 80px 68px;
}

.message-inner {
  display: grid;
  gap: 80px;
  grid-template-columns: 420px 1fr;
  margin: 0 auto;
  max-width: 1260px;
}

.message-inner h2 {
  color: var(--white);
}

.message-inner em {
  color: #f0d990;
  font-style: normal;
}

.message-inner > div:last-child {
  color: rgba(255, 255, 255, .82);
  line-height: 2.15;
}

.message-inner > div:last-child p + p {
  margin-top: 18px;
}

.signature {
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .72);
  margin-top: 28px;
  padding-top: 18px;
}

.origin-copy {
  color: #52625a;
  line-height: 2.05;
  max-width: 1050px;
}

.origin-copy p + p {
  margin-top: 16px;
}

.origin-role {
  margin-top: 54px;
}

.origin-role-title {
  margin: 0 auto 34px;
  max-width: 900px;
  text-align: center;
}

.origin-role-title .kicker {
  align-items: center;
  display: inline-flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 14px;
}

.origin-role-title .kicker::before,
.origin-role-title .kicker::after {
  background: #d2b977;
  content: "";
  display: block;
  height: 1px;
  width: 44px;
}

.origin-role-title h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.1vw, 46px);
  font-weight: 500;
  letter-spacing: .05em;
  line-height: 1.45;
}

.origin-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.origin-grid article {
  background: var(--white);
  border: 1px solid rgba(163, 135, 82, .18);
  box-shadow: 0 22px 50px rgba(93, 74, 43, .08);
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.origin-grid article::before {
  background: linear-gradient(180deg, #d0b66f, #6d9a76);
  bottom: 34px;
  content: "";
  left: 0;
  position: absolute;
  top: 154px;
  width: 5px;
}

.origin-grid figure {
  aspect-ratio: 1.95 / 1;
  background: #efe4cf;
  overflow: hidden;
}

.origin-grid img {
  display: block;
  filter: saturate(.92) contrast(.97) brightness(1.02);
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  width: 100%;
}

.origin-grid article:hover img {
  transform: scale(1.035);
}

.origin-card-body {
  padding: 26px 30px 34px 40px;
}

.origin-card-body span {
  color: #8f7b40;
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: .08em;
  line-height: 1;
  margin-bottom: 18px;
}

.origin-grid h4 {
  font-family: var(--serif);
  font-size: clamp(19px, 1.35vw, 22px);
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 16px;
}

.origin-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

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

.detail-list article {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: 54px 260px 1fr;
  padding: 19px 0;
}

.detail-list h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.detail-list p {
  color: var(--muted);
  font-size: 14px;
}

.partners {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-card,
.license-layout {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px;
}

.partner-blue {
  background: #dfeef1;
}

.partner-card h2 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 16px;
}

.partner-card p {
  color: var(--muted);
  font-size: 14px;
}

.partner-card ul {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.partner-card li {
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(36, 54, 46, .1);
  font-size: 13px;
  padding: 8px 10px;
}

.license-layout {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 420px;
}

.license-layout > div > p {
  color: var(--muted);
  line-height: 2;
  margin-top: 20px;
}

.license-layout ul {
  background: #f0eee8;
  padding: 24px 28px;
}

.license-layout li {
  border-bottom: 1px solid #d2cfc6;
  padding: 12px 0;
}

.license-layout li:last-child {
  border-bottom: 0;
}

/* Detail sections rebuilt from concept 03 */
.profile-section {
  background: var(--bg);
  padding-top: 74px;
}

.profile-section .section-title {
  margin-bottom: 36px;
}

.profile-section .section-title h2 {
  font-size: 34px;
}

.profile-boxes {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.profile-boxes article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 190px;
  padding: 32px 34px;
}

.detail-icon {
  align-items: center;
  border: 1px solid #d4bd7e;
  border-radius: 50%;
  color: #9a7b2a;
  display: grid !important;
  font-family: var(--serif);
  font-size: 22px !important;
  font-weight: 700 !important;
  height: 58px;
  justify-items: center;
  margin-bottom: 18px !important;
  width: 58px;
}

.profile-boxes h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.profile-boxes p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.message-band {
  background: var(--green);
  color: var(--white);
  margin-top: 22px;
  padding: 82px 68px;
  position: relative;
}

.message-band::after {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
  height: 360px;
  position: absolute;
  right: -110px;
  top: 50px;
  width: 360px;
}

.message-inner {
  display: grid;
  gap: 86px;
  grid-template-columns: 430px minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1260px;
  position: relative;
  z-index: 1;
}

.message-statement h2 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.45;
}

.message-statement em {
  color: #d7bd74;
  font-style: normal;
}

.message-copy {
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 2.25;
  padding-top: 28px;
}

.message-copy p + p {
  margin-top: 20px;
}

.origin {
  padding-top: 88px;
}

.origin .section-title h2 {
  font-size: 38px;
}

.origin-copy {
  color: #52625a;
  line-height: 2.08;
  margin: 0 auto 34px;
  max-width: 1040px;
  text-align: left;
}

.origin-copy p + p {
  margin-top: 16px;
}

.origin-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.origin-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 250px;
  padding: 30px 30px 28px;
}

.origin-grid h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.55;
  margin-bottom: 12px;
}

.origin-grid p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}

.detail-section {
  padding-top: 58px;
}

.detail-list {
  border: 0;
  display: grid;
  gap: 12px 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-list article {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid;
  gap: 18px;
  grid-template-columns: 46px 190px minmax(0, 1fr);
  min-height: 82px;
  padding: 17px 20px;
}

.detail-list span {
  align-items: center;
  border: 1px solid #cfd6d0;
  border-radius: 50%;
  color: var(--green);
  display: grid;
  font-size: 12px;
  font-weight: 700;
  height: 38px;
  justify-items: center;
  margin: 0;
  width: 38px;
}

.detail-list h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.detail-list p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.detail-list b {
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
}

.partners {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 70px;
}

.partner-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 360px;
  overflow: hidden;
  padding: 0;
}

.partner-blue {
  background: #eef6f8;
}

.partner-card figure {
  height: 100%;
  min-height: 360px;
  overflow: hidden;
}

.partner-card img {
  height: 100%;
  object-fit: cover;
}

.partner-card > div {
  padding: 34px 34px 30px;
}

.partner-card h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 1.75vw, 26px);
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 16px;
  overflow-wrap: normal;
  text-wrap: auto;
  word-break: keep-all;
}

.partner-card p:not(.kicker) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.partner-card ul {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin: 20px 0 24px;
}

.partner-card li {
  background: transparent;
  border: 0;
  color: #405149;
  font-size: 13px;
  padding: 0 0 0 20px;
  position: relative;
}

.partner-card li::before {
  background: var(--green);
  border-radius: 50%;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: .78em;
  width: 6px;
}

.dark-button.blue {
  background: var(--blue);
}

.license-detail {
  padding-top: 72px;
}

.license-layout {
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  display: grid;
  gap: 44px;
  grid-template-columns: 360px minmax(0, 1fr);
  padding: 34px;
  position: relative;
}

.license-layout figure {
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.license-layout figure img {
  height: 100%;
  object-fit: cover;
}

.license-badge {
  align-items: center;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(31, 43, 37, .12);
  color: var(--ink);
  display: grid;
  font-size: 20px;
  font-weight: 700;
  height: 118px;
  justify-items: center;
  left: 276px;
  line-height: 1.35;
  position: absolute;
  text-align: center;
  top: 178px;
  width: 118px;
}

.license-layout > div {
  padding: 10px 0;
}

.license-layout > div > p {
  color: var(--muted);
  line-height: 2;
  margin: 0 0 24px;
}

.license-layout ul {
  background: #f6f4ee;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 20px 26px;
}

.license-layout li {
  border-bottom: 1px solid #d8d5cb;
  color: #415149;
  padding: 12px 0;
}

.license-layout li:nth-last-child(-n+2) {
  border-bottom: 0;
}

.license-layout li span {
  color: var(--green);
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  width: 34px;
}

.faq {
  padding-top: 54px;
}

.faq-grid {
  align-items: start;
  display: grid;
  gap: 12px 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.faq-grid button {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  padding: 14px 18px;
  text-align: left;
  width: 100%;
}

.faq-grid button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.faq-grid button span {
  font-size: 18px;
}

.faq-grid article > div {
  display: none;
  padding: 0 18px 14px;
}

.faq-grid article.is-open > div {
  display: block;
}

.faq-grid article.is-open button span {
  transform: rotate(45deg);
}

.faq-grid p {
  color: var(--muted);
  font-size: 13px;
}

.outline-button {
  border: 1px solid #98a098;
  border-radius: 3px;
  display: flex;
  font-weight: 700;
  justify-content: center;
  margin: 28px auto 0;
  max-width: 250px;
  padding: 10px 20px;
  transition: transform 160ms ease-out;
}

.contact {
  background: #eef1ed;
  padding: 46px 68px 34px;
}

.contact-inner {
  margin: 0 auto;
  max-width: 1260px;
}

.contact .section-title {
  margin-bottom: 26px;
}

.contact .section-title p {
  color: var(--muted);
  margin-top: 18px;
}

.contact-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-grid a,
.contact-grid div {
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(31, 43, 37, .06);
  color: var(--text);
  min-height: 136px;
  padding: 22px 24px;
}

.contact-grid span {
  color: #46584f;
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-grid strong {
  color: var(--ink);
  display: block;
  font-size: 18px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contact-grid a:first-child strong {
  font-size: 32px;
  line-height: 1.1;
}

.contact-grid small,
.contact-grid p {
  color: var(--muted);
  font-size: 13px;
}

.contact-grid div {
  display: grid;
  gap: 4px 16px;
  grid-template-columns: 1fr 82px;
}

.contact-grid div span {
  grid-column: 1 / -1;
  margin: 0;
}

.contact-grid img {
  align-self: end;
  grid-column: 2;
  grid-row: 2 / 4;
}

.footer {
  background: #2b5143;
  color: rgba(255, 255, 255, .78);
  padding: 44px 68px 22px;
}

.footer-inner {
  display: grid;
  gap: 70px;
  grid-template-columns: 330px 1fr;
  margin: 0 auto;
  max-width: 1260px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 18px;
}

.footer-brand .brand-mark {
  height: 44px;
  width: 44px;
}

.footer p {
  font-size: 13px;
}

.footer nav {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer nav strong {
  color: var(--white);
  display: block;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer nav a {
  display: block;
  font-size: 13px;
  margin-top: 7px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 11px !important;
  margin: 28px auto 0;
  max-width: 1260px;
  padding-top: 16px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease-out, transform 560ms ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .site-header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .global-nav {
    gap: 22px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-left: 40px;
    padding-right: 40px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-mosaic {
    justify-content: start;
    margin: 0;
  }

  .entry-section,
  .contact,
  .footer,
  .message-band {
    padding-left: 40px;
    padding-right: 40px;
  }

  .section {
    width: calc(100% - 80px);
  }

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

  .info-grid,
  .origin-grid,
  .entry-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 0;
  }

  .info-card .dark-button {
    margin-top: 18px;
    position: static;
  }

  .round-label {
    bottom: 92px;
  }
}

@media (max-width: 900px) {
  .global-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 76px;
    padding-bottom: 12px;
    padding-top: calc(12px + env(safe-area-inset-top));
  }

  .menu-button {
    background: transparent;
    border: 1px solid currentColor;
    display: block;
    height: 44px;
    position: relative;
    width: 44px;
    z-index: calc(var(--z-header) + 1);
  }

  .menu-button span {
    background: currentColor;
    height: 1px;
    left: 11px;
    position: absolute;
    transition: transform 160ms ease-out;
    width: 20px;
  }

  .menu-button span:first-child {
    top: 17px;
  }

  .menu-button span:last-child {
    top: 25px;
  }

  .menu-open .menu-button span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-open .menu-button span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    background: var(--bg);
    display: block;
    inset: 0;
    opacity: 0;
    padding: calc(104px + env(safe-area-inset-top)) 28px 40px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-12px);
    transition: opacity 180ms ease-out, transform 180ms ease-out;
    z-index: var(--z-menu);
  }

  .menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-menu nav {
    border-top: 1px solid var(--line);
  }

  .mobile-menu a {
    border-bottom: 1px solid var(--line);
    display: block;
    font-family: var(--serif);
    font-size: 22px;
    padding: 16px 0;
  }

  .hero {
    margin-top: 76px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-mosaic {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 180px);
    height: auto;
    max-width: none;
  }

  .tile,
  .tile-house,
  .tile-consult,
  .tile-inspect,
  .tile-room {
    clip-path: none;
    grid-column: auto;
    grid-row: auto;
  }

  .profile-layout,
  .message-inner,
  .license-layout,
  .footer-inner,
  .partners,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .profile-boxes,
  .origin-grid,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .partner-card {
    grid-template-columns: 1fr;
  }

  .partner-card figure {
    min-height: 220px;
  }

  .license-badge {
    left: 34px;
    top: 210px;
  }

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

  .detail-list article {
    grid-template-columns: 48px 1fr;
  }

  .detail-list p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .origin-grid h4 br,
  .partner-card h2 br {
    display: none;
  }

  html {
    scroll-padding-top: 76px;
  }

  body {
    background: #fbf8ef;
    font-size: 14px;
    line-height: 1.8;
  }

  p,
  h1,
  h2,
  h3,
  h4,
  a,
  strong {
    overflow-wrap: normal;
    word-break: keep-all;
  }

  p,
  li,
  dd,
  .license-card p,
  .license-layout > div > p,
  .origin-copy p,
  .message-copy p,
  .profile-boxes p,
  .origin-grid p,
  .detail-list article p,
  .partner-card p:not(.kicker),
  .contact-grid p {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .site-header {
    height: 68px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .brand {
    font-size: 16px;
    gap: 9px;
  }

  .brand small {
    font-size: 9px;
    margin-bottom: 2px;
  }

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

  .brand-mark svg {
    height: 32px;
    stroke-width: 3;
    width: 32px;
  }

  .menu-button {
    border-radius: 999px;
    height: 40px;
    width: 40px;
  }

  .mobile-menu {
    background: #fbf8ef;
    padding: calc(88px + env(safe-area-inset-top)) 24px 34px;
  }

  .mobile-menu a {
    font-size: 20px;
    padding: 14px 0;
  }

  .section {
    padding: 52px 0;
    width: calc(100% - 32px);
  }

  .section-title {
    margin-bottom: 26px;
    text-align: left;
  }

  .section-title h2 {
    display: block;
    font-size: 25px;
    letter-spacing: .02em;
    line-height: 1.5;
  }

  .section-title h2::after {
    left: 0;
    transform: none;
    width: 44px;
  }

  .section-title p {
    line-height: 1.8;
    margin-top: 18px;
  }

  .kicker {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .hero {
    margin-top: 68px;
    min-height: 0;
  }

  .hero::after {
    display: none;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 0;
    min-width: 0;
    padding: 18px 16px 36px;
  }

  .hero-copy,
  .entry-grid,
  .service-grid,
  .info-grid,
  .contact-grid {
    min-width: 0;
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 29px;
    letter-spacing: 0;
    line-height: 1.48;
    word-break: keep-all;
  }

  .hero-copy p {
    font-size: 13px;
    line-height: 1.95;
    margin-top: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    min-height: 48px;
    min-width: 0;
    width: 100%;
  }

  .hero-phone {
    background: rgba(255, 253, 248, .72);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
  }

  .hero-phone strong {
    font-size: 23px;
  }

  .hero-mosaic {
    display: grid;
    gap: 8px;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 150px 82px;
    height: auto;
    margin-left: 0;
    min-width: 0;
    order: -1;
    width: 100%;
  }

  .tile,
  .tile-house,
  .tile-consult,
  .tile-inspect,
  .tile-room {
    border-radius: 14px;
    clip-path: none;
    grid-column: auto;
    grid-row: auto;
    min-width: 0;
  }

  .tile-house {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .tile-consult {
    grid-column: 1;
    grid-row: 2;
  }

  .tile-inspect {
    grid-column: 2;
    grid-row: 2;
  }

  .tile-room {
    display: none;
  }

  .entry-section,
  .contact,
  .footer,
  .message-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .entry-card {
    align-items: center;
    display: grid;
    gap: 0 14px;
    grid-template-columns: 42px 1fr;
    min-height: 0;
    min-width: 0;
    padding: 16px;
    text-align: left;
  }

  .entry-icon {
    grid-row: 1 / 3;
    height: 34px;
    margin: 0;
    width: 34px;
  }

  .entry-card h2 {
    font-size: 19px;
  }

  .entry-card p {
    font-size: 12px;
    line-height: 1.6;
    margin: 5px 0 0;
  }

  .entry-card p br,
  .service-card p br {
    display: none;
  }

  .entry-card p,
  .service-card p,
  .contact-grid p {
    max-width: 100%;
  }

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

  .service-grid {
    gap: 10px;
  }

  .service-card {
    align-items: center;
    border-radius: 14px;
    display: grid;
    gap: 2px 14px;
    grid-template-columns: 40px 1fr;
    min-height: 0;
    padding: 16px;
    text-align: left;
  }

  .line-icon {
    grid-row: 1 / 3;
    height: 34px;
    margin: 0;
    width: 34px;
  }

  .service-card h3 {
    font-size: 18px;
    margin-top: 0;
  }

  .service-card p {
    font-size: 12px;
    line-height: 1.55;
    margin-top: 0;
  }

  .info-grid {
    gap: 12px;
    margin-top: 28px;
  }

  .info-card {
    border: 1px solid var(--line);
    border-radius: 18px;
    min-height: 0;
    overflow: hidden;
    padding: 22px;
  }

  .info-card,
  .license-card,
  .license-detail {
    min-width: 0;
  }

  .info-card h2 {
    font-size: 22px;
  }

  .info-card figure {
    border-radius: 12px;
    height: 150px;
  }

  .info-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .target-list strong {
    font-size: 26px;
  }

  .target-list li {
    gap: 12px;
  }

  .license-image {
    height: 210px !important;
  }

  .license-card p {
    font-size: 13px;
    line-height: 1.75;
  }

  .round-label {
    height: 104px;
    left: 32px;
    width: 104px;
    font-size: 17px;
  }

  .concern-grid {
    gap: 8px;
  }

  .concern-grid p {
    border-radius: 12px;
    font-size: 13px;
    padding: 13px 14px 13px 34px;
    position: relative;
  }

  .concern-grid p::before {
    color: #7e9b5d;
    content: "✓";
    font-weight: 700;
    left: 14px;
    position: absolute;
    top: 13px;
  }

  .origin-grid,
  .profile-boxes,
  .detail-list,
  .footer nav,
  .partner-card ul {
    grid-template-columns: 1fr;
  }

  .profile-boxes article,
  .origin-grid article {
    border-radius: 16px;
    min-height: 0;
  }

  .profile-boxes article {
    padding: 20px;
  }

  .message-statement h2,
  .message-inner h2,
  .license-layout h2,
  .profile-section .section-title h2,
  .origin .section-title h2 {
    font-size: 29px;
    line-height: 1.55;
  }

  .message-inner {
    gap: 28px;
  }

  .message-inner > div:last-child {
    line-height: 1.95;
  }

  .origin-copy {
    line-height: 1.95;
  }

  .origin-role {
    margin-top: 36px;
  }

  .origin-role-title {
    margin-bottom: 22px;
    text-align: left;
  }

  .origin-role-title .kicker {
    justify-content: flex-start;
  }

  .origin-role-title .kicker::after {
    display: none;
  }

  .origin-role-title h3 {
    font-size: 24px;
    letter-spacing: .01em;
    line-height: 1.55;
  }

  .origin-grid article {
    padding: 0;
  }

  .origin-grid article::before {
    bottom: 22px;
    top: 142px;
    width: 4px;
  }

  .origin-grid figure {
    aspect-ratio: 1.7 / 1;
  }

  .origin-card-body {
    padding: 20px 20px 24px 28px;
  }

  .origin-card-body span {
    font-size: 25px;
    margin-bottom: 12px;
  }

  .origin-grid h4 {
    font-size: 21px;
    line-height: 1.58;
  }

  .origin-grid p {
    font-size: 13px;
    line-height: 1.85;
  }

  .detail-list article {
    border-radius: 14px;
    gap: 8px 12px;
    grid-template-columns: 38px 1fr;
    min-height: 0;
    padding: 14px;
  }

  .detail-list span {
    height: 34px;
    width: 34px;
  }

  .detail-list h3 {
    font-size: 18px;
  }

  .detail-list article p {
    font-size: 12px;
    grid-column: 2;
    line-height: 1.65;
  }

  .partners {
    gap: 14px;
    padding-top: 44px;
  }

  .partner-card {
    border-radius: 18px;
    min-height: 0;
  }

  .partner-card figure {
    min-height: 190px;
  }

  .partner-card > div {
    padding: 22px;
  }

  .partner-card h2 {
    font-size: 22px;
    line-height: 1.55;
  }

  .partner-card p:not(.kicker) {
    font-size: 13px;
    line-height: 1.8;
  }

  .partner-card ul {
    margin-bottom: 0;
  }

  .license-layout {
    border-radius: 18px;
    gap: 18px;
    overflow: hidden;
    padding: 18px;
  }

  .license-layout > div,
  .license-layout > div > p {
    min-width: 0;
  }

  .license-layout figure {
    min-height: 210px;
  }

  .license-badge {
    height: 96px;
    left: 28px;
    top: 164px;
    width: 96px;
    font-size: 16px;
  }

  .license-layout ul {
    grid-template-columns: 1fr;
    padding: 16px 18px;
  }

  .license-layout li:nth-last-child(-n+2) {
    border-bottom: 1px solid #d8d5cb;
  }

  .license-layout li:last-child {
    border-bottom: 0;
  }

  .faq-grid {
    gap: 10px;
  }

  .faq-grid article {
    border-radius: 14px;
  }

  .faq-grid button {
    font-size: 13px;
    min-height: 52px;
    padding: 14px 16px;
  }

  .faq-grid p {
    font-size: 13px;
    line-height: 1.8;
  }

  .contact-inner {
    padding: 52px 0;
    width: calc(100% - 32px);
  }

  .contact-grid {
    gap: 10px;
  }

  .contact-grid a,
  .contact-grid > div {
    border-radius: 16px;
    min-height: 0;
    padding: 18px;
  }

  .contact-grid strong {
    font-size: 20px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-grid img {
    grid-column: auto;
    grid-row: auto;
    margin-top: 16px;
    max-width: 180px;
  }

  .footer {
    padding-top: 34px;
  }

  .footer-inner {
    gap: 30px;
  }

  .footer nav {
    gap: 22px;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  .hero { order: 1; }
  .mobile-contact-strip { order: 2; }
  .concerns { order: 3; }
  .services { order: 4; }
  .profile-section { order: 5; }
  .message-band { order: 6; }
  .origin { order: 7; }
  .detail-section { order: 8; }
  .partners { order: 9; }
  .license-detail { order: 10; }
  .faq { order: 11; }
  .contact { order: 12; }

  .entry-section {
    display: none;
  }

  .mobile-contact-strip {
    background: #f3ead8;
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: block;
    padding: 16px;
  }

  .mobile-contact-strip p {
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .mobile-contact-strip div {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-contact-strip a {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--green);
    display: flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    min-height: 44px;
  }

  .mobile-contact-strip a:first-child {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
  }

  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
    width: 100%;
  }

  body > .site-header,
  body > .mobile-menu,
  body > main,
  body > .footer {
    display: none !important;
  }

  body {
    background: #fbf8ef;
    color: #2f4138;
    padding: 0;
  }

  .mobile-page {
    display: block;
    min-height: 100vh;
    padding-bottom: env(safe-area-inset-bottom);
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
  }

  .mobile-page * {
    box-sizing: border-box;
    min-width: 0;
  }

  .mobile-page p,
  .mobile-page li,
  .mobile-page dd,
  .mobile-page summary,
  .mobile-page a,
  .mobile-page span,
  .mobile-page small {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-all;
  }

  .mobile-page h1,
  .mobile-page h2,
  .mobile-page h3 {
    max-width: 100%;
    overflow-wrap: normal;
    text-wrap: auto;
    word-break: normal;
  }

  .mobile-page img {
    display: block;
    height: auto;
    max-width: 100%;
  }

  .mobile-page-header {
    align-items: center;
    background: rgba(255, 253, 248, .96);
    border-bottom: 1px solid #e3d9c8;
    display: flex;
    height: 64px;
    left: 0;
    padding: 10px 16px;
    position: sticky;
    right: 0;
    top: 0;
    z-index: 70;
  }

  .mobile-page-brand {
    align-items: center;
    display: flex;
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    gap: 9px;
    line-height: 1.15;
  }

  .mobile-page-brand small {
    display: block;
    font-family: var(--sans);
    font-size: 9px;
    margin-bottom: 2px;
  }

  .mobile-main {
    display: block;
    overflow-x: hidden;
    width: 100%;
  }

  .mobile-hero {
    background: #fffdf8;
    padding: 14px 16px 34px;
    max-width: 100vw;
    overflow: hidden;
    width: 100vw;
  }

  .mobile-hero figure {
    border-radius: 0 0 44px 44px;
    height: 248px;
    overflow: hidden;
    position: relative;
  }

  .mobile-hero figure img {
    height: 100%;
    object-fit: cover;
  }

  .mobile-hero figure::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(31, 49, 40, .42));
    content: "";
    inset: 0;
    position: absolute;
  }

  .mobile-vertical-copy {
    background: rgba(255, 253, 248, .92);
    border-radius: 999px;
    color: #2f5b48;
    font-family: var(--serif);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.85;
    padding: 12px 7px;
    position: absolute;
    right: 18px;
    text-orientation: mixed;
    top: 22px;
    writing-mode: vertical-rl;
    z-index: 1;
  }

  .mobile-hero-copy {
    padding: 22px 2px 0;
    max-width: calc(100vw - 32px);
    width: calc(100vw - 32px);
  }

  .mobile-kicker {
    color: #718075;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 10px;
  }

  .mobile-hero h1,
  .mobile-section h2,
  .mobile-message h2 {
    color: #273b32;
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: .01em;
    word-break: keep-all;
  }

  .mobile-hero h1 {
    font-size: clamp(30px, 8.6vw, 36px);
    line-height: 1.4;
  }

  .mobile-hero p:not(.mobile-kicker) {
    color: #607069;
    font-size: 14.5px;
    line-height: 1.95;
    margin-top: 14px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .mobile-section p,
  .mobile-message p {
    color: #607069;
    font-size: 14px;
    line-height: 1.85;
    margin-top: 14px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .mobile-page {
    overflow-x: hidden;
  }

  .mobile-primary-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .mobile-primary-actions a,
  .mobile-contact a {
    align-items: center;
    border-radius: 999px;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    min-height: 50px;
    padding: 10px 14px;
    text-align: center;
  }

  .mobile-primary-actions a {
    justify-self: start;
    max-width: 300px;
    width: 300px;
  }

  .mobile-primary-actions a:first-child {
    background: #d9824b;
    box-shadow: 0 10px 24px rgba(217, 130, 75, .22);
    color: #fff;
    font-size: 15px;
  }

  .mobile-primary-actions a:last-child,
  .mobile-contact a {
    background: #fffdf8;
    border: 1px solid #e3d9c8;
    color: #2f5b48;
  }

  .mobile-primary-actions a:last-child {
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-section,
  .mobile-message {
    margin: 0 16px;
    padding: 44px 0;
    max-width: calc(100vw - 32px);
    width: calc(100vw - 32px);
  }

  .mobile-section + .mobile-section,
  .mobile-message + .mobile-section {
    border-top: 1px solid #e3d9c8;
  }

  .mobile-section h2 {
    font-size: 25px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .mobile-section h2::before,
  .mobile-visual-story h2::before {
    color: #b49343;
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    margin-bottom: 8px;
  }

  .mobile-worries h2::before { content: "CHECK"; }
  .mobile-services h2::before { content: "SERVICE"; }
  .mobile-details h2::before { content: "DETAIL"; }
  .mobile-targets h2::before { content: "GOAL"; }
  .mobile-partners h2::before { content: "PARTNER"; }
  .mobile-license h2::before { content: "LICENSE"; }
  .mobile-faq h2::before { content: "FAQ"; }
  .mobile-contact h2::before { content: "CONTACT"; }

  .mobile-worries ul {
    display: grid;
    gap: 8px;
  }

  .mobile-worries li {
    background: #fffdf8;
    border: 1px solid #e3d9c8;
    border-radius: 14px;
    color: #405149;
    font-size: 14px;
    line-height: 1.6;
    padding: 13px 14px 13px 34px;
    position: relative;
  }

  .mobile-worries li::before {
    color: #7e9b5d;
    content: "✓";
    font-weight: 700;
    left: 14px;
    position: absolute;
    top: 13px;
  }

  .mobile-visual-story {
    background: #2f5b48;
    border-radius: 42px 42px 0 0;
    color: #fff;
    margin-top: 14px;
    max-width: 100vw;
    overflow: hidden;
    padding: 42px 16px 48px;
    width: 100vw;
  }

  .mobile-visual-story > div {
    max-width: calc(100vw - 32px);
    width: calc(100vw - 32px);
  }

  .mobile-visual-story figure {
    border-radius: 48% 48% 6px 6px;
    height: 230px;
    margin: 0 auto 24px;
    max-width: 330px;
    overflow: hidden;
  }

  .mobile-visual-story img {
    height: 100%;
    object-fit: cover;
  }

  .mobile-visual-story h2 {
    color: #fff;
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .mobile-visual-story h2::before {
    color: #f0d990;
    content: "FIRST STEP";
  }

  .mobile-visual-story p {
    color: rgba(255, 255, 255, .82);
    font-size: 13.5px;
    line-height: 1.9;
    margin-top: 12px;
  }

  .mobile-service-list {
    display: grid;
    gap: 10px;
  }

  .mobile-service-list article {
    align-items: start;
    background: linear-gradient(135deg, #fffdf8 0%, #f7f0e3 100%);
    border: 1px solid #e3d9c8;
    border-radius: 16px;
    display: grid;
    gap: 13px;
    grid-template-columns: 40px 1fr;
    padding: 16px;
    position: relative;
  }

  .mobile-service-list article:nth-child(odd) {
    border-left: 4px solid rgba(47, 91, 72, .35);
  }

  .mobile-service-list article:nth-child(even) {
    border-left: 4px solid rgba(180, 147, 67, .38);
  }

  .mobile-service-list span {
    align-items: center;
    background: #f3ead8;
    border-radius: 50%;
    color: #2f5b48;
    display: grid;
    font-size: 12px;
    font-weight: 700;
    height: 38px;
    justify-items: center;
    width: 38px;
  }

  .mobile-service-list h3,
  .mobile-partners h3 {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 4px;
    word-break: keep-all;
  }

  .mobile-service-list p {
    color: #61736a;
    font-size: 13.5px;
    line-height: 1.75;
    margin-top: 0;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .mobile-about-card,
  .mobile-license,
  .mobile-targets {
    background: #fffdf8;
    border: 1px solid #e3d9c8;
    border-radius: 22px;
    margin-bottom: 42px;
    margin-top: 42px;
    padding: 26px 20px;
  }

  .mobile-photo-quote {
    margin: 4px 0 0;
    overflow: hidden;
    padding: 14px 0 86px;
    position: relative;
    max-width: 100vw;
    width: 100vw;
  }

  .mobile-photo-quote figure {
    border-radius: 0 56px 56px 0;
    height: 215px;
    margin-right: 28px;
    overflow: hidden;
  }

  .mobile-photo-quote img {
    height: 100%;
    object-fit: cover;
  }

  .mobile-photo-quote p {
    background: #fffdf8;
    border: 1px solid #e3d9c8;
    border-radius: 22px;
    bottom: 28px;
    color: #2f5b48;
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
    left: 46px;
    max-width: none;
    padding: 14px 16px;
    position: absolute;
    right: 16px;
  }

  .mobile-about-card dl {
    border-top: 1px solid #e3d9c8;
    margin-top: 18px;
  }

  .mobile-about-card dl div {
    border-bottom: 1px solid #e3d9c8;
    display: grid;
    gap: 4px;
    padding: 12px 0;
  }

  .mobile-about-card dt {
    color: #718075;
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-about-card dd {
    color: #2f4138;
    font-size: 14px;
    line-height: 1.75;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .mobile-message {
    background: linear-gradient(135deg, #365f4d 0%, #2f5447 70%, #6f6a3b 140%);
    color: #fff;
    margin: 0;
    padding: 54px 22px;
    position: relative;
    max-width: 100vw;
    width: 100vw;
  }

  .mobile-message > * {
    max-width: calc(100vw - 44px);
    width: calc(100vw - 44px);
  }

  .mobile-message::before {
    background: #fbf8ef;
    border-radius: 0 0 50% 50%;
    content: "";
    height: 42px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }

  .mobile-message h2 {
    color: #fff;
    font-size: clamp(28px, 8.2vw, 34px);
    line-height: 1.45;
  }

  .mobile-message em {
    color: #f0d990;
    font-style: normal;
  }

  .mobile-message p,
  .mobile-message small,
  .mobile-message .mobile-kicker {
    color: rgba(255, 255, 255, .82);
  }

  .mobile-message small {
    border-top: 1px solid rgba(255, 255, 255, .2);
    display: block;
    font-size: 12px;
    line-height: 1.7;
    margin-top: 18px;
    padding-top: 14px;
  }

  .mobile-details details,
  .mobile-faq details {
    background: #fffdf8;
    border: 1px solid #e3d9c8;
    border-radius: 14px;
    margin-top: 12px;
    overflow: hidden;
  }

  .mobile-details details:nth-of-type(even),
  .mobile-faq details:nth-of-type(even) {
    background: #f7f0e3;
  }

  .mobile-details summary,
  .mobile-faq summary {
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    list-style: none;
    padding: 17px 16px;
    line-height: 1.55;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

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

  .mobile-details details p,
  .mobile-faq details p {
    border-top: 1px solid #e3d9c8;
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
    padding: 15px 16px 18px;
  }

  .mobile-targets div {
    display: grid;
    gap: 8px;
    margin-top: 16px;
  }

  .mobile-targets span {
    align-items: center;
    border-bottom: 1px solid #e3d9c8;
    display: grid;
    gap: 4px;
    grid-template-columns: 1fr;
    font-size: 13.5px;
    padding-bottom: 8px;
    min-width: 0;
  }

  .mobile-targets strong {
    color: #2f5b48;
    font-family: var(--serif);
    font-size: 18px;
    white-space: nowrap;
  }

  .mobile-targets {
    position: relative;
  }

  .mobile-targets::after {
    border: 1px solid rgba(180, 147, 67, .4);
    border-radius: 50%;
    content: "";
    height: 92px;
    position: absolute;
    right: -18px;
    top: -24px;
    width: 92px;
  }

  .mobile-partners article {
    background: #fffdf8;
    border: 1px solid #e3d9c8;
    border-radius: 16px;
    margin-top: 10px;
    padding: 18px 17px;
  }

  .mobile-partners article:nth-of-type(2) {
    margin-left: 18px;
  }

  .mobile-license figure {
    border-radius: 16px;
    height: 205px;
    margin: -6px -2px 22px;
    overflow: hidden;
  }

  .mobile-license figure img {
    height: 100%;
    object-fit: cover;
  }

  .mobile-contact {
    background: #f3ead8;
    border-radius: 42px 42px 0 0;
    margin: 0;
    padding: 42px 16px 34px;
    max-width: 100vw;
    width: 100vw;
  }

  .mobile-contact .mobile-phone {
    background: #d9824b;
    color: #fff;
    flex-direction: column;
    font-size: 20px;
    gap: 2px;
    margin-top: 18px;
    margin-left: 0;
    margin-right: 0;
    max-width: 300px;
    width: 300px;
  }

  .mobile-contact .mobile-phone small {
    font-size: 11px;
  }

  .mobile-contact a:not(.mobile-phone) {
    border-radius: 16px;
    justify-content: flex-start;
    line-height: 1.6;
    margin-top: 10px;
    overflow-wrap: anywhere;
    word-break: break-word;
    font-size: 14px;
    min-height: 58px;
    padding: 14px 16px;
    margin-left: 0;
    margin-right: 0;
    max-width: 300px;
    width: 300px;
  }

  .mobile-contact div {
    background: #fffdf8;
    border: 1px solid #e3d9c8;
    border-radius: 18px;
    margin-top: 10px;
    margin-left: 0;
    margin-right: 0;
    padding: 18px;
    max-width: 300px;
    width: 300px;
  }

  .mobile-contact div span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .mobile-contact img {
    max-width: 190px;
  }

}

@media (max-width: 640px) {
  .mobile-consult {
    background:
      radial-gradient(circle at 50% 2%, rgba(255,255,255,.95) 0 170px, transparent 360px),
      linear-gradient(180deg, #fffdfa 0%, #fbf5ea 48%, #fffdfa 100%);
    color: #274438;
    font-family: var(--sans);
    letter-spacing: .01em;
    margin: 0;
    max-width: 390px !important;
    overflow-x: hidden;
    width: 100% !important;
  }

  .mobile-consult-header {
    align-items: center;
    background: rgba(255, 253, 248, .96);
    border-bottom: 1px solid rgba(225, 211, 186, .72);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 16px 32px rgba(32, 51, 42, .08);
    display: flex;
    height: 66px;
    justify-content: space-between;
    left: 12px;
    padding: 11px 16px;
    position: sticky;
    right: 12px;
    top: 10px;
    z-index: 90;
  }

  .mobile-consult-brand,
  .mobile-drawer-brand {
    align-items: center;
    color: #274438;
    display: flex;
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 700;
    gap: 10px;
    line-height: 1.05;
  }

  .mobile-drawer-brand {
    font-size: 14px;
    gap: 8px;
    padding-right: 28px;
  }

  .mobile-drawer-brand .mobile-logo-mark {
    flex-basis: 30px;
    height: 30px;
    width: 30px;
  }

  .mobile-consult-brand small,
  .mobile-drawer-brand small {
    display: block;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 4px;
  }

  .mobile-logo-mark {
    align-items: center;
    border: 2px solid rgba(180, 147, 67, .5);
    border-radius: 7px;
    color: #b49343;
    display: grid;
    flex: 0 0 34px;
    height: 34px;
    place-items: center;
    width: 34px;
  }

  .mobile-logo-mark svg,
  .mobile-drawer nav svg,
  .consult-service-grid svg,
  .consult-flow-list svg,
  .consult-trust-grid svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
  }

  .mobile-drawer-button {
    align-items: center;
    background: transparent;
    border: 0;
    display: grid;
    gap: 5px;
    height: 42px;
    justify-content: center;
    padding: 0;
    width: 42px;
  }

  .mobile-drawer-button span {
    background: #274438;
    border-radius: 999px;
    display: block;
    height: 2px;
    width: 24px;
  }

  .mobile-drawer {
    background: rgba(25, 35, 30, .42);
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 180ms ease;
    z-index: 120;
  }

  .mobile-drawer.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-drawer-panel {
    background:
      radial-gradient(circle at 18% 0%, rgba(255,255,255,.12), transparent 240px),
      linear-gradient(150deg, #244b3d 0%, #173528 100%);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(22, 35, 29, .32);
    color: #fff7e9;
    margin: 0;
    min-height: calc(100vh - 20px);
    padding: 38px 24px 30px;
    position: fixed;
    right: 110px;
    top: 10px;
    transform: translateX(22px);
    transition: transform 220ms ease;
    width: 248px;
  }

  .mobile-drawer.is-open .mobile-drawer-panel {
    transform: translateX(0);
  }

  .mobile-drawer-close {
    background: transparent;
    border: 0;
    color: #fff7e9;
    font-size: 40px;
    line-height: 1;
    position: absolute;
    right: 20px;
    top: 22px;
  }

  .mobile-drawer-brand {
    color: #fff7e9;
    margin-bottom: 30px;
  }

  .mobile-drawer .mobile-logo-mark {
    border-color: rgba(255, 247, 233, .7);
    color: #fff7e9;
  }

  .mobile-drawer nav {
    display: grid;
  }

  .mobile-drawer nav a {
    align-items: center;
    border-bottom: 1px dotted rgba(255, 247, 233, .24);
    color: #fff7e9;
    display: grid;
    font-size: 13px;
    font-weight: 700;
    gap: 12px;
    grid-template-columns: 24px 1fr;
    min-height: 58px;
  }

  .mobile-drawer nav svg {
    color: #f0ddad;
    height: 22px;
    width: 22px;
  }

  .mobile-drawer-contact {
    align-items: center;
    background: #fffdf8;
    border-radius: 999px;
    color: #274438;
    display: flex;
    font-weight: 700;
    justify-content: center;
    margin-top: 28px;
    min-height: 50px;
  }

  .mobile-consult-main {
    margin: 0 auto;
    max-width: 390px;
    overflow-x: hidden;
    padding: 0 12px 18px;
    width: 100%;
  }

  .consult-hero {
    background: #fffdf8;
    border-radius: 0 0 26px 26px;
    box-shadow: 0 18px 42px rgba(36, 48, 39, .12);
    min-height: 386px;
    overflow: hidden;
    position: relative;
  }

  .consult-hero::after {
    background: linear-gradient(90deg, #fffdf8 0%, rgba(255,253,248,.93) 45%, rgba(255,253,248,.22) 78%);
    content: "";
    inset: 0;
    position: absolute;
  }

  .consult-hero-media {
    bottom: 0;
    overflow: hidden;
    position: absolute;
    right: -46px;
    top: 0;
    width: 70%;
  }

  .consult-hero-media img {
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
    width: 100%;
  }

  .consult-hero-copy {
    padding: 28px 18px 24px;
    position: relative;
    z-index: 2;
  }

  .consult-badge {
    background: #fffaf0;
    border: 1px solid #ead7b5;
    border-radius: 9px;
    color: #274438;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 16px;
    padding: 7px 10px;
  }

  .consult-hero h1 {
    color: #274438;
    font-family: var(--serif);
    font-size: 29px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.38;
    margin: 0 0 16px;
    max-width: 258px;
  }

  .consult-hero p {
    color: #304f42;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8;
    margin: 0 0 20px;
  }

  .consult-hero-actions {
    display: grid;
    gap: 10px;
    width: 236px;
  }

  .consult-button {
    align-items: center;
    border-radius: 999px;
    display: flex;
    font-size: 14px;
    font-weight: 800;
    justify-content: center;
    min-height: 50px;
  }

  .consult-button-primary {
    background: #e68245;
    box-shadow: 0 16px 30px rgba(230, 130, 69, .3);
    color: #fff;
  }

  .consult-button-primary span {
    margin-left: 8px;
  }

  .consult-button-outline {
    background: rgba(255, 255, 255, .9);
    border: 1px solid #ded1b8;
    color: #274438;
  }

  .consult-section {
    padding: 34px 4px 0;
  }

  .consult-section h2 {
    color: #274438;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 22px;
    text-align: center;
  }

  .consult-section h2::after {
    background: #e68245;
    content: "";
    display: block;
    height: 2px;
    margin: 9px auto 0;
    width: 24px;
  }

  .consult-worries ul {
    display: grid;
    gap: 8px;
  }

  .consult-worries li {
    align-items: center;
    background: rgba(255, 253, 248, .92);
    border: 1px solid #eadfcd;
    border-radius: 9px;
    box-shadow: 0 8px 18px rgba(62, 50, 34, .04);
    color: #405149;
    display: grid;
    font-size: 13px;
    font-weight: 700;
    gap: 10px;
    grid-template-columns: 24px 1fr;
    line-height: 1.5;
    min-height: 40px;
    padding: 8px 12px;
  }

  .consult-worries li::before {
    align-items: center;
    border: 1px solid #cdbb9c;
    border-radius: 50%;
    color: #2f6a53;
    content: "✓";
    display: grid;
    font-size: 13px;
    font-weight: 900;
    height: 23px;
    place-items: center;
    width: 23px;
  }

  .consult-service-grid,
  .consult-trust-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    max-width: 100%;
    overflow: hidden;
    width: 100%;
  }

  .consult-service-grid article,
  .consult-trust-grid article {
    background: rgba(255, 253, 248, .94);
    border: 1px solid #eadfcd;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(48, 38, 24, .05);
    color: #274438;
    min-width: 0;
    min-height: 132px;
    padding: 14px 8px 12px;
    text-align: center;
  }

  .consult-service-grid article:nth-child(-n+3),
  .consult-trust-grid article {
    grid-column: span 2;
  }

  .consult-service-grid article:nth-child(4),
  .consult-service-grid article:nth-child(5) {
    grid-column: span 1.5;
  }

  .consult-service-grid svg,
  .consult-trust-grid svg {
    color: #526e61;
    height: 32px;
    margin: 0 auto 9px;
    width: 32px;
  }

  .consult-service-grid h3,
  .consult-trust-grid h3 {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 8px;
  }

  .consult-service-grid p,
  .consult-trust-grid p {
    color: #607069;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.55;
    margin: 0;
  }

  .consult-service-grid article:nth-child(4) {
    grid-column: span 3;
  }

  .consult-service-grid article:nth-child(5) {
    grid-column: span 3;
  }

  .consult-flow-list {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 100%;
    overflow: visible;
    padding-top: 10px;
    position: relative;
    width: 100%;
  }

  .consult-flow-list article {
    background: #fffdf8;
    border: 1px solid #eadfcd;
    border-radius: 999px 999px 12px 12px;
    color: #274438;
    min-width: 0;
    min-height: 122px;
    padding: 24px 5px 9px;
    position: relative;
    text-align: center;
  }

  .consult-flow-list article:not(:last-child)::after {
    color: #e68245;
    content: "›";
    font-size: 30px;
    font-weight: 300;
    position: absolute;
    right: -10px;
    top: 48px;
    z-index: 2;
  }

  .consult-flow-list span {
    align-items: center;
    background: #274438;
    border-radius: 50%;
    color: #fff;
    display: grid;
    font-size: 10px;
    font-weight: 800;
    height: 20px;
    left: 50%;
    place-items: center;
    position: absolute;
    top: -10px;
    transform: translateX(-50%);
    width: 20px;
  }

  .consult-flow-list svg {
    color: #526e61;
    height: 26px;
    margin: 0 auto 8px;
    width: 26px;
  }

  .consult-flow-list h3 {
    font-size: 12px;
    font-weight: 800;
    margin: 0 0 6px;
  }

  .consult-flow-list p {
    color: #607069;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
  }

  .consult-trust-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .consult-trust-grid article {
    max-width: 260px;
    min-height: 112px;
    padding-top: 15px;
    width: 100%;
  }

  .consult-faq details {
    background: rgba(255, 253, 248, .95);
    border: 1px solid #eadfcd;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(48, 38, 24, .04);
    margin-top: 8px;
    overflow: hidden;
  }

  .consult-faq summary {
    color: #274438;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    list-style: none;
    padding: 14px 40px 14px 14px;
    position: relative;
  }

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

  .consult-faq summary::after {
    content: "⌄";
    font-size: 18px;
    position: absolute;
    right: 16px;
    top: 11px;
  }

  .consult-faq details[open] summary::after {
    transform: rotate(180deg);
  }

  .consult-faq p {
    border-top: 1px solid #eadfcd;
    color: #607069;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
    padding: 12px 14px 14px;
  }

  .consult-contact {
    background:
      radial-gradient(circle at 50% 0%, rgba(255,255,255,.12), transparent 190px),
      linear-gradient(145deg, #315e4c 0%, #1d3f31 100%);
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(29, 63, 49, .25);
    margin: 34px 4px 10px;
    padding: 24px 16px 18px;
  }

  .consult-contact h2 {
    color: #fff7e9;
    font-family: var(--serif);
    font-size: 21px;
    line-height: 1.4;
    margin: 0 0 18px;
    text-align: center;
  }

  .consult-contact-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    overflow: hidden;
    width: 100%;
  }

  .consult-contact-grid a,
  .consult-line-qr {
    border-radius: 10px;
    display: grid;
    min-height: 62px;
    place-items: center;
    text-align: center;
  }

  .consult-contact-grid span {
    font-size: 15px;
    font-weight: 900;
  }

  .consult-contact-grid small {
    display: block;
    font-size: 10px;
    font-weight: 700;
    margin-top: 3px;
  }

  .consult-contact-phone {
    background: #e68245;
    color: #fff;
  }

  .consult-contact-mail {
    background: #fffdf8;
    color: #274438;
  }

  .consult-contact-line {
    background: #4c9637;
    color: #fff;
    grid-column: 1 / -1;
  }

  .consult-line-qr {
    background: #fffdf8;
    margin-top: 10px;
    padding: 14px;
  }

  .consult-line-qr span {
    color: #274438;
    font-size: 12px;
    font-weight: 800;
    justify-self: start;
    margin-bottom: 8px;
  }

  .consult-line-qr img {
    justify-self: start;
    max-width: 160px;
  }

  .mobile-detail-page {
    background:
      radial-gradient(circle at 100% 0%, rgba(230, 130, 69, .14) 0 120px, transparent 280px),
      radial-gradient(circle at 0% 28%, rgba(50, 102, 80, .10) 0 160px, transparent 340px),
      linear-gradient(180deg, #fffaf0 0%, #f6efe2 100%);
    color: #274438;
    display: none;
    min-height: 100vh;
    overflow: hidden;
    padding: 12px 18px 34px;
  }

  .mobile-consult.detail-open .mobile-consult-main {
    display: none;
  }

  .mobile-detail-page.is-active {
    display: block;
  }

  .mobile-detail-page > header {
    align-items: center;
    backdrop-filter: blur(14px);
    background: rgba(255, 251, 242, .92);
    border: 1px solid #eadfcd;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(32, 51, 42, .10);
    display: grid;
    grid-template-columns: 42px 1fr;
    min-height: 58px;
    padding: 8px 12px;
    position: sticky;
    top: 10px;
    z-index: 80;
  }

  .mobile-detail-page > header a {
    align-items: center;
    background: #315e4c;
    border-radius: 50%;
    color: #fffaf0;
    display: flex;
    font-size: 22px;
    height: 34px;
    justify-content: center;
    line-height: 1;
    padding: 0 0 2px 1px;
    width: 34px;
  }

  .mobile-detail-page > header span {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    transform: translateX(-17px);
  }

  .mobile-detail-hero {
    background:
      linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,249,236,.86)),
      radial-gradient(circle at 90% 12%, rgba(230,130,69,.16), transparent 120px);
    border: 1px solid #eadfcd;
    border-radius: 28px;
    box-shadow: 0 22px 48px rgba(48, 38, 24, .08);
    margin-top: 20px;
    padding: 30px 22px 28px;
    position: relative;
  }

  .mobile-detail-hero::after {
    background: #e68245;
    border-radius: 999px;
    bottom: 22px;
    content: "";
    height: 4px;
    left: 22px;
    position: absolute;
    width: 42px;
  }

  .mobile-detail-hero.dark {
    background:
      radial-gradient(circle at 88% 12%, rgba(255, 213, 133, .22), transparent 120px),
      linear-gradient(145deg, #315e4c 0%, #1d3f31 100%);
    color: #fff7e9;
  }

  .mobile-detail-kicker {
    color: #b49343;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .16em;
    margin: 0 0 10px;
  }

  .mobile-detail-hero.dark .mobile-detail-kicker {
    color: #f0d990;
  }

  .mobile-detail-hero h2 {
    color: inherit;
    font-family: var(--serif);
    font-size: clamp(28px, 8.4vw, 40px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.34;
    margin: 0;
    text-wrap: balance;
  }

  .mobile-detail-hero em {
    color: #f0d990;
    font-style: normal;
  }

  .mobile-detail-hero p,
  .mobile-detail-card p,
  .mobile-detail-card li,
  .mobile-profile-list dd {
    color: #607069;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.9;
    margin: 14px 0 0;
    overflow-wrap: anywhere;
    text-wrap: pretty;
  }

  .mobile-detail-hero.dark p {
    color: rgba(255, 247, 233, .86);
  }

  .mobile-detail-card {
    background: #fffdf8;
    border: 1px solid #eadfcd;
    border-radius: 18px;
    margin-top: 12px;
    padding: 20px;
  }

  .mobile-detail-card.accent {
    background: #f5eddd;
  }

  .mobile-detail-card h3,
  .mobile-detail-list h3 {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.45;
    margin: 0;
  }

  .mobile-detail-card small {
    border-top: 1px solid #eadfcd;
    color: #607069;
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.7;
    margin-top: 16px;
    padding-top: 14px;
  }

  .mobile-detail-card ul {
    display: grid;
    gap: 8px;
    margin-top: 14px;
  }

  .mobile-detail-card li {
    background: #fffdf8;
    border: 1px solid #eadfcd;
    border-radius: 10px;
    margin: 0;
    padding: 9px 12px;
  }

  .detail-statement-card {
    background: #315e4c;
    border-radius: 26px;
    box-shadow: 0 22px 46px rgba(34, 73, 58, .22);
    color: #fff7e9;
    margin: -12px 12px 0;
    padding: 24px 22px;
    position: relative;
    z-index: 2;
  }

  .detail-statement-card span {
    color: #f0d990;
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 10px;
  }

  .detail-statement-card p {
    color: rgba(255, 247, 233, .9);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.9;
    margin: 0;
  }

  .detail-principles {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .detail-principles article {
    align-items: center;
    background: rgba(255, 253, 248, .86);
    border: 1px solid #eadfcd;
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(48, 38, 24, .06);
    display: grid;
    gap: 10px 14px;
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }

  .detail-principles article:nth-child(2) {
    margin-left: 20px;
  }

  .detail-principles span {
    align-items: center;
    background: #f6eddb;
    border-radius: 50%;
    color: #a38135;
    display: grid;
    font-size: 12px;
    font-weight: 900;
    height: 44px;
    place-items: center;
    width: 44px;
  }

  .detail-principles strong {
    color: #274438;
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1;
  }

  .detail-principles p {
    color: #607069;
    font-size: 13px;
    font-weight: 700;
    grid-column: 2;
    line-height: 1.65;
    margin: -8px 0 0;
  }

  .mobile-detail-hero.manifesto {
    padding-bottom: 54px;
  }

  .mobile-detail-mini-grid,
  .mobile-goal-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 12px;
  }

  .mobile-detail-mini-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-detail-mini-grid article,
  .mobile-goal-grid article {
    background: #fffdf8;
    border: 1px solid #eadfcd;
    border-radius: 14px;
    padding: 15px 10px;
    text-align: center;
  }

  .mobile-detail-mini-grid strong,
  .mobile-goal-grid strong {
    color: #274438;
    display: block;
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.35;
  }

  .mobile-detail-mini-grid span,
  .mobile-goal-grid span {
    color: #607069;
    display: block;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.55;
    margin-top: 7px;
  }

  .mobile-goal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-goal-grid article:last-child {
    grid-column: 1 / -1;
  }

  .mobile-goal-grid strong {
    color: #2f6a53;
    font-size: 28px;
  }

  .mobile-detail-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
  }

  .mobile-detail-list article {
    align-items: start;
    background: #fffdf8;
    border: 1px solid #eadfcd;
    border-radius: 14px;
    display: grid;
    gap: 12px;
    grid-template-columns: 42px 1fr;
    padding: 16px;
  }

  .mobile-detail-list span {
    align-items: center;
    background: #f5eddd;
    border-radius: 50%;
    color: #2f6a53;
    display: grid;
    font-size: 12px;
    font-weight: 900;
    height: 38px;
    place-items: center;
    width: 38px;
  }

  .mobile-detail-list p {
    color: #607069;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.75;
    margin: 4px 0 0;
  }

  .service-path {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    position: relative;
  }

  .service-path::before {
    background: linear-gradient(180deg, #e68245, rgba(230,130,69,.08));
    border-radius: 999px;
    bottom: 30px;
    content: "";
    left: 24px;
    position: absolute;
    top: 30px;
    width: 3px;
  }

  .service-path article {
    background: rgba(255, 253, 248, .92);
    border: 1px solid #eadfcd;
    border-radius: 24px;
    box-shadow: 0 16px 36px rgba(48, 38, 24, .07);
    display: grid;
    gap: 16px;
    grid-template-columns: 52px 1fr;
    padding: 20px 18px;
    position: relative;
  }

  .service-path article:nth-child(even) {
    background: #f5eddd;
  }

  .service-path article > span {
    align-items: center;
    background: #315e4c;
    border: 4px solid #fffaf0;
    border-radius: 50%;
    color: #fff7e9;
    display: grid;
    font-size: 13px;
    font-weight: 900;
    height: 52px;
    place-items: center;
    width: 52px;
    z-index: 1;
  }

  .service-path small,
  .partner-panels article > span {
    color: #b49343;
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    margin-bottom: 7px;
  }

  .service-path h3,
  .partner-panels h3 {
    color: #274438;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.35;
    margin: 0;
    text-wrap: balance;
  }

  .service-path p,
  .partner-panels li,
  .curriculum-grid p,
  .detail-letter p {
    color: #607069;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.78;
    margin: 10px 0 0;
  }

  .partner-panels {
    display: grid;
    gap: 16px;
    margin-top: 18px;
  }

  .partner-panels article {
    background:
      radial-gradient(circle at 100% 0%, rgba(230,130,69,.13), transparent 120px),
      #fffdf8;
    border: 1px solid #eadfcd;
    border-radius: 28px;
    box-shadow: 0 18px 38px rgba(48, 38, 24, .07);
    padding: 24px 20px;
  }

  .partner-panels article:first-child {
    background:
      radial-gradient(circle at 100% 0%, rgba(240,217,144,.18), transparent 130px),
      linear-gradient(145deg, #315e4c, #244d3d);
    color: #fff7e9;
  }

  .partner-panels article:first-child h3,
  .partner-panels article:first-child li {
    color: #fff7e9;
  }

  .partner-panels ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }

  .partner-panels li {
    background: rgba(255, 255, 255, .58);
    border: 1px solid rgba(234, 223, 205, .9);
    border-radius: 999px;
    line-height: 1.4;
    margin: 0;
    padding: 8px 11px;
  }

  .partner-panels article:first-child li {
    background: rgba(255, 247, 233, .13);
    border-color: rgba(255, 247, 233, .25);
  }

  .mobile-detail-photo {
    border: 1px solid #eadfcd;
    border-radius: 28px;
    box-shadow: 0 20px 44px rgba(48, 38, 24, .10);
    height: 220px;
    margin-top: 18px;
    overflow: hidden;
    position: relative;
  }

  .mobile-detail-photo img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .mobile-detail-badge {
    background: #e68245;
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    margin-top: 16px;
    padding: 9px 14px;
  }

  .message-quote {
    margin-top: -32px;
    margin-left: 20px;
    padding-top: 48px;
  }

  .detail-letter {
    background: #fffdf8;
    border: 1px solid #eadfcd;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(48, 38, 24, .07);
    margin-top: 14px;
    padding: 24px 22px;
  }

  .detail-letter p {
    color: #274438;
    font-size: 15.5px;
    line-height: 2;
    margin: 0;
  }

  .detail-signature {
    border-top: 1px solid #eadfcd;
    margin-top: 22px;
    padding-top: 16px;
    text-align: right;
  }

  .detail-signature span,
  .detail-signature strong {
    display: block;
  }

  .detail-signature span {
    color: #607069;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .detail-signature strong {
    color: #274438;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 800;
  }

  .curriculum-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .curriculum-grid article {
    background: #fffdf8;
    border: 1px solid #eadfcd;
    border-radius: 20px;
    box-shadow: 0 12px 26px rgba(48, 38, 24, .05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 132px;
    padding: 18px 16px 16px;
  }

  .curriculum-grid span {
    color: #b49343;
    display: block;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
  }

  .curriculum-grid strong {
    color: #274438;
    display: block;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.035em;
  }

  .goal-main {
    background:
      radial-gradient(circle at 84% 20%, rgba(255, 255, 255, .18), transparent 100px),
      linear-gradient(145deg, #315e4c, #1d3f31);
    border-radius: 30px;
    box-shadow: 0 22px 46px rgba(34, 73, 58, .22);
    color: #fff7e9;
    margin-top: 18px;
    padding: 24px 22px 28px;
  }

  .goal-main span {
    color: #f0d990;
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
  }

  .goal-main strong {
    display: block;
    font-family: var(--serif);
    font-size: 70px;
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: 1;
    margin-top: 8px;
  }

  .mobile-profile-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
  }

  .mobile-profile-list div {
    background: rgba(255, 253, 248, .92);
    border: 1px solid #eadfcd;
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(48, 38, 24, .05);
    padding: 17px 18px;
  }

  .mobile-profile-list dt {
    color: #b49343;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
  }

  .mobile-profile-list dd {
    color: #274438;
    margin-top: 6px;
  }

  .mobile-profile-list a {
    color: inherit;
  }

  .mobile-detail-cta {
    align-items: center;
    background: linear-gradient(135deg, #e68245, #d96f36);
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(230, 130, 69, .26);
    color: #fff;
    display: flex;
    font-weight: 900;
    justify-content: center;
    margin: 18px auto 0;
    max-width: 280px;
    min-height: 52px;
    transition: transform .22s ease, box-shadow .22s ease;
  }

  .mobile-detail-cta:active {
    transform: translateY(1px) scale(.99);
  }

  .detail-company .mobile-profile-list div:first-child {
    background: #315e4c;
  }

  .detail-company .mobile-profile-list div:first-child dt,
  .detail-company .mobile-profile-list div:first-child dd {
    color: #fff7e9;
  }

  .detail-results .mobile-goal-grid {
    margin-top: 12px;
  }

  .detail-results .mobile-goal-grid article:last-child {
    grid-column: auto;
  }

  .detail-results .mobile-goal-grid article {
    min-height: 116px;
  }

  .detail-results .mobile-goal-grid strong {
    font-size: 30px;
  }

  .detail-qualification .mobile-detail-photo {
    height: 240px;
  }

  .detail-qualification .mobile-detail-hero::after {
    display: none;
  }

  .detail-qualification .mobile-detail-cta {
    margin-top: 30px;
  }

  .detail-services .mobile-detail-hero h2,
  .detail-partners .mobile-detail-hero h2,
  .detail-results .mobile-detail-hero h2 {
    font-size: clamp(24px, 6.8vw, 29px);
    line-height: 1.42;
  }

  .detail-nowrap {
    white-space: nowrap;
  }

  .detail-partners .mobile-detail-hero h2 {
    font-size: clamp(24px, 6.7vw, 28px);
    line-height: 1.5;
  }
}

@media (max-width: 374px) {
  .consult-hero h1 {
    font-size: 27px;
  }

  .consult-hero-actions {
    width: 220px;
  }

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

  .consult-service-grid article:nth-child(4),
  .consult-service-grid article:nth-child(5) {
    grid-column: auto;
  }
}

/* 2026-07 editorial refinement: content is unchanged; presentation only */
:root {
  --serif: "Shippori Mincho", "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Zen Kaku Gothic New", "Noto Sans JP", "Yu Gothic", "Hiragino Sans", sans-serif;
  --paper: #f7f2e8;
  --paper-deep: #eee5d5;
  --forest: #264c3e;
  --rust: #d9773d;
}

.brand-mark svg path:last-child,
.mobile-logo-mark svg path:last-child {
  stroke: var(--gold);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 4px;
}

/* Keep editorial sections on the same paper surface as the page.
   Near-identical inset backgrounds looked like accidental panel edges. */
.origin.section,
.detail-section.section,
.license-detail.section {
  background: transparent;
}

@media (min-width: 1181px) {
  body {
    background:
      linear-gradient(rgba(247, 242, 232, .94), rgba(247, 242, 232, .94)),
      repeating-linear-gradient(90deg, rgba(38, 76, 62, .025) 0 1px, transparent 1px 8px);
  }

  .site-header {
    background: rgba(250, 247, 240, .94);
    border-bottom-color: rgba(38, 76, 62, .16);
    height: 82px;
    padding: 12px clamp(32px, 5vw, 76px);
  }

  .site-header.is-scrolled {
    box-shadow: 0 8px 28px rgba(38, 76, 62, .07);
    height: 72px;
  }

  .global-nav {
    gap: clamp(22px, 2.5vw, 40px);
  }

  .global-nav a {
    letter-spacing: .08em;
    position: relative;
  }

  .global-nav a::after {
    background: var(--rust);
    bottom: -9px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms ease;
    width: 100%;
  }

  .global-nav a:hover::after,
  .global-nav a:focus-visible::after {
    transform: scaleX(1);
  }

  .header-cta,
  .button {
    border-radius: 2px 18px 2px 2px;
  }

  .hero {
    background: #faf7f0;
    margin-top: 82px;
    min-height: 660px;
  }

  .hero::before {
    background: rgba(38, 76, 62, .14);
    content: "";
    height: 1px;
    left: max(32px, calc((100vw - 1320px) / 2));
    position: absolute;
    top: 76px;
    width: 78px;
    z-index: 2;
  }

  .hero::after {
    background:
      linear-gradient(150deg, rgba(238, 229, 213, .78), rgba(221, 232, 220, .72)),
      repeating-linear-gradient(0deg, transparent 0 31px, rgba(38, 76, 62, .035) 31px 32px);
    width: 42%;
  }

  .hero-inner {
    gap: clamp(30px, 4vw, 72px);
    grid-template-columns: minmax(610px, 650px) minmax(520px, 1fr);
    max-width: 1400px;
    min-height: 660px;
    padding: 72px clamp(40px, 5vw, 72px) 58px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 3vw, 44px);
    font-weight: 600;
    letter-spacing: .015em;
    line-height: 1.55;
  }

  .hero-copy p {
    font-size: 15px;
    line-height: 2.05;
    max-width: 540px;
  }

  .hero-mosaic {
    gap: 7px;
    height: 468px;
    margin-left: -28px;
  }

  .tile {
    box-shadow: none;
    outline: 1px solid rgba(250, 247, 240, .72);
    outline-offset: -1px;
  }

  .entry-section {
    background: var(--paper-deep);
    border-bottom: 1px solid rgba(38, 76, 62, .12);
    border-top: 1px solid rgba(38, 76, 62, .12);
    padding: 0 68px;
  }

  .entry-grid {
    gap: 0;
    max-width: 1280px;
  }

  .entry-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: 250px;
    padding: 46px 48px 42px;
    position: relative;
  }

  .entry-card + .entry-card {
    border-left: 1px solid rgba(38, 76, 62, .15);
  }

  .entry-card::before {
    background: var(--rust);
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    transition: width 220ms ease;
    width: 0;
  }

  .entry-card:hover,
  .entry-card:focus-visible {
    background: rgba(255, 253, 248, .46);
    box-shadow: none;
    transform: none;
  }

  .entry-card:hover::before,
  .entry-card:focus-visible::before {
    width: 100%;
  }

  .section {
    padding-bottom: 102px;
    padding-top: 102px;
  }

  .section-title {
    margin-bottom: 50px;
    text-align: left;
  }

  .section-title h2 {
    font-size: clamp(32px, 3vw, 42px);
    letter-spacing: .035em;
  }

  .section-title h2::after {
    background: var(--rust);
    bottom: -18px;
    left: 0;
    transform: none;
    width: 48px;
  }

  .service-grid {
    background: rgba(38, 76, 62, .14);
    border: 1px solid rgba(38, 76, 62, .14);
    gap: 1px;
  }

  .service-card {
    background: #faf7f0;
    border: 0;
    border-radius: 0;
    min-height: 190px;
    padding: 32px 28px 26px;
    text-align: left;
  }

  .service-card:hover,
  .service-card:focus-visible {
    background: #fffdf8;
    box-shadow: inset 0 -3px var(--rust);
    transform: none;
  }

  .line-icon {
    height: 38px;
    justify-items: start;
    margin: 0 0 18px;
    width: 38px;
  }

  .service-card h3 {
    font-size: 21px;
    margin-top: 0;
  }

  .concern-grid article,
  .profile-boxes article,
  .origin-grid article,
  .detail-list article,
  .partner-card,
  .faq-grid article {
    border-radius: 0;
    box-shadow: none;
  }

  .profile-boxes {
    gap: 1px;
    background: rgba(38, 76, 62, .14);
    border: 1px solid rgba(38, 76, 62, .14);
  }

  .profile-boxes article {
    border: 0;
    padding: 38px 36px;
  }

  .origin-grid {
    gap: 28px;
  }

  .origin-grid article:nth-child(2) {
    transform: translateY(28px);
  }

  .origin-grid article {
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 0;
    padding: 30px 30px 34px;
  }

  .detail-list {
    gap: 0 34px;
  }

  .detail-list article {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(38, 76, 62, .18);
    min-height: 104px;
    padding: 22px 8px;
  }

  .partners {
    gap: 34px;
  }

  .partner-card {
    border: 1px solid rgba(38, 76, 62, .18);
  }

  .message-band {
    background:
      radial-gradient(circle at 88% 22%, rgba(215, 189, 116, .11), transparent 260px),
      var(--forest);
  }

  .info-grid {
    gap: 18px;
    grid-template-columns: 1.12fr .82fr 1.12fr;
    margin-top: 54px;
  }

  .info-card {
    border: 1px solid rgba(38, 76, 62, .16);
    min-height: 470px;
    padding: 32px;
  }

  .info-card:first-child {
    background: #fffdf8;
    border-left: 4px solid var(--forest);
  }

  .info-card:first-child figure {
    height: 154px;
    margin-left: -32px;
    margin-right: -32px;
  }

  .info-card:first-child figure img {
    object-position: center 58%;
  }

  .target-card {
    background:
      radial-gradient(circle at 100% 0%, rgba(231, 207, 145, .13), transparent 180px),
      var(--forest);
    border-color: var(--forest);
    color: #fffdf8;
  }

  .target-card h2,
  .target-card p,
  .target-card .target-list span,
  .target-card > small {
    color: rgba(255, 253, 248, .84);
  }

  .target-card .target-list {
    border-top: 1px solid rgba(255, 253, 248, .18);
    gap: 0;
    margin-top: 24px;
  }

  .target-card .target-list li {
    border-bottom: 1px solid rgba(255, 253, 248, .16);
    padding: 12px 0;
  }

  .target-card .target-list strong {
    color: #e7cf91;
  }

  .license-card {
    background: #eee4d2;
    border: 0;
  }

  .license-card .license-image {
    height: 260px !important;
    margin-left: -32px;
    margin-right: -32px;
  }

  .license-card .round-label {
    border-radius: 2px 26px 2px 2px;
    bottom: 44px;
    box-shadow: 0 18px 36px rgba(38, 76, 62, .13);
    height: 112px;
    left: 32px;
    width: 112px;
  }

  .concerns {
    display: grid;
    gap: 0 72px;
    grid-template-columns: 330px minmax(0, 1fr);
    padding-top: 84px;
  }

  .concerns .section-title {
    align-self: start;
    grid-row: 1 / 3;
    margin: 0;
    position: sticky;
    top: 118px;
  }

  .concerns .section-title h2 {
    font-size: 38px;
    line-height: 1.55;
  }

  .concern-grid {
    border-top: 1px solid rgba(38, 76, 62, .2);
    gap: 0 38px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concern-grid p {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(38, 76, 62, .18);
    border-radius: 0;
    font-size: 14px;
    min-height: 72px;
    padding: 23px 12px 20px 28px;
    position: relative;
  }

  .concern-grid p::before {
    background: var(--rust);
    content: "";
    height: 6px;
    left: 2px;
    position: absolute;
    top: 31px;
    transform: rotate(45deg);
    width: 6px;
  }

  .concerns .center-note {
    grid-column: 2;
    margin-top: 24px;
    text-align: left;
  }

  .profile-boxes {
    background: transparent;
    border-left: 0;
    border-right: 0;
  }

  .profile-boxes article {
    background: transparent;
  }

  .profile-boxes article + article {
    border-left: 1px solid rgba(38, 76, 62, .14);
  }

  .detail-icon {
    border-radius: 2px 15px 2px 2px;
  }

  .faq-grid {
    gap: 0 52px;
  }

  .faq-grid article {
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(38, 76, 62, .2);
  }

  .faq-grid article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(38, 76, 62, .2);
  }

  .faq-grid button {
    font-size: 15px;
    min-height: 70px;
    padding: 18px 4px;
  }

  .faq-grid article > div {
    padding-left: 4px;
    padding-right: 4px;
  }

  .contact {
    background:
      radial-gradient(circle at 92% 12%, rgba(231, 207, 145, .1), transparent 260px),
      #23483a;
    padding-bottom: 52px;
    padding-top: 62px;
  }

  .contact .section-title h2,
  .contact .section-title p {
    color: #fffdf8;
  }

  .contact .section-title h2::after {
    background: #e7cf91;
  }

  .contact-grid {
    background: rgba(255, 253, 248, .2);
    gap: 1px;
  }

  .contact-grid a,
  .contact-grid div {
    background: rgba(255, 253, 248, .055);
    border-radius: 0;
    box-shadow: none;
    min-height: 164px;
    padding: 28px 24px;
    transition: background 180ms ease;
  }

  .contact-grid a:hover,
  .contact-grid a:focus-visible {
    background: rgba(255, 253, 248, .12);
    outline: 0;
  }

  .contact-grid span {
    color: #e7cf91;
  }

  .contact-grid strong,
  .contact-grid small,
  .contact-grid p {
    color: #fffdf8;
  }

  .footer {
    background: #18392d;
    border-top: 1px solid rgba(255, 253, 248, .11);
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .entry-section {
    padding: 36px 32px;
  }

  .entry-grid {
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(38, 76, 62, .14);
    border: 1px solid rgba(38, 76, 62, .14);
  }

  .entry-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: 230px;
    padding: 34px 24px 30px;
  }

  .entry-card h2 {
    font-size: 25px;
  }

  .entry-card p {
    font-size: 13px;
  }

  .info-grid {
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .info-card {
    min-height: 440px;
    padding: 24px 22px;
  }

  .info-card h2 {
    font-size: 23px;
  }

  .origin-grid {
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .origin-grid article {
    padding: 24px 22px 26px;
  }

  .origin-card-body {
    padding-left: 28px;
    padding-right: 20px;
  }
}

@media (max-width: 640px) {
  .mobile-consult {
    background:
      linear-gradient(rgba(247, 242, 232, .96), rgba(247, 242, 232, .96)),
      repeating-linear-gradient(90deg, rgba(38, 76, 62, .025) 0 1px, transparent 1px 7px);
    max-width: 100% !important;
  }

  .mobile-consult-header {
    background: rgba(250, 247, 240, .96);
    border-bottom: 1px solid rgba(38, 76, 62, .14);
    border-radius: 0;
    box-shadow: none;
    height: 64px;
    left: 0;
    padding: 10px 18px;
    right: 0;
    top: 0;
  }

  .mobile-logo-mark {
    border-radius: 2px 9px 2px 2px;
  }

  .mobile-drawer-button {
    justify-content: end;
  }

  .mobile-drawer-panel {
    border-radius: 0;
    min-height: 100dvh;
    right: 0;
    top: 0;
    width: min(82vw, 320px);
  }

  .mobile-consult-main {
    max-width: 100%;
    padding: 0 0 24px;
  }

  .consult-hero {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    min-height: 0;
    overflow: visible;
    padding: 250px 0 18px;
  }

  .consult-hero::after {
    display: none;
  }

  .consult-hero-media {
    bottom: auto;
    height: 292px;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
  }

  .consult-hero-media::after {
    background: linear-gradient(180deg, transparent 55%, rgba(20, 42, 33, .26));
    content: "";
    inset: 0;
    position: absolute;
  }

  .consult-hero-media img {
    object-position: center 55%;
  }

  .consult-hero-copy {
    background: #fffdf8;
    border-radius: 2px 30px 2px 2px;
    box-shadow: 0 24px 54px rgba(38, 76, 62, .14);
    margin: 0 18px;
    padding: 28px 20px 26px;
  }

  .consult-badge {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #b49343;
    border-radius: 0;
    color: #9a7527;
    letter-spacing: .09em;
    margin-bottom: 18px;
    padding: 0 0 6px;
  }

  .consult-hero h1 {
    font-size: clamp(26px, 7vw, 28px);
    letter-spacing: -.015em;
    line-height: 1.5;
    max-width: none;
  }

  .consult-hero p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.9;
  }

  .consult-hero-actions {
    gap: 9px;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .consult-button {
    border-radius: 2px 14px 2px 2px;
    font-size: 13px;
    min-height: 52px;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    white-space: nowrap;
  }

  .consult-button-primary {
    box-shadow: 0 12px 26px rgba(217, 119, 61, .24);
  }

  .consult-section {
    padding: 50px 24px 0;
  }

  .consult-section h2 {
    font-size: clamp(22px, 6.5vw, 27px);
    letter-spacing: .015em;
    margin-bottom: 28px;
    text-align: left;
  }

  .consult-section h2::after {
    height: 2px;
    margin: 12px 0 0;
    width: 34px;
  }

  .consult-worries ul {
    border-top: 1px solid rgba(38, 76, 62, .2);
    gap: 0;
  }

  .consult-worries li {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(38, 76, 62, .17);
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
    gap: 14px;
    grid-template-columns: 26px minmax(0, 1fr);
    line-height: 1.7;
    min-height: 0;
    padding: 14px 2px;
  }

  .consult-worries li::before {
    background: var(--forest);
    border: 0;
    border-radius: 50% 50% 50% 4px;
    color: #fffdf8;
    font-size: 11px;
    height: 24px;
    width: 24px;
  }

  .consult-service-grid {
    background: rgba(38, 76, 62, .18);
    border-bottom: 1px solid rgba(38, 76, 62, .18);
    border-top: 1px solid rgba(38, 76, 62, .18);
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .consult-service-grid article,
  .consult-service-grid article:nth-child(-n+3),
  .consult-service-grid article:nth-child(4),
  .consult-service-grid article:nth-child(5) {
    background: var(--paper);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: block;
    gap: 0;
    grid-column: auto;
    min-height: 158px;
    padding: 17px 14px 15px;
    text-align: left;
  }

  .consult-service-grid article:nth-child(5) {
    align-items: center;
    display: grid;
    gap: 2px 16px;
    grid-column: 1 / -1;
    grid-template-columns: 44px minmax(0, 1fr);
    min-height: 96px;
    padding-bottom: 15px;
    padding-top: 15px;
  }

  .consult-service-grid svg {
    height: 32px;
    margin: 0 0 12px;
    width: 32px;
  }

  .consult-service-grid article:nth-child(5) svg {
    grid-row: 1 / 3;
    margin: 0;
  }

  .consult-service-grid h3 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 6px;
  }

  .consult-service-grid h3 br {
    display: none;
  }

  .consult-service-grid article:nth-child(5) h3 {
    margin-bottom: 2px;
  }

  .consult-service-grid p {
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.58;
  }

  .consult-flow-list {
    background: rgba(38, 76, 62, .16);
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding: 1px;
  }

  .consult-flow-list::before {
    display: none;
  }

  .consult-flow-list article {
    align-items: start;
    background: var(--paper);
    border: 0;
    border-radius: 0;
    display: grid;
    gap: 3px 10px;
    grid-template-columns: 30px minmax(0, 1fr);
    min-height: 116px;
    padding: 16px 13px;
    text-align: left;
  }

  .consult-flow-list article:not(:last-child)::after {
    display: none;
  }

  .consult-flow-list span {
    grid-row: 1 / 3;
    height: 28px;
    left: auto;
    position: relative;
    top: auto;
    transform: none;
    width: 28px;
    z-index: 1;
  }

  .consult-flow-list svg {
    display: none;
  }

  .consult-flow-list h3 {
    font-family: var(--serif);
    font-size: 16px;
    margin: 0;
  }

  .consult-flow-list p {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.55;
  }

  .consult-trust-grid {
    background: var(--forest);
    border-radius: 2px 28px 2px 2px;
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    padding: 14px 10px;
  }

  .consult-trust-grid article,
  .consult-trust-grid article:nth-child(-n+3) {
    align-items: start;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255, 253, 248, .16);
    border-radius: 0;
    box-shadow: none;
    color: #fffdf8;
    display: block;
    gap: 0;
    grid-column: auto;
    max-width: none;
    min-height: 148px;
    padding: 15px 9px 12px;
    text-align: center;
    width: 100%;
  }

  .consult-trust-grid article:last-child {
    border-right: 0;
  }

  .consult-trust-grid svg {
    color: #e7cf91;
    height: 28px;
    margin: 0 auto 11px;
    width: 28px;
  }

  .consult-trust-grid h3 {
    color: #fffdf8;
    font-size: 13.5px;
    line-height: 1.45;
    margin: 0 0 6px;
  }

  .consult-trust-grid p {
    color: rgba(255, 253, 248, .74);
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.55;
  }

  .consult-trust-grid p br {
    display: none;
  }

  .consult-faq details {
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(38, 76, 62, .2);
    border-radius: 0;
    box-shadow: none;
    margin: 0;
  }

  .consult-faq details:last-of-type {
    border-bottom: 1px solid rgba(38, 76, 62, .2);
  }

  .consult-faq summary {
    font-size: 14px;
    font-weight: 700;
    padding: 18px 42px 18px 2px;
  }

  .consult-faq summary::after {
    right: 4px;
    top: 15px;
  }

  .consult-faq p {
    border-top: 1px dashed rgba(38, 76, 62, .18);
    font-size: 13px;
    padding: 14px 2px 18px;
  }

  .consult-contact {
    border-radius: 2px 30px 2px 2px;
    margin: 66px 18px 16px;
    padding: 30px 22px 22px;
  }

  .consult-contact h2 {
    font-size: 23px;
    text-align: left;
  }

  .consult-contact-grid a {
    border-radius: 2px 13px 2px 2px;
  }

  .mobile-detail-page {
    background:
      linear-gradient(rgba(247, 242, 232, .96), rgba(247, 242, 232, .96)),
      repeating-linear-gradient(90deg, rgba(38, 76, 62, .025) 0 1px, transparent 1px 7px);
    padding-left: 18px;
    padding-right: 18px;
  }

  .mobile-detail-page > header {
    background: rgba(247, 242, 232, .94);
    border: 0;
    border-bottom: 1px solid rgba(38, 76, 62, .18);
    border-radius: 0;
    box-shadow: none;
    top: 0;
  }

  .mobile-detail-hero,
  .mobile-detail-photo,
  .detail-statement-card,
  .detail-letter,
  .partner-panels article,
  .goal-main {
    border-radius: 2px 28px 2px 2px;
  }

  .mobile-detail-card,
  .detail-principles article,
  .service-path article,
  .curriculum-grid article,
  .mobile-profile-list div,
  .mobile-goal-grid article {
    border-radius: 2px 16px 2px 2px;
  }

  .mobile-detail-cta {
    border-radius: 2px 16px 2px 2px;
  }

  .detail-about .detail-principles {
    border-top: 1px solid rgba(38, 76, 62, .18);
    gap: 0;
  }

  .detail-about .detail-principles article,
  .detail-about .detail-principles article:nth-child(2) {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(38, 76, 62, .18);
    border-radius: 0;
    box-shadow: none;
    margin-left: 0;
    padding-left: 4px;
    padding-right: 4px;
  }

  .detail-company .mobile-profile-list {
    border-top: 1px solid rgba(38, 76, 62, .18);
    gap: 0;
  }

  .detail-company .mobile-profile-list div,
  .detail-company .mobile-profile-list div:first-child {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(38, 76, 62, .18);
    border-radius: 0;
    box-shadow: none;
    display: grid;
    gap: 14px;
    grid-template-columns: 76px minmax(0, 1fr);
    padding: 18px 4px;
  }

  .detail-company .mobile-profile-list div:first-child dt,
  .detail-company .mobile-profile-list div:first-child dd,
  .detail-company .mobile-profile-list dt,
  .detail-company .mobile-profile-list dd {
    color: #274438;
    margin: 0;
  }

  .detail-company .mobile-profile-list dt,
  .detail-company .mobile-profile-list div:first-child dt {
    color: #a17f35;
  }
}

@media (max-width: 374px) {
  .consult-worries li {
    font-size: 13.5px;
    text-wrap: pretty;
  }

  .consult-trust-grid article,
  .consult-trust-grid article:nth-child(-n+3) {
    padding-left: 4px;
    padding-right: 4px;
  }

  .consult-trust-grid h3 {
    font-size: 12.5px;
  }

  .consult-hero-copy {
    margin-left: 14px;
    margin-right: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .consult-hero h1 {
    font-size: 26px;
  }

  .consult-section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .consult-contact-line {
    grid-column: auto;
  }

  .detail-nowrap {
    white-space: normal;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
