:root {
  --logo-green: #63a800;
  --logo-yellow: #fbb135;
  --logo-charcoal: #444444;
  --color-bg: #fffaf0;
  --color-surface: rgba(255, 253, 247, 0.94);
  --color-surface-warm: #fff7e7;
  --color-text: #34372f;
  --color-text-sub: #656857;
  --color-primary: #5f9b42;
  --color-primary-dark: #2f6f4e;
  --color-accent: #e2aa4b;
  --color-accent-dark: #8a5a12;
  --color-border: #eadfbd;
  --color-notice-bg: #fff4dc;
  --color-green-soft: #f1f8e8;
  --color-yellow-soft: #fff7e5;
  --color-error: #b3261e;
  --watercolor-wash: linear-gradient(135deg, rgba(255, 248, 226, 0.9), rgba(241, 248, 232, 0.78) 52%, rgba(255, 255, 255, 0.72));
  --paper-line: rgba(184, 155, 93, 0.08);
  --cta-adult: #ecf8e1;
  --cta-adult-hover: #dff0d0;
  --cta-kids: #fff0cf;
  --cta-kids-hover: #ffe5af;
  --cta-ready: #eef5f8;
  --cta-ready-hover: #dbe9ee;
  --shadow-soft: 0 16px 38px rgba(113, 92, 48, 0.11);
  --content-max: 1120px;
  --form-max: 720px;
  --image-card-aspect: 4 / 3;
  --font-sans: "Zen Maru Gothic", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "UD Digi Kyokasho NP", "BIZ UDPGothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Yu Gothic UI", "Noto Sans JP", "Meiryo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Zen Maru Gothic", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "UD Digi Kyokasho NP", "BIZ UDPGothic", "Hiragino Maru Gothic ProN", "Yu Gothic", "Yu Gothic UI", "Noto Sans JP", "Meiryo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(115deg, rgba(253, 236, 198, 0.52) 0%, rgba(253, 236, 198, 0) 34%),
    linear-gradient(245deg, rgba(216, 234, 193, 0.62) 0%, rgba(216, 234, 193, 0) 38%),
    linear-gradient(180deg, #fffdf7 0%, var(--color-bg) 48%, #f4f8ea 100%);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.82;
  letter-spacing: 0;
  font-weight: 500;
  padding-bottom: 86px;
  font-feature-settings: "palt" 1;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, var(--paper-line) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 11px);
  opacity: 0.42;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a.button {
  min-height: 48px;
}

:focus-visible {
  outline: 3px solid rgba(99, 168, 0, 0.38);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
}

.site-shell main {
  counter-reset: hearth-section;
}

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

.narrow {
  width: min(100% - 32px, var(--form-max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(234, 223, 189, 0.9);
  color: var(--color-text);
  box-shadow: 0 8px 28px rgba(143, 115, 62, 0.07);
  backdrop-filter: blur(14px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--logo-yellow), var(--logo-green), var(--logo-yellow));
}

.scroll-progress {
  position: absolute;
  inset: auto 0 -1px;
  height: 3px;
  overflow: hidden;
  background: rgba(234, 223, 189, 0.72);
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--logo-yellow), var(--logo-green));
  transition: transform 90ms linear;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  width: clamp(156px, 48vw, 188px);
  height: auto;
}

.brand-mark {
  font-weight: 800;
  color: var(--color-text);
  font-size: 20px;
}

.brand-sub {
  color: var(--color-text);
  font-size: 12px;
}

.desktop-nav {
  display: none;
}

.menu-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(226, 170, 75, 0.34);
  border-radius: 8px;
  background: linear-gradient(145deg, #fff8e7, #eef8e5);
  color: var(--color-primary-dark);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.menu-icon {
  position: relative;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.mobile-menu {
  position: fixed;
  inset: 65px 0 auto 0;
  z-index: 25;
  display: none;
  background: rgba(255, 253, 247, 0.98);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.mobile-menu[data-open="true"] {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 18px 20px;
  text-decoration: none;
  border-top: 1px solid var(--color-border);
  color: #111111;
  font-weight: 700;
}

.mobile-bottom-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  gap: 7px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--color-border);
  backdrop-filter: blur(12px);
}

.bottom-action,
.button,
.button-secondary,
.button-ghost,
.button-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 800;
  border: 1px solid transparent;
  padding: 12px 16px;
  cursor: pointer;
  line-height: 1.45;
  text-align: center;
}

