:root {
  --ink: #151515;
  --muted: #67635d;
  --paper: #fbf7ef;
  --cream: #efe4d2;
  --white: #fffaf2;
  --red: #db3e2f;
  --blue: #2454a6;
  --green: #2e7d66;
  --gold: #c79a3e;
  --line: rgba(21, 21, 21, 0.14);
  --shadow: 0 28px 80px rgba(19, 18, 16, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 21, 21, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  overflow-x: clip;
}

body::selection {
  color: var(--white);
  background: var(--red);
}

.stitch-cursor-canvas,
.stitch-needle {
  position: fixed;
  z-index: 60;
  pointer-events: none;
}

.stitch-cursor-canvas {
  inset: 0;
  width: 100vw;
  height: 100vh;
}

.stitch-needle {
  left: 0;
  top: 0;
  width: 48px;
  height: 11px;
  opacity: 0;
  transform: translate3d(-120px, -120px, 0);
  transition: opacity 180ms ease;
  will-change: transform, opacity;
  pointer-events: none;
}

.stitch-needle.is-active {
  opacity: 1;
}

.stitch-needle::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f7f2e8, #8f969d 42%, #fdfaf3 70%, #686f77);
  box-shadow: 0 2px 6px rgba(21, 21, 21, 0.22);
}

.stitch-needle::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 7px;
  height: 6px;
  border: 1.5px solid #8f969d;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: -12px 3px 0 -3px var(--red), -22px 5px 0 -4px rgba(219, 62, 47, 0.72);
}

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

img,
svg {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

html {
  scroll-padding-top: 96px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1360px, calc(100% - 24px));
  min-height: 66px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 18px;
  box-sizing: border-box;
  color: var(--white);
  background: rgba(16, 16, 16, 0.62);
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 16px 42px rgba(20, 20, 20, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  border: 2px solid rgba(255, 250, 242, 0.7);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.brand-mark img {
  width: 122%;
  height: 122%;
  object-fit: cover;
  object-position: 50% 28%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.72;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav a,
.header-phone,
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.nav a {
  padding: 0 14px;
  color: currentColor;
  font-size: 0.91rem;
  opacity: 0.9;
}

.nav a:hover {
  background: rgba(255, 250, 242, 0.16);
}

.site-header.is-scrolled .nav a:hover {
  background: rgba(21, 21, 21, 0.08);
}

.header-phone {
  padding: 0 16px;
  color: currentColor;
  border: 1px solid rgba(255, 250, 242, 0.28);
  font-size: 0.91rem;
  font-weight: 800;
  letter-spacing: 0;
}

.header-phone:hover {
  background: rgba(255, 250, 242, 0.16);
  transform: translateY(-1px);
}

.site-header.is-scrolled .header-phone {
  border-color: rgba(21, 21, 21, 0.16);
}

.site-header.is-scrolled .header-phone:hover {
  background: rgba(21, 21, 21, 0.08);
}

.header-cta {
  padding: 0 16px;
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
}

.header-cta:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 124px max(22px, calc((100vw - 1160px) / 2)) 40px;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--ink);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.84) 0%, rgba(12, 12, 12, 0.62) 36%, rgba(12, 12, 12, 0.16) 72%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.1) 0%, rgba(12, 12, 12, 0.74) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.04);
  animation: heroDrift 28s ease-in-out infinite alternate;
}

.hero-glass {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 250, 242, 0.35);
  background: rgba(255, 250, 242, 0.08);
  backdrop-filter: blur(8px);
  transform: rotate(-8deg);
  animation: floatGlass 10s ease-in-out infinite alternate;
}

.hero-glass-one {
  right: 8vw;
  bottom: 14vh;
  width: 120px;
  height: 164px;
}

.hero-glass-two {
  right: 25vw;
  top: 20vh;
  width: 88px;
  height: 112px;
  border-color: rgba(219, 62, 47, 0.45);
  animation-delay: -2s;
}

