:root {
  --orange: #f3a400;
  --orange-dark: #dd9300;
  --ink: #171717;
  --muted: #626262;
  --line: #e9e5dd;
  --pale: #fff9ec;
  --blue-pale: #eaf4fb;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(39, 35, 26, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 96% 22%, rgba(244, 183, 53, .18) 0 90px, transparent 92px),
    radial-gradient(circle at 5% 53%, rgba(244, 183, 53, .13) 0 48px, transparent 50px),
    #fff;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  line-height: 1.8;
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  width: min(100% - 64px, 1220px);
  margin: 0 auto;
  padding: 28px 0 18px;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(18px);
}

.home-page .site-header {
  position: fixed;
  left: 50%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 16px));
  transition: opacity .25s ease, transform .35s ease;
}

.home-page .site-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 3px solid var(--orange);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border: 3px solid var(--orange);
  border-radius: 50%;
}

.brand-mark::before {
  left: -10px;
  top: 7px;
}

.brand-mark::after {
  right: -8px;
  top: 10px;
}

.global-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  font-size: 13px;
  font-weight: 700;
}

.global-nav a,
.site-footer nav a {
  white-space: nowrap;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 22px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
}

.nav-contact::before {
  content: "✉";
  margin-right: 8px;
  font-size: 12px;
}

.nav-toggle {
  display: none;
}

.section-pad {
  width: min(100% - 64px, 1220px);
  margin: 0 auto;
}

.section-narrow {
  width: min(100% - 64px, 1040px);
  margin: 0 auto;
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  padding: 64px 48px 56px clamp(48px, 7vw, 120px);
}

.hero-copy::before {
  display: none;
}

.eyebrow,
.small-label {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  width: 690px;
  max-width: none;
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(255, 255, 255, .95), 0 1px 2px rgba(255, 255, 255, .9);
  animation: hero-title-fade 1.4s ease-out both;
}

.hero h1 span {
  display: block;
}

@keyframes hero-title-fade {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.lead {
  position: relative;
  width: 600px;
  margin: 0 0 24px;
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.lead span {
  display: block;
}

.hero-bottom {
  position: absolute;
  left: 32px;
  bottom: 36px;
  z-index: 1;
  width: 650px;
  max-width: 100%;
  padding: 12px 18px;
}

.hero-bottom::before {
  position: absolute;
  inset: -6px -24px -6px -20px;
  z-index: -1;
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .46) 72%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--orange);
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button::after,
.text-link::after,
.service-body a::after,
.news-row::after {
  content: "›";
  margin-left: 14px;
  font-size: 18px;
  line-height: 1;
}

.button:hover,
.article-card:hover,
.service-card:hover {
  transform: translateY(-2px);
}

.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(243, 164, 0, .22);
}

.secondary {
  background: #fff;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  height: 100svh;
  margin-left: 0;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) and (min-width: 981px) {
  .hero h1 {
    width: 620px;
    font-size: 46px;
  }

  .hero-copy {
    padding: 56px 32px 48px 48px;
  }
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.55;
}

h1,
h2,
h3,
p {
  line-break: strict;
  text-wrap: pretty;
}

.mobile-break {
  display: none;
}

.section-head h2::after,
.service > h2::after,
.problem h2::after {
  display: block;
  width: 24px;
  height: 2px;
  margin-top: 12px;
  background: var(--orange);
  content: "";
}

.text-link {
  font-size: 13px;
  font-weight: 800;
}