.button-label,
.button-note {
  display: block;
}

.button-label {
  font-weight: 900;
}

.button-note {
  margin-top: 1px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.42;
  opacity: 0.82;
}

.bottom-action {
  min-height: 52px;
  flex-direction: column;
  gap: 1px;
  background: linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(244, 248, 232, 0.92));
  border-color: rgba(234, 223, 189, 0.92);
  color: var(--color-primary-dark);
  font-size: 13px;
  line-height: 1.22;
}

.bottom-action-label,
.bottom-action-note {
  display: block;
}

.bottom-action-label {
  font-weight: 900;
}

.bottom-action-note {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-sub);
}

.bottom-action.primary .bottom-action-note {
  color: rgba(40, 86, 59, 0.72);
}

.bottom-action.primary,
.button {
  background: linear-gradient(135deg, var(--cta-adult) 0%, #d9efc5 58%, #c7e5ad 100%);
  border-color: rgba(95, 155, 66, 0.52);
  color: #28563b;
  box-shadow: 0 12px 24px rgba(88, 121, 45, 0.16), inset 0 -3px 0 rgba(95, 155, 66, 0.16);
}

.bottom-action.primary {
  border-color: rgba(95, 155, 66, 0.54);
}

.button:hover,
.bottom-action.primary:hover {
  background: linear-gradient(135deg, var(--cta-adult-hover), #cfe7bc);
}

.button-secondary {
  background: linear-gradient(135deg, #fffaf0 0%, var(--cta-kids) 58%, #ffdda0 100%);
  border-color: rgba(226, 170, 75, 0.58);
  color: #66440d;
  box-shadow: 0 12px 24px rgba(148, 102, 24, 0.13), inset 0 -3px 0 rgba(226, 170, 75, 0.16);
}

.button-accent {
  flex-direction: column;
  gap: 2px;
  background: linear-gradient(135deg, #fbfdff 0%, var(--cta-ready) 58%, #d5e6ec 100%);
  border-color: rgba(122, 150, 158, 0.42);
  color: #34424a;
  box-shadow: 0 12px 24px rgba(87, 104, 110, 0.13), inset 0 -3px 0 rgba(122, 150, 158, 0.14);
}

.button-accent .button-note {
  color: rgba(47, 47, 47, 0.74);
}

.button-ghost {
  flex-direction: column;
  gap: 2px;
  background: linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(241, 248, 232, 0.9));
  border-color: rgba(95, 155, 66, 0.28);
  color: var(--color-primary-dark);
  box-shadow: inset 0 -3px 0 rgba(251, 177, 53, 0.2);
}

.button-ghost .button-note {
  color: var(--color-text-sub);
}

.button-secondary:hover,
.button-ghost:hover,
.button-accent:hover,
.bottom-action:hover {
  border-color: rgba(95, 155, 66, 0.38);
  filter: brightness(1.01);
}

.hero {
  position: relative;
  min-height: min(540px, 70svh);
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0 28px;
  background: var(--logo-charcoal);
  border-bottom: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 37, 28, 0.68) 0%, rgba(23, 37, 28, 0.36) 46%, rgba(23, 37, 28, 0.05) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.01) 42%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 16px;
  background: linear-gradient(90deg, var(--logo-yellow), var(--logo-green), var(--logo-yellow));
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  margin: 0;
}

.hero-backdrop img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.12) contrast(1.06) brightness(1.08);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: end;
}

.hero-copy {
  max-width: 700px;
  padding-bottom: 8px;
  color: #fff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.32);
}

.hero .eyebrow {
  color: #fff;
}

.hero .eyebrow::before {
  background: var(--logo-yellow);
  box-shadow: 22px 0 0 var(--logo-green);
}

.hero h1 {
  color: #fff;
  font-size: 33px;
  font-weight: 900;
  line-height: 1.28;
}

.hero .lead {
  max-width: 600px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
}

.hero .actions {
  max-width: 820px;
  gap: 12px;
}

.hero .actions a {
  position: relative;
  overflow: hidden;
  min-width: min(100%, 198px);
  border-width: 1px;
  text-shadow: none;
}

