@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #262420;
  --deep: #30383a;
  --muted: #67655f;
  --paper: #fffefa;
  --warm: #fbf2e5;
  --mist: #edf2ef;
  --line: #e3ded4;
  --orange: #f47721;
  --gold: #f5b51b;
  --sage: #657b6d;
  --navy: #26374a;
  --white: #ffffff;
  --max: 1180px;
  --shadow: 0 22px 60px rgba(55, 44, 34, 0.12);
  --radius-small: 8px;
  --radius-medium: 12px;
  --radius-large: 16px;
  --font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-family);
  line-height: 1.8;
}

.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.concern-icon svg,
.example-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(227, 222, 212, 0.88);
  background: rgba(255, 254, 250, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 146px;
}

.brand img {
  display: block;
  width: 100%;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.8vw, 28px);
  font-size: 0.96rem;
  font-weight: 700;
}

.global-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.global-nav a:not(.header-cta) {
  padding-block: 10px;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.global-nav a:not(.header-cta):hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.header-cta {
  padding: 9px 18px;
  border-radius: var(--radius-small);
  background: var(--orange);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  background: var(--white);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: min(740px, calc(100vh - 76px));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(255, 254, 250, 0.98) 0%,
      rgba(255, 254, 250, 0.93) 34%,
      rgba(255, 254, 250, 0.36) 62%,
      rgba(255, 254, 250, 0.05) 100%
    );
}

.hero-inner {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
  padding-block: 90px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--orange);
  font-weight: 800;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.section-kicker {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-family);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  line-height: 1.25;
}

.hero-title-accent {
  color: var(--orange);
}

h2 {
  font-size: clamp(1.65rem, 2.6vw, 2.5rem);
  line-height: 1.28;
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.48;
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--deep);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(244, 119, 33, 0.24);
}

.button-ghost {
  border-color: rgba(38, 36, 32, 0.32);
  background: rgba(255, 254, 250, 0.76);
}

.hero-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.section {
  padding: clamp(88px, 10vw, 138px) 0;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading > h2 + .section-intro {
  max-width: 720px;
  margin: 20px 0 0;
}

.section-heading p,
.split-heading > p {
  color: var(--muted);
}

.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.split-heading > p {
  max-width: 520px;
  margin: 0 0 4px;
}

.concerns {
  background: var(--white);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.concern-grid p {
  min-height: 76px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 18px 24px 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--deep);
  font-size: 1.05rem;
  font-weight: 700;
}

.concern-grid p:nth-child(odd) {
  margin-right: 34px;
}

.concern-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 122, 39, 0.22);
  border-radius: 50%;
  color: var(--orange);
  background: rgba(239, 122, 39, 0.07);
}

.concern-text {
  min-width: 0;
}

.concerns-message {
  max-width: 980px;
  margin: 48px auto 0;
  text-align: center;
}

.concerns-message-lead {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.65;
}

.concerns-message p:not(.concerns-message-lead) {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--deep);
  line-height: 1.95;
}

.services {
  background: var(--mist);
}

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

.service-item {
  overflow: hidden;
  border: 1px solid rgba(101, 123, 109, 0.22);
  border-radius: var(--radius-medium);
  background: var(--white);
}

.service-item figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.service-item:hover img {
  transform: scale(1.025);
}

.service-body {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.service-number {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-family: var(--font-family);
  font-size: 1.4rem;
  font-weight: 700;
}

.service-body h3 {
  min-height: 3.2em;
}

.service-body p {
  margin: 18px 0 0;
  color: var(--muted);
}

.examples {
  background: var(--paper);
}

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

.example-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-top: 2px solid var(--orange);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: 0 15px 44px rgba(55, 44, 34, 0.08);
}

.example-top {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.example-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--orange);
  background: rgba(239, 122, 39, 0.08);
}

.example-top h3 {
  line-height: 1.55;
}

.example-details {
  display: grid;
  gap: 0;
  margin: 24px 0 26px;
}

.example-detail {
  padding: 1px 0 18px 18px;
  border: 0;
  border-left: 2px solid rgba(244, 119, 33, 0.38);
  border-radius: 0;
}

.example-detail:first-child {
  background: transparent;
}

.example-detail:last-child {
  background: transparent;
  border-left-color: rgba(101, 123, 109, 0.48);
}

.example-detail + .example-detail {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.example-detail h4 {
  width: max-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 4px 11px;
  border-radius: 999px;
  color: var(--orange);
  background: rgba(244, 119, 33, 0.09);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.example-detail:last-child h4 {
  color: var(--sage);
  background: rgba(101, 123, 109, 0.1);
}

.example-detail p {
  margin: 10px 0 0;
  color: var(--muted);
}

.flow-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  margin-left: 20px;
  margin-bottom: 12px;
}

.flow-title span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border: 1px solid rgba(244, 119, 33, 0.22);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(244, 119, 33, 0.05);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.flow-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0 0 0 20px;
  padding: 0;
  list-style: none;
}