.news {
  padding: 30px 0 72px;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-row {
  display: grid;
  grid-template-columns: 125px 130px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.news-row time,
.article-card time {
  color: #555;
  font-size: 12px;
  font-weight: 700;
}

.news-row strong {
  font-size: 15px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 76px;
  min-height: 20px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.tag.blue {
  background: var(--blue-pale);
  color: #69889a;
}

.tag.gray {
  background: #f0f0ef;
  color: #858585;
}

.blog {
  padding: 0 0 98px;
}

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

.article-card {
  transition: transform .2s ease;
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-card h3 {
  min-height: 58px;
  margin: 16px 0 10px;
  font-size: 14px;
  line-height: 1.65;
}

.article-card p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}

.problem {
  position: relative;
  overflow: hidden;
  padding: 80px 0 54px;
  text-align: center;
}

.problem::before {
  position: absolute;
  right: -100px;
  top: 80px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(243, 164, 0, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 24px #fff, 0 0 0 25px rgba(243, 164, 0, .18), 0 0 0 50px #fff, 0 0 0 51px rgba(243, 164, 0, .14);
  display: none;
  content: "";
}

.process-illustration {
  position: relative;
  width: min(100%, 1120px);
  margin: 42px auto 30px;
}

.process-illustration img {
  width: 100%;
}

.centered {
  margin-bottom: 8px;
  text-align: center;
}

.problem h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(27px, 3.2vw, 40px);
}

.problem h2::after {
  margin-right: auto;
  margin-left: auto;
}

.process {
  display: grid;
  grid-template-columns: 180px 36px 180px 36px 180px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 58px 0 34px;
}

.process-item {
  position: relative;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .86);
}

.step {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--orange);
  background: #fff;
  border: 1px solid var(--orange);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border: 2px solid #222;
  border-radius: 50%;
}

.bulb {
  border-radius: 46% 46% 50% 50%;
  box-shadow: inset 0 -12px 0 -8px #222;
}

.question::before {
  display: block;
  content: "?";
  font-size: 30px;
  line-height: 40px;
}

.chart {
  border: 0;
  background:
    linear-gradient(#222, #222) 8px 29px / 6px 12px no-repeat,
    linear-gradient(#222, #222) 20px 21px / 6px 20px no-repeat,
    linear-gradient(#222, #222) 32px 12px / 6px 29px no-repeat;
}

.process-arrow {
  width: 26px;
  height: 1px;
  background: var(--orange);
}

.process-arrow::after {
  display: block;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 auto;
  border-top: 1px solid var(--orange);
  border-right: 1px solid var(--orange);
  transform: rotate(45deg);
  content: "";
}

.problem-copy {
  max-width: 780px;
  margin: 0 auto;
  color: #4a4a4a;
  font-weight: 600;
}

.service {
  padding: 38px 0 110px;
}

.section-copy {
  max-width: 650px;
  margin: 22px 0 34px;
  color: var(--muted);
  font-weight: 600;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 34px;
}

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

.service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}

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

.service-body {
  position: relative;
  padding: 28px 28px 30px;
}

.service-icon {
  position: absolute;
  left: 28px;
  top: -34px;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  background: #fff;
  border: 1px solid var(--orange);
  border-radius: 50%;
}

.service-icon::before {
  color: var(--orange);
  font-size: 30px;
  line-height: 1;
}

.people::before {
  content: "◎";
}

.workshop::before {
  content: "✎";
}

.growth::before {
  content: "↗";
}

.service-body h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.service-body p {
  min-height: 112px;
  margin: 0 0 22px;
  color: #444;
  font-size: 14px;
  font-weight: 600;
}

.service-body a {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.about {
  background: linear-gradient(180deg, #fff 0%, #fff9ef 100%);
  padding: 84px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  align-items: center;
  gap: 82px;
  width: min(100% - 64px, 1040px);
  margin: 0 auto;
}

.about-heading {
  align-self: end;
}

.about-content {
  align-self: start;
}

.about p:not(.eyebrow) {
  margin: 0 0 32px;
  color: #444;
  font-weight: 600;
}

.about-image {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.about-image img {
  width: 100%;
  min-height: 270px;
  object-fit: cover;
  border-radius: 44% 56% 45% 55% / 32% 40% 60% 68%;
}

.contact {
  padding: 92px 0 104px;
}

.contact-page {
  min-height: calc(100vh - 190px);
}

.contact-page h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.45;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 560px);
  align-items: center;
  gap: 70px;
  padding: 80px 0 74px;
}

.page-hero h1 {
  margin: 0;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.45;
}

.page-hero p:not(.eyebrow),
.company-message p,
.company-cta p {
  color: #444;
  font-weight: 600;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
}

.page-hero-image img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 44% 56% 45% 55% / 32% 40% 60% 68%;
  box-shadow: var(--shadow);
}

.company-message {
  padding: 44px 0 72px;
}

.company-message h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.company-message p {
  max-width: 860px;
  margin: 0 0 16px;
}

.company-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 0 0 86px;
}

.value-item {
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-item span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.value-item h3 {
  margin: 0 0 12px;
  font-size: 19px;
}

.value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.company-profile {
  padding: 0 0 92px;
}

.profile-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.profile-list div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.profile-list dt {
  color: #222;
  font-weight: 900;
}

.profile-list dd {
  margin: 0;
  color: #444;
  font-weight: 600;
}

.profile-list a {
  color: var(--orange-dark);
  font-weight: 900;
}

.company-cta {
  margin-bottom: 92px;
  padding: 48px;
  background: #fff9ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.company-cta h2 {
  margin-bottom: 14px;
}

.company-cta p {
  margin: 0 0 28px;
}

.contact-head {
  max-width: 650px;
  margin-bottom: 34px;
}

.contact-head p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.contact-form {
  padding: clamp(24px, 5vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 9px;
  color: #222;
  font-size: 14px;
  font-weight: 800;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form em {
  margin-left: 8px;
  color: var(--orange);
  font-size: 11px;
  font-style: normal;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid #e4ded2;
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(243, 164, 0, .12);
}

.agree {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
  margin: 24px 0 0;
  font-size: 13px !important;
}

.agree input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--orange);
}

.form-action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.form-action button {
  cursor: pointer;
}

.form-action p {
  margin: 0;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  width: min(100% - 64px, 1220px);
  margin: 0 auto;
  padding: 34px 0;
}

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

.site-footer small {
  color: #999;
  font-size: 12px;
}

.pagetop {
  position: fixed;
  right: 28px;
  bottom: 26px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(243, 164, 0, .28);
}

.service-detail-page {
  background: #fff;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.35fr);
  align-items: center;
  width: min(100% - 64px, 1220px);
  min-height: 620px;
  margin: 0 auto;
}

.detail-hero-copy {
  position: relative;
  z-index: 2;
  padding: 54px 0 64px;
}

.detail-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 30px;
  padding: 0 20px;
  background: var(--pale);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.detail-hero h1 {
  margin: 0 0 24px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.55;
}

.detail-hero-copy > p:not(.detail-label) {
  max-width: 510px;
  margin: 0 0 30px;
  color: #444;
  font-weight: 600;
}

.detail-hero-image {
  min-width: 0;
  margin-left: -40px;
}

.detail-hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 46% 0 0 42% / 52% 0 0 48%;
}

.detail-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.detail-heading {
  margin-bottom: 42px;
  text-align: center;
}

.detail-heading h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(26px, 3vw, 38px);
}

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

.concern-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
}

