:root {
  --color-background: #fffaf6;
  --color-surface: #fffdfb;
  --color-surface-blue: #f2f6f7;
  --color-text: #3c3530;
  --color-muted: #786d66;
  --color-main: #6f8fa8;
  --color-main-deep: #4f718b;
  --color-rose: #e7bdb5;
  --color-accent: #c9644f;
  --color-accent-dark: #b65340;
  --color-border: #eadfd7;
  --color-header: #f8fbfb;
  --color-focus: #1f5d8d;
  --color-success: #537d66;
  --font-ja:
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic,
    "Noto Sans JP", sans-serif;
  --font-display:
    "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic,
    sans-serif;
  --font-hero:
    "Hiragino Mincho ProN", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  --font-en: "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
  --container: 1200px;
  --header-height: 82px;
  --section-space: clamp(96px, 10vw, 152px);
  --radius-sm: 6px;
  --radius-md: 10px;
  --line: 1px;
  --motion-fast: 160ms;
  --motion-base: 260ms;
  --ease-standard: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 3000;
  padding: 8px 14px;
  transform: translateY(-160%);
  background: var(--color-text);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.notice-box {
  margin: 24px 0;
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-blue);
  color: var(--color-muted);
}

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

.site-header {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgb(111 143 168 / 12%);
  background: rgb(248 251 251 / 96%);
  transition:
    background-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard);
}

.site-header.is-scrolled {
  background: rgb(248 251 251 / 90%);
  box-shadow: 0 12px 32px rgb(75 101 121 / 11%);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  width: min(1354px, calc(100% - 48px));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  flex: none;
  font-family: var(--font-en);
  font-size: 29px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-navigation__links {
  display: flex;
  align-items: center;
  gap: 17px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.site-navigation__links a {
  position: relative;
  padding: 14px 0;
}

.site-navigation__links a::after,
.arrow-link::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform var(--motion-fast) var(--ease-standard);
}

.site-navigation__links a:hover::after,
.site-navigation__links a:focus-visible::after,
.arrow-link:hover::after,
.arrow-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-navigation__links i {
  color: #b5aaa2;
  font-style: normal;
}

.menu-button {
  display: none;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  box-shadow: 0 8px 20px rgb(150 72 52 / 16%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform var(--motion-fast) var(--ease-standard),
    background-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard);
  overflow: hidden;
  isolation: isolate;
}

.button::before {
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -42%;
  z-index: -1;
  width: 34%;
  transform: rotate(18deg) translateX(-220%);
  background: rgb(255 255 255 / 23%);
  content: "";
  transition: transform 520ms var(--ease-standard);
}

.button:hover::before,
.button:focus-visible::before {
  transform: rotate(18deg) translateX(520%);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--color-accent-dark);
  box-shadow: 0 12px 26px rgb(150 72 52 / 22%);
}

.button--header {
  min-width: 190px;
  min-height: 48px;
  padding-inline: 22px;
  font-size: 14px;
}

.button--large {
  min-width: 340px;
  min-height: 70px;
  font-size: 21px;
}

.button--outline {
  border-color: var(--color-main);
  background: transparent;
  box-shadow: none;
  color: var(--color-main-deep);
}

.button--outline:hover {
  background: var(--color-main);
  box-shadow: none;
  color: #fff;
}

