:root {
  --ink: #202421;
  --paper: #f3f0e8;
  --white: #fcfbf7;
  --rust: #a5573e;
  --moss: #5f695e;
  --line: #cfcdc4;
  --muted: #696c67;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Avenir Next", "Helvetica Neue", "Hiragino Sans", "Yu Gothic", sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(252, 251, 247, 0.96);
}

.header__inner {
  display: grid;
  width: min(1400px, calc(100% - 64px));
  min-height: 78px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 0 auto;
}

.logo {
  display: block;
  width: fit-content;
}

.logo img {
  width: 148px;
  height: auto;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
}

.nav a,
.header__contact {
  transition: color 0.2s ease;
}

.nav a:hover,
.header__contact:hover {
  color: var(--rust);
}

.header__contact {
  justify-self: end;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.header__contact span {
  margin-left: 14px;
}

.hero {
  display: grid;
  width: min(1400px, calc(100% - 64px));
  min-height: 700px;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(48px, 7vw, 118px);
  align-items: center;
  margin: 0 auto;
  padding: 84px 0 96px;
}

.kicker,
.section-label p,
.principle__small {
  margin: 0;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.kicker {
  color: var(--rust);
}

.hero h1 {
  margin: 24px 0 28px;
  font-family: var(--serif);
  font-size: clamp(3rem, 4.3vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.24;
}

.title-line {
  display: block;
}

.hero__lead {
  margin: 0;
  color: #454a45;
  font-size: 1rem;
  line-height: 2.05;
}

.hero__actions {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 14px 22px;
  border: 1px solid var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.2s ease, background 0.2s ease;
}

.button--fill {
  min-width: 252px;
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.button--fill:hover {
  border-color: var(--rust);
  background: var(--rust);
}

.button--outline {
  min-width: 236px;
  background: transparent;
}

.button--outline:hover {
  color: var(--white);
  background: var(--ink);
}

.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.text-link span {
  margin-left: 14px;
}

.hero__note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.hero__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding: 0;
  margin: 28px 0 0;
  color: #4f544f;
  font-size: 0.72rem;
  list-style: none;
}

.hero__assurance li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__assurance li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--rust);
}

.hero__visual {
  align-self: stretch;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.hero__index {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: right;
}

.hero__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #aaa99f;
}

.hero__photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero__photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  background: rgba(32, 36, 33, 0.9);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero__photo figcaption span {
  padding: 12px 14px;
  text-align: center;
}

.hero__photo figcaption span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.notice {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  padding: 12px max(32px, calc((100vw - 1400px) / 2));
  color: var(--white);
  background: var(--rust);
}

.notice p {
  margin: 0;
  font-size: 0.88rem;
}

.notice p span {
  margin-right: 26px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.notice a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 700;
}

.diagnosis-lp {
  padding: 58px max(32px, calc((100vw - 1400px) / 2));
  color: var(--white);
  background: var(--rust);
}

.diagnosis-lp__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr auto;
  gap: 68px;
  align-items: center;
}

.diagnosis-lp .kicker {
  color: rgba(255, 255, 255, 0.66);
}

.diagnosis-lp h2 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.7vw, 2.65rem);
  font-weight: 500;
  line-height: 1.42;
}

.diagnosis-lp__body p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.9;
}

.diagnosis-lp__body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 18px;
  padding: 0;
  margin: 16px 0 0;
  font-size: 0.65rem;
  list-style: none;
}

.diagnosis-lp__body li::before {
  content: "✓";
  margin-right: 6px;
}

.diagnosis-lp .button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.diagnosis-lp .button--outline:hover {
  color: var(--rust);
  background: var(--white);
}

.section {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  padding: 136px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-label span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 0.62rem;
}

.section-label p {
  color: var(--moss);
}

.section-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}

.section-more .button {
  min-width: 292px;
}

.section-more--dark .text-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.visual-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  gap: clamp(52px, 7vw, 100px);
  align-items: center;
}

.visual-lead__copy {
  min-width: 0;
}

.visual-lead__copy > p:not(.intro__statement, .promise__message, .principle__small) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.visual-lead__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8e5dc;
}

.visual-lead__media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.visual-lead--dark .visual-lead__media {
  border-color: #555b56;
}