.concern-card,
.step-card {
  position: relative;
  min-height: 210px;
  padding: 34px 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(39, 35, 26, .06);
  text-align: center;
}

.concern-card span,
.step-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 26px;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.concern-card h3,
.step-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
}

.detail-note {
  margin: 30px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.detail-feature {
  padding: 80px 0;
  background: linear-gradient(100deg, #f8fbfd 0%, #fff 58%, #fff9ec 100%);
}

.detail-feature-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 70px;
  width: min(100% - 64px, 1120px);
  margin: 0 auto;
}

.detail-feature-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0 45% 45% 0;
}

.detail-feature-copy h2,
.detail-outcome h2,
.detail-cta h2 {
  margin: 0 0 20px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.detail-feature-copy > p:not(.eyebrow),
.detail-outcome p:not(.eyebrow) {
  margin: 0;
  color: #444;
  font-weight: 600;
}

.question-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.question-list span {
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 20px;
  background: var(--pale);
  border-radius: 50%;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.step-card {
  min-height: 260px;
  text-align: left;
}

.step-card span {
  margin: 0 0 24px;
}

.step-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.detail-outcome {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  width: min(100% - 64px, 1120px);
  margin: 0 auto 86px;
  background: var(--pale);
}

.detail-outcome > div {
  padding: 52px;
}

.detail-outcome img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.detail-cta {
  margin-bottom: 86px;
  padding: 52px;
  border: 1px solid #f3dfad;
  background: var(--pale);
  text-align: center;
}

.detail-cta p {
  margin: -6px 0 24px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    width: min(100% - 36px, 1220px);
  }

  .nav-toggle {
    display: grid;
    gap: 7px;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
  }

  .global-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 12px;
  }

  .nav-contact {
    justify-content: center;
    margin-top: 8px;
  }

  .section-pad,
  .section-narrow,
  .about-inner,
  .site-footer {
    width: min(100% - 36px, 1040px);
  }

  .hero {
    display: flex;
    width: 100%;
    min-height: 100svh;
    padding: 0;
  }

  .hero-copy {
    max-width: none;
    min-height: 100svh;
    padding: 56px 36px 44px;
  }

  .hero h1,
  .lead {
    width: auto;
    max-width: 100%;
  }

  .page-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100svh;
    margin-left: 0;
    max-width: none;
  }

