:root {
  color-scheme: light;
  --color-bg: #fbf8f1;
  --color-surface: rgba(255, 253, 248, 0.9);
  --color-surface-soft: #f5f0e7;
  --color-text: #34312d;
  --color-muted: #746f68;
  --color-line: #e6ddcf;
  --color-accent: #6f988d;
  --color-accent-dark: #4f756c;
  --color-accent-soft: #e6f0eb;
  --color-warm: #b69565;
  --shadow-soft: 0 14px 34px rgba(92, 77, 55, 0.08);
  --radius-card: 22px;
  --content-width: 1120px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.92), transparent 28rem),
    radial-gradient(circle at 92% 24%, rgba(232, 242, 237, 0.56), transparent 24rem),
    var(--color-bg);
  color: var(--color-text);
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(230, 221, 207, 0.8);
  background: rgba(251, 248, 241, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner,
.section,
.page-hero,
.work-detail {
  width: min(calc(100% - 40px), var(--content-width));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 156px;
  height: auto;
}

.site-nav ul,
.footer-links,
.tag-list,
.link-list {
  list-style: none;
  padding: 0;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  position: relative;
  display: block;
  padding: 8px 0;
  letter-spacing: 0.04em;
}

.site-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  content: "";
}

.menu-button {
  display: none;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--color-surface);
}

.hero {
  width: min(calc(100% - 40px), var(--content-width));
  margin: 0 auto;
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 24px;
  padding: 74px 0 58px;
}

.hero--home {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
  border: 1px solid var(--color-line);
  border-radius: 30px;
  padding: 74px 54px;
  box-shadow: var(--shadow-soft);
}

.hero--home::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 248, 241, 0.98) 0%, rgba(251, 248, 241, 0.88) 34%, rgba(251, 248, 241, 0.18) 70%, transparent 100%);
  content: "";
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--color-accent-dark);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
}

.hero h1,
.page-hero h1,
.work-detail h1 {
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.1vw, 3.8rem);
  line-height: 1.42;
}