.hero .actions a::before {
  content: "";
  position: absolute;
  inset: 1px 1px auto;
  z-index: 0;
  height: 48%;
  pointer-events: none;
  border-radius: 7px 7px 18px 18px;
  background:
    linear-gradient(104deg, transparent 0 16%, rgba(255, 255, 255, 0.5) 28%, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.2) 58%, rgba(255, 255, 255, 0));
  opacity: 0.76;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.hero .actions a:hover::before {
  opacity: 0.92;
  transform: translateY(-1px);
}

.hero .button {
  background:
    linear-gradient(135deg, #f6fde9 0%, #deefc9 52%, #c7e5ad 100%);
  border-color: rgba(95, 155, 66, 0.58);
  color: #28563b;
  box-shadow: 0 14px 28px rgba(63, 91, 34, 0.18), inset 0 -4px 0 rgba(95, 155, 66, 0.18);
}

.hero .button,
.hero .button-secondary,
.hero .button-accent {
  min-height: 58px;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
}

.hero .button .button-note {
  color: rgba(36, 73, 47, 0.74);
}

.hero .button-secondary {
  background:
    linear-gradient(135deg, #fffaf0 0%, #ffe8b9 50%, #ffd78c 100%);
  border-color: rgba(226, 170, 75, 0.62);
  color: #66440d;
  box-shadow: 0 14px 28px rgba(128, 86, 22, 0.16), inset 0 -4px 0 rgba(226, 170, 75, 0.18);
}

.hero .button-secondary .button-note {
  color: rgba(89, 57, 9, 0.72);
}

.hero .button-accent {
  background:
    linear-gradient(135deg, #fbfdff 0%, #e7f0f3 50%, #d3e3e8 100%);
  border-color: rgba(122, 150, 158, 0.5);
  color: #34424a;
  box-shadow: 0 16px 30px rgba(63, 76, 80, 0.16), inset 0 -4px 0 rgba(122, 150, 158, 0.16);
}

.hero .button-accent .button-note {
  color: rgba(43, 55, 66, 0.72);
}

.hero .button:hover {
  background:
    linear-gradient(135deg, #edf9df 0%, #d2e8bd 48%, #bada9c 100%);
  border-color: rgba(95, 155, 66, 0.68);
}

.hero .button-secondary:hover {
  background:
    linear-gradient(135deg, #fff2d5 0%, #ffdfa0 50%, #ffc96d 100%);
  border-color: rgba(226, 170, 75, 0.72);
}

.hero .button-accent:hover {
  background:
    linear-gradient(135deg, #f2f8fb 0%, #ddeaf0 50%, #c7dbe3 100%);
  border-color: rgba(122, 150, 158, 0.62);
}

@media (max-width: 719px) {
  .hero {
    min-height: min(560px, 76svh);
    padding-top: 72px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(23, 37, 28, 0.08) 0%, rgba(23, 37, 28, 0.18) 42%, rgba(23, 37, 28, 0.74) 100%),
      linear-gradient(90deg, rgba(23, 37, 28, 0.2) 0%, rgba(23, 37, 28, 0.06) 62%, rgba(23, 37, 28, 0.02) 100%);
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.42);
  }

  .hero-grid {
    width: min(100% - 28px, var(--content-max));
    grid-template-columns: minmax(0, 1fr);
  }

  .hero h1 {
    font-size: clamp(27px, 7.6vw, 31px);
    line-height: 1.34;
    overflow-wrap: anywhere;
    word-break: break-all;
    text-wrap: wrap;
  }

  .hero .lead {
    font-size: 15px;
    line-height: 1.82;
  }

  h2 {
    font-size: 21px;
    overflow-wrap: anywhere;
    word-break: break-all;
    text-wrap: wrap;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary-dark);
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 900;
  margin: 0 0 10px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-accent);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: 0;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 23px;
}

h3 {
  font-size: 17px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 12px;
  color: var(--color-text-sub);
  font-size: 16px;
  line-height: 1.84;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.hero-media,
.media-card,
.form-header-visual,
.submit-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--image-card-aspect);
  border-radius: 8px;
  background: var(--watercolor-wash);
  border: 1px solid rgba(234, 223, 189, 0.86);
  box-shadow:
    0 18px 42px rgba(113, 92, 48, 0.13),
    0 0 0 4px rgba(255, 244, 214, 0.82);
}

.hero-media img,
.media-card img,
.form-header-visual img,
.submit-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.media-card.square img {
  aspect-ratio: auto;
}

.form-header-visual {
  margin: 22px 0 0;
}

.submit-visual {
  margin: 0 0 4px;
}

.form-header-visual img,
.submit-visual img {
  max-height: none;
}

.visual-ribbon {
  position: relative;
  z-index: 4;
  padding: 12px 0 8px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 250, 240, 0.92));
}

