:root {
  --navy: #142746;
  --navy-soft: #233a5d;
  --green: #2f6951;
  --green-deep: #204a3a;
  --lime: #b7cf43;
  --gold: #d6ad50;
  --cream: #fbf8f1;
  --mint: #edf5f0;
  --ink: #17243a;
  --muted: #5f6976;
  --line: #dfd8c9;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", var(--font-geist-sans), sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img {
  object-fit: cover;
}

.no-break {
  white-space: nowrap;
}

h1,
h2,
h3,
p,
li,
dt,
dd,
summary,
small,
span {
  word-break: auto-phrase;
}

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

p,
li {
  text-wrap: pretty;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 82px;
  padding: 14px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(20, 39, 70, 0.09);
  background: rgba(251, 248, 241, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-mark {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
  border: 1px solid rgba(214, 173, 80, 0.24);
  border-radius: 50%;
  background: white;
}

.brand-mark img {
  width: 72px !important;
  max-width: none !important;
  height: 108px !important;
  object-fit: contain !important;
  transform: translate(-10px, -4px);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a {
  padding: 10px 0;
}

.header-cta {
  padding: 12px 19px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(183, 207, 67, 0.2), transparent 26%),
    linear-gradient(135deg, #fffdf7 0%, #f4f0e8 53%, #eaf2ed 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(47, 105, 81, 0.12) 0.6px, transparent 0.6px);
  background-size: 14px 14px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 52%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 740px;
  margin: 0 auto;
  padding: 70px 0 82px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(54px, 7.3vw, 94px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.hero-copy h1 span {
  margin-left: 0.08em;
  color: var(--green);
  font-size: 0.56em;
  letter-spacing: 0.03em;
}

.hero-lead {
  margin: 30px 0 18px;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(25px, 3vw, 37px);
  font-weight: 700;
  line-height: 1.55;
}

.hero-body {
  max-width: 650px;
  margin: 0;
  color: #465467;
  font-size: 15px;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  background: var(--green);
  box-shadow: 0 12px 25px rgba(32, 74, 58, 0.2);
  color: white;
}

.button-secondary {
  border-color: rgba(20, 39, 70, 0.22);
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
}

.hero-note {
  max-width: 600px;
  margin: 20px 0 0;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.hero-visual {
  position: relative;
  min-height: 600px;
}

.hero-photo-frame {
  position: absolute;
  inset: 0 0 54px 30px;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 180px 180px 34px 34px;
  box-shadow: 0 28px 70px rgba(20, 39, 70, 0.18);
}

.hero-photo-frame img {
  object-position: center 27%;
}

.hero-name-card {
  position: absolute;
  right: -18px;
  bottom: 18px;
  width: min(330px, 84%);
  padding: 20px 24px;
  border-left: 5px solid var(--gold);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 45px rgba(20, 39, 70, 0.18);
}

.hero-name-card small,
.hero-name-card span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.hero-name-card strong {
  display: block;
  margin: 7px 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 23px;
}

.hero-name-card .registered-name {
  margin-bottom: 3px;
  color: var(--green-deep);
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: white;
}

.trust-strip > div {
  display: grid;
  min-height: 128px;
  place-items: center;
  align-content: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.trust-strip strong {
  color: #f2cf74;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(21px, 2.4vw, 33px);
}

.trust-strip .trust-concept {
  white-space: nowrap;
}

.trust-strip span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 56px;
  text-align: center;
}

.section h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(35px, 4.5vw, 55px);
  letter-spacing: -0.03em;
  line-height: 1.45;
}

.section-heading > p:last-child,
.profile-copy > p,
.consult-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.contract-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  min-height: 520px;
}

.concern-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
  border-radius: 28px;
  background: var(--navy);
  color: white;
}

.card-kicker {
  margin: 0 0 25px;
  color: #f2cf74;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.concern-card ul {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concern-card li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.8;
}

.concern-card li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  color: var(--lime);
  content: "✓";
  font-weight: 900;
}

.contract-photo {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(20, 39, 70, 0.13);
}

.contract-photo img {
  object-position: center 28%;
}

.contract-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.contract-services article {
  position: relative;
  padding: 32px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.contract-services article > span {
  position: absolute;
  right: 16px;
  bottom: -4px;
  color: rgba(214, 173, 80, 0.18);
  font-family: Georgia, serif;
  font-size: 64px;
  font-weight: 800;
}

.contract-services h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 19px;
}

.contract-services p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.scope-notice {
  margin-top: 24px;
  padding: 22px 26px;
  border: 1px solid rgba(47, 105, 81, 0.18);
  border-left: 4px solid var(--green);
  border-radius: 0 16px 16px 0;
  background: rgba(237, 245, 240, 0.72);
}

.scope-notice strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 13px;
}

.scope-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.self-check-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(183, 207, 67, 0.15), transparent 25%),
    var(--navy);
}