.lead {
  margin-top: 24px;
  color: var(--color-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 2;
}

.hero-note {
  margin-top: 18px;
  color: var(--color-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.94rem;
}

.hero-visual {
  display: flex;
  align-self: stretch;
  align-items: end;
  justify-content: center;
  border-radius: 44% 44% 18% 18%;
  background: radial-gradient(circle at 50% 68%, rgba(220, 235, 227, 0.8), transparent 48%);
}

.hero-visual img {
  max-height: 520px;
  object-fit: contain;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--color-accent-dark);
  border-radius: 999px;
  padding: 10px 22px;
  background: var(--color-accent-dark);
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.94rem;
  letter-spacing: 0.05em;
}

.button:hover {
  background: var(--color-accent);
  text-decoration: none;
}

.button--secondary {
  border-color: var(--color-line);
  background: var(--color-surface);
  color: var(--color-text);
}

.button--secondary:hover {
  background: var(--color-surface-soft);
}

.button--disabled {
  border-color: var(--color-line);
  background: #e8e4dc;
  color: #918b83;
  cursor: not-allowed;
}

.section {
  padding: 80px 0;
}

.section--soft {
  width: auto;
  max-width: none;
  background: rgba(255, 253, 248, 0.56);
}

.section--soft > .section-inner {
  width: min(calc(100% - 40px), var(--content-width));
  margin-inline: auto;
}

.section--decor {
  position: relative;
  isolation: isolate;
}

.section--decor > :not(.decor) {
  position: relative;
  z-index: 1;
}

.decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.decor--pickup-leaf {
  bottom: 18px;
  left: max(16px, calc(50% - 660px));
  width: 132px;
  opacity: 0.26;
  transform: rotate(-18deg);
}

.decor--pickup-sparkle {
  top: 38px;
  right: max(18px, calc(50% - 646px));
  width: 82px;
  opacity: 0.56;
}

.decor--features-clover {
  top: 30px;
  right: -36px;
  width: 92px;
  opacity: 0.42;
  transform: rotate(12deg);
}

.decor--features-paw {
  bottom: 20px;
  left: -28px;
  width: 72px;
  opacity: 0.22;
  transform: rotate(-16deg);
}

.page-hero--decor,
.work-detail--decor {
  position: relative;
  isolation: isolate;
}

.page-hero--decor > :not(.decor),
.work-detail--decor > :not(.decor) {
  position: relative;
  z-index: 1;
}

.page-hero > .decor {
  max-height: none;
  justify-self: auto;
}

.decor--hero-sparkle {
  top: 34px;
  left: -54px;
  width: 68px;
  opacity: 0.56;
}

.decor--hero-clover {
  right: -54px;
  bottom: 38px;
  width: 84px;
  opacity: 0.38;
  transform: rotate(14deg);
}

.decor--list-leaf {
  right: max(12px, calc(50% - 666px));
  bottom: 12px;
  width: 124px;
  opacity: 0.2;
  transform: rotate(14deg);
}

.decor--list-paw {
  top: 20px;
  left: max(16px, calc(50% - 646px));
  width: 66px;
  opacity: 0.18;
  transform: rotate(-15deg);
}

.decor--profile-coffee {
  right: max(16px, calc(50% - 644px));
  bottom: 10px;
  width: 98px;
  opacity: 0.28;
  transform: rotate(8deg);
}

.decor--links-clover {
  right: max(18px, calc(50% - 632px));
  bottom: 16px;
  width: 82px;
  opacity: 0.32;
  transform: rotate(10deg);
}

.decor--detail-top {
  top: 26px;
  right: -54px;
  width: 92px;
  opacity: 0.34;
}

.decor--detail-bottom {
  bottom: 24px;
  left: -58px;
  width: 88px;
  opacity: 0.24;
}

.decor--detail-lantern {
  top: 6px;
  right: -48px;
  width: 112px;
  opacity: 0.42;
}

.decor--detail-clover {
  top: 28px;
  right: -44px;
  width: 88px;
  opacity: 0.38;
  transform: rotate(13deg);
}

.decor--detail-sparkle {
  top: 32px;
  right: -42px;
  width: 78px;
  opacity: 0.56;
}

.decor--detail-leaf {
  right: -54px;
  bottom: 20px;
  width: 104px;
  opacity: 0.24;
  transform: rotate(12deg);
}

.decor--detail-paw {
  bottom: 24px;
  left: -48px;
  width: 72px;
  opacity: 0.2;
  transform: rotate(-14deg);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.section-heading h2,
.detail-section h2 {
  font-weight: 500;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
}

.section-heading p {
  color: var(--color-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.work-card {
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.work-card__link {
  display: grid;
  min-height: 100%;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.work-card__link:hover {
  text-decoration: none;
}

.work-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  background: var(--color-surface-soft);
  object-fit: cover;
}

.work-card__body {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 16px;
  background: var(--work-card-tint, rgba(255, 253, 248, 0.96));
}

.work-card--mitsuba-memo {
  --work-card-tint: rgba(232, 242, 218, 0.38);
}

.work-card--akari-memo {
  --work-card-tint: rgba(225, 232, 244, 0.38);
}

.work-card--nyussion {
  --work-card-tint: rgba(242, 230, 222, 0.36);
}

.work-card--doomscrolling-stopper {
  --work-card-tint: rgba(236, 230, 242, 0.34);
}

.work-card--maigo-center {
  --work-card-tint: rgba(221, 242, 239, 0.38);
}

.work-card--kuragechan {
  --work-card-tint: rgba(222, 238, 246, 0.38);
}

.work-card__title {
  margin-top: 10px;
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.work-card__summary {
  flex: 1;
  margin-top: 7px;
  color: var(--color-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.84rem;
  line-height: 1.65;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.work-card .text-link {
  margin-top: 10px;
}

.work-card__category {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.76rem;
}

.tag {
  color: var(--color-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.74rem;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--color-accent-dark);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.9rem;
}

.feature-grid,
.profile-grid,
.detail-grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.profile-card,
.detail-card,
.link-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.profile-card,
.detail-card {
  padding: 26px;
}

.detail-card--note {
  grid-column: 1 / -1;
}

.feature-card h3,
.profile-card h2,
.detail-card h2 {
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.feature-card p,
.profile-card p,
.detail-card p {
  margin-top: 12px;
  color: var(--color-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.9;
}

.welcome {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 30px;
  align-items: center;
  min-height: 250px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  padding: 30px;
  background: linear-gradient(105deg, rgba(231, 241, 235, 0.88), rgba(255, 253, 248, 0.92));
}

.welcome__character {
  width: 520px;
  max-width: none;
  max-height: none;
}

.welcome--decor {
  position: relative;
  overflow: hidden;
}

.welcome--decor > :not(.decor) {
  position: relative;
  z-index: 1;
}

.welcome--decor > .welcome__character {
  position: absolute;
  bottom: -200px;
  left: -120px;
}

.welcome--decor > div {
  grid-column: 2;
}

.decor--welcome-coffee {
  right: 124px;
  bottom: -22px;
  width: 104px;
  opacity: 0.34;
  transform: rotate(7deg);
}

.welcome h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.welcome p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--color-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.85;
}

.welcome .button {
  margin-top: 18px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: 42px;
  padding: 82px 0 62px;
}

.page-hero--wide {
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
}

.page-hero--about {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
}

.page-hero--links {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 28px;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.35vw, 3.2rem);
}

.work-detail h1 {
  font-size: clamp(2rem, 3.35vw, 3.2rem);
}

.work-detail--kuragechan h1 {
  font-size: clamp(1.65rem, 2.45vw, 2.35rem);
}

.page-hero img {
  max-height: 330px;
  justify-self: center;
}

.page-hero__image {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.page-hero__image--portrait {
  aspect-ratio: 6 / 5;
}

.page-hero--links .page-hero__image {
  width: min(100%, 420px);
  justify-self: start;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--color-surface);
  color: var(--color-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.88rem;
}

.filter-button.is-active {
  border-color: var(--color-accent-dark);
  background: var(--color-accent-dark);
  color: #fff;
}

.profile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.24fr);
  gap: 20px;
}

.profile-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.profile-list div {
  border-top: 1px solid var(--color-line);
  padding-top: 12px;
}

.profile-list dt {
  color: var(--color-accent-dark);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.profile-list dd {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.profile-card--site {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding-bottom: 192px;
}

.about-site-visual {
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 176px;
  pointer-events: none;
}

.about-site-visual img {
  position: absolute;
  object-fit: contain;
}

.about-site-visual__calico {
  right: 4px;
  bottom: -6px;
  width: min(100%, 260px);
  opacity: 0.42;
}

.activity-card {
  text-align: center;
}

.activity-card__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 6px;
  background: var(--color-surface-soft);
  object-fit: contain;
}

.section--about-closing {
  padding-top: 18px;
}

.about-closing {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  min-height: 250px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  padding: 30px;
  background: linear-gradient(105deg, rgba(244, 239, 229, 0.92), rgba(255, 253, 248, 0.96));
  box-shadow: var(--shadow-soft);
}

.about-closing__character {
  position: absolute;
  bottom: -200px;
  left: -120px;
  width: 520px;
  max-width: none;
  max-height: none;
}

.about-closing > div {
  grid-column: 2;
}

.about-closing h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.about-closing p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--color-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.85;
}

.about-closing .button {
  margin-top: 18px;
}

.decor--about-closing-paw {
  right: 72px;
  bottom: -14px;
  width: 86px;
  opacity: 0.18;
  transform: rotate(-16deg);
}

.decor--about-closing-sparkle {
  top: 22px;
  right: 18px;
  width: 66px;
  opacity: 0.44;
}

.link-list {
  display: grid;
  gap: 16px;
}

.link-card a {
  display: block;
  padding: 24px;
}

.link-card a:hover {
  text-decoration: none;
}

.link-card h2 {
  font-size: 1.18rem;
  font-weight: 500;
}

.link-card p {
  margin-top: 8px;
  color: var(--color-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.work-detail {
  padding: 88px 0;
}

.work-detail__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  column-gap: 44px;
  row-gap: 16px;
}

.work-detail__intro {
  max-width: 760px;
}

.work-detail__summary {
  margin-top: 20px;
  color: var(--color-accent-dark);
  font-size: 1.18rem;
  line-height: 1.9;
}

.work-detail__description {
  margin-top: 20px;
  color: var(--color-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 2;
}

.work-detail__visual {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.work-detail__visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 52px;
}

.work-pager {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.work-detail__hero > .work-pager {
  grid-column: 2;
}

.work-pager__link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-bottom: 0.16em;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  color: var(--color-accent-dark);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  transition: background-size 160ms ease;
}

.work-pager__link:hover {
  background-size: 100% 1px;
  text-decoration: none;
}

.work-pager__link span {
  color: var(--color-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.work-pager__link--next {
  text-align: right;
}

.notice {
  grid-column: 1 / -1;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  padding: 22px;
  background: var(--color-surface);
  color: var(--color-muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: rgba(255, 253, 248, 0.7);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-credit img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .header-inner,
  .footer-inner,
  .section,
  .page-hero,
  .work-detail,
  .hero,
  .section--soft > .section-inner {
    width: min(calc(100% - 28px), var(--content-width));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 132px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    border: 1px solid var(--color-line);
    border-radius: 18px;
    padding: 10px 18px;
    background: var(--color-surface);
    box-shadow: var(--shadow-soft);
  }

  .site-nav[data-open] {
    display: block;
  }

  .site-nav ul {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 12px 2px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 62px 0 34px;
  }

  .hero--home {
    min-height: 540px;
    align-items: end;
    margin-top: 14px;
    margin-bottom: 14px;
    padding: 34px 24px;
  }

  .hero--home::after {
    background: linear-gradient(0deg, rgba(251, 248, 241, 0.86) 0%, rgba(251, 248, 241, 0.62) 46%, rgba(251, 248, 241, 0.1) 76%, transparent 100%);
  }

  .hero__backdrop {
    filter: saturate(1.04) contrast(1.04);
    object-position: 66% center;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 8px;
  }

  .works-grid,
  .feature-grid,
  .profile-grid,
  .about-overview,
  .detail-grid,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .page-hero {
    gap: 16px;
    padding: 58px 0 40px;
  }

  .page-hero img {
    max-height: 250px;
    order: -1;
  }

  .page-hero__image {
    max-height: none;
  }

  .welcome {
    grid-template-columns: 1fr;
    min-height: 340px;
    padding: 24px 22px 116px;
    text-align: center;
  }

  .welcome--decor > .welcome__character {
    position: absolute;
    bottom: -78px;
    left: -34px;
    width: 246px;
    max-width: 100%;
    z-index: 0;
  }

  .welcome.welcome--decor > div {
    position: static;
    grid-column: auto;
  }

  .welcome--decor > div > :not(.button) {
    position: relative;
    z-index: 1;
  }

  .welcome .button {
    position: absolute;
    right: 22px;
    bottom: 28px;
    z-index: 1;
    margin-top: 0;
  }

  .decor--pickup-leaf,
  .decor--features-paw,
  .decor--list-leaf,
  .decor--list-paw,
  .decor--detail-bottom,
  .decor--detail-leaf,
  .decor--detail-paw {
    display: none;
  }

  .decor--pickup-sparkle {
    top: 22px;
    right: 12px;
    width: 58px;
  }

  .decor--features-clover {
    top: 14px;
    right: -12px;
    width: 68px;
  }

  .decor--hero-sparkle {
    top: 10px;
    left: 0;
    width: 52px;
  }

  .decor--hero-clover {
    right: 0;
    bottom: 14px;
    width: 62px;
  }

  .decor--profile-coffee,
  .decor--links-clover {
    right: 4px;
    bottom: 4px;
    width: 68px;
  }

  .decor--detail-top,
  .decor--detail-lantern,
  .decor--detail-clover,
  .decor--detail-sparkle {
    top: 6px;
    right: 0;
    width: 66px;
    opacity: 0.24;
  }

  .decor--welcome-coffee {
    right: 72px;
    width: 78px;
  }

  .profile-card--site {
    padding-bottom: 152px;
  }

  .about-site-visual {
    height: 136px;
  }

  .about-site-visual__leaf {
    width: 110px;
  }

  .about-site-visual__cat {
    width: 78px;
  }

  .about-site-visual__coffee {
    left: calc(50% - 82px);
    width: 68px;
  }

  .about-site-visual__lantern {
    width: 84px;
  }

  .about-closing {
    grid-template-columns: 1fr;
    min-height: 320px;
    padding: 24px 22px 100px;
    text-align: center;
  }

  .about-closing__character {
    position: absolute;
    bottom: -78px;
    left: -34px;
    width: 246px;
    max-width: 100%;
    z-index: 0;
  }

  .about-closing > div {
    position: static;
    grid-column: auto;
  }

  .about-closing > div > :not(.button) {
    position: relative;
    z-index: 1;
  }

  .about-closing .button {
    position: absolute;
    right: 22px;
    bottom: 28px;
    z-index: 1;
    margin-top: 0;
  }

  .work-detail__hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .work-detail__visual {
    order: -1;
  }

  .work-detail__hero > .work-pager {
    grid-column: auto;
    order: -2;
  }

  .decor--about-closing-paw {
    display: none;
  }

  .decor--about-closing-sparkle {
    top: 12px;
    right: 8px;
    width: 52px;
  }

  .work-detail {
    padding: 62px 0;
  }

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

  .work-pager__link {
    width: fit-content;
  }

  .work-pager__link--next {
    justify-self: end;
    text-align: right;
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .footer-links {
    justify-content: flex-end;
    gap: 14px;
  }
}

@media (max-width: 450px) {
  .hero--home {
    padding: 30px 22px;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 2vw, 2.15rem);
    line-height: 1.45;
  }

  .hero .lead {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.85;
  }

  .hero__backdrop {
    object-position: 68% center;
  }
}