.flow li {
  position: relative;
  min-height: auto;
  padding: 0;
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
}

.flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -16px;
  z-index: 2;
  color: var(--orange);
  font-size: 0.9rem;
}

.profile {
  background: var(--warm);
  color: var(--ink);
}

.profile-layout {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.profile-image {
  width: 100%;
  max-width: 130px;
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
}

.profile-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-content h2 {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-size: 1.7rem;
}

.profile-content h2 span {
  color: var(--muted);
  font-family: var(--font-family);
  font-size: 0.62em;
  font-weight: 500;
}

.profile-role {
  margin: 12px 0 30px;
  color: var(--orange);
  font-weight: 800;
}

.profile-content > p:not(.section-kicker):not(.profile-role) {
  max-width: 900px;
  color: var(--muted);
}

.reasons {
  background: var(--white);
}

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

.reason-list article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 34px 20px;
  border-bottom: 1px solid var(--line);
}

.reason-list article:nth-child(even) {
  background: rgba(237, 242, 239, 0.52);
}

.reason-list article > span {
  color: var(--orange);
  font-family: var(--font-family);
  font-size: 2.1rem;
  line-height: 1;
}

.reason-list h3 {
  font-size: 1.45rem;
}

.reason-list p {
  max-width: 820px;
  margin: 10px 0 0;
  color: var(--muted);
}

.process {
  background: var(--warm);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(101, 123, 109, 0.24);
  border-radius: var(--radius-large);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 42px rgba(55, 44, 34, 0.06);
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 260px;
  padding: 30px 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.process-list li:not(:last-child) {
  border-right: 1px solid rgba(101, 123, 109, 0.2);
}

.process-list li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 34px;
  right: -10px;
  z-index: 3;
  padding-inline: 2px;
  color: var(--orange);
  background: var(--warm);
  font-size: 1rem;
  line-height: 1;
}

.process-list span {
  width: max-content;
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  padding: 4px 10px;
  border: 1px solid rgba(244, 119, 33, 0.2);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(244, 119, 33, 0.08);
  font-family: var(--font-family);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.process-list h3 {
  margin-top: 22px;
  font-size: 1.15rem;
  text-align: center;
}

.process-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.faq {
  background: var(--paper);
}

.faq-layout {
  display: block;
}

.faq-list {
  max-width: 980px;
  display: grid;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(101, 123, 109, 0.2);
  border-left: 4px solid rgba(101, 123, 109, 0.28);
  border-radius: var(--radius-medium);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(55, 44, 34, 0.05);
}

.faq-list details[open] {
  border-left-color: rgba(101, 123, 109, 0.52);
}

.faq-list summary {
  min-height: 78px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  color: var(--deep);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before {
  content: "Q";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 119, 33, 0.28);
  border-radius: 50%;
  color: var(--orange);
  background: rgba(244, 119, 33, 0.07);
  font-size: 0.88rem;
  font-weight: 800;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 1.7rem;
  font-weight: 400;
}

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

.faq-list details p {
  margin: 0;
  padding: 0 78px 26px;
  color: var(--muted);
}

.faq-list details[open] p {
  padding-top: 18px;
  background: rgba(237, 242, 239, 0.58);
}

.contact {
  padding: clamp(84px, 10vw, 132px) 0;
  background: var(--warm);
  color: var(--ink);
}

.contact-inner {
  display: block;
}

.contact .section-kicker {
  color: var(--orange);
}

.contact h2 {
  max-width: 720px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
  margin-top: 42px;
}

.contact-copy h3 {
  margin: 0;
  font-size: 1.5rem;
}

.contact-copy .contact-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  margin: 0 0 12px;
  padding: 4px 11px;
  border: 1px solid rgba(244, 119, 33, 0.22);
  border-radius: 999px;
  color: var(--orange);
  background: rgba(244, 119, 33, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
}

.contact-copy p {
  margin: 20px 0 0;
  color: var(--deep);
  font-weight: 400;
}

.contact-card {
  overflow: hidden;
  border: 1px solid rgba(101, 123, 109, 0.2);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(55, 44, 34, 0.1);
}

.contact-visual {
  margin: 0;
  background: var(--mist);
}

.contact-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.contact .button {
  width: calc(100% - 40px);
  display: flex;
  margin: 20px;
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(74, 38, 7, 0.15);
}

.contact small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  padding: 36px 0 20px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: center;
}

.footer-brand img {
  width: 132px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
  font-weight: 700;
}

.footer-main nav a,
.footer-bottom a {
  text-decoration: none;
}

.footer-main nav a:hover,
.footer-bottom a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-meta p {
  margin: 0;
}

.back-top {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.2rem;
}

