/* ==========================
   うさぎとかめ 静的サイト
   ========================== */

:root {
  --yellow: #bce85f;
  --yellow-soft: #e9f8b8;
  --ink: #2b2d32;
  --muted: #596b7b;
  --paper: #f5fbff;
  --white: #ffffff;
  --teal: #0099df;
  --teal-dark: #0054b8;
  --blue: #0076cf;
  --coral: #ff7d59;
  --cloud: #cfeeff;
  --line: #d6e8f4;
  --shadow: 0 20px 45px rgba(0, 84, 184, .16);
  --shadow-soft: 0 10px 30px rgba(0, 84, 184, .11);
  --radius: 8px;
  --max: 1120px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

[id] {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 153, 223, .065) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(0, 153, 223, .04) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--paper);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.85;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.section {
  padding: 110px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px 24px;
  pointer-events: none;
  transition: padding .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 10px;
}

.site-header.is-scrolled:not(.is-open) {
  background: rgba(255, 255, 255, .85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .08);
}

.header-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  pointer-events: auto;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}

.brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.brand-logo {
  display: block;
  width: clamp(276px, 30vw, 392px);
  height: auto;
  transition: width .25s var(--ease-out);
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  width: clamp(200px, 18vw, 252px);
}

.menu-button {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--cloud);
  box-shadow: 4px 4px 0 var(--ink);
  display: grid;
  place-content: center;
  gap: 7px;
  cursor: pointer;
  pointer-events: auto;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}

.site-header.is-scrolled .menu-button,
.site-header.is-open .menu-button {
  width: 52px;
  height: 52px;
}

.menu-button:hover {
  transform: translateY(-2px) rotate(4deg);
  box-shadow: 6px 6px 0 var(--ink);
}

.menu-button span {
  width: 24px;
  height: 3px;
  background: var(--ink);
  transition: transform .24s var(--ease-out);
}

.menu-button.is-open span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.slide-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 86vw);
  z-index: 30;
  padding: 34px;
  background:
    radial-gradient(circle at 16% 12%, rgba(207, 238, 255, .18), transparent 28%),
    var(--teal-dark);
  color: var(--white);
  transform: translateX(105%);
  transition: transform .42s var(--ease-out);
  box-shadow: -18px 0 40px rgba(0, 0, 0, .25);
}

.slide-menu.is-open {
  transform: translateX(0);
}

.slide-close {
  display: block;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, .35);
  color: var(--white);
  background: transparent;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background .2s ease, transform .2s var(--ease-out);
}

.slide-close:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateY(-1px);
}

.slide-menu nav {
  margin-top: 42px;
  display: grid;
  gap: 12px;
}

.slide-menu a {
  display: grid;
  gap: 2px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  font-size: 17px;
  font-weight: 900;
  transition: color .2s ease, transform .24s var(--ease-out), border-color .2s ease;
}

.slide-menu a:hover {
  color: var(--cloud);
  border-color: rgba(207, 238, 255, .7);
  transform: translateX(6px);
}

.slide-menu a span {
  color: var(--yellow);
  font-size: 13px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  padding: 150px 24px 86px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 9%;
  bottom: 176px;
  width: 82px;
  height: 54px;
  background:
    radial-gradient(ellipse at 31% 35%, var(--yellow) 0 32%, transparent 33%),
    radial-gradient(ellipse at 70% 34%, var(--yellow) 0 32%, transparent 33%),
    linear-gradient(var(--yellow), var(--yellow)) 50% 56% / 5px 38px no-repeat;
  opacity: .95;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 84, 184, .78), rgba(0, 153, 223, .42) 54%, rgba(0, 153, 223, .12)),
    linear-gradient(0deg, rgba(0, 84, 184, .58), transparent 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1120px);
  margin: 0 auto;
  color: var(--white);
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 18px;
  background: var(--cloud);
  color: var(--teal-dark);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 4px 4px 0 rgba(43, 45, 50, .22);
}

.hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.2;
  font-weight: 900;
  text-shadow: 4px 4px 0 rgba(43, 45, 50, .9);
}

.hero h1 span {
  display: block;
}