main {
  padding-top: var(--header-height);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero__inner {
  position: relative;
  width: min(var(--container), calc(100% - 64px));
  min-height: 620px;
  margin-inline: auto;
  padding-top: 90px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-family: var(--font-hero);
  font-feature-settings: "palt" 1;
  font-size: clamp(48px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.35;
}

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

.hero__support {
  max-width: 690px;
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.arrow-link {
  position: relative;
  display: inline-flex;
  width: max-content;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid #aa9f98;
  font-size: 14px;
  font-weight: 600;
}

.arrow-link::after {
  bottom: -1px;
  background: var(--color-accent);
}

.arrow-link span {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 18px;
}

.hero__visual {
  position: absolute;
  z-index: 1;
  top: 42px;
  right: 0;
  width: 475px;
  height: 540px;
  margin: 0;
}

.hero__rose,
.hero__blue {
  position: absolute;
  content: "";
}

.hero__rose {
  top: 18px;
  left: 10px;
  width: 430px;
  height: 490px;
  border-radius: 53% 47% 49% 51% / 46% 52% 48% 54%;
  background: var(--color-rose);
  opacity: 0.88;
  transform: rotate(-4deg);
}

.hero__blue {
  top: 78px;
  right: 0;
  width: 180px;
  height: 180px;
  border-radius: 46% 54% 57% 43% / 52% 44% 56% 48%;
  background: rgb(111 143 168 / 21%);
  transform: rotate(12deg);
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  overflow: visible;
  place-items: center;
}

.hero__photo img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transform: scale(1.35);
  transform-origin: center;
}

.hero__badge {
  position: absolute;
  right: 0;
  bottom: 24px;
  z-index: 2;
  display: grid;
  min-width: 176px;
  gap: 2px;
  padding: 12px 18px 11px;
  border: 1px solid rgb(111 143 168 / 24%);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  box-shadow: 0 10px 28px rgb(75 101 121 / 14%);
  font-family: var(--font-en);
  line-height: 1.2;
}

.hero__badge small {
  color: var(--color-main);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.hero__badge strong {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.motion-ready .hero .eyebrow,
.motion-ready .hero h1,
.motion-ready .hero__support,
.motion-ready .hero__actions {
  opacity: 0;
  animation: hero-copy-in 760ms var(--ease-standard) forwards;
}

.motion-ready .hero h1 {
  animation-delay: 90ms;
}

.motion-ready .hero__support {
  animation-delay: 180ms;
}

.motion-ready .hero__actions {
  animation-delay: 270ms;
}

.motion-ready .hero__visual {
  opacity: 0;
  animation: hero-visual-in 920ms 120ms var(--ease-standard) forwards;
}

.motion-ready .hero__rose {
  animation: organic-float 8s ease-in-out 1s infinite alternate;
}

.motion-ready .hero__blue {
  animation: organic-float-reverse 7s ease-in-out 400ms infinite alternate;
}

.motion-ready .hero__photo {
  animation: portrait-float 5.8s ease-in-out 1.1s infinite;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section--surface {
  background: var(--color-surface);
}

.section--blue {
  background: var(--color-surface-blue);
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading__index {
  margin: 0;
  color: rgb(111 143 168 / 11%);
  font-family: var(--font-serif);
  font-size: clamp(88px, 9vw, 138px);
  line-height: 0.76;
}

.section-heading__copy {
  padding-bottom: 4px;
}

.section-heading__copy p {
  max-width: 670px;
  margin: 12px 0 0;
  color: var(--color-muted);
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.section-title small {
  display: block;
  margin-bottom: 6px;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.profile-card {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  padding: 54px 64px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-blue);
}

.profile-card__identity {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.profile-card__photo {
  position: relative;
  width: 250px;
  height: 250px;
}

.profile-card__photo::before,
.profile-card__photo::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.profile-card__photo::before {
  top: -24px;
  left: -28px;
  width: 264px;
  height: 264px;
  border-radius: 53% 47% 49% 51% / 46% 52% 48% 54%;
  background: var(--color-rose);
  opacity: 0.85;
  transform: rotate(-6deg);
}

.profile-card__photo::after {
  right: -22px;
  bottom: -20px;
  width: 108px;
  height: 108px;
  border-radius: 46% 54% 57% 43% / 52% 44% 56% 48%;
  background: rgb(111 143 168 / 22%);
  transform: rotate(10deg);
}

.profile-card__photo img {
  position: relative;
  width: 250px;
  height: 250px;
  object-fit: contain;
}

.profile-card__name h3,
.profile-card__name p,
.profile-card__text p {
  margin: 0;
}

.profile-card__name h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.35;
}

.profile-card__name h3 span {
  display: block;
  margin-top: 4px;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.profile-card__role {
  margin-top: 7px !important;
  color: var(--color-muted);
  font-size: 15px;
  letter-spacing: 0.1em;
}

.profile-card__meta {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.profile-card__description {
  margin-top: 12px !important;
  line-height: 1.95;
}

.about-block {
  margin-top: 72px;
}

.subsection-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
}

.subsection-heading h3 {
  margin: 0;
  color: var(--color-main-deep);
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.subsection-heading::after {
  height: 1px;
  flex: 1;
  background: rgb(111 143 168 / 58%);
  content: "";
}

.biography {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  min-height: 520px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.timeline {
  padding: 58px 64px;
}

.timeline__item {
  position: relative;
  padding: 0 0 50px 42px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  position: absolute;
  top: 9px;
  left: 0;
  z-index: 1;
  width: 13px;
  height: 13px;
  border: 4px solid var(--color-surface);
  border-radius: 50%;
  background: var(--color-main);
  box-shadow: 0 0 0 1px var(--color-main);
  content: "";
}

.timeline__item:not(:last-child)::after {
  position: absolute;
  top: 24px;
  bottom: -5px;
  left: 6px;
  width: 1px;
  background: rgb(111 143 168 / 48%);
  content: "";
}

.timeline__item h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.timeline__item p {
  margin: 7px 0 0;
  color: var(--color-muted);
  line-height: 1.8;
}

.biography__visual {
  min-height: 100%;
  object-fit: cover;
}

.dream-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
}

.dream-item {
  min-height: 230px;
  padding: 38px 40px;
  text-align: center;
}

.dream-item + .dream-item {
  border-left: 1px dashed var(--color-rose);
}

.dream-item .icon {
  width: 34px;
  height: 34px;
  margin-inline: auto;
  color: var(--color-accent);
}

.dream-item h4 {
  margin: 18px 0 0;
  font-size: 18px;
}

.dream-item p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 15px;
}

.skill-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--color-border);
}

.skill-item {
  display: grid;
  min-height: 150px;
  place-items: center;
  align-content: center;
  gap: 12px;
  background: var(--color-surface);
}

.skill-item + .skill-item {
  border-left: 1px solid var(--color-border);
}

.skill-item .icon {
  width: 33px;
  height: 33px;
  color: var(--color-main);
}

.skill-item span {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 650;
}

.skill-item,
.service-item,
.reason-item,
.price-card {
  transition:
    transform var(--motion-base) var(--ease-standard),
    background-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard);
}

.skill-item:hover,
.reason-item:hover,
.price-card:hover {
  z-index: 1;
  transform: translateY(-5px);
  background: var(--color-surface);
  box-shadow: 0 16px 36px rgb(75 101 121 / 10%);
}

.skill-item .icon,
.service-item__icon {
  transition: transform var(--motion-base) var(--ease-standard);
}

.skill-item:hover .icon,
.service-item:hover .service-item__icon {
  transform: translateY(-3px) rotate(-3deg);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 42px 28px;
}

.work-card {
  grid-column: span 4;
}

.work-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #e8edf0;
}

.work-card__image::after {
  position: absolute;
  inset: 0;
  background: rgb(79 113 139 / 0%);
  content: "";
  transition: background var(--motion-base) var(--ease-standard);
}

.work-card__image:hover::after {
  background: rgb(79 113 139 / 10%);
}

.work-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--motion-base) var(--ease-standard);
}

.work-card__image:hover img {
  transform: scale(1.018);
}

.work-card--portrait .work-card__image img {
  aspect-ratio: 4 / 5;
  object-position: top;
}

.work-card__body {
  padding-top: 18px;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--color-main-deep);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.work-meta span + span {
  color: var(--color-muted);
}

.work-card h3 {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.5;
}

.work-card p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.8;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

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

.service-item {
  display: grid;
  grid-template-columns: 84px 260px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  min-height: 156px;
  border-bottom: 1px solid var(--color-border);
}

.service-item__icon {
  display: grid;
  width: 68px;
  height: 68px;
  border: 1px solid rgb(111 143 168 / 38%);
  border-radius: 50%;
  color: var(--color-main);
  place-items: center;
}

.service-item__icon .icon {
  width: 30px;
  height: 30px;
}

.service-item h3,
.service-item p {
  margin: 0;
}

.service-item h3 {
  font-size: 22px;
}

.service-item p {
  max-width: 620px;
  color: var(--color-muted);
}

.service-item:hover {
  background: rgb(242 246 247 / 68%);
  box-shadow: inset 4px 0 0 rgb(111 143 168 / 35%);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 52px;
  padding: 18px 0;
}

.process-item {
  position: relative;
  text-align: center;
}

.process-item:not(:last-child)::after {
  position: absolute;
  top: 53px;
  right: -42px;
  width: 32px;
  height: 1px;
  background: var(--color-main);
  content: "";
}

.process-item:not(:last-child)::before {
  position: absolute;
  top: 49px;
  right: -42px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--color-main);
  border-right: 1px solid var(--color-main);
  content: "";
  transform: rotate(45deg);
}

.process-item__node {
  display: grid;
  width: 106px;
  height: 106px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--color-main-deep);
  color: #fff;
  place-items: center;
}