.policy-page {
  background: var(--paper);
}

.policy-header-link {
  padding: 9px 18px;
  border: 1px solid rgba(38, 36, 32, 0.24);
  border-radius: var(--radius-small);
  color: var(--deep);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease;
}

.policy-header-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.policy-main {
  background: var(--paper);
}

.policy-hero {
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 82% 22%, rgba(244, 119, 33, 0.1), transparent 30%),
    var(--warm);
}

.policy-hero-inner {
  max-width: 900px;
}

.policy-hero h1 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.policy-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--deep);
  font-size: 1.05rem;
}

.policy-body {
  padding: 56px 0 96px;
}

.policy-content {
  max-width: 900px;
  margin-inline: auto;
  padding: 48px clamp(28px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(55, 44, 34, 0.07);
}

.policy-content section + section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.policy-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.policy-content p,
.policy-content li,
.policy-operator dd {
  color: var(--muted);
}

.policy-content p {
  margin: 16px 0 0;
}

.policy-content ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 1.4em;
}

.policy-content a {
  color: var(--orange);
  font-weight: 700;
  text-underline-offset: 3px;
}

.policy-operator {
  display: grid;
  grid-template-columns: 9em minmax(0, 1fr);
  gap: 10px 18px;
  margin: 18px 0 0;
}

.policy-operator dt {
  color: var(--deep);
  font-weight: 700;
}

.policy-operator dd {
  margin: 0;
}

.policy-date {
  margin-top: 44px;
  text-align: right;
  font-size: 0.9rem;
}