.self-check-section .section {
  width: min(1180px, calc(100% - 40px));
}

.self-check-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(38px, 8vw, 105px);
  align-items: end;
  margin-bottom: 46px;
}

.self-check-heading h2 {
  color: white;
}

.self-check-heading .eyebrow {
  color: #f2cf74;
}

.self-check-heading > div:last-child > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 2;
}

.self-check-heading > div:last-child > strong {
  display: block;
  margin-top: 17px;
  color: #f4d989;
  font-size: 13px;
  line-height: 1.8;
}

.self-check-widget {
  max-width: 1040px;
  margin: 0 auto;
}

.self-check-toggle {
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 26px 20px 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.self-check-toggle:hover {
  border-color: rgba(244, 217, 137, 0.64);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.self-check-toggle:focus-visible {
  outline: 3px solid rgba(244, 217, 137, 0.5);
  outline-offset: 4px;
}

.self-check-toggle > span:first-child {
  display: grid;
  gap: 6px;
}

.self-check-toggle small {
  color: #f4d989;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.self-check-toggle strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
}

.self-check-toggle-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--navy);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

#contract-self-check-panel {
  margin-top: 18px;
}

#contract-self-check-panel[hidden] {
  display: none;
}

.self-check-form {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: #fffefa;
  box-shadow: 0 28px 70px rgba(6, 17, 34, 0.28);
}

.self-check-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: var(--green);
  color: white;
}

.self-check-progress span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.self-check-progress strong {
  font-family: Georgia, serif;
  font-size: 18px;
}

.self-check-questions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.self-check-questions fieldset {
  min-width: 0;
  margin: 0;
  padding: 25px 27px;
  border: 0;
  border-right: 1px solid #eee8dc;
  border-bottom: 1px solid #eee8dc;
}

.self-check-questions fieldset:nth-child(2n) {
  border-right: 0;
}

.self-check-questions legend {
  display: flex;
  width: 100%;
  min-height: 58px;
  gap: 11px;
  align-items: flex-start;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.75;
}

.self-check-questions legend > span {
  flex: 0 0 auto;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.65;
}

.self-check-questions legend em {
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #f6e8bf;
  color: #7e6020;
  font-size: 9px;
  font-style: normal;
  line-height: 1.4;
}

.self-check-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-top: 15px;
}

.self-check-options label {
  position: relative;
  cursor: pointer;
}

.self-check-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.self-check-options span {
  display: grid;
  min-height: 43px;
  place-items: center;
  padding: 8px;
  border: 1px solid #dcd7cb;
  border-radius: 9px;
  color: #4d5867;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.self-check-options input:checked + span {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.self-check-options input:focus-visible + span {
  outline: 3px solid rgba(47, 105, 81, 0.22);
  outline-offset: 2px;
}

