:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #61716d;
  --line: #d9e2df;
  --paper: #ffffff;
  --soft: #f3f7f4;
  --mist: #e8f0ed;
  --green: #127c6f;
  --green-dark: #0a5149;
  --sun: #d7a547;
  --rose: #a8514d;
  --shadow: 0 18px 48px rgba(23, 33, 31, 0.1);
  --font-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Source Han Serif JP", "Noto Serif JP", serif;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-strong: 600;
  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-lead: 16px;
  --text-card-title: 18px;
  --text-section-title: 27px;
  --text-page-title: 28px;
  --text-hero-title: 34px;
  font-family: var(--font-serif);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-weight: var(--weight-regular);
  line-height: 1.82;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font-family: var(--font-serif);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--weight-medium);
}

strong,
b {
  font-weight: var(--weight-strong);
}

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

img {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
dd,
dt,
a,
span,
strong {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: block;
  min-width: 0;
  max-width: 300px;
  color: var(--green-dark);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  line-height: 1.55;
}

.brand img {
  width: min(220px, 46vw);
  max-height: 52px;
  object-fit: contain;
}

.site-nav {
  min-width: 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: var(--text-sm);
  color: var(--muted);
}

.site-nav a {
  padding: 7px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--green-dark);
  border-color: var(--green);
}

.hero {
  position: relative;
  min-height: min(680px, calc(100svh - 78px));
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 80px 24px 110px;
  isolation: isolate;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background: #1a2a27;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 20s infinite;
}

.hero-media img:first-child {
  opacity: 1;
}

.hero-media img:only-child {
  opacity: 1;
  animation: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 26, 23, 0.68), rgba(7, 26, 23, 0.2) 54%, rgba(7, 26, 23, 0.48));
}

.hero-copy {
  width: min(880px, 100%);
  max-width: calc(100vw - 48px);
  min-width: 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.hero-copy img {
  width: min(420px, 74vw);
  margin: 0 auto 36px;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.22));
}