.hero-lead {
  width: min(100%, 610px);
  margin: 24px 0 0;
  font-size: 18px;
  font-weight: 700;
  text-wrap: pretty;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .24s var(--ease-out), box-shadow .24s var(--ease-out), background .2s ease;
}

.button::after {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 1px;
  transform: rotate(45deg);
}

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

.button-primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
}

.button-outline {
  border: 2px solid rgba(255, 255, 255, .8);
  color: var(--white);
}

.button-dark {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--yellow);
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: 7%;
  bottom: 86px;
  width: 280px;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--cloud);
  padding: 22px;
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 11px 11px 0 var(--cloud);
}

.hero-card span,
.final-kicker {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.hero-card strong,
.hero-card small {
  display: block;
}

.hero-card strong {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.5;
}

.hero-card small {
  color: var(--muted);
  font-weight: 700;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  text-align: center;
  animation: ctaPulse 2.6s ease-in-out infinite;
  transition: transform .24s var(--ease-out);
}

.floating-cta:hover {
  transform: translateY(-4px) scale(1.03);
  animation-play-state: paused;
}

body.is-footer-visible .floating-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.96);
}

body.is-map-visible .floating-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.96);
}

.section-title {
  margin-bottom: 46px;
}

.section-title span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 16px;
  background: var(--teal);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

.section-title h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.35;
  font-weight: 900;
}

.section-title-light {
  color: var(--white);
}

.intro-section {
  position: relative;
  padding: 72px 0 104px;
  color: var(--ink);
  background:
    radial-gradient(circle at 87% 16%, rgba(207, 238, 255, .9) 0 96px, transparent 98px),
    linear-gradient(90deg, rgba(0, 153, 223, .06) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 68%, #e8f7ff 68%, #e8f7ff 100%);
  overflow: hidden;
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 12px;
  background: var(--teal);
}

.intro-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.08fr .82fr;
  gap: 54px;
  align-items: center;
}

.intro-copy {
  width: min(100%, 680px);
  margin-top: -14px;
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.intro-copy p {
  margin: 0;
  padding-left: 18px;
  border-left: 5px solid var(--teal);
}

.intro-note {
  padding: 34px;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--cloud);
}

.intro-note-label {
  display: inline-block;
  margin: 0 0 24px;
  padding: 5px 14px;
  background: var(--yellow);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

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

.intro-note li {
  position: relative;
  padding: 0 0 14px 34px;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.intro-note li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.intro-note li::before {
  content: "";
  position: absolute;
  top: .5em;
  left: 0;
  width: 17px;
  height: 17px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-item {
  min-height: 240px;
  padding: 30px;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--cloud);
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 10px 10px 0 var(--cloud);
}

.value-title {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
}

.value-title span {
  display: block;
  color: var(--blue);
  font-size: 24px;
  letter-spacing: .06em;
}

.value-item p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.discovery-section {
  background:
    linear-gradient(180deg, #f5fbff 0, #f5fbff 62%, #e8f7ff 62%, #e8f7ff 100%);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out);
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 10px 12px 0 rgba(188, 232, 95, .7), var(--shadow-soft);
}

.step-card:nth-child(2) {
  margin-top: 34px;
}

.step-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
}

.step-card:hover img {
  transform: scale(1.045);
}

.step-body {
  padding: 28px;
}

.step-num {
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: 900;
}

.step-num strong {
  font-size: 30px;
}

.step-body h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 900;
}

.step-body p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.work-section {
  position: relative;
  padding: 120px 0;
  background:
    linear-gradient(90deg, rgba(0, 84, 184, .88), rgba(0, 153, 223, .58)),
    url("../images/check-light-work.webp") center / cover fixed;
  color: var(--white);
}

.work-container {
  position: relative;
}

.work-lead {
  width: min(100%, 700px);
  margin: -18px 0 34px;
  font-size: 18px;
  font-weight: 700;
}

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

.check-card {
  min-height: 250px;
  padding: 30px;
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--cloud);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}

.check-card:hover {
  transform: translateY(-6px);
  box-shadow: 11px 11px 0 var(--cloud);
}

.check-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  background: var(--teal-dark);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.check-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
}