.process-item__node .icon {
  width: 38px;
  height: 38px;
}

.process-item small {
  display: block;
  margin-top: 18px;
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.process-item h3 {
  margin: 4px 0 0;
  font-size: 18px;
}

.process-item p {
  margin: 8px auto 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.reason-item {
  min-height: 300px;
  padding: 38px 48px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.reason-item + .reason-item {
  border-left: 1px solid var(--color-border);
}

.reason-item .icon {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  color: var(--color-main);
}

.reason-item small {
  display: block;
  margin-top: 20px;
  color: var(--color-rose);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.reason-item h3 {
  margin: 5px 0 0;
  font-size: 20px;
}

.reason-item p {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.price-primary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--color-border);
}

.price-card {
  min-height: 260px;
  padding: 34px;
  background: var(--color-surface);
}

.price-card:nth-child(even) {
  border-left: 1px solid var(--color-border);
}

.price-card:nth-child(n + 3) {
  border-top: 1px solid var(--color-border);
}

.price-card h3 {
  margin: 0;
  font-size: 18px;
}

.price-card__amount {
  margin: 18px 0 0;
  font-family: var(--font-en);
  font-size: 36px;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.price-card__amount small {
  font-size: 14px;
  font-weight: 600;
}

.price-card p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.price-note {
  display: grid;
  align-content: center;
  padding: 48px;
  background: var(--color-main-deep);
  color: #fff;
}

.price-note .eyebrow {
  color: var(--color-rose);
}

.price-note h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.5;
}

.price-note p {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 78%);
}

.price-footnote {
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 13px;
}

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

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 20px;
  padding: 18px 64px 18px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 12px;
  height: 12px;
  border-right: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
  content: "";
  transform: translateY(-70%) rotate(45deg);
  transition: transform var(--motion-fast) var(--ease-standard);
}

.faq-item[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq-item summary span {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.faq-item__answer {
  max-width: 850px;
  padding: 0 0 28px 38px;
  color: var(--color-muted);
}

.contact-panel {
  position: relative;
  padding: 86px 48px;
  overflow: hidden;
  background: var(--color-main-deep);
  color: #fff;
  text-align: center;
}

.contact-panel::before,
.contact-panel::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.contact-panel::before {
  top: -110px;
  left: -75px;
  width: 280px;
  height: 280px;
  background: rgb(231 189 181 / 22%);
}

.contact-panel::after {
  right: -90px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border: 1px solid rgb(255 255 255 / 20%);
}

.contact-panel__inner {
  position: relative;
  z-index: 1;
}

.contact-panel .eyebrow {
  color: var(--color-rose);
}

.contact-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.45;
}

.contact-panel p {
  margin: 18px 0 0;
  color: rgb(255 255 255 / 82%);
}

.contact-panel .button {
  min-width: 380px;
  min-height: 72px;
  margin-top: 34px;
  font-size: 21px;
}

.contact-form {
  max-width: 480px;
  margin: 40px auto 0;
  text-align: left;
}

.contact-form__hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form__row {
  margin-top: 20px;
}

.contact-form__row:first-of-type {
  margin-top: 0;
}

.contact-form__row label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: rgb(255 255 255 / 88%);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-form__row label span {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact-form__row input,
.contact-form__row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 10%);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
}

.contact-form__row input::placeholder,
.contact-form__row textarea::placeholder {
  color: rgb(255 255 255 / 50%);
}

.contact-form__row input:focus,
.contact-form__row textarea:focus {
  outline: 2px solid var(--color-rose);
  outline-offset: 2px;
}

.contact-form .button {
  width: 100%;
  margin-top: 30px;
}

.contact-panel__note {
  display: block;
  margin-top: 12px;
  color: rgb(255 255 255 / 66%);
  font-size: 12px;
}

.site-footer {
  padding: 44px 0 30px;
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 12px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 11px;
}

.icon {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-hero {
  padding: 108px 0 78px;
  border-bottom: 1px solid var(--color-border);
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 56px;
  align-items: end;
}

.page-hero__number {
  margin: 0;
  color: rgb(111 143 168 / 12%);
  font-family: var(--font-serif);
  font-size: 130px;
  line-height: 0.8;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.3;
}

.page-hero p:not(.page-hero__number, .eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--color-muted);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--color-main);
  background: var(--color-main);
  color: #fff;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 58px 34px;
}

