:root {
  --green: #16483a;
  --green-2: #23614e;
  --navy: #172d44;
  --ink: #1f2b2a;
  --muted: #5d6d68;
  --paper: #fffdf7;
  --cream: #f5efe3;
  --beige: #e8dcc8;
  --line: #d8cbb7;
  --accent: #b56f3b;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(23, 45, 68, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(255, 253, 247, 0) 0 18%, rgba(232, 220, 200, 0.34) 18% 34%, rgba(255, 253, 247, 0) 34% 100%),
    linear-gradient(68deg, rgba(255, 253, 247, 0) 0 58%, rgba(22, 72, 58, 0.055) 58% 72%, rgba(255, 253, 247, 0) 72% 100%),
    repeating-linear-gradient(0deg, rgba(22, 72, 58, 0.026) 0 1px, transparent 1px 36px),
    linear-gradient(180deg, #fffdf7 0%, #f7f0e5 42%, #fbf8f1 100%);
  background-attachment: fixed;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(22, 72, 58, 0.018) 0 1px, transparent 1px 7px);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(22, 72, 58, 0.16);
  background: rgba(255, 253, 247, 0.94);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: rgba(22, 72, 58, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  text-decoration: none;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
}

.brand-text {
  display: inline;
}

.brand-text span {
  display: inline;
}

.operator {
  color: var(--muted);
  font-size: 13px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid rgba(22, 72, 58, 0.24);
  border-radius: 6px;
  color: var(--green);
  background: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 64px 0;
  scroll-margin-top: 96px;
  background: rgba(255, 253, 247, 0.5);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.soft {
  background:
    linear-gradient(180deg, rgba(245, 239, 227, 0.82), rgba(255, 253, 247, 0.64));
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 70px;
  background: linear-gradient(110deg, #fffdf7 0%, #f7f0e5 62%, #e8dcc8 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(22, 72, 58, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 72, 58, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.hero::after {
  display: none;
}

.hero-grid,
.split,
.profile,
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.hero-copy {
  max-width: 640px;
  padding: 24px 28px 26px;
  border-left: 5px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 14px 34px rgba(23, 45, 68, 0.08);
}

.hero-seal {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 0 18px;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 253, 247, 0.82);
  box-shadow: inset 0 0 0 5px rgba(190, 111, 52, 0.08);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(34px, 9vw, 56px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-title {
  max-width: 760px;
  font-size: clamp(32px, 4.2vw, 48px);
  overflow-wrap: anywhere;
  word-break: keep-all;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  margin: 8px 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.35;
}

.hero-consultant {
  margin: 14px 0 16px;
  color: var(--navy);
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 800;
  line-height: 1.45;
}

h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(26px, 7vw, 38px);
  line-height: 1.28;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 21px;
  line-height: 1.35;
}

p {
  margin: 0 0 16px;
}

.lead {
  margin-top: 18px;
  color: var(--navy);
  font-size: clamp(22px, 6vw, 30px);
  font-weight: 700;
  line-height: 1.4;
}

.hero-message {
  max-width: 590px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(22, 72, 58, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-weight: 700;
}

.trust-list,
.qualification-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.trust-list span,
.trust-list a,
.qualification-grid span,
.qualification-grid a,
.tag-panel li {
  border: 1px solid rgba(22, 72, 58, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.trust-list a,
.qualification-grid a,
.profile-name a,
.inline-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.trust-list a,
.qualification-grid a {
  border-color: rgba(22, 72, 58, 0.34);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(23, 45, 68, 0.08);
}

.trust-list a:hover,
.trust-list a:focus-visible,
.qualification-grid a:hover,
.qualification-grid a:focus-visible,
.profile-name a:hover,
.profile-name a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--navy);
  background: rgba(245, 239, 227, 0.96);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.reception {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.3;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--green);
  border: 2px solid var(--green);
  background: var(--white);
}

.button.muted {
  color: var(--navy);
  border-color: var(--line);
}

.placeholder-media {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid rgba(22, 72, 58, 0.18);
  border-radius: 8px;
  color: var(--green);
  background:
    linear-gradient(135deg, rgba(22, 72, 58, 0.12), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(45deg, rgba(22, 72, 58, 0.08) 0 12px, rgba(232, 220, 200, 0.28) 12px 24px);
  box-shadow: var(--shadow);
  font-weight: 700;
  text-align: center;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 430px;
  padding: 0;
}

.hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px 0 0 18px;
  background: var(--beige);
  box-shadow: 0 20px 42px rgba(23, 45, 68, 0.14);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 45, 68, 0.02) 45%, rgba(23, 45, 68, 0.62) 100%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-photo figcaption span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  color: var(--white);
  background: rgba(23, 45, 68, 0.48);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  backdrop-filter: blur(4px);
}

.hero-photo figcaption span:first-child {
  color: #fff8ee;
  border-color: rgba(255, 223, 180, 0.9);
  background: var(--accent);
}

.panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.panel-tags span {
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--green);
  background: rgba(245, 239, 227, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.note {
  padding: 18px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.story-section h2 {
  color: var(--green);
}

.story-card {
  margin: 22px 0 24px;
  padding: 24px;
  border: 1px solid rgba(22, 72, 58, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 45, 68, 0.08);
}

.story-card p:first-child {
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
}

.section-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(22, 72, 58, 0.14);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 16px 38px rgba(23, 45, 68, 0.1);
}

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

.story-photo {
  aspect-ratio: 16 / 8.5;
  margin: 22px 0 24px;
}

.check-grid,
.service-grid,
.activity-grid {
  display: grid;
  gap: 16px;
}

.check-grid {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-grid li {
  position: relative;
  min-height: 58px;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(22, 72, 58, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.check-grid li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.card,
.activity-card,
.faq-list article,
.contact-box {
  border: 1px solid rgba(22, 72, 58, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(23, 45, 68, 0.07);
}

.card {
  padding: 22px;
}

.card ul {
  margin: 0;
  padding-left: 1.2em;
}

.split {
  align-items: center;
}

.tag-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  margin: 0;
  border-radius: 8px;
  list-style: none;
  background: var(--cream);
}

.vacant-side {
  display: grid;
  gap: 18px;
}

.vacant-photo {
  aspect-ratio: 4 / 3;
}

.caution-box {
  margin-top: 28px;
  overflow: hidden;
  padding: 0;
  border: 2px solid rgba(22, 72, 58, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.98);
  box-shadow: 0 18px 42px rgba(23, 45, 68, 0.14);
}

.caution-header {
  padding: 18px 22px 20px;
  color: var(--white);
  background:
    linear-gradient(135deg, var(--green), #1f5b49);
}

.caution-box > p,
.caution-box ul,
.caution-note {
  margin-right: 22px;
  margin-left: 22px;
}

.caution-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 10px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  color: var(--green);
  background: var(--white);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.caution-box h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 5.2vw, 31px);
  line-height: 1.4;
}

.caution-box ul {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  padding-left: 1.65em;
}

.caution-box > p {
  margin-top: 18px;
}

.caution-box li {
  padding-left: 8px;
}

.caution-note {
  margin-bottom: 22px;
  color: var(--green);
  font-weight: 800;
}

.activity-card {
  overflow: hidden;
}

.activity-media {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(135deg, rgba(22, 72, 58, 0.08) 0 28%, transparent 28% 100%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.45) 0 20%, transparent 20% 100%),
    linear-gradient(135deg, rgba(22, 72, 58, 0.06), rgba(232, 220, 200, 0.55)),
    var(--cream);
}

.activity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.activity-media.is-placeholder {
  display: grid;
  place-items: center;
  color: var(--green);
  font-weight: 700;
}

.activity-media.is-placeholder::before {
  content: "";
  width: 64px;
  height: 42px;
  margin-bottom: 8px;
  border: 2px solid rgba(22, 72, 58, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.52);
}

.activity-body {
  padding: 20px;
}

.activity-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.text-link {
  color: var(--green);
  font-weight: 700;
}

.center,
.center-row {
  justify-content: center;
  text-align: center;
}

.loading {
  padding: 18px;
  border-radius: 8px;
  background: var(--cream);
}

.profile {
  align-items: center;
}

.profile-photo {
  overflow: hidden;
  margin: 0;
  min-height: 320px;
  border: 1px solid rgba(22, 72, 58, 0.14);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 16px 38px rgba(23, 45, 68, 0.1);
  aspect-ratio: 4 / 5;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.profile-name {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.profile-name strong {
  color: var(--green);
  font-size: 28px;
}

.profile-name a {
  width: fit-content;
  font-weight: 700;
}

.credential-stack,
.qualification-credential {
  display: grid;
  justify-items: start;
  gap: 4px;
}

.credential-stack a,
.qualification-credential a {
  width: fit-content;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--green);
  background: transparent;
  font-size: 16px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.qualification-grid {
  margin-bottom: 12px;
}

.qualification-credential {
  flex: 1 1 100%;
  margin-bottom: 4px;
  padding: 0;
}

.qualification-grid > a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.small-note {
  color: var(--muted);
  font-size: 15px;
}

.toda-photo {
  overflow: hidden;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  margin: 28px 0 34px;
  border-radius: 8px;
  background: var(--cream);
}

.toda-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.18);
  transform-origin: right center;
}

.book-grid {
  display: grid;
  gap: 16px;
  margin: 24px 0 12px;
}

.book-card {
  padding: 20px;
  border: 1px solid rgba(22, 72, 58, 0.14);
  border-radius: 8px;
  background: var(--cream);
}

.book-card h3 {
  margin-top: 0;
  color: var(--green);
  font-size: 20px;
}

.book-card a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-quote {
  margin: 24px 0;
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: var(--cream);
}

.article-quote footer {
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
  text-align: right;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

th {
  color: var(--white);
  background: var(--green);
}

tr:last-child td {
  border-bottom: 0;
}

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

.report-photo {
  aspect-ratio: 16 / 7.5;
  margin: 0 0 22px;
}

.flow-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(22, 72, 58, 0.14);
}

.flow-list span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 700;
}

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

.faq-list article {
  padding: 20px;
}

.faq-list h3::before {
  content: "Q. ";
  color: var(--green);
}

.faq-list p::before {
  content: "A. ";
  color: var(--green);
  font-weight: 700;
}

.reassurance {
  background: var(--navy);
  color: var(--white);
}

.reassurance h2,
.reassurance .eyebrow {
  color: var(--white);
}

.reassurance .check-grid li {
  color: var(--ink);
}

.contact {
  background:
    linear-gradient(110deg, rgba(22, 72, 58, 0.1) 0 38%, rgba(232, 220, 200, 0.48) 38% 100%);
}

.contact-box {
  padding: 32px;
  text-align: center;
}

.contact-reception {
  margin-top: 0;
}

.phone {
  display: inline-block;
  margin: 4px 0 12px;
  color: var(--green);
  font-size: clamp(34px, 10vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.phone-sub {
  display: block;
  width: fit-content;
  margin: -4px auto 12px;
  color: var(--muted);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: var(--green);
}

.site-footer h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 22px;
}

.site-footer p {
  margin-bottom: 6px;
}

.site-footer address {
  font-style: normal;
}

.footer-note {
  width: min(1120px, calc(100% - 40px));
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.mobile-call-bar {
  display: none;
}

.article-page .site-header {
  position: static;
}

.article-hero {
  padding: 58px 0;
  background: rgba(245, 239, 227, 0.78);
}

.article-body {
  max-width: 820px;
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 36px;
}

.article-main-photo {
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.article-main-photo img {
  width: 100%;
  display: block;
}

.article-main-photo--compact {
  width: 50%;
  margin-right: auto;
  margin-left: auto;
}

.activity-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 2rem 0 3rem;
}

.activity-photo-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.activity-photo-grid img {
  display: block;
  width: 100%;
  height: auto;
}

.before-after-section {
  margin-top: 36px;
}

.before-after-grid {
  display: grid;
  gap: 28px;
}

.before-after-set {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.before-after-set h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.08rem;
}

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

.comparison-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  aspect-ratio: 4 / 5;
}

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

.photo-label {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(22, 38, 29, 0.14);
}

.photo-label.before {
  color: #6f3d12;
}

.photo-label.after {
  color: var(--green-900);
}

.article-cta {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(15, 92, 70, 0.22);
  border-radius: 8px;
  background: rgba(239, 246, 241, 0.82);
}

.article-cta p {
  margin-top: 0;
}

@media (min-width: 720px) {
  .site-header {
    padding-inline: 32px;
  }

  .hero-grid,
  .split,
  .profile,
  .footer-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  }

  .hero-grid {
    width: min(1240px, calc(100% - 72px));
    grid-template-columns: minmax(480px, 1fr) minmax(480px, 1fr);
    align-items: center;
    gap: 52px;
  }

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

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

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

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

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

@media (min-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1440px) {
  .hero-grid {
    width: min(1280px, calc(100% - 120px));
    gap: 64px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .hero-grid {
    width: min(calc(100% - 40px), 760px);
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .section {
    scroll-margin-top: 84px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    padding-top: 10px;
  }

  .site-header.nav-open .site-nav {
    display: grid;
    gap: 8px;
  }

  .site-nav a {
    padding: 10px 12px;
    border-radius: 6px;
    background: var(--cream);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 17px;
    padding-bottom: 78px;
  }

  .hero {
    padding: 42px 0 48px;
  }

  .section {
    padding: 50px 0;
  }

  .container {
    width: min(calc(100% - 28px), 1120px);
  }

  .brand {
    gap: 8px;
    font-size: 14px;
    line-height: 1.25;
  }

  .brand-text,
  .brand-text span {
    display: block;
  }

  .button {
    width: 100%;
  }

  .hero-title {
    font-size: clamp(28px, 8vw, 33px);
    word-break: normal;
  }

  .hero-subtitle {
    margin-top: 4px;
    font-size: clamp(21px, 6vw, 27px);
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-consultant {
    margin-bottom: 12px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-message {
    margin-top: 14px;
    padding: 12px 14px;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    min-width: 0;
    padding: 20px 18px 22px;
    border-left-width: 4px;
  }

  .trust-list {
    margin: 16px 0;
  }

  #activities {
    padding-top: 34px;
  }

  #activities .section-heading {
    margin-bottom: 14px;
  }

  #activities .section-heading p:not(.eyebrow) {
    display: none;
  }

  .activity-grid {
    gap: 8px;
  }

  .activity-card {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: 112px;
  }

  .activity-media {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .activity-body {
    min-width: 0;
    padding: 8px 11px;
  }

  .activity-meta {
    gap: 5px;
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 1.35;
  }

  .activity-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.32;
  }

  .activity-card p {
    display: none;
  }

  .activity-card .text-link {
    display: inline-flex;
    font-size: 14px;
  }

  .hero-visual {
    width: 100%;
    min-width: 0;
    min-height: auto;
  }

  .hero-photo {
    min-height: 300px;
    border-radius: 14px;
  }

  .hero-photo img {
    min-height: 300px;
  }

  .hero-photo figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    gap: 6px;
  }

  .hero-photo figcaption span {
    padding: 6px 9px;
    font-size: 12px;
  }

  .contact-box {
    padding: 24px 18px;
  }

  .article-main-photo--compact {
    width: 100%;
  }

  .activity-photo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .mobile-call-bar {
    position: fixed;
    z-index: 30;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px;
    background: rgba(255, 253, 247, 0.96);
    border-top: 1px solid rgba(22, 72, 58, 0.18);
  }

  .mobile-call-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    border-radius: 6px;
    color: var(--white);
    background: var(--green);
    text-decoration: none;
    font-weight: 800;
  }

  .mobile-call-bar span {
    font-size: 15px;
  }
}