.visual-lead--dark .visual-lead__copy > p {
  color: #b9bbb5;
}

.worries__heading {
  padding: 72px 0 80px;
}

.worries__heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.42;
}

.worries__heading .visual-lead__copy > p {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.worries__prompt {
  margin: 0 0 24px;
  color: var(--rust);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
}

.worry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
}

.worry-list article {
  display: grid;
  min-height: 128px;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--line);
}

.worry-list article:nth-child(even) {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.worry-list span {
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 700;
}

.worry-list p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.75;
}

.worries__answer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
  padding: 34px 0 0;
}

.worries__answer p {
  margin: 0;
  color: var(--rust);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.worries__answer span {
  color: var(--muted);
  font-size: 0.78rem;
}

.intro__body {
  padding: 82px 0 96px;
}

.intro__statement {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.45rem, 4.5vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 1.42;
}

.intro__statement em,
.principle__message em {
  color: var(--rust);
  font-style: normal;
}

.intro__description {
  margin-top: 28px;
  color: #555952;
  font-size: 0.94rem;
}

.intro__description p {
  margin: 0;
}

.intro__description p + p {
  margin-top: 22px;
}

.growth-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.growth-flow article {
  position: relative;
  min-height: 314px;
  padding: 34px 34px 42px;
}

.growth-flow article + article {
  border-left: 1px solid var(--line);
}

.growth-flow__en {
  position: absolute;
  top: 25px;
  right: 24px;
  margin: 0;
  color: #deddd7;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4.5vw, 4.7rem);
  line-height: 1;
}

.growth-flow article > span {
  position: relative;
  display: block;
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 700;
}

.growth-flow h3 {
  position: relative;
  margin: 84px 0 18px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}

.growth-flow article > p:last-child {
  position: relative;
  max-width: 280px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.promise {
  padding: 136px 32px;
  color: #f1efe8;
  background: var(--ink);
}

.promise__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.promise__lead {
  margin-bottom: 76px;
}

.promise__message {
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.65rem, 4.8vw, 5.25rem);
  letter-spacing: -0.045em;
  line-height: 1.4;
}

.promise__message em {
  color: #d98b6d;
  font-style: normal;
}

.promise__description {
  margin-top: 28px !important;
}

.promise__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #555b56;
}

.promise__items article {
  min-height: 242px;
  padding: 30px 32px 20px 0;
}

.promise__items article + article {
  padding-left: 32px;
  border-left: 1px solid #555b56;
}

.promise__items span {
  color: #d98b6d;
  font-size: 0.67rem;
}

.promise__items h3 {
  margin: 55px 0 14px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.promise__items p {
  margin: 0;
  color: #b9bbb5;
  font-size: 0.79rem;
}

.reason-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}

.reason-item {
  display: grid;
  min-height: 268px;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 34px 34px 42px 0;
  border-bottom: 1px solid var(--line);
}

.reason-item:not(.reason-item--large):last-child {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.reason-item--large {
  grid-column: 1 / -1;
  grid-template-columns: 48px 0.75fr 1fr;
  gap: 26px;
  align-items: center;
  padding-right: 0;
}

.reason-item > span {
  align-self: start;
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 700;
}

.reason-item h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.65;
}

.reason-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.reason-item img {
  height: 310px;
  object-fit: cover;
}

.story {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  min-height: 650px;
  background: var(--paper);
}

.story__visual img {
  height: 100%;
  object-fit: cover;
}

.story__body {
  align-self: center;
  max-width: 720px;
  padding: 100px clamp(32px, 5vw, 80px);
}

.story__body h2 {
  margin: 24px 0 28px;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.8vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.45;
}

.story__body > p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.story__body > p + p {
  margin-top: 18px;
}

.story__body > p.story__belief {
  margin-top: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.75;
}

.story__belief strong {
  color: var(--rust);
  font-weight: 600;
}

.story__body .text-link {
  display: inline-block;
  margin-top: 32px;
}

.service {
  width: auto;
  max-width: none;
  padding-right: max(32px, calc((100vw - 1240px) / 2));
  padding-left: max(32px, calc((100vw - 1240px) / 2));
  background: var(--paper);
}

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

.section-heading--visual {
  max-width: none;
}

.section-heading h2,
.process__title h2 {
  margin: 28px 0 18px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.8vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.4;
}