.hero-content {
  width: min(940px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffb29e;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 940px;
  margin-bottom: 22px;
  font-size: clamp(2.9rem, 5.4vw, 5.4rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.4vw, 4.8rem);
}

h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 26px;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button svg,
.result-list svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 38px rgba(219, 62, 47, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(219, 62, 47, 0.36);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 250, 242, 0.16);
  border: 1px solid rgba(255, 250, 242, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 250, 242, 0.24);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(680px, 100%);
  margin: 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 250, 242, 0.12);
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  font-size: 1.65rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 250, 242, 0.72);
}

.ticker {
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border-block: 1px solid rgba(255, 250, 242, 0.16);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 38s linear infinite;
}

.ticker span {
  padding: 17px 24px;
  color: rgba(255, 250, 242, 0.85);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  white-space: nowrap;
}

.ticker span:nth-child(3n) {
  color: #ffb29e;
}

.ticker span:nth-child(4n) {
  color: #94b8ff;
}

.section {
  padding: 112px max(22px, calc((100vw - 1160px) / 2));
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-heading h2 {
  color: var(--ink);
}

.section-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
  text-align: left;
}

.intro-grid,
.program-grid,
.price-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

.intro-grid,
.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.intro-card,
.program-card,
.price-card,
.review-card,
.mini-scene,
.timeline-item,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.84);
  box-shadow: 0 18px 60px rgba(24, 23, 20, 0.06);
}

.intro-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
}

.intro-card-sketch {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 64px;
  height: 64px;
  pointer-events: none;
  opacity: 0.88;
}

.intro-card-sketch img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-number {
  display: inline-block;
  margin-bottom: 42px;
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-weight: 800;
}

.intro-card h3,
.program-card h3,
.timeline-item h3,
.mini-scene h3 {
  margin-bottom: 14px;
  font-size: 1.38rem;
  position: relative;
  z-index: 1;
}

.intro-card p,
.program-card p,
.timeline-item p,
.price-card p,
.review-card p,
.mini-scene p,
.signup-copy p,
.split-copy p,
.mentor-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.65;
}

.intro-card p {
  position: relative;
  z-index: 1;
}

.programs {
  background: linear-gradient(180deg, rgba(36, 84, 166, 0.06), transparent 62%);
}

.program-card {
  position: relative;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.program-card:hover {
  transform: translateY(-6px);
  border-color: rgba(219, 62, 47, 0.32);
  box-shadow: var(--shadow);
}

.program-card.featured {
  color: var(--white);
  border-color: rgba(255, 219, 142, 0.45);
  background:
    linear-gradient(145deg, #ef5f4f 0%, #e04a38 28%, #d88b3f 58%, #2454a6 100%);
  box-shadow: 0 22px 64px rgba(219, 62, 47, 0.2), 0 8px 28px rgba(36, 84, 166, 0.14);
}

.program-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 219, 142, 0.35), transparent 42%),
    radial-gradient(circle at 8% 92%, rgba(255, 250, 242, 0.12), transparent 38%);
}

.program-card.featured:hover {
  border-color: rgba(255, 250, 242, 0.55);
  box-shadow: 0 28px 72px rgba(219, 62, 47, 0.28), 0 12px 36px rgba(36, 84, 166, 0.2);
}

.program-card.featured h3 {
  color: var(--white);
}

.program-card.featured p,
.program-card.featured li {
  color: rgba(255, 250, 242, 0.88);
}