.hero h1 {
  margin: 0 0 22px;
  font-size: var(--text-hero-title);
  line-height: 1.28;
  font-weight: var(--weight-medium);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero p {
  width: 100%;
  margin: 10px auto;
  max-width: min(620px, 100%);
  font-size: var(--text-lead);
  overflow-wrap: anywhere;
}

@keyframes heroFade {
  0%,
  24% {
    opacity: 1;
  }
  30%,
  94% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.content-section,
.band,
.intro {
  padding: 76px clamp(18px, 5vw, 70px);
}

.band {
  background: var(--soft);
}

.narrow {
  max-width: 980px;
  margin-inline: auto;
}

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

.section-heading p,
.page-hero p {
  margin: 0 0 4px;
  color: var(--green);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: none;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  font-size: var(--text-page-title);
  font-weight: var(--weight-medium);
  line-height: 1.45;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-heading span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.intro > p {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--text-lead);
  overflow-wrap: anywhere;
}

.service-grid,
.office-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.home-action-section {
  padding: 46px clamp(18px, 5vw, 70px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

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

.action-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 6px;
}

.action-card span,
.visual-lead-copy p {
  color: var(--green);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: none;
}

.action-card strong {
  font-size: var(--text-card-title);
  font-weight: var(--weight-medium);
  line-height: 1.45;
}

.action-card em {
  color: var(--muted);
  font-size: var(--text-sm);
  font-style: normal;
}

.visual-lead {
  display: grid;
  grid-template-columns: minmax(260px, 42%) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.visual-lead.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
}

.visual-lead.reverse .visual-lead-media {
  order: 2;
}

.visual-lead-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.visual-lead-copy p {
  margin: 0 0 6px;
}

.visual-lead-copy h2 {
  margin: 0 0 14px;
  font-size: var(--text-section-title);
  font-weight: var(--weight-medium);
  line-height: 1.4;
}

.visual-lead-copy span {
  display: block;
  color: var(--muted);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.inline-actions .button,
.inline-actions .text-link {
  margin: 0;
}

.service-card,
.office-card,
.post-card,
.info-card,
.story-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.service-card div,
.office-card {
  padding: 22px;
}

.service-card h3,
.office-card h3,
.post-card h3,
.info-card h3 {
  margin: 0 0 10px;
  font-size: var(--text-card-title);
  font-weight: var(--weight-medium);
  line-height: 1.45;
}

.service-card p,
.office-card p,
.post-card p,
.info-card p,
.story-card p {
  margin: 0;
  color: var(--muted);
}

.lead-section p {
  font-size: var(--text-lead);
}

.info-card {
  padding: 24px;
}

.card-eyebrow {
  margin-bottom: 8px !important;
  color: var(--green) !important;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  text-transform: none;
}

.step-list {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-list span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: var(--weight-medium);
}

.step-list h3 {
  margin: 0 0 6px;
  font-size: var(--text-card-title);
  font-weight: var(--weight-medium);
}

.step-list p {
  margin: 0;
  color: var(--muted);
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.compare-grid article {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compare-grid h3 {
  margin: 0 0 12px;
  font-size: var(--text-card-title);
  font-weight: var(--weight-medium);
}

.office-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.office-contact-list article {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.office-contact-list span {
  color: var(--muted);
}

.office-contact-list a {
  color: var(--green-dark);
  font-weight: var(--weight-medium);
}

.center-note {
  text-align: center;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px clamp(18px, 5vw, 70px);
  color: #fff;
  background: var(--green-dark);
}

.cta-band h2 {
  margin: 0 0 8px;
  font-size: var(--text-section-title);
  font-weight: var(--weight-medium);
  line-height: 1.4;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.cta-band .button {
  margin: 0;
  background: #fff;
  color: var(--green-dark);
}

.cta-band .text-link {
  margin: 0;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.64);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  flex: 0 0 auto;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green-dark);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-bottom: 1px solid var(--green);
}

.button {
  display: block;
  width: fit-content;
  margin: 32px auto 0;
  padding: 10px 20px;
  color: #fff;
  background: var(--green);
  border-radius: 4px;
  border: 1px solid var(--green);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.button.compact {
  padding: 9px 18px;
}

.office-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto 30px;
}

.office-strip a {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green-dark);
  font-weight: var(--weight-medium);
}

.office-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.office-card {
  scroll-margin-top: 96px;
  box-shadow: none;
}

.office-table-wrap {
  max-width: 1180px;
  margin: 0 auto 30px;
  overflow-x: auto;
}

.office-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
}

.office-table th,
.office-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: var(--text-sm);
}

.office-table th {
  color: var(--green-dark);
  background: var(--mist);
}

.office-table a {
  color: var(--green-dark);
  font-weight: var(--weight-medium);
}

.office-area,
.meta {
  color: var(--green);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
}

.office-card dl,
.contact-panel dl {
  margin: 18px 0 0;
}

.office-card dl div,
.contact-panel dl div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: var(--weight-medium);
}

dd {
  margin: 0;
}

.site-form {
  display: grid;
  gap: 18px;
  margin: 28px 0 34px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.site-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-weight: var(--weight-medium);
}

.site-form input,
.site-form select,
.site-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
}

.site-form textarea {
  resize: vertical;
}

.site-form input:disabled,
.site-form select:disabled,
.site-form textarea:disabled,
.site-form button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.form-note {
  margin: 0;
  padding: 12px 14px;
  color: var(--rose);
  background: #fff8f6;
  border: 1px solid #efd2cd;
  border-radius: 6px;
}

.policy h2 {
  margin-top: 34px;
  color: var(--green-dark);
  font-size: var(--text-card-title);
  font-weight: var(--weight-medium);
}

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

.faq-list details {
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--green-dark);
  font-weight: var(--weight-medium);
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.story-list {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.story-card {
  padding: 28px;
}

.story-card h2 {
  margin: 6px 0 12px;
  font-size: 22px;
  font-weight: var(--weight-medium);
  line-height: 1.45;
}

.download-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto;
}

.download-list a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.download-list span {
  display: grid;
  min-height: 42px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 4px;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
}

.download-list strong {
  display: block;
  min-width: 0;
  max-width: 100%;
  word-break: break-all;
}

.print-area {
  background: var(--mist);
}

.print-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 0 auto 24px;
}

.print-actions .button,
.print-actions .text-link {
  margin: 0;
}