.visual-ribbon-grid {
  display: flex;
  gap: 8px;
  margin-inline: auto;
  padding-inline: 0;
  overflow-x: auto;
  overscroll-behavior-inline: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.visual-ribbon-grid::-webkit-scrollbar {
  display: none;
}

.visual-ribbon-grid figure {
  flex: 0 0 min(82vw, 360px);
  margin: 0;
  overflow: hidden;
  aspect-ratio: var(--image-card-aspect);
  scroll-snap-align: start;
  border-radius: 8px;
  background: var(--watercolor-wash);
  border: 1px solid rgba(234, 223, 189, 0.84);
  box-shadow: 0 18px 36px rgba(113, 92, 48, 0.13);
}

.visual-ribbon-grid figure:first-child {
  grid-row: auto;
}

.visual-ribbon-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.visual-ribbon-grid figure:first-child img {
  aspect-ratio: auto;
}

@media (hover: hover) {
  .media-card:hover img,
  .form-header-visual:hover img,
  .submit-visual:hover img,
  .visual-ribbon-grid figure:hover img {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }

  .interactive-surface:hover {
    transform: none !important;
  }
}

.image-note {
  padding: 8px 12px 10px;
  color: var(--color-text-sub);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.82);
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 719px) {
  .section.reveal-item,
  .media-card.reveal-item,
  .document-card.reveal-item,
  .form-header-visual.reveal-item,
  .submit-visual.reveal-item,
  .visual-ribbon-grid figure.reveal-item {
    opacity: 1;
    transform: none;
  }
}

.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  counter-increment: hearth-section;
  padding: 40px 0;
}

.section:nth-of-type(even) {
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0), rgba(241, 248, 232, 0.52) 48%, rgba(255, 253, 247, 0));
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: min(calc(100% - 32px), var(--content-max));
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(226, 170, 75, 0.54), rgba(95, 155, 66, 0.48), transparent);
  opacity: 0.62;
  transform: translateX(-50%) scaleX(0.34);
  transform-origin: center;
  transition:
    opacity 560ms ease,
    transform 700ms ease;
}