.self-check-submit {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.self-check-submit .button {
  border: 0;
  cursor: pointer;
}

.self-check-reset {
  border: 0;
  border-bottom: 1px solid #8a929c;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
}

.self-check-error {
  margin: 20px 28px 0;
  color: #9b443a;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.self-check-result {
  margin: 0 28px 28px;
  padding: clamp(25px, 5vw, 50px);
  border: 2px solid rgba(47, 105, 81, 0.3);
  border-radius: 22px;
  background: var(--mint);
  text-align: center;
  scroll-margin-top: 100px;
}

.self-check-result.is-priority {
  border-color: rgba(214, 173, 80, 0.8);
  background: #fff9e9;
}

.result-kicker {
  margin: 0 0 15px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.priority-alert {
  max-width: 780px;
  margin: 0 auto 22px;
  padding: 18px 20px;
  border-radius: 13px;
  background: var(--navy);
  color: white;
  text-align: left;
}

.priority-alert strong {
  color: #f2cf74;
  font-size: 14px;
}

.priority-alert p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.85;
}

.result-score {
  display: grid;
  gap: 5px;
  justify-content: center;
}

.result-score > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.result-score > strong {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 42px;
}

.result-score small {
  color: var(--muted);
  font-size: 14px;
}

.self-check-result h3 {
  margin: 13px 0 10px;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(22px, 3vw, 30px);
}

.self-check-result > p:not(.result-kicker) {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.next-step-panel {
  max-width: 780px;
  margin: 24px auto;
  padding: clamp(22px, 4vw, 32px);
  border-left: 5px solid var(--gold);
  border-radius: 14px;
  background: white;
  text-align: left;
}

.next-step-label {
  margin: 0 0 7px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.next-step-panel h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(19px, 2.4vw, 24px);
}

.next-step-panel > p:not(.next-step-label, .next-step-prep) {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.next-step-panel ol {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.next-step-panel li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
}

.next-step-panel li span {
  color: var(--gold);
  font-family: Georgia, serif;
}

.next-step-prep {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.flagged-list {
  max-width: 780px;
  margin: 23px auto;
  padding: 21px 23px;
  border-radius: 14px;
  background: white;
  text-align: left;
}

.flagged-list > strong {
  color: var(--green-deep);
  font-size: 12px;
}

.flagged-list ul {
  display: grid;
  gap: 8px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.flagged-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.flagged-list li span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-weight: 800;
}

.self-check-disclaimer {
  max-width: 900px;
  margin: 23px auto 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.85;
  text-align: center;
}

.case-studies-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(183, 207, 67, 0.12), transparent 24%),
    var(--mint);
}

.case-studies-section .section {
  width: min(1180px, calc(100% - 40px));
}

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

.case-card {
  overflow: hidden;
  border: 1px solid rgba(20, 39, 70, 0.13);
  border-radius: 25px;
  background: white;
  box-shadow: 0 15px 40px rgba(20, 39, 70, 0.07);
}

.case-card summary {
  position: relative;
  display: block;
  min-height: 420px;
  padding: 31px 31px 72px;
  cursor: pointer;
  list-style: none;
}

.case-card summary::-webkit-details-marker {
  display: none;
}

.case-card summary::after {
  position: absolute;
  right: 30px;
  bottom: 29px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  content: "＋";
  font-size: 18px;
  font-weight: 500;
}

.case-card[open] summary::after {
  content: "−";
}

.case-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.case-number {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.case-field {
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf3ef;
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 900;
}

.case-card h3 {
  margin: 20px 0 17px;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 24px;
  line-height: 1.55;
}

.case-challenge {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.case-challenge strong {
  display: block;
  margin-bottom: 4px;
  color: #9b544b;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.protected-value {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding: 17px 19px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: #f7f4eb;
}

.protected-value span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.protected-value strong {
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
}

.case-toggle {
  position: absolute;
  bottom: 35px;
  left: 31px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.case-detail {
  padding: 0 31px 31px;
  border-top: 1px solid #eee8dc;
}

.case-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 25px;
}

.case-comparison section {
  padding: 19px;
  border-radius: 14px;
}

.case-comparison span {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.case-comparison p,
.case-reason p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.case-before {
  border: 1px solid #eadad5;
  background: #fff9f7;
}

.case-before span {
  color: #a45d52;
}

.case-after {
  border: 1px solid #cfe0d6;
  background: #f4f9f6;
}

.case-after span {
  color: var(--green);
}

.case-reason {
  margin-top: 14px;
  padding: 20px;
  border-radius: 14px;
  background: var(--navy);
}

.case-reason strong {
  display: block;
  margin-bottom: 8px;
  color: #f2cf74;
  font-size: 11px;
}

.case-reason p {
  color: rgba(255, 255, 255, 0.78);
}

.case-disclaimer {
  max-width: 900px;
  margin: 28px auto 0;
  padding: 22px 24px;
  border: 1px solid rgba(20, 39, 70, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  text-align: left;
}

.case-disclaimer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 12px;
}

.case-disclaimer p {
  margin: 0;
  font-size: 11px;
  line-height: 1.9;
}

.case-disclaimer p + p {
  margin-top: 8px;
}

.case-action {
  margin-top: 25px;
  text-align: center;
}

.testimonials-section {
  width: min(1180px, calc(100% - 40px));
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  grid-column: span 2;
  min-height: 390px;
  padding: 34px 30px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: white;
  box-shadow: 0 15px 38px rgba(20, 39, 70, 0.06);
}

.testimonial-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.testimonial-quote {
  position: absolute;
  top: 4px;
  right: 20px;
  color: rgba(214, 173, 80, 0.18);
  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 1;
}

.testimonial-service {
  position: relative;
  display: inline-flex;
  margin: 0 0 22px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 900;
}

.testimonial-card blockquote {
  position: relative;
  margin: 0;
  color: #465467;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  line-height: 2.05;
}

.testimonial-source {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: right;
}

.testimonials-note {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
  text-align: center;
}

.referral-note {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 30px auto 0;
  padding: 23px 25px;
  border-left: 4px solid var(--gold);
  border-radius: 0 17px 17px 0;
  background: var(--mint);
}

.referral-note strong {
  color: var(--navy);
  font-size: 13px;
}

.referral-note p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.referral-note .button {
  flex: 0 0 auto;
  min-height: 45px;
  padding: 11px 18px;
  background: white;
  font-size: 11px;
}

.profile-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.profile-photo {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 30px 160px 30px 30px;
  box-shadow: 0 26px 60px rgba(20, 39, 70, 0.14);
}

.profile-photo img {
  object-position: center 22%;
}

.profile-copy > p {
  margin: 22px 0 0;
}

.profile-name {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding: 15px 20px 15px 14px;
  border: 1px solid rgba(214, 173, 80, 0.36);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.profile-name img {
  flex: 0 0 auto;
  object-fit: contain;
}

.profile-name span,
.profile-name small {
  display: block;
}

.profile-name span {
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.profile-name strong {
  display: block;
  margin: 4px 0 3px;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 24px;
}

.profile-name small {
  color: var(--muted);
  font-size: 10px;
}

.profile-copy > .name-story {
  margin: 14px 2px 0;
  color: #536071;
  font-size: 12px;
  line-height: 1.9;
}

.origin-story {
  margin-top: 28px;
  padding: 25px 27px;
  border-left: 4px solid #efb3b5;
  border-radius: 0 18px 18px 0;
  background: linear-gradient(135deg, #fffaf7, #f7f4eb);
}

.origin-story > p:first-child {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.origin-story h3 {
  margin: 0 0 13px;
  color: var(--navy);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 21px;
  line-height: 1.55;
}

.origin-story > p:not(:first-child) {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.origin-story > p + p {
  margin-top: 9px;
}

.profile-facts {
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.profile-facts > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.7;
}

.profile-facts dt {
  color: var(--green);
  font-weight: 900;
}

.profile-facts dd {
  margin: 0;
}

.services-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(183, 207, 67, 0.14), transparent 24%),
    var(--navy);
}

.services-inner {
  width: min(1120px, calc(100% - 40px));
}

.services-section .section-heading h2,
.services-section .service-card h3 {
  color: white;
}

.services-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.services-section .eyebrow {
  color: #f2cf74;
}

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

.core-services {
  margin-bottom: 34px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.service-card-core {
  min-height: 320px;
  border-color: rgba(242, 207, 116, 0.62);
  background: linear-gradient(135deg, rgba(47, 105, 81, 0.94), rgba(32, 74, 58, 0.88));
}

.service-card-core h3 {
  font-size: clamp(27px, 3vw, 34px);
}

.related-services-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 16px;
  color: white;
}

.related-services-heading strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 20px;
}

.related-services-heading span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.service-card-related {
  min-height: 250px;
  padding: 28px;
}

.service-card-related:last-child {
  grid-column: 1 / -1;
}

.service-number {
  position: absolute;
  right: 24px;
  bottom: 4px;
  color: rgba(255, 255, 255, 0.06);
  font-family: Georgia, serif;
  font-size: 96px;
  font-weight: 800;
}

.service-tag {
  display: inline-flex;
  margin: 0 0 20px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #f6d98b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.service-card h3 {
  position: relative;
  margin: 0 0 13px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 25px;
}

.service-card > p:not(.service-tag) {
  position: relative;
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.9;
}

.service-card a {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  color: white;
  font-size: 12px;
  font-weight: 900;
}

.service-card a span {
  margin-left: 8px;
  color: var(--lime);
}

.services-scope-note {
  max-width: 920px;
  margin: 22px auto 0;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.85;
}

.ongoing-section {
  background:
    radial-gradient(circle at 85% 16%, rgba(183, 207, 67, 0.17), transparent 26%),
    var(--mint);
}

.ongoing-intro {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(38px, 8vw, 100px);
  align-items: end;
  margin-bottom: 48px;
}

.ongoing-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.ongoing-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ongoing-steps li {
  position: relative;
  min-height: 265px;
  padding: 28px 25px;
  overflow: hidden;
  border: 1px solid rgba(20, 39, 70, 0.1);
  border-radius: 20px;
  background: white;
}

.ongoing-steps li > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 800;
}

.ongoing-steps h3 {
  margin: 27px 0 11px;
  color: var(--navy);
  font-size: 17px;
}

.ongoing-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.ongoing-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.ongoing-bottom > div {
  padding: 23px 25px;
  border-left: 4px solid var(--gold);
  border-radius: 0 15px 15px 0;
  background: var(--navy);
}

.ongoing-bottom strong {
  color: #f2cf74;
  font-size: 13px;
}

.ongoing-bottom p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  line-height: 1.8;
}

.fees-section {
  width: min(1120px, calc(100% - 40px));
}

.fees-intro {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: clamp(35px, 8vw, 100px);
  align-items: end;
  margin-bottom: 54px;
}

.fees-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.fees-intro strong {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 17px;
  border-radius: 9px;
  background: #e5efe8;
  color: var(--green-deep);
  font-size: 13px;
}

.fee-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fee-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.fee-card h3 {
  margin: 0;
  padding: 20px 24px;
  background: var(--navy);
  color: white;
  font-size: 17px;
}

.fee-card dl {
  margin: 0;
}

.fee-card dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 55px;
  padding: 12px 24px;
  border-bottom: 1px solid #eee8dc;
}

.fee-card dl > div:last-child {
  border-bottom: 0;
}

.fee-card dt {
  color: #4c5767;
  font-size: 12px;
  line-height: 1.6;
}

.fee-card dd {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.fee-note {
  margin-top: 24px;
  padding: 21px 25px;
  border-left: 4px solid var(--gold);
  background: #f3efe6;
}

.fee-note p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.fee-note p + p {
  margin-top: 7px;
}

.flow-section {
  background: var(--mint);
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
  list-style: none;
}

.flow-list li {
  display: grid;
  min-height: 225px;
  align-content: start;
  padding: 30px;
  background: #fffefa;
}

.flow-list li > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 800;
}

.flow-list h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 17px;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.faq-section {
  max-width: 920px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: center;
  padding: 25px 4px;
  color: var(--navy);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  grid-column: 3;
  color: var(--green);
  content: "＋";
  font-size: 22px;
}

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

.faq-list summary span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #f2cf74;
  font-family: Georgia, serif;
}

.faq-list details > p {
  margin: -4px 0 0 54px;
  padding: 0 30px 26px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.consultation-banner {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(35px, 6vw, 76px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin-bottom: 100px;
  padding: 42px;
  border-radius: 32px;
  background: var(--mint);
}

.consult-copy {
  align-self: center;
}

.consult-photo {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 24px;
}

.consult-photo img {
  object-position: center 25%;
}

.consultation-banner .button {
  margin-top: 15px;
}

.contact-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-line {
  background: #06c755;
  box-shadow: 0 12px 25px rgba(6, 199, 85, 0.2);
  color: white;
}

.consultation-banner small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.contact-form em {
  margin-left: 4px;
  color: #a14c42;
  font-size: 9px;
  font-style: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8d6ce;
  border-radius: 10px;
  outline: 0;
  background: #fffefa;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  padding: 14px;
  resize: vertical;
  line-height: 1.7;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 105, 81, 0.12);
}

.message-field {
  margin-top: 18px;
}

.contact-form .consent-field {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 17px;
}

.contact-form .consent-field input {
  width: 17px;
  height: 17px;
}

.contact-form .consent-field span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.contact-form .button {
  margin-top: 22px;
  border: 0;
  cursor: pointer;
}

.contact-form .form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 38px 20px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

footer > div:not(.footer-brand) {
  display: grid;
  gap: 6px;
}

footer strong,
footer > div span {
  display: block;
}

footer strong {
  color: white;
  font-size: 15px;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-brand {
  display: flex;
  gap: 13px;
  align-items: center;
}

.footer-brand > img {
  border-radius: 10px;
  object-fit: contain;
}

.footer-brand > div {
  display: grid;
  gap: 4px;
}

.member-search-link {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.member-search-link:hover,
.member-search-link:focus-visible {
  color: white;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }

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

  .service-card {
    min-height: 315px;
  }
}

@media (max-width: 800px) {
  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
    flex-basis: 43px;
  }

  .brand-mark img {
    width: 60px !important;
    height: 90px !important;
    transform: translate(-9px, -4px);
  }

  .header-cta {
    padding: 11px 14px;
    font-size: 11px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 620px);
    padding: 56px 0 70px;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 15vw, 76px);
  }

  .hero-lead {
    font-size: 26px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .hero-photo-frame {
    inset: 0 10px 52px;
  }

  .hero-name-card {
    right: 0;
  }

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

  .trust-strip > div {
    min-height: 110px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    width: min(100% - 32px, 620px);
    padding: 80px 0;
  }

  .contract-grid,
  .profile-section,
  .consultation-banner,
  .self-check-heading,
  .ongoing-intro {
    grid-template-columns: 1fr;
  }

  .contract-photo,
  .profile-photo,
  .consult-photo {
    min-height: 500px;
  }

  .contract-services {
    grid-template-columns: 1fr;
  }

  .self-check-section .section,
  .case-studies-section .section {
    width: min(100% - 32px, 620px);
  }

  .self-check-questions {
    grid-template-columns: 1fr;
  }

  .self-check-questions fieldset,
  .self-check-questions fieldset:nth-child(2n) {
    border-right: 0;
  }

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

  .case-card summary {
    min-height: 0;
  }

  .core-services,
  .services-grid,
  .fee-groups {
    grid-template-columns: 1fr;
  }

  .service-card-related:last-child {
    grid-column: auto;
    width: 100%;
  }

  .service-card {
    min-height: 285px;
  }

  .related-services-heading {
    display: grid;
    gap: 5px;
  }

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

  .testimonial-card,
  .testimonial-card:nth-child(4) {
    grid-column: auto;
    min-height: 0;
  }

  .referral-note {
    display: grid;
  }

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

  .fees-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .flow-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-section {
    gap: 45px;
  }

  .consultation-banner {
    width: calc(100% - 24px);
    padding: 18px 18px 38px;
  }

  .consult-copy {
    padding: 0 10px;
  }

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

  footer {
    padding-bottom: 95px;
  }

  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 40;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    box-shadow: 0 16px 36px rgba(20, 39, 70, 0.28);
  }

  .mobile-cta a {
    display: grid;
    min-height: 52px;
    place-items: center;
    background: #06c755;
    color: white;
    font-size: 12px;
    font-weight: 900;
  }

  .mobile-cta a:last-child {
    background: var(--green);
  }
}

@media (max-width: 480px) {
  .hero-copy h1 span {
    display: block;
    margin: 10px 0 0;
    font-size: 0.48em;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .trust-strip strong {
    font-size: 20px;
  }

  .trust-strip .trust-concept {
    font-size: 15px;
  }

  .trust-strip span {
    font-size: 9px;
  }

  .contract-photo,
  .profile-photo,
  .consult-photo {
    min-height: 430px;
  }

  .case-card summary {
    padding: 25px 23px 70px;
  }

  .case-card h3 {
    font-size: 21px;
  }

  .case-toggle {
    left: 23px;
  }

  .case-card summary::after {
    right: 23px;
  }

  .case-detail {
    padding: 0 23px 23px;
  }

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

  .self-check-options {
    grid-template-columns: 1fr;
  }

  .self-check-options span {
    min-height: 42px;
  }

  .self-check-submit {
    display: grid;
  }

  .self-check-toggle {
    min-height: 84px;
    padding: 17px 18px 17px 20px;
  }

  .self-check-toggle-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .ongoing-steps,
  .ongoing-bottom {
    grid-template-columns: 1fr;
  }

  .ongoing-steps li {
    min-height: 0;
  }

  .flow-list li {
    min-height: 190px;
  }

  .faq-list summary {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    font-size: 13px;
    line-height: 1.7;
  }

  .faq-list summary::after {
    grid-column: 3;
  }

  .faq-list details > p {
    margin-left: 44px;
  }

  .contact-choice {
    display: grid;
  }
}

@media print {
  @page {
    margin: 12mm;
  }

  html {
    scroll-behavior: auto;
  }

  body {
    background: white;
  }

  .site-header {
    position: static;
  }

  .desktop-nav,
  .header-cta,
  .mobile-cta {
    display: none !important;
  }

  .section {
    width: 100%;
    padding: 48px 0;
  }

  .section-heading,
  .section h2,
  .section-heading > p {
    break-after: avoid;
  }

  .contract-services article,
  .self-check-questions fieldset,
  .testimonial-card,
  .case-card,
  .profile-facts > div,
  .service-card,
  .fee-card,
  .ongoing-steps li,
  .flow-list li,
  .faq-list details {
    break-inside: avoid;
  }

  .flow-section,
  .consultation-banner {
    break-before: page;
  }

  .consultation-banner {
    break-inside: avoid;
    margin-bottom: 24px;
  }

  footer {
    break-inside: avoid;
  }
}

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

  .button {
    transition: none;
  }
}