.program-card.featured .program-top span {
  color: #7a2e12;
  background: linear-gradient(135deg, #ffdb8e, #fff4d6);
  box-shadow: 0 4px 14px rgba(21, 21, 21, 0.12);
}

.program-card.featured .program-top strong {
  color: var(--white);
  border-color: rgba(255, 250, 242, 0.55);
  opacity: 1;
}

.program-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.program-card h3,
.program-card p,
.program-card ul {
  position: relative;
  z-index: 1;
}

.program-top span,
.program-top strong {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
}

.program-top span {
  color: var(--blue);
  background: rgba(36, 84, 166, 0.1);
}

.program-top strong {
  border: 1px solid currentColor;
  opacity: 0.8;
}

.program-card p {
  margin-bottom: 26px;
}

.program-card ul {
  display: grid;
  gap: 13px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.program-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.program-card li::before {
  content: "★";
  position: absolute;
  top: 0.12em;
  left: 0;
  font-size: 0.78rem;
  line-height: 1;
  color: var(--gold);
}

.program-card.featured li::before {
  color: #ffdb8e;
}

.program-card {
  display: flex;
  flex-direction: column;
}

.program-cta {
  margin-top: auto;
  width: 100%;
}

.courses-section {
  padding-top: 18px;
}

.courses-section .program-anchor {
  position: absolute;
  margin-top: -120px;
}

.courses-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.courses-price-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.84);
  box-shadow: 0 18px 60px rgba(24, 23, 20, 0.06);
}

.courses-price-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.courses-price-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1;
}

.courses-price-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.courses-price-card--accent {
  border-color: rgba(219, 62, 47, 0.28);
  background:
    linear-gradient(145deg, rgba(219, 62, 47, 0.08), rgba(255, 250, 242, 0.92)),
    rgba(255, 250, 242, 0.84);
}

.courses-highlights {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.courses-highlights li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  line-height: 1.55;
}

.courses-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 800;
}

.courses-programs-title {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.courses-programs {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.course-program ul {
  margin: 12px 0 0;
  padding: 0 0 22px 18px;
  color: var(--muted);
  line-height: 1.55;
}

.course-program li + li {
  margin-top: 6px;
}

.courses-cta {
  width: fit-content;
}

.program-anchor {
  display: block;
  height: 0;
  scroll-margin-top: 104px;
}

.programs .section-heading {
  text-align: left;
}

.programs .section-heading .section-lead {
  margin: 22px 0 0;
}

.section-lead a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 58px;
  align-items: center;
  padding: 112px max(22px, calc((100vw - 1160px) / 2));
  background: var(--white);
}

.split-copy h2 {
  margin-bottom: 24px;
}

.result-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.result-list div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.result-list svg {
  color: var(--green);
}

.studio-board {
  position: relative;
  min-height: 590px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(21, 21, 21, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 21, 21, 0.08) 1px, transparent 1px),
    #f6ead9;
  background-size: 34px 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.studio-board::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(21, 21, 21, 0.22);
  pointer-events: none;
}

.fabric-swatch {
  position: absolute;
  width: 185px;
  height: 220px;
  border-radius: var(--radius);
  box-shadow: 0 20px 44px rgba(21, 21, 21, 0.18);
  transform: rotate(-7deg);
}

.fabric-swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    repeating-linear-gradient(90deg, transparent 0 6px, rgba(255, 255, 255, 0.42) 7px 8px),
    repeating-linear-gradient(0deg, transparent 0 6px, rgba(0, 0, 0, 0.16) 7px 8px);
}

.swatch-red {
  top: 68px;
  left: 62px;
  background: var(--red);
}

.swatch-blue {
  right: 64px;
  top: 118px;
  background: var(--blue);
  transform: rotate(9deg);
}

.swatch-gold {
  right: 180px;
  bottom: 76px;
  background: var(--gold);
  transform: rotate(-3deg);
}

.board-note {
  position: absolute;
  z-index: 2;
  width: min(230px, 42%);
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(21, 21, 21, 0.11);
}

.board-note strong,
.board-note span {
  display: block;
}

.board-note strong {
  margin-bottom: 8px;
}

.board-note span {
  color: var(--muted);
  line-height: 1.45;
}

.note-one {
  top: 48px;
  right: 170px;
}

.note-two {
  left: 130px;
  bottom: 150px;
}

.note-three {
  right: 66px;
  bottom: 34px;
}

.sketch-lines {
  position: absolute;
  left: 48%;
  top: 46%;
  width: 180px;
  height: 250px;
  border: 2px solid rgba(21, 21, 21, 0.54);
  border-top-left-radius: 90px;
  border-top-right-radius: 90px;
  border-bottom: 0;
  transform: translate(-50%, -50%);
}