.section.is-visible::before {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section.warm {
  background:
    linear-gradient(140deg, rgba(255, 246, 224, 0.92), rgba(241, 248, 232, 0.82));
}

.section-header {
  position: relative;
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin-bottom: 16px;
  padding-top: 20px;
}

.section-header::before,
.section-header::after {
  content: "";
  position: absolute;
  top: 0;
  border-radius: 999px;
  transition:
    opacity 520ms ease,
    transform 640ms ease;
}

.section-header::before {
  left: 0;
  width: 78px;
  height: 6px;
  background: linear-gradient(90deg, rgba(226, 170, 75, 0.84), rgba(95, 155, 66, 0.78));
  opacity: 0.64;
  transform: scaleX(0.36);
  transform-origin: left center;
}

.section-header::after {
  left: 88px;
  width: 9px;
  height: 9px;
  background: var(--logo-green);
  box-shadow: 0 0 0 7px rgba(99, 168, 0, 0.12);
  opacity: 0;
  transform: translateX(-8px) scale(0.72);
}

.section.is-visible .section-header::before,
.section:hover .section-header::before {
  opacity: 1;
  transform: scaleX(1);
}

.section.is-visible .section-header::after,
.section:hover .section-header::after {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.section-header h2 {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 10px;
  width: fit-content;
  opacity: 0.8;
  transform: translateY(8px);
  transition:
    color 220ms ease,
    opacity 480ms ease,
    transform 520ms ease;
}

.section.is-visible .section-header h2 {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2::before {
  content: counter(hearth-section, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 28px;
  padding: 3px 8px;
  border: 1px solid rgba(226, 170, 75, 0.28);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(241, 248, 232, 0.9));
  color: var(--color-primary-dark);
  font-size: 13px;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 -3px 0 rgba(226, 170, 75, 0.18);
}

.section-header h2::after {
  content: "";
  flex-basis: 100%;
  width: min(180px, 100%);
  height: 3px;
  margin-top: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(95, 155, 66, 0.9), rgba(226, 170, 75, 0.84));
  transform: scaleX(0.12);
  transform-origin: left center;
  opacity: 0.7;
  transition:
    opacity 480ms ease,
    transform 680ms ease;
}

.section.is-visible .section-header h2::after,
.section:hover .section-header h2::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (hover: hover) {
  .section:hover .section-header h2 {
    color: var(--color-primary-dark);
    transform: translateX(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section::before,
  .section-header::before,
  .section-header::after,
  .section-header h2,
  .section-header h2::after {
    opacity: 1 !important;
    transform: none !important;
  }
}

.section-header p {
  max-width: 680px;
  color: var(--color-text-sub);
  font-size: 15px;
  line-height: 1.76;
}

.grid {
  display: grid;
  gap: 12px;
}

.grid.one {
  grid-template-columns: 1fr;
  max-width: 820px;
}

.grid.one .card {
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
}

.grid.one .icon-badge {
  grid-row: span 2;
}

.grid.one .button-ghost {
  grid-column: 2;
  justify-self: start;
}

.grid.two,
.grid.three {
  grid-template-columns: 1fr;
}

.card,
.notice,
.document-card,
.office-card,
.staff-card,
.form-panel {
  overflow-wrap: anywhere;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(255, 249, 234, 0.9) 52%, rgba(244, 248, 232, 0.86));
  border: 1px solid rgba(234, 223, 189, 0.92);
  border-radius: 8px;
  padding: 16px;
}

.card,
.document-card,
.office-card,
.staff-card,
.form-panel {
  box-shadow: inset 0 3px 0 rgba(226, 170, 75, 0.36), var(--shadow-soft);
}

.interactive-surface {
  position: relative;
  isolation: isolate;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.interactive-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(115deg, rgba(255, 240, 204, 0.32), transparent 54%),
    linear-gradient(245deg, rgba(217, 235, 195, 0.3), transparent 60%);
  transition: opacity 180ms ease;
}

.interactive-surface > * {
  position: relative;
  z-index: 1;
}

.interactive-surface:hover::after {
  opacity: 1;
}

.card.interactive-surface:hover,
.document-card.interactive-surface:hover,
.office-card.interactive-surface:hover,
.staff-card.interactive-surface:hover,
.timeline-item.interactive-surface:hover,
.notice.interactive-surface:hover {
  transform: translateY(-3px);
  border-color: rgba(226, 170, 75, 0.48);
  box-shadow: inset 0 3px 0 rgba(95, 155, 66, 0.42), 0 18px 42px rgba(113, 92, 48, 0.13);
}

.button.interactive-surface:hover,
.button-secondary.interactive-surface:hover,
.button-ghost.interactive-surface:hover,
.button-accent.interactive-surface:hover,
.bottom-action.interactive-surface:hover {
  transform: translateY(-2px);
}

.card {
  display: grid;
  gap: 10px;
}

.card h3,
.document-card h3,
.office-card h3,
.staff-card h3,
.timeline-item h3 {
  font-size: 18px;
  line-height: 1.42;
}

.card .muted,
.document-card .muted,
.office-card .muted,
.staff-card .muted,
.timeline-item .muted {
  font-size: 15px;
  line-height: 1.72;
}

.consultant-grid {
  align-items: stretch;
}

.consultant-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.consultant-photo {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 226, 168, 0.86), transparent 38%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(217, 235, 195, 0.82));
  border: 1px solid rgba(226, 170, 75, 0.36);
  box-shadow: 0 14px 28px rgba(113, 92, 48, 0.1);
}

.consultant-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.consultant-photo span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--logo-yellow), #ffd77b);
  color: var(--color-primary-dark);
  font-size: 25px;
  font-weight: 900;
}

.consultant-body {
  display: grid;
  gap: 8px;
}

.consultant-body .tag {
  width: fit-content;
}

