:root {
  --bg: #f6f0e8;
  --bg-soft: #fbf7f2;
  --panel: #efe6d8;
  --ink: #312116;
  --muted: #735b49;
  --accent: #d4835d;
  --accent-deep: #b6643f;
  --accent-soft: rgba(212, 131, 93, 0.16);
  --cool: #6f8f8d;
  --line: rgba(73, 49, 33, 0.14);
  --brown: #4d3727;
  --brown-soft: #624733;
  --white: #fffdf9;
  --shadow: 0 28px 70px rgba(77, 55, 39, 0.14);
  --shadow-soft: 0 16px 36px rgba(77, 55, 39, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-pill: 999px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(212, 131, 93, 0.08), transparent 22rem),
    linear-gradient(180deg, #faf6f0 0%, var(--bg) 100%);
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(73, 49, 33, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(77, 55, 39, 0.15);
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-copy strong,
.brand-footer .brand-copy strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
}

.brand-copy span:last-child {
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #879666;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  font-size: 1rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

.site-nav a:first-child {
  color: var(--accent-deep);
  font-weight: 700;
}

.site-nav a:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

.hero {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(48, 32, 21, 0.76), rgba(48, 32, 21, 0.34) 52%, rgba(48, 32, 21, 0.26)),
    linear-gradient(135deg, #7d5a40 0%, #5f432f 42%, #3f2d21 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 224, 183, 0.14), transparent 12rem),
    radial-gradient(circle at 76% 78%, rgba(214, 137, 85, 0.22), transparent 16rem);
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.22)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 148px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 132px
    );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: 1rem;
  min-height: 78vh;
  padding: 4.5rem 0 4.25rem;
}

.hero-copy {
  max-width: 38rem;
  color: var(--white);
}

.eyebrow {
  margin-bottom: 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-cool {
  color: var(--cool);
}

.hero h1,
.catalog h2,
.about h2,
.social-panel h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 7vw, 5.85rem);
}

.hero-text {
  max-width: 33rem;
  margin-top: 1.6rem;
  font-size: 1.5rem;
  line-height: 1.45;
  color: rgba(255, 245, 235, 0.88);
}

.hero-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.3rem;
}

.button,
.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible,
.social-button:hover,
.social-button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 18px 34px rgba(212, 131, 93, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #dd8d67;
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.hero-art {
  position: relative;
  min-height: 36rem;
}

.hero-art-glow {
  position: absolute;
  inset: 8% 7% 10% 22%;
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 78%, rgba(255, 198, 140, 0.1), transparent 14rem),
    linear-gradient(180deg, rgba(255, 244, 226, 0.1), rgba(74, 48, 31, 0.18));
  backdrop-filter: blur(6px);
}

.hero-logo {
  position: absolute;
  top: 0.8rem;
  right: 1.8rem;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 248, 240, 0.32);
}

.hero-figure {
  position: absolute;
  bottom: 3rem;
  width: 10rem;
  border-radius: 5rem 5rem 3.3rem 3.3rem;
  background: linear-gradient(180deg, rgba(244, 225, 201, 0.96), rgba(201, 167, 135, 0.94));
  box-shadow: var(--shadow);
}

.hero-figure::before,
.hero-figure::after {
  content: "";
  position: absolute;
  top: -3.3rem;
  width: 2.2rem;
  height: 4.5rem;
  border-radius: 2rem;
  background: inherit;
}

.hero-figure::before {
  left: 1.6rem;
}

.hero-figure::after {
  right: 1.6rem;
}