.hero-visual img {
    height: 100%;
    min-height: 100%;
  }

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

  .process {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .about-inner,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .detail-hero {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 720px);
  }

  .detail-hero-copy {
    padding-bottom: 32px;
  }

  .detail-hero-image {
    margin-left: 0;
  }

  .detail-hero-image img {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 0;
  }

  .detail-feature-inner {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 720px);
    gap: 40px;
  }

  .detail-feature-image img {
    aspect-ratio: 16 / 9;
    border-radius: 0;
  }

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

  .detail-outcome {
    grid-template-columns: 1fr;
    width: min(100% - 36px, 720px);
  }
}

@media (max-width: 640px) {
  body {
    background: #fff;
  }

  .site-header {
    padding-top: 18px;
  }

  .brand {
    font-size: 25px;
  }

  .hero {
    display: grid;
    grid-template-rows: 100svh auto;
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .hero::after {
    position: absolute;
    inset: 0 0 auto;
    z-index: 1;
    height: 46svh;
    content: "";
    background: linear-gradient(180deg, rgba(4, 7, 9, .82) 0%, rgba(4, 7, 9, .56) 58%, rgba(4, 7, 9, 0) 100%);
    pointer-events: none;
  }

  .hero-copy {
    display: contents;
    min-height: 0;
    padding: 0;
  }

  .hero-copy::before {
    display: none;
  }

  .hero-bottom {
    position: relative;
    left: auto;
    bottom: auto;
    grid-row: 2;
    z-index: 2;
    width: 100%;
    max-width: none;
    padding: 26px 10px 30px;
    text-align: center;
    background: #fff;
  }

  .hero-bottom::before {
    display: none;
  }

  .hero h1 {
    position: absolute;
    top: 12svh;
    left: 24px;
    right: 18px;
    z-index: 2;
    width: auto;
    max-width: none;
    color: #fff;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.28;
    text-align: left;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .9), 0 1px 3px rgba(0, 0, 0, .95);
  }

  .hero h1 span {
    display: block;
    white-space: nowrap;
  }

  .hero h1 .hero-accent {
    color: #ffd86b;
    background: none;
    -webkit-text-fill-color: #ffd86b;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .95), 0 0 12px rgba(255, 190, 55, .28);
  }

  .lead {
    width: 100%;
    margin-bottom: 14px;
    color: #333;
    font-size: 13px;
    line-height: 1.8;
    text-align: center;
    text-shadow: none;
  }

  .lead span {
    white-space: nowrap;
  }

  .hero-actions {
    justify-content: center;
    gap: 10px;
  }

  .hero-actions .button {
    width: auto;
    min-width: 230px;
    min-height: 44px;
    padding: 0 16px;
    font-size: 11px;
  }

  .mobile-break {
    display: inline;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    grid-row: 1;
    width: 100%;
    height: 100svh;
    min-height: 100svh;
    aspect-ratio: auto;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-row {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    padding: 16px 0;
  }

  .news-row strong {
    grid-column: 1 / -1;
  }

  .news-row::after {
    grid-column: 2;
    grid-row: 1;
  }

  .article-grid,
  .service-grid,
  .company-values,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 48px 0 50px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .profile-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .company-cta {
    margin-bottom: 64px;
    padding: 28px 22px;
  }

  .contact-form label.full {
    grid-column: auto;
  }

  .article-card h3,
  .service-body p {
    min-height: auto;
  }

  .problem {
    padding: 52px 0 30px;
  }

  .problem h2 {
    font-size: 24px;
  }

  .process-illustration {
    width: 100%;
    margin: 22px auto 20px;
  }

  .process-illustration img {
    width: 100%;
    height: auto;
  }

  .problem::before {
    display: none;
  }

  .process {
    margin-top: 38px;
  }

  .service {
    padding: 28px 0 72px;
  }

  .service-grid {
    gap: 20px;
    margin-top: 24px;
  }

  .service-card img {
    aspect-ratio: 1.8 / 1;
  }

  .service-body {
    padding: 24px 20px;
  }

  .service-body p {
    font-size: 13px;
    line-height: 1.75;
  }

  .about {
    padding: 58px 0;
  }

  .about-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .about-heading {
    order: 1;
    align-self: stretch;
  }

  .about-image {
    order: 2;
    margin: 22px 0 24px;
  }

  .about-content {
    order: 3;
  }

  .about-image img {
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 0;
  }

  .contact {
    padding: 58px 0 68px;
  }

  .form-action .button {
    width: 100%;
  }

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

  .detail-hero {
    min-height: 0;
  }

  .detail-hero-copy {
    padding: 34px 0 24px;
    text-align: center;
  }

  .detail-label {
    min-height: 34px;
    margin-bottom: 22px;
    padding: 0 16px;
    font-size: 11px;
  }

  .detail-hero h1 {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1.55;
  }

  .detail-hero-copy > p:not(.detail-label) {
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.8;
  }

  .detail-hero-copy .button {
    width: auto;
    min-width: 210px;
  }

  .detail-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .detail-heading {
    margin-bottom: 26px;
  }

  .concern-grid,
  .concern-grid-three,
  .step-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .concern-card,
  .step-card {
    min-height: 0;
    padding: 22px 20px;
  }

  .concern-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 18px;
    text-align: left;
  }

  .concern-card span,
  .step-card span {
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .concern-card h3 {
    font-size: 15px;
  }

  .detail-note {
    margin-top: 24px;
    font-size: 12px;
  }

  .detail-feature {
    padding: 58px 0;
  }

  .detail-feature-inner {
    gap: 28px;
  }

  .detail-feature-copy {
    text-align: center;
  }

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

  .question-list span {
    min-height: 64px;
    border-radius: var(--radius);
  }

  .step-card h3 {
    margin-top: 16px;
  }

  .detail-outcome {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 58px;
  }

  .detail-outcome > div {
    padding: 30px 24px 34px;
  }

  .detail-outcome img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .detail-cta {
    margin-bottom: 58px;
    padding: 34px 22px;
  }
}

@media (max-width: 340px) {
  .hero h1 {
    font-size: 30px;
  }

  .lead {
    font-size: 10.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1 {
    animation: none;
  }
}