.card.highlight {
  border-color: rgba(226, 170, 75, 0.52);
  box-shadow: inset 0 3px 0 rgba(95, 155, 66, 0.44), var(--shadow-soft);
}

.icon-badge {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(145deg, #fffaf0, #eef8e5);
  border: 1px solid rgba(226, 170, 75, 0.22);
  color: var(--color-primary-dark);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(113, 92, 48, 0.1);
}

.icon-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.concern-icon-card {
  align-content: start;
  min-height: 168px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(244, 248, 232, 0.94));
}

.concern-icon-card .icon-badge {
  width: 62px;
  height: 62px;
}

.muted {
  color: var(--color-text-sub);
}

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

.list li {
  position: relative;
  padding-left: 30px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--logo-green);
  box-shadow: 0 0 0 3px rgba(251, 177, 53, 0.28);
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-item {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 78px;
  padding: 16px 16px 16px 72px;
  background: linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(244, 248, 232, 0.88));
  border: 1px solid rgba(234, 223, 189, 0.92);
  border-radius: 8px;
}

.timeline-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: #fffaf0;
  box-shadow: 0 10px 22px rgba(113, 92, 48, 0.12);
}

.timeline-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notice {
  background: linear-gradient(145deg, rgba(255, 244, 220, 0.96), rgba(241, 248, 232, 0.82));
  border-color: rgba(226, 170, 75, 0.44);
  border-left: 4px solid rgba(226, 170, 75, 0.82);
}

.notice strong {
  display: block;
  margin-bottom: 8px;
}

.info-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(234, 223, 189, 0.92);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: var(--shadow-soft);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(234, 223, 189, 0.86);
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.info-table th {
  width: 180px;
  color: var(--color-primary-dark);
  background: linear-gradient(145deg, rgba(241, 248, 232, 0.92), rgba(255, 244, 220, 0.72));
  font-weight: 900;
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.info-table a {
  color: var(--color-primary-dark);
  font-weight: 900;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

@media (max-width: 719px) {
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .info-table td {
    padding-top: 7px;
  }
}

@media (max-width: 719px) {
  .media-card,
  .form-header-visual,
  .submit-visual,
  .document-card-visual {
    aspect-ratio: 4 / 3;
  }

  .media-card img,
  .form-header-visual img,
  .submit-visual img,
  .document-card-visual img {
    object-fit: contain;
    background:
      radial-gradient(circle at 18% 18%, rgba(255, 226, 168, 0.26), transparent 34%),
      linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(242, 248, 232, 0.9));
  }

  .visual-ribbon-grid img {
    object-fit: cover;
  }
}

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

.faq-item {
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid rgba(234, 223, 189, 0.92);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 800;
  background: linear-gradient(90deg, rgba(241, 248, 232, 0.8), rgba(255, 244, 220, 0.72));
}

.faq-item p {
  padding: 0 16px 16px;
  color: var(--color-text-sub);
}

.document-card {
  display: grid;
  gap: 12px;
  overflow: hidden;
}

.document-card-visual {
  margin: -16px -16px 2px;
  overflow: hidden;
  aspect-ratio: var(--image-card-aspect);
  background: var(--watercolor-wash);
  border-bottom: 1px solid rgba(234, 223, 189, 0.86);
}

.document-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 8px;
  padding: 4px 9px;
  background: linear-gradient(145deg, rgba(241, 248, 232, 0.96), rgba(255, 244, 220, 0.78));
  color: var(--color-primary-dark);
  font-size: 13px;
  font-weight: 800;
}

.doc-disabled {
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid rgba(234, 223, 189, 0.92);
  background: rgba(255, 253, 247, 0.74);
  color: var(--color-text-sub);
  font-weight: 800;
}

.doc-pending {
  color: var(--color-text-sub);
  font-size: 14px;
}

.inline-image-section {
  display: grid;
  gap: 16px;
}

.site-footer {
  padding: 34px 0 102px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 247, 229, 0.94));
  border-top: 6px solid rgba(226, 170, 75, 0.74);
  color: #111111;
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-brand {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.footer-brand h2 {
  margin: 0;
  font-size: 20px;
}

.footer-brand .lead {
  margin: 0;
  font-size: 15px;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  max-width: min(100%, 260px);
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid rgba(234, 223, 189, 0.95);
  box-shadow: 0 10px 24px rgba(113, 92, 48, 0.08);
}

.footer-logo {
  width: 224px;
  max-width: 100%;
  height: auto;
}

.footer-action-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(226, 170, 75, 0.32);
  border-radius: 8px;
  background: var(--watercolor-wash);
}