.service .section-heading h2 {
  font-size: clamp(2.35rem, 3.6vw, 3.3rem);
}

.section-heading > p,
.process__title > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-list {
  border-top: 1px solid var(--ink);
}

.service-row {
  display: grid;
  grid-template-columns: 54px minmax(180px, 0.85fr) minmax(300px, 1.6fr) minmax(190px, 0.8fr) 30px;
  gap: 24px;
  align-items: center;
  padding: 32px 12px 32px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, padding 0.2s ease;
}

.service-row:hover {
  padding-left: 10px;
  color: var(--rust);
}

.service-row__number {
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 700;
}

.service-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.service-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.service-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.69rem;
  list-style: none;
}

.service-row li::before {
  content: "—";
  margin-right: 5px;
}

.service-row__arrow {
  justify-self: end;
  font-size: 1rem;
}

.mid-cta {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  padding: 110px max(32px, calc((100vw - 1240px) / 2));
  color: var(--white);
  background: var(--rust);
}

.mid-cta .kicker {
  color: rgba(255, 255, 255, 0.68);
}

.mid-cta h2 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.7vw, 3.8rem);
  font-weight: 500;
  line-height: 1.5;
}

.mid-cta > div:last-child {
  align-self: end;
}

.mid-cta > div:last-child p {
  margin: 0 0 26px;
  font-size: 0.86rem;
}

.principle {
  padding: 136px 32px;
  color: #f1efe8;
  background: var(--ink);
}

.principle__inner {
  display: grid;
  width: min(1240px, 100%);
  grid-template-columns: 0.72fr 1.48fr;
  gap: 90px;
  margin: 0 auto;
}

.principle__small {
  color: #9ba097;
}

.principle__message {
  grid-column: 1 / -1;
  max-width: 1000px;
  margin: 18px 0 30px;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  letter-spacing: -0.045em;
  line-height: 1.38;
}

.principle__text {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  color: #b9bbb5;
  font-size: 0.9rem;
}

.principle__text p {
  margin: 0;
}

.principle__location {
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  line-height: 2;
}

.section-heading--horizontal {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 80px;
}

.section-heading--horizontal > p {
  max-width: 430px;
  padding-bottom: 10px;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px 28px;
}