.check-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.works-lead {
  width: min(100%, 760px);
  margin: -18px 0 34px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.work-card {
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--cloud);
  overflow: hidden;
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out);
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 11px 11px 0 var(--cloud);
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 3px solid var(--ink);
  transition: transform .7s var(--ease-out);
}

.work-card:hover img {
  transform: scale(1.045);
}

.work-card div {
  padding: 26px;
}

.work-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.work-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 900;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.info-section {
  background:
    radial-gradient(circle at 90% 12%, rgba(207, 238, 255, .85) 0 110px, transparent 112px),
    #eef8ff;
}

.info-layout {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 26px;
  align-items: start;
}

.info-table,
.support-box {
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(0, 153, 223, .22);
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease-out);
}

.info-table:hover,
.support-box:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 rgba(0, 153, 223, .22);
}

.info-table dl {
  margin: 0;
}

.info-table dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
}

.info-table dt,
.info-table dd {
  margin: 0;
  padding: 18px 22px;
  font-weight: 900;
}

.info-table dt {
  background: var(--cloud);
  display: grid;
  align-items: center;
}

.info-table dd {
  background: var(--white);
}

.sub-note {
  display: inline-block;
  margin-left: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.info-table a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.support-box {
  padding: 30px;
}

.support-label {
  margin: 0 0 20px;
  color: var(--teal-dark);
  font-weight: 900;
}

.support-label-sub {
  margin-top: 28px;
}

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

.support-list li {
  padding: 12px 14px;
  background: #eef8ff;
  border-left: 6px solid var(--teal);
  font-weight: 900;
}

.contact-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(207, 238, 255, .8) 0 120px, transparent 122px),
    var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-panel,
.contact-form {
  border: 3px solid var(--ink);
  box-shadow: 7px 7px 0 var(--cloud);
}

.contact-panel {
  padding: 32px;
  background:
    linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: var(--white);
}

.contact-lead {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 900;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-method {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(43, 45, 50, .22);
  transition: transform .24s var(--ease-out), box-shadow .24s var(--ease-out);
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 rgba(43, 45, 50, .22);
}

.contact-method span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.contact-method strong {
  font-size: 18px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  background: var(--white);
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 12px 14px;
  background: #f8fcff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.contact-form textarea {
  resize: vertical;
}

.form-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-form .button:disabled {
  cursor: not-allowed;
  opacity: .72;
  filter: grayscale(.1);
}

.form-result-page {
  min-height: 100vh;
  padding: 124px 18px 70px;
  background:
    radial-gradient(circle at 14% 18%, rgba(207, 238, 255, .85) 0 120px, transparent 122px),
    linear-gradient(135deg, #eef8ff, var(--white));
  display: grid;
  place-items: center;
}

.form-result {
  width: min(100%, 720px);
  padding: 42px;
  background: var(--white);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--cloud);
}

.form-result h1 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.35;
  font-weight: 900;
}

.form-result p {
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.9;
}

.form-result ul {
  margin: 0 0 22px;
  padding-left: 1.2em;
  font-weight: 700;
  line-height: 1.9;
}

.form-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.access-section {
  padding: 110px 0 0;
  background: var(--white);
}

.access-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}

.access-head address {
  font-style: normal;
  font-size: 18px;
  font-weight: 900;
  border-bottom: 4px solid var(--teal);
  padding-bottom: 10px;
}

.map-wrap {
  position: relative;
  height: 520px;
  width: 100%;
  margin-top: 24px;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 153, 223, .08) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(0deg, rgba(0, 153, 223, .08) 1px, transparent 1px) 0 0 / 40px 40px,
    #f8fbff;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  background: var(--cloud);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 900;
  transition: transform .24s var(--ease-out), box-shadow .24s var(--ease-out);
}

.map-link:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.faq-section {
  background:
    linear-gradient(90deg, rgba(0, 153, 223, .055) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--paper);
}

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

.faq-item {
  background: var(--white);
  border: 3px solid var(--ink);
  transition: transform .24s var(--ease-out), box-shadow .24s var(--ease-out);
}

.faq-item:hover {
  transform: translateX(4px);
  box-shadow: 5px 5px 0 var(--cloud);
}