.footer-action-panel h3 {
  margin: 0;
  font-size: 18px;
}

.footer-action-panel p {
  margin: 0;
  color: #333333;
}

.footer-cta-row {
  display: grid;
  gap: 8px;
}

.footer-cta {
  display: grid;
  gap: 2px;
  min-height: 54px;
  align-content: center;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(234, 223, 189, 0.92);
  background: rgba(255, 253, 247, 0.9);
  color: #111111;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(113, 92, 48, 0.08);
}

.footer-cta.primary {
  background: linear-gradient(135deg, #fff7df, #ffe2a8);
  border-color: rgba(226, 170, 75, 0.62);
}

.footer-cta span {
  font-size: 14px;
  font-weight: 900;
  line-height: 1.22;
  white-space: nowrap;
}

.footer-cta small {
  color: #333333;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-nav {
  display: grid;
  gap: 14px;
}

.footer-link-group {
  display: grid;
  gap: 8px;
  padding-block: 2px;
}

.footer-link-group h3 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  width: fit-content;
  color: #111111;
  text-decoration: none;
  font-weight: 800;
}

.footer-links a::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(226, 170, 75, 0.88);
  box-shadow: 0 0 0 3px rgba(226, 170, 75, 0.14);
}

.footer-links a:hover {
  color: var(--logo-green);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(234, 223, 189, 0.92);
  color: #333333;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #111111;
  font-weight: 800;
  text-decoration: none;
}

.form-shell {
  padding: 24px 0 50px;
}

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

.questionnaire-overview {
  display: grid;
  gap: 14px;
  margin: 20px 0 18px;
  padding: 16px;
  border: 1px solid rgba(226, 170, 75, 0.32);
  border-radius: 8px;
  background: var(--watercolor-wash);
  box-shadow: 0 14px 30px rgba(113, 92, 48, 0.09);
}

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

.overview-metrics div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px 8px;
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.overview-metrics span {
  color: var(--color-text-sub);
  font-size: 12px;
  font-weight: 800;
}

.overview-metrics strong {
  color: var(--color-text);
  font-size: 17px;
  line-height: 1.2;
}

.questionnaire-overview ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.1em;
  color: var(--color-text-sub);
  font-size: 14px;
}

.progress {
  display: grid;
  gap: 8px;
}

.progress-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 244, 220, 0.9);
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(95, 155, 66, 0.86), rgba(226, 170, 75, 0.82));
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

fieldset.field {
  min-width: 0;
  border: 0;
  padding: 0;
  margin: 0 0 14px;
}

.field label,
.group-label {
  font-weight: 800;
}

legend.group-label {
  padding: 0;
  margin-bottom: 8px;
}

.field-hint {
  color: var(--color-text-sub);
  font-size: 14px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(234, 223, 189, 0.96);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 253, 247, 0.92);
  color: var(--color-text);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="date"]:focus,
textarea:focus {
  border-color: var(--logo-green);
  outline: 3px solid rgba(99, 168, 0, 0.22);
  outline-offset: 2px;
}

textarea {
  min-height: 108px;
  resize: vertical;
}

.choice-list {
  display: grid;
  gap: 8px;
}

.choice {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(234, 223, 189, 0.96);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.86);
}

.choice input {
  accent-color: var(--logo-green);
  margin-top: 4px;
}

.form-error {
  color: var(--color-error);
  font-weight: 800;
  font-size: 14px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.confirm-list li {
  padding: 12px;
  background: rgba(255, 244, 220, 0.78);
  border: 1px solid rgba(234, 223, 189, 0.96);
  border-radius: 8px;
}

.submit-message {
  padding: 14px 16px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 244, 220, 0.94), rgba(241, 248, 232, 0.82));
  border: 1px solid rgba(226, 170, 75, 0.42);
}

.submit-message[data-status="sending"] {
  border-color: rgba(226, 170, 75, 0.72);
}