.works__example-label {
  margin: 12px 0 0;
  color: var(--rust);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.work--large {
  grid-column: 1 / -1;
}

.work__image {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ecebe6;
}

.work__image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work:hover .work__image img {
  transform: scale(1.015);
}

.work__meta {
  display: grid;
  grid-template-columns: 150px 1fr 1.2fr auto;
  gap: 24px;
  align-items: baseline;
  padding-top: 19px;
}

.work:not(.work--large) .work__meta {
  grid-template-columns: 1fr auto;
}

.work:not(.work--large) .work__meta span,
.work:not(.work--large) .work__meta p {
  grid-column: 1 / -1;
}

.work__meta span {
  color: var(--rust);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.work__meta h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.work__meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.work__meta b {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.process {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 110px;
  border-top: 1px solid var(--line);
}

.process-list {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process__steps {
  min-width: 0;
}

.process-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 700;
}

.process-list h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.process__more {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
  margin-top: 26px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
  transition: color 0.2s ease, padding 0.2s ease;
}

.process__more:hover {
  padding-right: 10px;
  padding-left: 10px;
  color: var(--rust);
}

.process__more b {
  font-size: 1rem;
}

.price {
  width: auto;
  max-width: none;
  padding-right: max(32px, calc((100vw - 1240px) / 2));
  padding-left: max(32px, calc((100vw - 1240px) / 2));
  background: var(--paper);
}

.price-table {
  border-top: 1px solid var(--ink);
}

.price-row {
  display: grid;
  grid-template-columns: 1.1fr 1.55fr 0.8fr 0.65fr;
  gap: 30px;
  align-items: center;
  min-height: 124px;
  border-bottom: 1px solid var(--line);
}

.price-row--head {
  min-height: 42px;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.price-row small {
  display: block;
  color: var(--rust);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.price-row h3 {
  margin: 5px 0 0;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
}

.price-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.price-row strong {
  font-size: 1.1rem;
}

.price-row > span:last-child {
  justify-self: end;
  font-size: 0.71rem;
  font-weight: 700;
}

.price-row--focus {
  background: rgba(165, 87, 62, 0.055);
}

.price__note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: right;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  gap: 18px;
  align-items: center;
  padding: 28px 4px 28px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  grid-column: 3;
  grid-row: 1;
  color: var(--rust);
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary span {
  color: var(--rust);
  font-family: var(--sans);
  font-size: 0.75rem;
}

.faq-list details > p {
  max-width: 920px;
  padding: 0 48px 30px 66px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  padding: 136px max(32px, calc((100vw - 1240px) / 2));
  color: var(--white);
  background: var(--rust);
}

.contact .kicker {
  color: rgba(255, 255, 255, 0.7);
}

.contact h2 {
  margin: 26px 0 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.34;
}

.contact__body {
  align-self: end;
}

.contact__body p {
  margin: 0 0 30px;
  font-size: 0.91rem;
  line-height: 2;
}

.button--light {
  min-width: 260px;
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: transparent;
}

.contact__body small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
}

.contact__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 0;
  margin: 24px 0 0;
  font-size: 0.69rem;
  list-style: none;
}

.contact__assurance li::before {
  content: "✓";
  margin-right: 6px;
}

.footer {
  padding: 34px max(24px, calc((100vw - 1200px) / 2)) 20px;
  border-top: 1px solid #e4e4e4;
  color: #333;
  background: #fdfdfd;
  text-align: center;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  font-size: 0.75rem;
}

.footer__nav a:hover {
  text-decoration: underline;
}

.footer__copy {
  margin: 22px 0 0;
  font-size: 0.68rem;
}

@media (max-width: 1180px) {
  .header__inner {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }
}

@media (min-width: 1001px) {
  .hero h1 .title-line,
  .promise__message .title-line,
  .story__body h2 .title-line,
  .service .section-heading h2 .title-line,
  .process__title h2 .title-line {
    white-space: nowrap;
  }
}

@media (min-width: 1500px) {
  .hero h1 {
    font-size: 3.9rem;
  }

  .promise__message {
    font-size: 4.3rem;
  }

  .story__body h2,
  .section-heading h2,
  .process__title h2 {
    font-size: 3.4rem;
  }
}

@media (max-width: 1000px) {
  .header__inner {
    width: min(100% - 36px, 1400px);
    grid-template-columns: 1fr auto;
  }

  .hero {
    width: min(100% - 36px, 760px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 72px 0 80px;
  }

  .hero__copy {
    max-width: 700px;
  }

  .hero__visual {
    width: 88%;
    margin-left: auto;
  }

  .section {
    width: min(100% - 36px, 760px);
    padding: 104px 0;
  }

  .diagnosis-lp__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .diagnosis-lp .button {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .visual-lead,
  .worries__heading,
  .intro__body {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .worry-list article:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .worries__answer {
    display: block;
  }

  .worries__answer span {
    display: block;
    margin-top: 9px;
  }

  .service,
  .price {
    width: auto;
    padding-right: 18px;
    padding-left: 18px;
  }

  .growth-flow {
    grid-template-columns: 1fr;
  }

  .growth-flow article {
    min-height: 245px;
  }

  .growth-flow article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .promise__lead {
    margin-bottom: 58px;
  }

  .promise__items article {
    min-height: 190px;
  }

  .promise__items article + article {
    padding-left: 0;
    border-top: 1px solid #555b56;
    border-left: 0;
  }

  .reason-item--large {
    grid-template-columns: 42px 1fr;
  }

  .reason-item--large img {
    grid-column: 2;
  }

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

  .story__visual {
    height: 420px;
  }

  .story__body {
    max-width: 760px;
  }

  .service-row {
    grid-template-columns: 42px 1fr 30px;
  }

  .service-row > p,
  .service-row ul {
    grid-column: 2 / 3;
  }

  .service-row__arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .principle__inner,
  .principle__text,
  .process,
  .mid-cta,
  .contact {
    grid-template-columns: 1fr;
  }

  .principle__text {
    grid-column: 1;
  }

  .section-heading--horizontal {
    display: block;
  }

  .section-heading--horizontal > p {
    margin-top: 28px;
  }

  .work__meta,
  .work:not(.work--large) .work__meta {
    grid-template-columns: 1fr auto;
  }

  .work__meta span,
  .work__meta p {
    grid-column: 1 / -1;
  }

  .price-row {
    grid-template-columns: 1fr 0.8fr 0.55fr;
  }

  .price-row p {
    display: none;
  }

  .price-row--head {
    display: none;
  }

}

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

  .header__inner {
    min-height: 66px;
  }

  .logo img {
    width: 122px;
  }

  .header__contact {
    font-size: 0.76rem;
  }

  .hero {
    gap: 48px;
    padding: 58px 0 66px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 2.45rem;
    line-height: 1.28;
  }

  .hero__lead br {
    display: none;
  }

  .hero__assurance {
    display: grid;
    gap: 7px;
  }

  .hero__actions {
    display: grid;
    gap: 22px;
  }

  .button--fill {
    width: 100%;
  }

  .text-link {
    width: fit-content;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__photo figcaption {
    position: static;
    grid-template-columns: 1fr;
  }

  .hero__photo figcaption span {
    padding: 9px 12px;
  }

  .hero__photo figcaption span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .notice {
    display: block;
    padding: 20px 18px;
  }

  .notice p span {
    display: block;
    margin: 0 0 5px;
  }

  .notice a {
    display: inline-block;
    margin-top: 10px;
  }

  .diagnosis-lp {
    padding: 42px 18px;
  }

  .diagnosis-lp__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .diagnosis-lp .button {
    grid-column: auto;
    width: 100%;
  }

  .diagnosis-lp__body ul {
    display: grid;
  }

  .section {
    padding: 88px 0;
  }

  .section-more {
    justify-content: flex-start;
    margin-top: 32px;
  }

  .section-more .button {
    width: 100%;
    min-width: 0;
  }

  .worries__heading {
    padding: 52px 0 58px;
  }

  .visual-lead {
    gap: 30px;
  }

  .visual-lead__copy > p:not(.intro__statement, .promise__message, .principle__small) {
    margin-top: 20px;
  }

  .visual-lead__media img {
    aspect-ratio: 4 / 3;
  }

  .worries__heading h2 {
    font-size: 2.35rem;
  }

  .worry-list article {
    min-height: 108px;
    grid-template-columns: 38px 1fr;
    padding: 22px 0;
  }

  .worry-list p {
    font-size: 0.98rem;
  }

  .worries__answer p {
    font-size: 1.1rem;
  }

  .intro__body {
    padding: 56px 0 68px;
  }

  .intro__statement {
    font-size: 2.55rem;
  }

  .growth-flow article {
    min-height: 238px;
    padding: 28px 22px 34px;
  }

  .growth-flow__en {
    right: 18px;
    font-size: 3.15rem;
  }

  .growth-flow h3 {
    margin-top: 70px;
  }

  .promise {
    padding: 88px 18px;
  }

  .promise__message {
    margin-bottom: 0;
    font-size: 2.35rem;
  }

  .promise__lead {
    margin-bottom: 48px;
  }

  .promise__items article {
    min-height: 180px;
    padding: 26px 0 30px;
  }

  .promise__items h3 {
    margin-top: 36px;
  }

  .section-heading {
    margin-bottom: 50px;
  }

  .section-heading h2,
  .process__title h2 {
    font-size: 2rem;
  }

  .service-row {
    gap: 8px 14px;
    padding: 26px 2px 26px 0;
  }

  .service-row h3 {
    font-size: 1.2rem;
  }

  .service-row > p {
    margin-top: 8px;
  }

  .service-row ul {
    margin-top: 6px;
  }

  .process__more {
    min-height: 64px;
    font-size: 0.76rem;
  }

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

  .reason-item,
  .reason-item--large {
    grid-template-columns: 34px 1fr;
    min-height: auto;
    padding: 26px 0 32px;
  }

  .reason-item:not(.reason-item--large):last-child {
    padding-left: 0;
    border-left: 0;
  }

  .reason-item--large img {
    grid-column: 1 / -1;
    height: 220px;
    margin-top: 10px;
  }

  .reason-item h3 {
    font-size: 1.2rem;
  }

  .story__visual {
    height: 280px;
  }

  .story__body {
    padding: 76px 18px;
  }

  .story__body h2 {
    font-size: 2.25rem;
  }

  .mid-cta {
    gap: 42px;
    padding: 82px 18px;
  }

  .mid-cta h2 {
    font-size: 2.2rem;
  }

  .principle {
    padding: 88px 18px;
  }

  .principle__inner,
  .principle__text {
    gap: 38px;
  }

  .principle__message {
    font-size: 2.3rem;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }

  .work--large {
    grid-column: auto;
  }

  .work__meta,
  .work:not(.work--large) .work__meta {
    grid-template-columns: 1fr auto;
    gap: 7px 16px;
  }

  .work__meta h3 {
    font-size: 1.15rem;
  }

  .process {
    gap: 50px;
  }

  .price-row {
    grid-template-columns: 1fr auto;
    gap: 10px 20px;
    min-height: 118px;
  }

  .price-row > span:last-child {
    display: none;
  }

  .price__note {
    text-align: left;
  }

  .faq-list summary {
    grid-template-columns: 32px 1fr 20px;
    gap: 10px;
    padding: 23px 0;
    font-size: 0.98rem;
  }

  .faq-list details > p {
    padding: 0 20px 26px 42px;
  }

  .contact {
    gap: 54px;
    padding: 96px 18px;
  }

  .contact h2 {
    font-size: 2.55rem;
  }

  .button--light {
    width: 100%;
  }

  .footer {
    padding: 32px 18px 20px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}


/* WordPress / SWELL integration */
.home,
.page-id-53 {
  background: #fcfbf7;
}

.home #main_visual,
.page-id-53 #main_visual,
.home .c-pageTitle,
.page-id-53 .c-pageTitle,
.home .l-mainContent__inner > .post_content > .wp-block-heading:first-child,
.page-id-53 .l-mainContent__inner > .post_content > .wp-block-heading:first-child {
  display: none !important;
}

.home #content,
.page-id-53 #content,
.home .l-content,
.page-id-53 .l-content,
.home .l-mainContent,
.page-id-53 .l-mainContent,
.home .l-mainContent__inner,
.page-id-53 .l-mainContent__inner,
.home .post_content,
.page-id-53 .post_content {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.home .post_content > *,
.page-id-53 .post_content > * {
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
}

.groovy-redesign {
  width: 100%;
  overflow: clip;
  color: var(--ink);
  background: var(--white);
}

.groovy-redesign h1,
.groovy-redesign h2,
.groovy-redesign h3 {
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

.groovy-redesign h1::before,
.groovy-redesign h2::before,
.groovy-redesign h3::before {
  content: none !important;
}

.groovy-redesign h2 {
  color: var(--ink) !important;
}

.groovy-redesign .diagnosis-lp h2,
.groovy-redesign .mid-cta h2,
.groovy-redesign .contact h2 {
  color: var(--white) !important;
}

.groovy-redesign .section {
  max-width: 1240px;
}

.groovy-redesign .service.section,
.groovy-redesign .price.section {
  max-width: none;
}

/* Native SWELL header/footer stay in use, but share the redesign tone. */
.home .l-header,
.page-id-53 .l-header,
.groovy-related-page .l-header {
  border-bottom: 1px solid #cfcdc4;
  background: rgba(252, 251, 247, 0.96);
  box-shadow: none;
}

.home .l-header__inner,
.page-id-53 .l-header__inner {
  min-height: 78px;
}

.home .l-footer,
.page-id-53 .l-footer,
.groovy-related-page .l-footer {
  color: #d9d8d2;
  background: #202421;
}

.home .l-footer a:hover,
.page-id-53 .l-footer a:hover,
.groovy-related-page .l-footer a:hover {
  color: #fff;
}

/* Reveal motion */
.groovy-redesign .groovy-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.groovy-redesign .groovy-reveal:nth-child(2) {
  transition-delay: 0.07s;
}

.groovy-redesign .groovy-reveal:nth-child(3) {
  transition-delay: 0.14s;
}

.groovy-redesign .hero__photo img,
.groovy-redesign .visual-lead__media img,
.groovy-redesign .story__visual img {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.groovy-redesign .hero__photo:hover img,
.groovy-redesign .visual-lead__media:hover img,
.groovy-redesign .story__visual:hover img {
  transform: scale(1.025);
}

@media (prefers-reduced-motion: reduce) {
  .groovy-redesign .groovy-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .groovy-redesign img {
    transition: none !important;
  }
}