.faq-question {
  width: 100%;
  min-height: 74px;
  padding: 20px 62px 20px 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 18px;
  font-weight: 900;
  position: relative;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  background: var(--cloud);
  border-radius: 50%;
  transition: transform .24s var(--ease-out);
}

.faq-item.is-open .faq-question::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .32s var(--ease-out);
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: var(--muted);
  font-weight: 700;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 24px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 84% 20%, rgba(207, 238, 255, .2) 0 110px, transparent 112px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(0deg, rgba(255, 255, 255, .07) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(135deg, var(--teal-dark), var(--teal));
  border-top: 12px solid var(--yellow);
  color: var(--white);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.final-cta .final-kicker {
  display: inline-block;
  margin: 0;
  padding: 5px 14px;
  background: var(--cloud);
  color: var(--teal-dark);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
}

.final-cta h2 {
  margin: 8px 0 14px;
  font-size: 42px;
  line-height: 1.35;
  font-weight: 900;
}

.final-cta p {
  margin: 0 auto 28px;
  width: min(100%, 680px);
  font-weight: 700;
}

.final-cta p.final-kicker {
  display: inline-flex;
  width: auto;
  margin: 0 auto;
}

.site-footer {
  padding: 42px 0;
  background: var(--teal-dark);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: end;
}

.footer-brand,
.footer-meta {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
}

.footer-brand span,
.footer-brand small,
.footer-meta small {
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.footer-brand small,
.footer-meta small {
  font-size: 12px;
}

.footer-meta {
  justify-items: end;
  text-align: right;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cloud);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-contact-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.js-enabled body:not(.is-loaded) .brand,
.js-enabled body:not(.is-loaded) .menu-button,
.js-enabled body:not(.is-loaded) .hero-kicker,
.js-enabled body:not(.is-loaded) .hero h1 span,
.js-enabled body:not(.is-loaded) .hero-lead,
.js-enabled body:not(.is-loaded) .hero-actions,
.js-enabled body:not(.is-loaded) .hero-card {
  opacity: 0;
  transform: translateY(22px);
}

.js-enabled body.is-loaded .brand {
  animation: fadeInDown .68s var(--ease-out) both;
}

.js-enabled body.is-loaded .menu-button {
  animation: popIn .68s .08s var(--ease-out) both;
}

.js-enabled body.is-loaded .hero-bg img {
  animation: heroZoom 1.5s var(--ease-out) both;
}

.js-enabled body.is-loaded .hero-kicker {
  animation: fadeUp .7s .16s var(--ease-out) both;
}

.js-enabled body.is-loaded .hero h1 span:first-child {
  animation: fadeUp .78s .28s var(--ease-out) both;
}

.js-enabled body.is-loaded .hero h1 span:last-child {
  animation: fadeUp .78s .38s var(--ease-out) both;
}

.js-enabled body.is-loaded .hero-lead {
  animation: fadeUp .78s .5s var(--ease-out) both;
}

.js-enabled body.is-loaded .hero-actions {
  animation: fadeUp .78s .62s var(--ease-out) both;
}

.js-enabled body.is-loaded .hero-card {
  animation: cardIn .86s .72s var(--ease-out) both;
}

.js-enabled body.is-reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 86px, 0);
  transition:
    opacity var(--reveal-duration, 820ms) cubic-bezier(.25, .46, .45, .94),
    transform var(--reveal-duration, 820ms) cubic-bezier(.25, .46, .45, .94);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-enabled body.is-reveal-ready [data-reveal="fade-right"] {
  transform: translate3d(-86px, 0, 0);
}

.js-enabled body.is-reveal-ready [data-reveal="fade-left"] {
  transform: translate3d(86px, 0, 0);
}

.js-enabled body.is-reveal-ready [data-reveal="zoom-in"] {
  transform: translate3d(0, 56px, 0) scale(.96);
}

.js-enabled body.is-reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js-enabled body.is-reveal-ready .intro-copy[data-reveal] p {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity .62s var(--ease-out),
    transform .62s var(--ease-out);
}

.js-enabled body.is-reveal-ready .intro-copy[data-reveal].is-visible p {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js-enabled body.is-reveal-ready .intro-copy[data-reveal].is-visible p:nth-child(1) {
  transition-delay: 80ms;
}

.js-enabled body.is-reveal-ready .intro-copy[data-reveal].is-visible p:nth-child(2) {
  transition-delay: 170ms;
}

.js-enabled body.is-reveal-ready .intro-copy[data-reveal].is-visible p:nth-child(3) {
  transition-delay: 260ms;
}

.js-enabled body.is-reveal-ready .intro-copy[data-reveal].is-visible p:nth-child(4) {
  transition-delay: 350ms;
}

.js-enabled body.is-reveal-ready .intro-copy[data-reveal].is-visible p:nth-child(5) {
  transition-delay: 440ms;
}

.step-card.is-visible img,
.work-card.is-visible img {
  animation: imageSettle 1.35s var(--ease-out);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(.82) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translate(18px, 24px) rotate(1deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.09);
    filter: saturate(.88);
  }
  to {
    transform: scale(1.03);
    filter: saturate(1);
  }
}

@keyframes ctaPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.035);
  }
}