.sketch-lines::before,
.sketch-lines::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 2px;
  background: rgba(21, 21, 21, 0.45);
}

.sketch-lines::before {
  top: 28px;
  height: 205px;
}

.sketch-lines::after {
  top: 84px;
  height: 150px;
  transform: rotate(34deg);
  transform-origin: top;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.72));
}

.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 22px;
  color: var(--white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 3rem);
}

.gallery-column {
  display: grid;
  gap: 18px;
}

.mini-scene {
  position: relative;
  isolation: isolate;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.mini-scene:nth-child(2)::before {
  animation-delay: -2.8s;
}

.mini-scene:nth-child(2)::after {
  animation-delay: -1.4s;
}

.mini-scene::before {
  content: "";
  position: absolute;
  inset: -70px;
  z-index: -1;
  opacity: 0.9;
  background:
    linear-gradient(120deg, rgba(219, 62, 47, 0.18), transparent 28%, rgba(199, 154, 62, 0.22) 48%, transparent 68%, rgba(46, 125, 102, 0.16)),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(21, 21, 21, 0.055) 17px 18px);
  background-size: 220% 220%, 34px 34px;
  transform: rotate(-6deg);
  animation: fabricLight 14s ease-in-out infinite alternate;
}

.mini-scene:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  border-color: rgba(219, 62, 47, 0.34);
  box-shadow: var(--shadow);
}

.mini-scene.dark {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(36, 84, 166, 0.92), rgba(21, 21, 21, 0.9)),
    var(--blue);
}

.mini-scene.dark::before {
  background:
    linear-gradient(120deg, rgba(255, 219, 142, 0.2), transparent 30%, rgba(148, 184, 255, 0.22) 52%, transparent 70%, rgba(255, 250, 242, 0.08)),
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(255, 250, 242, 0.08) 17px 18px);
}

.mini-scene.dark p {
  color: rgba(255, 250, 242, 0.8);
}

.scene-card-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  margin-bottom: auto;
  opacity: 0.88;
}

.scene-card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini-scene.dark .scene-card-icon img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.gallery-section .gallery,
.gallery-section .work-gallery {
  width: 100%;
  max-width: none;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 156px;
  gap: 10px;
  margin-top: 18px;
}

.work-photo {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.08);
  transition: transform 280ms ease, box-shadow 280ms ease, filter 280ms ease;
}

.work-photo.tall,
.work-photo.wide,
.work-gallery .work-photo:nth-child(2),
.work-gallery .work-photo:nth-child(3),
.work-gallery .work-photo:nth-child(4) {
  grid-column: auto;
  grid-row: auto;
}

.work-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 600ms ease, filter 280ms ease;
}

.work-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 34%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(135deg, rgba(219, 62, 47, 0.16), transparent 42%);
}

.work-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: var(--white);
}

.work-photo strong,
.work-photo span {
  display: block;
}

.work-photo strong {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.work-photo span {
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.84rem;
  line-height: 1.35;
}

.work-photo:hover {
  z-index: 2;
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.work-photo:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.06);
}

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

.timeline-item {
  position: relative;
  min-height: 265px;
  padding: 24px;
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--red);
  font-weight: 800;
}

.schedule-section {
  background: var(--ink);
  color: var(--white);
}

.schedule-section .section-heading h2 {
  color: var(--white);
}

.schedule-section .eyebrow {
  color: #ffb29e;
}

.price-card {
  position: relative;
  isolation: isolate;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--ink);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: -70px;
  z-index: -1;
  opacity: 0.86;
  background:
    linear-gradient(115deg, rgba(36, 84, 166, 0.12), transparent 28%, rgba(219, 62, 47, 0.15) 48%, transparent 68%, rgba(199, 154, 62, 0.18)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(21, 21, 21, 0.055) 19px 20px);
  background-size: 230% 230%, 32px 32px;
  transform: rotate(-4deg);
  animation: priceFabric 16s ease-in-out infinite alternate;
}