.print-sheet {
  max-width: 1080px;
  margin: 0 auto;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.sheet-kicker {
  margin: 0 0 4px;
  color: var(--green);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
}

.print-sheet h2 {
  margin: 0 0 28px;
  font-size: var(--text-section-title);
  font-weight: var(--weight-medium);
  line-height: 1.35;
}

.print-sheet h3 {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: var(--text-card-title);
  font-weight: var(--weight-medium);
}

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

.sheet-grid section,
.sheet-block {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.sheet-block {
  margin-top: 24px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.check-list span {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  border: 2px solid var(--green);
  border-radius: 3px;
}

.requirements-content .wp-content {
  max-width: 1080px;
}

.service-area {
  margin-top: 16px !important;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  white-space: pre-line;
}

.post-list {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.post-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 16px;
}

.post-image img {
  width: 100%;
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--mist);
}

.post-card h3 a:hover {
  color: var(--green);
}

.page-hero {
  padding: 62px clamp(18px, 5vw, 70px) 48px;
  background: linear-gradient(180deg, var(--soft), #fff);
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.service-detail-list {
  display: grid;
  gap: 44px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 48%) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-row img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.service-detail h2 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: var(--weight-medium);
  line-height: 1.38;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
}

.data-table th,
.data-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  white-space: pre-line;
}

.data-table th {
  width: 190px;
  color: var(--green-dark);
  background: var(--mist);
}

.office-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.office-callout {
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.office-callout h2 {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: var(--weight-medium);
  line-height: 1.4;
}

.office-callout p {
  margin: 0;
  color: var(--muted);
  white-space: pre-line;
}

.office-callout .button {
  margin: 22px 0 0;
}

.map-section {
  padding-top: 0;
}

.map-section iframe {
  width: min(1100px, 100%);
  height: 460px;
  display: block;
  margin: 0 auto;
  border: 0;
  border-radius: 8px;
}

.article {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 20px;
}

.article h1 {
  margin: 8px 0 24px;
  font-size: 28px;
  font-weight: var(--weight-medium);
  line-height: 1.35;
}

.breadcrumb {
  color: var(--green);
  font-weight: var(--weight-medium);
}

.article-main-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 0 34px;
}

.wp-content {
  max-width: 980px;
  margin: 0 auto;
  font-size: var(--text-base);
  line-height: 1.82;
}

.wp-content h1,
.wp-content h2,
.wp-content h3,
.wp-content h4 {
  font-family: var(--font-serif);
  font-weight: var(--weight-medium);
  line-height: 1.42;
}

.wp-content h1,
.wp-content .has-large-font-size {
  font-size: 26px !important;
}

.wp-content h2 {
  font-size: 22px !important;
}

.wp-content h3,
.wp-content .has-medium-font-size {
  font-size: 18px !important;
}

.wp-content h4 {
  font-size: 16px !important;
}

.wp-content p,
.wp-content li,
.wp-content dd,
.wp-content dt {
  font-size: var(--text-base) !important;
  line-height: 1.82;
}

.wp-content table {
  font-size: var(--text-sm) !important;
}

.wp-content img {
  height: auto;
  border-radius: 6px;
}

.wp-content figure {
  margin: 28px 0;
}

.wp-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.wp-content th,
.wp-content td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  vertical-align: top;
  font-size: var(--text-sm) !important;
  line-height: 1.7;
}

.wp-content iframe {
  max-width: 100%;
}

.wp-block-gallery,
.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.wp-block-gallery > *,
.wp-block-column {
  flex: 1 1 240px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 70px);
  color: #fff;
  background: var(--green-dark);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-contact {
  display: grid;
  gap: 8px;
  text-align: right;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    display: grid;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .service-grid,
  .action-grid,
  .office-grid,
  .office-grid.compact,
  .visual-lead,
  .visual-lead.reverse,
  .service-detail,
  .office-detail-layout,
  .info-grid,
  .compare-grid,
  .office-contact-list,
  .download-list,
  .sheet-grid {
    grid-template-columns: 1fr;
  }

  .visual-lead.reverse .visual-lead-media {
    order: 0;
  }

  .post-card {
    grid-template-columns: 150px 1fr;
  }

  .cta-band {
    display: grid;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 14px;
  }

  .site-header {
    padding: 12px 18px;
    gap: 14px;
  }

  .brand {
    max-width: none;
    font-size: 13px;
  }

  .brand img {
    width: min(190px, 72vw);
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 14px;
    font-size: 13px;
  }

  .site-nav a {
    min-width: 0;
    padding: 5px 0;
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: 620px;
    padding-inline: 18px;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero-copy img {
    width: min(240px, 64vw);
  }

  .hero h1 {
    max-width: 9em;
    margin-inline: auto;
    font-size: 27px;
  }

  .hero p {
    max-width: 100%;
    font-size: 14px;
  }

  .content-section,
  .band,
  .intro {
    padding-block: 52px;
  }

  .home-action-section {
    padding-block: 38px;
  }

  .section-heading h2,
  .page-hero h1 {
    font-size: 24px;
  }

  .visual-lead-copy h2,
  .cta-band h2,
  .print-sheet h2,
  .article h1 {
    font-size: 23px;
  }

  .service-detail h2,
  .story-card h2 {
    font-size: 21px;
  }

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

  .post-image img {
    aspect-ratio: 16 / 9;
  }

  .office-card dl div,
  .contact-panel dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .gallery-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .download-list a {
    grid-template-columns: 54px 1fr;
  }

  .print-actions {
    display: grid;
  }
}

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

  body {
    color: #000;
    background: #fff;
  }

  .site-header,
  .site-footer,
  .page-hero,
  .lead-section,
  .cta-band,
  .no-print {
    display: none !important;
  }

  .content-section,
  .print-area {
    padding: 0;
    background: #fff;
  }

  .print-sheet {
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .print-sheet h2,
  .print-sheet h3 {
    color: #000;
  }

  .sheet-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .sheet-grid section,
  .sheet-block,
  .step-list li,
  .office-contact-list article {
    border-color: #999;
    break-inside: avoid;
  }

  .print-sheet .office-contact-list {
    grid-template-columns: 1fr;
  }
}