@keyframes imageSettle {
  from {
    transform: scale(1.08);
    filter: saturate(.88);
  }
  to {
    transform: scale(1);
    filter: saturate(1);
  }
}

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

  .js-enabled body.is-reveal-ready [data-reveal],
  .js-enabled body.is-reveal-ready .intro-copy[data-reveal] p,
  .js-enabled body:not(.is-loaded) .brand,
  .js-enabled body:not(.is-loaded) .menu-button,
  .js-enabled body:not(.is-loaded) .hero-kicker,
  .js-enabled body:not(.is-loaded) .hero h1 span,
  .js-enabled body:not(.is-loaded) .hero-lead,
  .js-enabled body:not(.is-loaded) .hero-actions,
  .js-enabled body:not(.is-loaded) .hero-card {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .hero-card {
    right: 32px;
  }
}

@media (max-width: 860px) {
  [id] {
    scroll-margin-top: 96px;
  }

  .section {
    padding: 82px 0;
  }

  .container {
    width: min(100% - 34px, var(--max));
  }

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

  .header-inner {
    gap: 8px;
  }

  .brand-logo {
    width: clamp(206px, 66vw, 262px);
  }

  .site-header.is-scrolled .brand-logo,
  .site-header.is-open .brand-logo {
    width: clamp(166px, 50vw, 196px);
  }

  .menu-button {
    width: 48px;
    height: 48px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .site-header.is-scrolled .menu-button,
  .site-header.is-open .menu-button {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: 690px;
    padding: 130px 17px 42px;
    align-items: center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 84, 184, .82), rgba(0, 153, 223, .42)),
      linear-gradient(0deg, rgba(0, 84, 184, .54), transparent 55%);
  }

  .hero::after {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 320px);
    margin: 28px auto 0 0;
  }

  .floating-cta {
    display: none;
  }

  .section-title h2,
  .final-cta h2 {
    font-size: 31px;
  }

  .intro-section {
    min-height: auto;
    padding: 64px 0 78px;
  }

  .intro-copy {
    margin-top: -18px;
    font-size: 15px;
  }

  .values-grid,
  .step-grid,
  .check-grid,
  .works-grid,
  .contact-layout,
  .info-layout,
  .intro-inner,
  .access-head {
    grid-template-columns: 1fr;
  }

  .intro-note {
    padding: 26px;
    box-shadow: 6px 6px 0 var(--cloud);
  }

  .step-card:nth-child(2) {
    margin-top: 0;
  }

  .work-section {
    padding: 86px 0;
    background-attachment: scroll;
  }

  .info-table dl > div {
    grid-template-columns: 1fr;
  }

  .info-table dt {
    padding-block: 10px;
  }

  .map-wrap {
    height: 340px;
  }

  .map-link {
    right: 16px;
    bottom: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-kicker {
    font-size: 11px;
  }

  .intro-copy {
    font-size: 16px;
    gap: 10px;
  }

  .value-item,
  .check-card,
  .support-box,
  .contact-panel,
  .contact-form,
  .form-result,
  .step-body {
    padding: 22px;
  }

  .form-result-page {
    padding: 96px 16px 52px;
  }

  .form-result h1 {
    font-size: 28px;
  }
}