@media (max-width: 1040px) {
  .site-header {
    padding-inline: 24px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .global-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    width: min(340px, calc(100vw - 36px));
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-medium);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .global-nav.is-open {
    display: grid;
  }

  .global-nav a {
    padding: 12px 14px;
  }

  .header-cta {
    margin-top: 8px;
    text-align: center;
  }

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

  .service-item {
    display: grid;
    grid-template-columns: minmax(240px, 0.75fr) 1fr;
  }

  .service-item figure {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .service-body {
    min-height: 260px;
  }

  .example-card {
    min-height: 270px;
  }

  .profile-layout {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 30px;
  }

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

  .process-list li {
    min-height: auto;
    display: grid;
    grid-template-columns: 100px 200px 1fr;
    align-items: center;
    gap: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(101, 123, 109, 0.2);
  }

  .process-list li:not(:last-child) {
    border-right: 0;
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

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

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-layout {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container,
  .hero-inner {
    width: min(calc(100% - 36px), var(--max));
  }

  .site-header {
    min-height: 68px;
    padding-inline: 18px;
  }

  .brand {
    width: 128px;
  }

  .global-nav {
    top: 68px;
    right: 12px;
    width: min(340px, calc(100vw - 24px));
  }

  .hero {
    min-height: 620px;
    align-items: flex-end;
  }

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

  .hero-overlay {
    background: rgba(255, 254, 250, 0.86);
  }

  .hero-inner {
    padding-block: clamp(56px, 12vw, 76px) clamp(46px, 9vw, 62px);
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: clamp(0.9rem, 2.8vw, 1.05rem);
  }

  h1 {
    font-size: clamp(1.8rem, 6.8vw, 2.65rem);
    line-height: 1.35;
  }

  h2 {
    font-size: clamp(1.5rem, 5.4vw, 2rem);
    line-height: 1.38;
  }

  h3 {
    font-size: clamp(1.08rem, 3.8vw, 1.3rem);
  }

  .hero-title-line,
  .hero-title-accent {
    white-space: normal;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: clamp(0.96rem, 3.2vw, 1.1rem);
    line-height: 1.85;
  }

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

  .button {
    width: 100%;
    min-height: 50px;
    padding: 12px 20px;
    text-align: center;
  }

  .section {
    padding: clamp(62px, 11vw, 84px) 0;
  }

  .section-heading {
    margin-bottom: clamp(30px, 6vw, 44px);
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

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

  .concern-grid p:nth-child(odd) {
    margin-right: 0;
  }

  .concern-grid p {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 0;
  }

  .concern-icon {
    width: 38px;
    height: 38px;
  }

  .concerns-message {
    margin-top: 36px;
    text-align: left;
  }

  .concerns-message-lead {
    font-size: clamp(1.05rem, 3.5vw, 1.18rem);
  }

  .service-item {
    display: block;
  }

  .service-item figure {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .service-body {
    min-height: auto;
  }

  .service-body h3 {
    min-height: auto;
  }

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

  .example-top {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
  }

  .example-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

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

  .flow li:not(:last-child)::after {
    display: none;
  }

  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-image {
    max-width: 110px;
  }

  .profile-content h2 {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    font-size: clamp(1.4rem, 5vw, 1.65rem);
  }

  .profile-content h2 span {
    font-size: 0.62em;
  }

  .reason-list article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding-inline: 0;
  }

  .reason-list article > span {
    font-size: 1.7rem;
  }

  .process-list li {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px 18px;
    padding: 26px 20px;
  }

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

  .faq-list summary {
    min-height: 72px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 10px 18px;
  }

  .faq-list summary::before {
    width: 32px;
    height: 32px;
  }

  .faq-list details p {
    padding: 0 64px 24px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
  }

  .contact-card {
    width: 100%;
    max-width: 560px;
  }

  .contact .button {
    width: calc(100% - 32px);
    margin: 16px;
  }

  .contact small {
    margin-top: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    gap: 16px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .policy-hero {
    padding: 72px 0 56px;
  }

  .policy-body {
    padding: 40px 0 72px;
  }

  .policy-content {
    padding: 38px clamp(24px, 5vw, 42px);
  }
}

@media (max-width: 600px) {
  .container,
  .hero-inner {
    width: min(calc(100% - 32px), var(--max));
  }

  body {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .site-header {
    min-height: 64px;
    padding-inline: 16px;
  }

  .brand {
    width: 118px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .global-nav {
    top: 64px;
  }

  .hero {
    min-height: 460px;
    align-items: center;
  }

  .hero-inner {
    padding-block: 52px 44px;
  }

  h1 {
    font-size: clamp(1.62rem, 8vw, 2rem);
    line-height: 1.42;
  }

  h2 {
    font-size: clamp(1.42rem, 6.5vw, 1.72rem);
  }

  h3 {
    font-size: clamp(1.02rem, 4.8vw, 1.2rem);
  }

  .hero-copy br,
  .concerns-message br,
  .section-intro br {
    display: none;
  }

  .section-kicker {
    margin-bottom: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .section {
    padding: 60px 0;
  }

  .concern-text {
    font-size: clamp(0.84rem, 3.5vw, 0.9rem);
    line-height: 1.6;
  }

  .service-item figure {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .service-body,
  .example-card {
    padding: 22px;
  }

  .service-number {
    margin-bottom: 12px;
    font-size: 1.15rem;
  }

  .service-body h3 {
    font-size: clamp(1rem, 4.5vw, 1.15rem);
    line-height: 1.55;
  }

  .example-top {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }

  .example-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .example-details {
    margin: 20px 0 22px;
  }

  .example-detail {
    padding-left: 14px;
  }

  .flow-title {
    margin-left: 0;
  }

  .flow {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-left: 0;
  }

  .flow li {
    padding-left: 16px;
  }

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

  .reason-list article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding-block: 26px;
  }

  .reason-list article > span {
    font-size: 1.35rem;
  }

  .reason-list h3 {
    font-size: clamp(1rem, 4.2vw, 1.1rem);
    line-height: 1.55;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 20px;
  }

  .process-list span {
    margin-inline: 0;
  }

  .process-list h3 {
    margin-top: 4px;
    text-align: left;
  }

  .process-list p {
    grid-column: auto;
    margin-top: 2px;
  }

  .faq-list summary {
    min-height: 68px;
    grid-template-columns: 30px minmax(0, 1fr) 22px;
    gap: 10px;
    padding: 10px 14px;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .faq-list summary::before {
    width: 30px;
    height: 30px;
  }

  .faq-list summary::after {
    font-size: 1.4rem;
    text-align: center;
  }

  .faq-list details p {
    padding: 18px 20px 22px;
  }

  .faq-list details[open] p {
    padding: 18px 20px 22px;
  }

  .contact {
    padding: 64px 0;
  }

  .contact-copy h3 {
    font-size: 1.25rem;
  }

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

  .contact .button {
    min-height: 52px;
    padding: 12px 14px;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .footer-main nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
    font-size: 0.9rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .policy-header-link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .policy-hero {
    padding: 58px 0 44px;
  }

  .policy-lead {
    font-size: 0.98rem;
  }

  .policy-body {
    padding: 28px 0 56px;
  }

  .policy-content {
    padding: 30px 22px;
    border-radius: var(--radius-medium);
  }

  .policy-content section + section {
    margin-top: 30px;
    padding-top: 30px;
  }

  .policy-operator {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .policy-operator dd + dt {
    margin-top: 8px;
  }

  .policy-date {
    margin-top: 34px;
    text-align: left;
  }
}

@media (max-width: 360px) {
  .container,
  .hero-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand {
    width: 110px;
  }

  .hero {
    min-height: 500px;
  }

  h1 {
    font-size: 1.55rem;
  }

  .service-body,
  .example-card {
    padding: 20px;
  }

  .contact .button {
    width: calc(100% - 24px);
    margin: 12px;
    padding-inline: 10px;
    font-size: 0.86rem;
  }

  .footer-main nav {
    grid-template-columns: 1fr;
  }
}