.price-card::after {
  content: "";
  position: absolute;
  top: 26px;
  right: 24px;
  z-index: -1;
  width: 112px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.24;
  background: repeating-linear-gradient(90deg, currentColor 0 1px, transparent 1px 13px);
  transform: rotate(-10deg) translateX(8px);
  animation: none;
}

.price-card:nth-child(2)::before {
  animation-delay: -2.4s;
}

.price-card:nth-child(2)::after {
  animation-delay: -1.2s;
}

.price-card:nth-child(3)::before {
  animation-delay: -4.8s;
}

.price-card:nth-child(3)::after {
  animation-delay: -2.6s;
}

.price-card:nth-child(4)::before {
  animation-delay: -6.4s;
}

.price-card:nth-child(4)::after {
  animation-delay: -3.6s;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-card:hover,
.price-card.reveal.is-visible:hover {
  transform: translateY(-7px) rotate(-0.35deg);
  border-color: rgba(255, 250, 242, 0.34);
  box-shadow: var(--shadow);
}

.price-card.accent {
  color: var(--white);
  background: var(--red);
  border-color: transparent;
}

.price-card.accent::before {
  opacity: 0.68;
  background:
    linear-gradient(115deg, rgba(255, 250, 242, 0.2), transparent 30%, rgba(255, 219, 142, 0.2) 52%, transparent 72%, rgba(21, 21, 21, 0.14)),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 250, 242, 0.1) 19px 20px);
}

.price-card.accent p {
  color: rgba(255, 250, 242, 0.82);
}

.price-card span {
  margin-bottom: 30px;
  color: var(--blue);
  font-weight: 800;
}

.price-card.accent span {
  color: var(--white);
}

.price-card h3 {
  margin-bottom: 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.45rem;
}

.price-card a {
  position: relative;
  width: fit-content;
  display: inline-flex;
  margin-top: auto;
  font-weight: 800;
}

.price-card a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0.42);
  transform-origin: left center;
  animation: none;
}

.mentor-section {
  padding: 90px max(22px, calc((100vw - 1160px) / 2));
  background: var(--cream);
}

.mentor-card {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(260px, 0.76fr);
  gap: 34px;
  align-items: end;
  padding: 42px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.96), rgba(21, 21, 21, 0.74)),
    url("assets/atelier-children-hero.png") center/cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mentor-card > * {
  min-width: 0;
}

.mentor-card .eyebrow {
  color: #ffb29e;
}

.mentor-card h2 {
  color: var(--white);
  max-width: 760px;
  font-size: clamp(2rem, 3vw, 3.45rem);
  line-height: 1.04;
  overflow-wrap: normal;
  text-wrap: balance;
}

.mentor-card p,
.mentor-facts {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.78);
}

.mentor-copy {
  display: grid;
  gap: 16px;
}

.mentor-copy p {
  line-height: 1.62;
}

.mentor-facts {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding: 0;
  list-style: none;
}

.mentor-facts li {
  position: relative;
  padding-left: 20px;
  line-height: 1.45;
}

.mentor-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: #ffdb8e;
  transform: rotate(45deg);
}

.review-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.review-card p {
  color: var(--ink);
  font-size: 1.1rem;
}

.review-card cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.faq-section {
  padding-top: 40px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0 24px;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1;
}

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

.faq-item p {
  max-width: 780px;
  margin-bottom: 22px;
}

.signup-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: 64px;
  align-items: start;
  padding: 112px max(22px, calc((100vw - 1160px) / 2));
  color: var(--white);
  background: var(--blue);
}

.signup-section .eyebrow {
  color: #ffdb8e;
}

.signup-copy h2 {
  margin-bottom: 24px;
  color: var(--white);
}

.signup-copy p {
  color: rgba(255, 250, 242, 0.82);
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: rgba(255, 250, 242, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 21, 21, 0.18);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.signup-form textarea {
  resize: vertical;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 84, 166, 0.13);
}

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

.signup-form .button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
  text-align: center;
}