.archive-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.archive-card__image {
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: #e8edf0;
}

.archive-card__image img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.archive-card__body {
  padding: 12px 0 12px 24px;
}

.archive-card h2 {
  margin: 9px 0 0;
  font-size: 20px;
  line-height: 1.5;
}

.archive-card p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}

.archive-card .arrow-link {
  margin-top: 18px;
}

.detail-root {
  padding: 108px 0 120px;
}

.detail-heading {
  max-width: 850px;
}

.detail-heading h1 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.7vw, 58px);
  line-height: 1.4;
}

.detail-heading > p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--color-muted);
}

.detail-visual {
  margin: 64px 0 0;
  padding: 38px;
  border: 1px solid var(--color-border);
  background: var(--color-surface-blue);
}

.detail-visual img {
  width: 100%;
  max-height: 900px;
  object-fit: contain;
}

.work-embed {
  --embed-h: 760px;
  --embed-bar-h: 36px;
  margin: 64px 0 0;
}

.work-embed__frame {
  margin-top: 18px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 48px -28px rgba(20, 30, 45, 0.32);
  overflow: hidden;
}

.work-embed__bar {
  height: var(--embed-bar-h);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: #eef0f3;
  border-bottom: 1px solid var(--color-border);
}

.work-embed__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7dbe1;
}