.submit-message[data-status="success"] {
  background: linear-gradient(145deg, rgba(241, 248, 232, 0.96), rgba(255, 253, 247, 0.9));
  border-color: rgba(95, 155, 66, 0.58);
}

.submit-message[data-status="error"] {
  background: rgba(255, 244, 240, 0.96);
  border-color: rgba(179, 38, 30, 0.46);
  color: var(--color-error);
  font-weight: 800;
}

.button:disabled,
.button-secondary:disabled,
.button-ghost:disabled {
  cursor: progress;
  opacity: 0.68;
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 27px;
  }

  .hero {
    min-height: min(620px, 72svh);
    padding: 80px 0 36px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1.22;
  }

  .hero .lead {
    font-size: 17px;
    line-height: 1.82;
  }

  .inline-image-section,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 760px);
  }

  .hero-copy {
    max-width: 820px;
  }

  .visual-ribbon {
    margin-top: 0;
    padding: 20px 0 14px;
    background: linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 250, 240, 0.92));
  }

  .visual-ribbon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
    margin-inline: auto;
    padding-inline: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .visual-ribbon-grid figure:first-child {
    grid-row: auto;
  }

  .visual-ribbon-grid img,
  .visual-ribbon-grid figure:first-child img {
    aspect-ratio: auto;
  }

  .actions,
  .form-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero .actions a {
    flex: 1 1 0;
    max-width: 252px;
    min-width: 0;
  }

  .hero .actions.count-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 840px;
    gap: 10px;
  }

  .hero .actions.count-3 a {
    max-width: none;
    min-height: 56px;
    padding-inline: 10px;
    font-size: 14px;
  }

  .hero .actions.count-3 .button-label {
    white-space: nowrap;
    line-height: 1.28;
  }

  .hero .actions.count-3 .button-note {
    font-size: 11px;
    line-height: 1.32;
  }

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

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

  .grid.one {
    max-width: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .grid.one .icon-badge {
    grid-row: auto;
  }

  .grid.one .button-ghost {
    grid-column: auto;
  }

  .section {
    padding: 46px 0;
  }

  .grid {
    gap: 14px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    min-width: 0;
    gap: 3px;
  }

  .brand-logo {
    width: 184px;
  }

  .desktop-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 6px 7px;
    border-radius: 8px;
    text-decoration: none;
    color: #111111;
    font-weight: 800;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .desktop-nav a:hover {
    background: rgba(255, 244, 220, 0.82);
    color: var(--color-primary-dark);
  }

  .desktop-nav .nav-cta {
    background: linear-gradient(135deg, #fff7df, #ffe2a8);
    border: 1px solid rgba(226, 170, 75, 0.48);
    color: #4d350d;
    padding-inline: 10px;
  }

  .desktop-nav .nav-cta:hover {
    background: linear-gradient(135deg, #fff2cf, #ffd78c);
    color: #4d350d;
  }

  .menu-button,
  .mobile-menu,
  .mobile-bottom-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 38px;
  }

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

  .footer-link-group {
    gap: 6px;
  }

  .footer-link-group h3 {
    font-size: 13px;
  }

  .footer-links {
    gap: 3px;
  }

  .footer-links a {
    min-height: 30px;
    font-size: 13px;
    line-height: 1.42;
    font-weight: 700;
  }

  .footer-links a::before {
    width: 5px;
    height: 5px;
    margin-right: 7px;
    box-shadow: 0 0 0 2px rgba(226, 170, 75, 0.14);
  }

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

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1040px) {
  .brand-logo {
    width: 196px;
  }

  .desktop-nav a {
    font-size: 13px;
    padding-inline: 9px;
  }

  .desktop-nav .nav-cta {
    padding-inline: 12px;
  }

  .footer-grid {
    grid-template-columns: minmax(220px, 0.95fr) minmax(260px, 0.9fr) minmax(420px, 1.45fr);
    align-items: start;
    gap: 28px;
  }

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

  .footer-links a {
    font-size: 12.5px;
    min-height: 28px;
  }
}

@media (min-width: 720px) and (max-width: 959px) {
  .hero-grid {
    width: min(100% - 28px, var(--content-max));
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    overflow-wrap: anywhere;
    word-break: break-all;
    text-wrap: wrap;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }
}