.hero-figure-fox {
  left: 1.8rem;
  height: 15.5rem;
  background: linear-gradient(180deg, #cf7e43, #aa5f32);
}

.hero-figure-fox::before,
.hero-figure-fox::after {
  top: -2.8rem;
  width: 2.6rem;
  height: 3.2rem;
  border-radius: 0.6rem 2rem 0.5rem 1.6rem;
  background: linear-gradient(180deg, #d48754, #ab6134);
}

.hero-figure-deer {
  left: 13.6rem;
  bottom: 2.4rem;
  width: 10.8rem;
  height: 15rem;
}

.hero-figure-deer::before,
.hero-figure-deer::after {
  top: -2.4rem;
  width: 2rem;
  height: 3.1rem;
}

.hero-figure-rabbit {
  right: 2rem;
  width: 9.6rem;
  height: 17rem;
  background: linear-gradient(180deg, #fbf4eb, #d8c0ac);
}

.hero-figure-rabbit::before,
.hero-figure-rabbit::after {
  top: -5rem;
  width: 1.9rem;
  height: 6rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, #faf1e6, #e0c6b2);
}

.hero-yarn {
  position: absolute;
  border-radius: 50%;
  box-shadow: inset -16px -10px 22px rgba(0, 0, 0, 0.14);
}

.hero-yarn-one {
  right: 1.6rem;
  bottom: 2rem;
  width: 6.6rem;
  height: 6.6rem;
  background: radial-gradient(circle at 36% 32%, #ca7b42, #8a4b27);
}

.hero-yarn-two {
  right: 7rem;
  bottom: 3rem;
  width: 5.6rem;
  height: 5.6rem;
  background: radial-gradient(circle at 36% 32%, #b88927, #8a6112);
}

.catalog,
.about,
.social-band {
  padding: 6.5rem 0;
}

.section-heading {
  margin-bottom: 3rem;
}

.section-heading-centered {
  text-align: center;
}

.catalog h2,
.about h2,
.social-panel h2 {
  font-size: clamp(2.6rem, 4vw, 4.25rem);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.catalog-card {
  display: grid;
  gap: 1rem;
}

.catalog-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.catalog-card p {
  max-width: 22rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.card-visual {
  position: relative;
  overflow: hidden;
  min-height: 23rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.4), transparent 10rem),
    linear-gradient(180deg, #ceb291, #a88764);
  box-shadow: var(--shadow-soft);
}

.card-visual-amigurumi {
  background:
    radial-gradient(circle at top left, rgba(255, 250, 242, 0.8), transparent 9rem),
    linear-gradient(180deg, #af8a63, #70563f);
}

.card-visual-jewelry {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.55), transparent 9rem),
    linear-gradient(180deg, #7d8790, #51606d);
}

.card-visual-decor {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.55), transparent 8rem),
    linear-gradient(180deg, #d8d7cd, #9fa18d 62%, #7e7d69);
}

.toy,
.gem,
.basket,
.stem {
  position: absolute;
}

.toy {
  bottom: 2rem;
  width: 5.7rem;
  border-radius: 2.8rem;
  box-shadow: 0 12px 24px rgba(55, 35, 25, 0.18);
}

.toy::before,
.toy::after {
  content: "";
  position: absolute;
}

.toy-fox {
  left: 2rem;
  height: 9.4rem;
  background: linear-gradient(180deg, #d78545, #9d5a31);
}

.toy-fox::before,
.toy-fox::after {
  top: -1.8rem;
  width: 1.6rem;
  height: 2rem;
  background: #c7753d;
  border-radius: 0.3rem 1.4rem 0.3rem 1rem;
}

.toy-fox::before {
  left: 0.9rem;
}

.toy-fox::after {
  right: 0.9rem;
}

.toy-rabbit {
  left: 8rem;
  height: 10.6rem;
  background: linear-gradient(180deg, #e8d4c2, #c7a98a);
}

.toy-rabbit::before,
.toy-rabbit::after {
  top: -3.2rem;
  width: 1.3rem;
  height: 3.7rem;
  border-radius: 2rem;
  background: #ead9c9;
}

.toy-rabbit::before {
  left: 1rem;
}

.toy-rabbit::after {
  right: 1rem;
}

.toy-bear {
  right: 2rem;
  height: 9.8rem;
  background: linear-gradient(180deg, #b58a53, #855f38);
}

.toy-bear::before,
.toy-bear::after {
  top: -0.5rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #ac804e;
}

.toy-bear::before {
  left: 0.4rem;
}

.toy-bear::after {
  right: 0.4rem;
}

.gem {
  width: 4.1rem;
  height: 6rem;
  clip-path: polygon(50% 0%, 100% 22%, 85% 100%, 15% 100%, 0% 22%);
  background: linear-gradient(180deg, #7f55b7, #4b2f75);
  border: 4px solid rgba(211, 173, 112, 0.75);
  box-shadow: 0 10px 20px rgba(34, 26, 56, 0.24);
}

.gem-one {
  top: 4.3rem;
  left: 3rem;
}

.gem-two {
  top: 8.4rem;
  left: 8.6rem;
}

.gem-three {
  top: 5.6rem;
  right: 6.3rem;
}

.gem-four {
  top: 11.2rem;
  right: 2.8rem;
}

.basket {
  left: 50%;
  bottom: 3rem;
  width: 11.5rem;
  height: 6.3rem;
  border-radius: 0 0 5.6rem 5.6rem;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #efe4d0, #b8a180);
  box-shadow: 0 14px 24px rgba(59, 43, 31, 0.16);
}

.basket::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1.8rem;
  width: 6rem;
  height: 3rem;
  border: 5px solid rgba(234, 221, 205, 0.9);
  border-bottom: 0;
  border-radius: 6rem 6rem 0 0;
  transform: translateX(-50%);
}

.stem {
  bottom: 7.6rem;
  width: 0.35rem;
  height: 6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #88a084, #5d7d59);
}

.stem::before {
  content: "";
  position: absolute;
  left: -0.85rem;
  top: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(213, 165, 114, 0.9);
  box-shadow:
    1.2rem 0.6rem 0 -0.2rem rgba(194, 214, 175, 0.9),
    -0.9rem 1.1rem 0 -0.15rem rgba(236, 233, 225, 0.9);
}

.stem-one {
  left: 6rem;
}

.stem-two {
  left: 10rem;
  height: 7.1rem;
}

.stem-three {
  right: 6rem;
  height: 5.6rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 4rem;
}

.about-copy p + p {
  margin-top: 1rem;
}

.about-copy h2 {
  max-width: 10ch;
  margin-bottom: 1.7rem;
}

.about-copy p {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.45rem;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--accent);
  color: var(--accent-deep);
  font-weight: 700;
}

.text-link::after {
  content: "\2192";
  margin-left: 0.5rem;
}

.about-art {
  display: flex;
  justify-content: flex-end;
}

.about-scene {
  position: relative;
  overflow: hidden;
  width: min(100%, 35rem);
  min-height: 24rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.5), transparent 10rem),
    linear-gradient(135deg, #f5eadb 0%, #ebddca 52%, #ddc6a8 100%);
  box-shadow: var(--shadow);
}

.about-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(224, 137, 77, 0.15), transparent 10rem),
    radial-gradient(circle at 80% 78%, rgba(120, 94, 67, 0.12), transparent 11rem);
}

.about-logo {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 9.2rem;
  height: 9.2rem;
  border-radius: 50%;
  transform: translateX(-50%);
  border: 10px solid rgba(255, 250, 245, 0.72);
  box-shadow: 0 22px 36px rgba(77, 55, 39, 0.16);
}

.yarn {
  position: absolute;
  top: 1.8rem;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  box-shadow: inset -14px -10px 20px rgba(0, 0, 0, 0.1);
}

.yarn-rust {
  left: 2.2rem;
  background: radial-gradient(circle at 30% 30%, #d37b39, #a85124);
}

.yarn-dark {
  left: 8rem;
  width: 4.4rem;
  height: 4.4rem;
  background: radial-gradient(circle at 30% 30%, #392920, #1c120c);
}

.yarn-light {
  left: 13rem;
  background: radial-gradient(circle at 30% 30%, #fbf6f0, #d5c1ae);
}

.needle {
  position: absolute;
  top: 6.8rem;
  width: 10rem;
  height: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #b58534, #8f5f20);
}

.needle-one {
  left: 5.4rem;
  transform: rotate(21deg);
}

.needle-two {
  left: 13rem;
  top: 8.8rem;
  transform: rotate(-18deg);
}

.social-panel {
  position: relative;
  overflow: hidden;
  padding: 4.8rem 2rem;
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--white);
  background: var(--brown);
}

.social-panel::before,
.social-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 208, 164, 0.08);
}

.social-panel::before {
  top: -3rem;
  left: -2rem;
  width: 8rem;
  height: 8rem;
}

.social-panel::after {
  right: -4rem;
  bottom: -5rem;
  width: 14rem;
  height: 14rem;
}

.social-panel p:not(.eyebrow) {
  max-width: 36rem;
  margin: 1.4rem auto 0;
  font-size: 1.55rem;
  color: rgba(253, 245, 234, 0.84);
}

.social-button {
  min-width: 9.5rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.social-button:hover,
.social-button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.site-footer {
  margin-top: 2rem;
  padding: 3.75rem 0 2rem;
  color: rgba(255, 245, 235, 0.78);
  background: #493322;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 2.5rem;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-mark {
  width: 34px;
  height: 34px;
}

.brand-footer .brand-copy strong {
  font-size: 1.9rem;
}

.footer-note {
  max-width: 20rem;
  margin-top: 1.25rem;
  font-size: 1.15rem;
}

.footer-heading {
  margin-bottom: 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-links {
  display: grid;
  gap: 0.75rem;
  font-size: 1.1rem;
}

.footer-links a {
  color: rgba(255, 245, 235, 0.78);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 245, 235, 0.12);
  text-align: center;
  font-size: 0.98rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .header-row {
    gap: 1.25rem;
  }

  .site-nav {
    gap: 1rem 1.35rem;
    font-size: 0.96rem;
  }

  .hero-grid,
  .about-grid,
  .footer-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-art {
    width: min(100%, 42rem);
    margin: 0 auto;
  }

  .hero h1 {
    max-width: 9ch;
  }

  .hero-text,
  .about-copy p,
  .social-panel p:not(.eyebrow) {
    font-size: 1.2rem;
  }

  .about-art {
    justify-content: center;
  }

  .footer-grid {
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .header-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0 0.85rem;
  }

  .site-nav {
    width: calc(100% + 1rem);
    margin-right: -1rem;
    padding: 0.2rem 1rem 0.1rem 0;
    flex-wrap: nowrap;
    gap: 1rem 1.4rem;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy,
  .about-copy {
    padding-right: 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-text {
    max-width: 28rem;
  }

  .hero-art {
    min-height: 28rem;
  }

  .hero-figure-fox {
    left: 0.5rem;
  }

  .hero-figure-deer {
    left: 8.5rem;
  }

  .hero-figure-rabbit {
    right: 0.4rem;
  }

  .catalog,
  .about,
  .social-band {
    padding: 5rem 0;
  }

  .card-visual,
  .about-scene {
    min-height: 20rem;
  }

  .catalog-card h3 {
    font-size: 1.75rem;
  }

  .brand-copy strong,
  .brand-footer .brand-copy strong {
    font-size: 1.55rem;
  }

  .footer-note,
  .footer-links {
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong,
  .brand-footer .brand-copy strong {
    font-size: 1.35rem;
  }

  .brand-copy span:last-child {
    font-size: 0.64rem;
    letter-spacing: 0.28em;
  }

  .site-nav {
    width: calc(100% + 0.6rem);
    gap: 0.9rem;
    font-size: 0.92rem;
  }

  .hero-grid {
    padding: 3rem 0 2.4rem;
  }

  .hero-actions,
  .social-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .social-button {
    width: 100%;
  }

  .hero h1,
  .catalog h2,
  .about h2,
  .social-panel h2 {
    letter-spacing: -0.02em;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(2.55rem, 13vw, 3.4rem);
  }

  .hero-text,
  .about-copy p,
  .social-panel p:not(.eyebrow) {
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .hero-art {
    min-height: 20.5rem;
  }

  .hero-figure {
    transform: scale(0.68);
    transform-origin: bottom center;
  }

  .hero-figure-fox {
    left: -1.7rem;
  }

  .hero-figure-deer {
    left: 3.3rem;
  }

  .hero-figure-rabbit {
    right: -1.9rem;
  }

  .hero-logo {
    top: 0.4rem;
    right: 0.8rem;
    width: 3.2rem;
    height: 3.2rem;
  }

  .hero-yarn-one {
    width: 4.9rem;
    height: 4.9rem;
    right: 0.7rem;
    bottom: 1.2rem;
  }

  .hero-yarn-two {
    width: 4.1rem;
    height: 4.1rem;
    right: 4.3rem;
    bottom: 1.7rem;
  }

  .catalog,
  .about,
  .social-band {
    padding: 4.25rem 0;
  }

  .section-heading {
    margin-bottom: 2.2rem;
  }

  .catalog-grid {
    gap: 1.6rem;
  }

  .card-visual {
    min-height: 17rem;
  }

  .about-copy h2 {
    margin-bottom: 1.2rem;
  }

  .about-grid {
    gap: 2.2rem;
  }

  .about-scene {
    min-height: 17rem;
  }

  .yarn {
    top: 1rem;
    transform: scale(0.82);
    transform-origin: top left;
  }

  .needle {
    transform-origin: left center;
  }

  .needle-one {
    left: 3.6rem;
    width: 7rem;
  }

  .needle-two {
    left: 8.6rem;
    top: 7.5rem;
    width: 6rem;
  }

  .about-logo {
    width: 7rem;
    height: 7rem;
    border-width: 8px;
  }

  .social-panel {
    padding: 3.5rem 1.2rem;
  }

  .social-actions {
    margin-top: 1.8rem;
  }

  .footer-grid {
    gap: 1.6rem;
  }

  .footer-bottom {
    margin-top: 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .hero-grid {
    padding-top: 2.6rem;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-art {
    min-height: 18rem;
  }

  .hero-figure {
    transform: scale(0.58);
  }

  .hero-figure-fox {
    left: -2.4rem;
  }

  .hero-figure-deer {
    left: 1.4rem;
  }

  .hero-figure-rabbit {
    right: -2.7rem;
  }

  .card-visual,
  .about-scene {
    min-height: 15rem;
  }

  .social-panel {
    padding: 3rem 1rem;
  }
}