.work-embed__bar span:nth-child(1) {
  background: #ec6a5e;
}

.work-embed__bar span:nth-child(2) {
  background: #f4bf50;
}

.work-embed__bar span:nth-child(3) {
  background: #61c454;
}

.work-embed__url {
  margin-left: 8px;
  height: 18px;
  max-width: 260px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--color-border);
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.02em;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  padding: 0 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.work-embed__frame iframe {
  display: block;
  width: 100%;
  height: var(--embed-h);
  border: 0;
  background: #fff;
}

.work-embed__hint {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .work-embed {
    --embed-h: 600px;
    --embed-bar-h: 32px;
  }
}

@media (max-width: 640px) {
  .work-embed {
    --embed-h: 480px;
    --embed-bar-h: 26px;
  }

  .work-embed__url {
    font-size: 9px;
  }
}

.detail-information {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 86px;
  margin-top: 76px;
}

.detail-information dl {
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.detail-information dl div {
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.detail-information dt {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.detail-information dd {
  margin: 7px 0 0;
}

.detail-story {
  display: grid;
  gap: 46px;
}

.detail-story h2 {
  margin: 0;
  font-size: 26px;
}

.detail-story p:last-child {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.detail-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 86px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.detail-pagination a {
  display: grid;
  min-height: 120px;
  align-content: center;
  gap: 5px;
  padding: 24px 34px;
}

.detail-pagination a + a {
  border-left: 1px solid var(--color-border);
  text-align: right;
}

.detail-pagination small {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.motion-ready .reveal-target {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms var(--ease-standard),
    transform 720ms var(--ease-standard);
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
}

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

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes hero-visual-in {
  from {
    opacity: 0;
    filter: blur(6px);
  }

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

@keyframes organic-float {
  from {
    transform: rotate(-4deg) translate3d(0, 0, 0);
  }

  to {
    transform: rotate(-1deg) translate3d(6px, -9px, 0);
  }
}

@keyframes organic-float-reverse {
  from {
    transform: rotate(12deg) translate3d(0, 0, 0);
  }

  to {
    transform: rotate(8deg) translate3d(-7px, 8px, 0);
  }
}

@keyframes portrait-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 1180px) {
  :root {
    --container: 960px;
  }

  .site-header__inner {
    width: calc(100% - 40px);
  }

  .brand {
    font-size: 24px;
  }

  .site-navigation__links {
    gap: 11px;
    font-size: 11px;
  }

  .button--header {
    min-width: 160px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 580px;
    font-size: 48px;
  }

  .hero__support {
    max-width: 580px;
  }

  .hero__visual {
    right: -18px;
    transform: scale(0.88);
    transform-origin: right center;
  }

  .profile-card {
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 42px;
    padding-inline: 44px;
  }

  .profile-card__identity {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
  }

  .profile-card__photo,
  .profile-card__photo img {
    width: 220px;
    height: 220px;
  }

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

  .archive-card__body {
    padding-left: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
    --section-space: 96px;
  }

  .container,
  .hero__inner {
    width: min(720px, calc(100% - 48px));
  }

  .site-header__inner {
    width: calc(100% - 32px);
  }

  .site-navigation {
    position: fixed;
    z-index: 1150;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - var(--header-height));
    padding: 24px;
    overflow-y: auto;
    transform: translateY(-16px);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
    box-shadow: 0 18px 34px rgb(75 101 121 / 14%);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity var(--motion-fast) var(--ease-standard),
      transform var(--motion-fast) var(--ease-standard);
  }

  .nav-open .site-navigation {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-navigation__links {
    display: grid;
    gap: 0;
  }

  .site-navigation__links a {
    display: flex;
    min-height: 50px;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    font-family: var(--font-ja);
    font-size: 15px;
  }

  .site-navigation__links i {
    display: none;
  }

  .button--header {
    margin-top: 20px;
  }

  .menu-button {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 6px;
    border: 0;
    background: transparent;
    cursor: pointer;
    place-items: center;
  }

  .menu-button small {
    color: var(--color-main);
    font-family: var(--font-en);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
  }

  .menu-button span {
    position: relative;
    display: block;
    width: 25px;
    height: 14px;
  }

  .menu-button span::before,
  .menu-button span::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    background: var(--color-text);
    content: "";
    transition:
      top var(--motion-fast) var(--ease-standard),
      transform var(--motion-fast) var(--ease-standard);
  }

  .menu-button span::before {
    top: 3px;
  }

  .menu-button span::after {
    top: 11px;
  }

  .menu-button[aria-expanded="true"] span::before {
    top: 7px;
    transform: rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span::after {
    top: 7px;
    transform: rotate(-45deg);
  }

  .hero__inner {
    min-height: 600px;
    padding-top: 64px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 55%;
    font-size: 42px;
  }

  .hero__support {
    max-width: 55%;
  }

  .hero__visual {
    top: 36px;
    right: -72px;
    transform: scale(0.74);
  }

  .section-heading {
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 30px;
  }

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

  .profile-card__identity {
    width: 440px;
    max-width: 100%;
    margin-inline: auto;
  }

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

  .biography__visual {
    width: 100%;
    max-height: 480px;
  }

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

  .dream-item {
    min-height: 0;
  }

  .dream-item + .dream-item {
    border-top: 1px dashed var(--color-rose);
    border-left: 0;
  }

  .skill-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .skill-item:nth-child(4) {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .skill-item:nth-child(5) {
    border-top: 1px solid var(--color-border);
  }

  .works-grid {
    gap: 38px 22px;
  }

  .work-card,
  .work-card:first-child,
  .work-card:nth-child(2),
  .work-card:nth-child(5),
  .work-card:nth-child(8) {
    grid-column: span 6;
    padding-top: 0;
  }

  .work-card:nth-child(6),
  .work-card:nth-child(9) {
    grid-column: span 6;
  }

  .service-item {
    grid-template-columns: 72px 210px minmax(0, 1fr);
    gap: 24px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 58px 60px;
  }

  .process-item:nth-child(2)::after,
  .process-item:nth-child(2)::before {
    display: none;
  }

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

  .reason-item {
    min-height: 0;
  }

  .reason-item + .reason-item {
    border-top: 0;
    border-left: 0;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .page-hero__inner {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 32px;
  }

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

  .archive-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .archive-card__body {
    padding-left: 24px;
  }

  .detail-information {
    gap: 48px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
    --section-space: 78px;
  }

  body {
    font-size: 16px;
  }

  .desktop-only {
    display: none;
  }

  .container,
  .hero__inner {
    width: calc(100% - 32px);
  }

  .brand {
    font-size: 19px;
  }

  .hero__inner {
    min-height: 0;
    padding: 30px 4px 24px;
  }

  .hero__copy {
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(34px, 10.13vw, 38px);
    line-height: 1.28;
  }

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

  .hero__support {
    max-width: none;
    margin-top: 14px;
    font-size: 16px;
  }

  .hero__visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(316px, 100%);
    height: 284px;
    margin: 12px auto 0;
    transform: none;
  }

  .hero__rose {
    top: 17px;
    left: 4px;
    width: 280px;
    height: 258px;
  }

  .hero__blue {
    top: 5px;
    width: 108px;
    height: 108px;
  }

  .hero__photo {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero__photo img {
    width: 100%;
    height: 100%;
    transform: scale(1.18);
  }

  .hero__badge {
    bottom: 16px;
    min-width: 146px;
    padding: 9px 12px 8px;
  }

  .hero__badge small {
    font-size: 8px;
  }

  .hero__badge strong {
    font-size: 12px;
  }

  .hero__actions {
    display: grid;
    gap: 5px;
    margin-top: 14px;
  }

  .button--large {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 18px;
  }

  .hero__actions .arrow-link {
    justify-self: center;
  }

  .section-heading {
    display: block;
    margin-bottom: 42px;
  }

  .section-heading__index {
    position: absolute;
    top: -32px;
    right: 0;
    font-size: 100px;
  }

  .section-title {
    font-size: 32px;
  }

  .profile-card {
    display: block;
    padding: 42px 16px 30px;
  }

  .profile-card__identity {
    width: 301px;
    max-width: 100%;
    grid-template-columns: 160px 125px;
    gap: 16px;
    margin-inline: auto;
  }

  .profile-card__photo,
  .profile-card__photo img {
    width: 160px;
    height: 160px;
  }

  .profile-card__photo::before {
    top: -15px;
    left: -18px;
    width: 170px;
    height: 170px;
  }

  .profile-card__photo::after {
    right: -14px;
    bottom: -13px;
    width: 70px;
    height: 70px;
  }

  .profile-card__name h3 {
    font-size: 24px;
  }

  .profile-card__text {
    margin-top: 24px;
  }

  .profile-card__description {
    font-size: 16px;
    line-height: 1.9;
  }

  .about-block {
    margin-top: 56px;
  }

  .subsection-heading {
    gap: 12px;
    margin-bottom: 24px;
  }

  .subsection-heading h3 {
    font-size: 21px;
  }

  .timeline {
    padding: 38px 24px;
  }

  .timeline__item {
    padding-left: 34px;
  }

  .biography {
    min-height: 0;
  }

  .biography__visual {
    max-height: 360px;
  }

  .dream-item {
    padding: 32px 20px;
  }

  .skill-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .skill-item {
    min-height: 126px;
  }

  .skill-item:nth-child(3) {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .skill-item:nth-child(4) {
    border-left: 1px solid var(--color-border);
  }

  .skill-item:nth-child(5) {
    border-left: 0;
  }

  .works-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card:first-child,
  .work-card:nth-child(2),
  .work-card:nth-child(5),
  .work-card:nth-child(6),
  .work-card:nth-child(8),
  .work-card:nth-child(9) {
    grid-column: 1;
  }

  .work-card__image img,
  .work-card--portrait .work-card__image img {
    aspect-ratio: 4 / 3;
  }

  .section-action {
    margin-top: 46px;
  }

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

  .service-item {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 24px 0;
  }

  .service-item__icon {
    width: 54px;
    height: 54px;
  }

  .service-item h3 {
    font-size: 19px;
  }

  .service-item p {
    grid-column: 1 / -1;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-item {
    display: grid;
    grid-template-columns: 76px 1fr;
    min-height: 132px;
    align-items: center;
    gap: 22px;
    text-align: left;
  }

  .process-item__node {
    width: 76px;
    height: 76px;
  }

  .process-item__node .icon {
    width: 29px;
    height: 29px;
  }

  .process-item:not(:last-child)::after {
    top: 103px;
    right: auto;
    bottom: -28px;
    left: 38px;
    width: 1px;
    height: 56px;
  }

  .process-item:not(:last-child)::before {
    display: none;
  }

  .process-item:nth-child(2)::after {
    display: block;
  }

  .process-item__copy small {
    margin-top: 0;
  }

  .process-item p {
    margin-left: 0;
  }

  .reason-item {
    padding: 32px 20px;
  }

  .price-primary {
    grid-template-columns: 1fr;
  }

  .price-card:nth-child(even) {
    border-left: 0;
  }

  .price-card:nth-child(n + 2) {
    border-top: 1px solid var(--color-border);
  }

  .price-note {
    padding: 38px 28px;
  }

  .faq-item summary {
    min-height: 76px;
    padding-right: 46px;
    font-size: 15px;
  }

  .faq-item__answer {
    padding-left: 0;
  }

  .contact-panel {
    padding: 64px 18px;
  }

  .contact-panel .button {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    font-size: 18px;
  }

  .site-footer__top,
  .site-footer__bottom {
    display: grid;
    justify-items: start;
  }

  .site-footer__nav {
    margin-top: 20px;
  }

  .page-hero {
    padding: 76px 0 58px;
  }

  .page-hero__inner {
    display: block;
  }

  .page-hero__number {
    position: absolute;
    right: 16px;
    font-size: 96px;
  }

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

  .filter-bar {
    gap: 8px;
  }

  .filter-button {
    min-height: 44px;
    padding-inline: 14px;
  }

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

  .archive-card__body {
    padding-left: 0;
  }

  .archive-card__image img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .detail-root {
    padding: 76px 0 90px;
  }

  .detail-visual {
    margin-top: 42px;
    padding: 14px;
  }

  .detail-information {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 54px;
  }

  .detail-pagination {
    grid-template-columns: 1fr;
  }

  .detail-pagination a + a {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }
}

@media (max-width: 349px) {
  .site-header__inner {
    width: calc(100% - 24px);
  }

  .brand {
    font-size: 17px;
  }

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

  .profile-card__identity {
    width: 100%;
    grid-template-columns: 144px minmax(0, 1fr);
    gap: 12px;
  }

  .profile-card__photo,
  .profile-card__photo img {
    width: 144px;
    height: 144px;
  }

  .profile-card__role {
    font-size: 12px;
  }

  .price-card {
    padding: 28px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-target {
    opacity: 1 !important;
    transform: none !important;
  }
}