.form-status.is-error {
  color: var(--red);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.signup-form label.form-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--muted);
}

.signup-form label.form-consent span {
  flex: 1;
  min-width: 0;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  flex: 0 0 16px;
  border-radius: 4px;
  accent-color: var(--blue);
  box-shadow: none;
}

.form-consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.signup-contacts {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.signup-contacts li {
  display: grid;
  gap: 4px;
}

.signup-contacts span {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-contacts a,
.signup-contacts strong {
  color: var(--white);
  font-weight: 800;
}

.signup-contacts a:hover {
  color: #ffdb8e;
}

.signup-social-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.social-link:hover {
  color: #ffdb8e;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.14);
  border: 1px solid rgba(255, 250, 242, 0.22);
  flex-shrink: 0;
  transition: background 200ms ease, transform 200ms ease;
}

.social-link:hover .social-icon {
  background: rgba(255, 250, 242, 0.24);
  transform: translateY(-1px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon--vk {
  color: #4c75a3;
}

.social-icon--telegram {
  color: #2aabee;
}

.contact-socials--icons .social-link {
  color: var(--ink);
}

.contact-socials--icons .social-link:hover {
  color: var(--blue);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials .social-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 250, 242, 0.1);
  border-color: rgba(255, 250, 242, 0.2);
  color: var(--white);
}

.footer-socials .social-icon--vk {
  color: #8eb4e8;
}

.footer-socials .social-icon--telegram {
  color: #7ccfff;
}

.contacts-section {
  padding-bottom: 18px;
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.contact-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 250, 242, 0.72);
  box-shadow: var(--shadow);
}

.contact-label {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.contact-card h3 a {
  color: inherit;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-link,
.contact-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-social {
  background: var(--blue);
}

.contact-link:hover,
.contact-social:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.privacy-section {
  padding-top: 0;
}

.privacy-card {
  max-width: 860px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 250, 242, 0.72);
}

.privacy-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

.privacy-card a {
  color: var(--blue);
  font-weight: 700;
}

.site-footer {
  padding: 48px max(22px, calc((100vw - 1160px) / 2)) 40px;
  color: var(--white);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr) auto;
  align-items: start;
  gap: 28px 40px;
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand span {
  color: rgba(255, 250, 242, 0.68);
}

.footer-contacts {
  display: grid;
  gap: 10px;
}

.footer-contacts-title {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffdb8e;
}

.footer-address-line {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
}

.footer-address-note {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 250, 242, 0.68);
}

.footer-map-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 40px;
  padding: 0 16px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-map-button:hover {
  filter: brightness(1.08);
}

.footer-social-links {
  margin-top: 8px;
}

.footer-social-links .social-link {
  color: var(--white);
}

.footer-social-links .social-link:hover {
  color: #ffdb8e;
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.footer-links a {
  font-weight: 800;
  white-space: nowrap;
}

.footer-top {
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 450ms ease, transform 450ms ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(1.6%, -1.4%, 0);
  }
}

@keyframes floatGlass {
  from {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  to {
    transform: translate3d(10px, -16px, 0) rotate(4deg);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes fabricLight {
  from {
    background-position: 0% 50%, 0 0;
  }
  to {
    background-position: 100% 50%, 34px 34px;
  }
}

@keyframes stitchLine {
  0%,
  100% {
    width: 44px;
    opacity: 0.24;
    transform: rotate(-18deg) translateX(-12px);
  }
  50% {
    width: 118px;
    opacity: 0.58;
    transform: rotate(-18deg) translateX(4px);
  }
}

@keyframes iconStitch {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(3deg) translateY(-5px);
  }
}

@keyframes needleSweep {
  0%,
  100% {
    transform: rotate(-25deg) translateX(-8px);
    opacity: 0.55;
  }
  50% {
    transform: rotate(-8deg) translateX(10px);
    opacity: 1;
  }
}

@keyframes sparklePulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.86);
  }
  50% {
    opacity: 0.86;
    transform: scale(1.08);
  }
}

@keyframes priceFabric {
  from {
    background-position: 0% 50%, 0 0;
  }
  to {
    background-position: 100% 50%, 32px 32px;
  }
}

@keyframes priceTape {
  0%,
  100% {
    opacity: 0.18;
    transform: rotate(-10deg) translateX(8px);
  }
  50% {
    opacity: 0.42;
    transform: rotate(-10deg) translateX(-10px);
  }
}

@keyframes priceLinkLine {
  0%,
  100% {
    transform: scaleX(0.42);
  }
  50% {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1280px) and (min-width: 981px) {
  .nav a {
    padding: 0 10px;
    font-size: 0.86rem;
  }

  .header-phone,
  .header-cta {
    font-size: 0.84rem;
  }

  .header-cta {
    padding: 0 14px;
  }
}

@media (max-width: 1160px) {
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    border-radius: 24px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding-top: 118px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(12, 12, 12, 0.86), rgba(12, 12, 12, 0.42)),
      linear-gradient(180deg, rgba(12, 12, 12, 0.12), rgba(12, 12, 12, 0.82));
  }

  .intro-grid,
  .program-grid,
  .price-grid,
  .review-grid,
  .timeline,
  .gallery,
  .split-section,
  .mentor-card,
  .contacts-grid,
  .courses-pricing {
    grid-template-columns: 1fr;
  }

  .signup-section {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: auto;
  }

  .split-section,
  .signup-section {
    gap: 38px;
  }

  .studio-board {
    min-height: 520px;
  }

  .work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 140px;
    gap: 10px;
  }

  .gallery-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-column .mini-scene {
    min-height: 200px;
    padding: 18px;
  }

  .gallery-column .scene-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }

  .gallery-column .mini-scene h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
  }

  .gallery-column .mini-scene p {
    font-size: 0.84rem;
    line-height: 1.4;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 10px 10px 10px 12px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .header-cta {
    display: none;
  }

  .header-phone {
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: 92svh;
    padding: 104px 18px 24px;
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 10.5vw, 2.9rem);
  }

  h2 {
    font-size: clamp(2.05rem, 12vw, 3.2rem);
  }

  .hero-lead {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero-actions .button {
    flex: 1 1 148px;
    min-height: 48px;
    padding: 0 14px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .hero-stats div {
    padding: 10px 6px;
  }

  .hero-stats dt {
    font-size: 1.05rem;
  }

  .hero-stats dd {
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .hero-glass {
    display: none;
  }

  .section,
  .split-section,
  .mentor-section,
  .signup-section {
    padding: 76px 18px;
  }

  .intro-card,
  .program-card,
  .price-card,
  .review-card,
  .mini-scene,
  .timeline-item,
  .signup-form,
  .mentor-card {
    padding: 22px;
  }

  .studio-board {
    min-height: 460px;
  }

  .fabric-swatch {
    width: 130px;
    height: 165px;
  }

  .swatch-red {
    left: 32px;
  }

  .swatch-blue {
    right: 28px;
  }

  .swatch-gold {
    right: 100px;
  }

  .board-note {
    width: 190px;
    padding: 14px;
  }

  .note-one {
    right: 36px;
    top: 40px;
  }

  .note-two {
    left: 26px;
    bottom: 132px;
  }

  .note-three {
    right: 22px;
  }

  .sketch-lines {
    width: 120px;
    height: 188px;
  }

  .gallery-item {
    min-height: 420px;
  }

  .gallery-column .mini-scene {
    min-height: 168px;
    padding: 14px;
  }

  .gallery-column .scene-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .gallery-column .mini-scene h3 {
    font-size: 0.98rem;
  }

  .gallery-column .mini-scene p {
    font-size: 0.78rem;
  }

  .work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 128px;
    gap: 10px;
  }

  .work-photo figcaption {
    left: 12px;
    right: 12px;
    bottom: 10px;
  }

  .work-photo strong {
    font-size: 0.86rem;
  }

  .work-photo span {
    font-size: 0.76rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-links {
    justify-items: start;
  }
}
