:root {
  --ink: #12201d;
  --ink-soft: #33443f;
  --paper: #f7f8f3;
  --white: #ffffff;
  --mist: #e7eef0;
  --line: #d5dddc;
  --green: #0d6b5c;
  --green-dark: #074b42;
  --blue: #173b5f;
  --coral: #b85d4b;
  --gold: #c09a45;
  --shadow: 0 18px 52px rgba(18, 32, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", system-ui, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 34px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 248, 243, 0.94);
  box-shadow: 0 8px 28px rgba(18, 32, 29, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  line-height: 1;
}

.brand-text {
  font-size: 0.92rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.nav-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(13, 107, 92, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.hero {
  position: relative;
  min-height: 86svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

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

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 24, 21, 0.78) 0%, rgba(8, 24, 21, 0.58) 35%, rgba(8, 24, 21, 0.08) 72%),
    linear-gradient(0deg, rgba(8, 24, 21, 0.42) 0%, rgba(8, 24, 21, 0) 34%);
}

.hero-content {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  padding: 124px 0 74px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.17;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 38px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 34px rgba(13, 107, 92, 0.26);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-note {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.section {
  padding: 108px 0;
}

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

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

.opening-grid,
.profile-grid,
.contact-grid,
.process-grid,
.focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.45rem;
  line-height: 1.38;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.55;
  letter-spacing: 0;
}

p {
  margin: 0;
}

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

.opening-copy,
.profile-copy,
.contact-copy,
.process-heading {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.opening-copy p + p,
.profile-copy p + p {
  margin-top: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.wide {
  max-width: 900px;
}

.section-heading p:not(.section-kicker) {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-photo {
  margin: 30px 0 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 32, 29, 0.08);
}

.section-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.section-photo-wide {
  margin: 0 0 34px;
}

.section-photo-wide img {
  height: clamp(240px, 30vw, 360px);
  aspect-ratio: auto;
}

.process-photo {
  margin-top: 28px;
}

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

.issue-card {
  min-height: 286px;
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(18, 32, 29, 0.06);
}

.card-number {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 900;
}

.issue-card p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.belief {
  padding: 116px 0;
  color: var(--white);
  background: var(--blue);
}

.belief-inner {
  max-width: 920px;
}

.belief h2 {
  color: var(--white);
  font-size: 2.7rem;
}

.belief p:last-child {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.focus-section {
  background: var(--white);
}

.focus-copy {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.support-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.support-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--green-dark);
  background: #eef5f1;
  border: 1px solid #c9ddd5;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
}

.service-section {
  background: var(--paper);
}

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

.service-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  min-height: 178px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-item-wide {
  grid-column: 1 / -1;
  min-height: auto;
  background: #fdf8f4;
  border-color: #ead0c7;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
}

.service-item p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.service-note {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-note-photo {
  margin: 0;
}

.service-note-photo img {
  width: 116px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 8px;
}

.service-note-label {
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 900;
}

.service-note-text {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.fit-section {
  background: var(--white);
}

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

.fit-card {
  min-height: 300px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fit-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 900;
}

.fit-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.fee-range {
  margin-top: 34px;
  padding: 30px;
  background: #fdf8f4;
  border: 1px solid #ead0c7;
  border-radius: 8px;
}

.fee-range-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.fee-range-heading p {
  max-width: 560px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

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

.fee-card {
  min-height: 196px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fee-card span,
.fee-card strong {
  display: block;
}

.fee-card span {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
}

.fee-card strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.25;
  white-space: nowrap;
}

.fee-card p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.process-section {
  background: var(--white);
}

.process-heading {
  position: sticky;
  top: 108px;
}

.process-heading p:not(.section-kicker) {
  margin-top: 20px;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px 0 24px 26px;
  border-left: 3px solid var(--line);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

.process-list p {
  margin-top: 6px;
  color: var(--ink-soft);
}

.profile-section {
  background: var(--paper);
}

.strength-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.strength-row div {
  min-height: 150px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.strength-row strong,
.strength-row span {
  display: block;
}

.strength-row strong {
  color: var(--ink);
  font-size: 1.02rem;
}

.strength-row span {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.career-section {
  background: var(--white);
}

.career-hero {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 48px;
}

.career-intro {
  max-width: 720px;
}

.career-name-ja,
.career-name-en {
  display: block;
}

.career-name-en {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.42em;
  font-weight: 700;
}

.career-lead {
  max-width: 840px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.career-intro blockquote {
  margin: 30px 0 0;
  padding: 24px 28px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.65;
}

.career-photo {
  margin: 0;
}

.career-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.career-photo figcaption {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: right;
}

.career-timeline {
  display: grid;
  gap: 18px;
}

.career-item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.career-item:last-child {
  border-bottom: 1px solid var(--line);
}

.career-item span {
  color: var(--coral);
  font-weight: 900;
}

.career-item p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.career-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
}

.career-values article {
  min-height: 224px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.career-values p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.stories-section {
  background: var(--paper);
}

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

.story-card {
  min-height: 326px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.story-card span {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
}

.story-card p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.closing {
  padding: 120px 0;
  color: var(--white);
  background: var(--green-dark);
}

.closing-inner {
  max-width: 940px;
}

.closing h2 {
  color: var(--white);
  font-size: 2.65rem;
}

.closing p {
  max-width: 760px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.contact-section {
  background: var(--white);
}

.contact-copy p:not(.section-kicker) {
  margin-top: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.zoho-contact-form form {
  display: grid;
  gap: 16px;
}

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

.required-mark {
  color: var(--coral);
}

.zoho-hidden-field,
.zoho-reset-hidden {
  display: none !important;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8d3d2;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 107, 92, 0.12);
}

.contact-form .formsubmit[disabled] {
  cursor: wait;
  opacity: 0.64;
}

.form-button {
  width: 100%;
  margin-top: 8px;
  border: 0;
}

.form-status {
  min-height: 28px;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.wf_customMessageBox {
  position: fixed;
  top: 20px;
  left: 50%;
  z-index: 11000;
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100px;
  max-width: 90%;
  padding: 10px 15px;
  color: #132c14;
  background: #f5faf5;
  border: 1px solid #a9d3ab;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, 0);
  word-break: break-word;
}

.wf_customCircle {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
  margin-right: 7px;
  background-color: #12aa67;
  border-radius: 100%;
}

.wf_customCheckMark {
  position: absolute;
  top: 9px;
  left: 6px;
  width: 3px;
  height: 8px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg) translate(-50%, -50%);
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

@media (max-width: 1040px) {
  .hero h1 {
    max-width: 620px;
    font-size: 3.25rem;
  }

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

  .issue-card {
    min-height: 240px;
  }

  .opening-grid,
  .profile-grid,
  .contact-grid,
  .process-grid,
  .focus-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .fit-grid,
  .fee-grid,
  .story-grid,
  .career-values {
    grid-template-columns: 1fr;
  }

  .process-heading {
    position: static;
  }
}

@media (min-width: 781px) and (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100svh - 72px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 24px 34px;
    color: var(--ink);
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 180ms ease;
  }

  .site-header.is-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    min-height: 54px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    justify-content: center;
    min-height: 52px;
    margin-top: 18px;
    border: 0;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 64px;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100svh - 64px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 24px 20px;
    color: var(--ink);
    background: var(--paper);
    transform: translateX(100%);
    transition: transform 180ms ease;
  }

  .site-header.is-open .site-nav {
    transform: translateX(0);
  }

  .site-nav a {
    min-height: 54px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    justify-content: center;
    min-height: 52px;
    margin-top: 18px;
    border: 0;
  }

  .hero {
    min-height: 84svh;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 24, 21, 0.88) 0%, rgba(8, 24, 21, 0.7) 54%, rgba(8, 24, 21, 0.3) 100%),
      linear-gradient(0deg, rgba(8, 24, 21, 0.38) 0%, rgba(8, 24, 21, 0) 40%);
  }

  .hero-content,
  .section-inner {
    width: min(100% - 36px, 1120px);
  }

  .hero-content {
    padding: 98px 0 56px;
  }

  .hero h1 {
    font-size: 2.55rem;
    line-height: 1.22;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
  }

  .section {
    padding: 78px 0;
  }

  h2 {
    font-size: 2rem;
  }

  .belief,
  .closing {
    padding: 86px 0;
  }

  .belief h2,
  .closing h2 {
    font-size: 2.08rem;
  }

  .issue-grid,
  .service-list,
  .strength-row,
  .fit-grid,
  .fee-grid,
  .story-grid,
  .career-values {
    grid-template-columns: 1fr;
  }

  .issue-card,
  .service-item,
  .strength-row div {
    min-height: auto;
  }

  .service-item {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 22px;
  }

  .service-item-wide {
    grid-column: auto;
  }

  .service-icon {
    width: 48px;
    height: 48px;
  }

  .section-photo {
    margin-top: 24px;
  }

  .section-photo-wide {
    margin: 0 0 24px;
  }

  .section-photo-wide img {
    height: 220px;
  }

  .service-note {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 18px;
    padding: 20px;
  }

  .service-note-photo img {
    width: 82px;
  }

  .fit-card,
  .fee-card,
  .story-card {
    min-height: auto;
    padding: 24px;
  }

  .fee-range {
    padding: 22px;
  }

  .fee-range-heading {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
  }

  .process-list li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding-left: 18px;
  }

  .process-list span {
    width: 36px;
    height: 36px;
  }

  .contact-form {
    padding: 22px;
  }

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

  .career-intro blockquote {
    padding: 22px;
    font-size: 1.06rem;
  }

  .career-hero {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .career-photo {
    max-width: 340px;
  }

  .career-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 2.18rem;
  }

  .hero-note {
    font-size: 0.86rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .belief h2,
  .closing h2 {
    font-size: 1.84rem;
  }
}
