:root {
  --paper: #f8f3ea;
  --paper-deep: #efe5d5;
  --ink: #211d1a;
  --muted: #6e6258;
  --line: rgba(33, 29, 26, 0.16);
  --rose: #b66a61;
  --sage: #78866a;
  --blue: #273b52;
  --clay: #c28b63;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(33, 29, 26, 0.14);
  --surface-glow: linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(239, 229, 213, 0.58));
  --dark-glow: radial-gradient(circle at 18% 12%, rgba(194, 139, 99, 0.18), transparent 34%), linear-gradient(135deg, #211d1a 0%, #171311 58%, #2b2520 100%);
  --premium-edge: linear-gradient(135deg, rgba(255, 253, 248, 0.2), rgba(255, 253, 248, 0));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(194, 139, 99, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(120, 134, 106, 0.1), transparent 30%),
    var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 54px);
  color: var(--white);
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(248, 243, 234, 0.92);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0;
  transition: color 200ms ease, transform 200ms ease;
}

.brand span:last-child {
  position: relative;
}

.brand span:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: opacity 200ms ease, transform 200ms ease;
}

.brand:hover,
.brand:focus-visible {
  color: var(--rose);
  transform: translateY(-1px);
}

.brand:hover span:last-child::after,
.brand:focus-visible span:last-child::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.brand-mark {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  right: -7px;
  bottom: 4px;
  background: currentColor;
  transform: rotate(-42deg);
  transform-origin: right center;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  transform: scale(0.94);
  box-shadow: 0 0 0 5px rgba(194, 109, 96, 0.1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 86px) 74px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("../assets/images/hero/studio-hero.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 24% 24%, rgba(194, 139, 99, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(20, 16, 13, 0.76), rgba(20, 16, 13, 0.34) 45%, rgba(20, 16, 13, 0.06)),
    linear-gradient(0deg, rgba(20, 16, 13, 0.38), rgba(20, 16, 13, 0.08) 54%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4.1rem, 9vw, 9.5rem);
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--white), #efe5d5);
  color: var(--ink);
  border-color: var(--white);
  box-shadow: 0 12px 34px rgba(255, 253, 248, 0.12);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: linear-gradient(135deg, var(--ink), #3a312b);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 0 18px 42px rgba(33, 29, 26, 0.2);
}

.button.secondary {
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: linear-gradient(135deg, var(--white), #efe5d5);
  color: var(--ink);
  border-color: var(--white);
  box-shadow: 0 18px 42px rgba(255, 253, 248, 0.16);
}

.hero-actions .button.secondary:hover,
.hero-actions .button.secondary:focus-visible {
  background: linear-gradient(135deg, var(--ink), #3a312b);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 0 18px 42px rgba(33, 29, 26, 0.22);
}

.button.dark {
  background: linear-gradient(135deg, var(--ink), #3a312b);
  color: var(--white);
  border-color: var(--ink);
  box-shadow: 0 14px 34px rgba(33, 29, 26, 0.16);
}

.button.dark:hover,
.button.dark:focus-visible {
  background: linear-gradient(135deg, var(--white), #efe5d5);
  color: var(--ink);
  border-color: var(--white);
  box-shadow: 0 18px 42px rgba(33, 29, 26, 0.2);
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 54px);
  bottom: 34px;
  z-index: 1;
  width: 42px;
  height: 66px;
  border: 1px solid rgba(255, 253, 248, 0.7);
  border-radius: 999px;
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 14px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  35% {
    opacity: 1;
  }

  70% {
    opacity: 0;
    transform: translate(-50%, 24px);
  }
}

.section {
  padding: clamp(78px, 10vw, 150px) clamp(20px, 6vw, 86px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(36px, 6vw, 70px);
  text-align: center;
}

.section-heading.narrow {
  max-width: 640px;
}

.section-heading .eyebrow,
.split-heading .eyebrow,
.artist-copy .eyebrow,
.learn-intro .eyebrow,
.site-footer .eyebrow {
  color: var(--rose);
}

h2 {
  font-size: clamp(3rem, 6.8vw, 7rem);
}

.section-heading p:last-child,
.split-heading p,
.artist-copy p,
.learn-intro p {
  color: var(--muted);
}

.studio-map {
  background: var(--paper);
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 16px;
}

.studio-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.studio-card.has-image {
  background:
    linear-gradient(0deg, rgba(33, 29, 26, 0.76), rgba(33, 29, 26, 0.12) 58%),
    var(--image) center / cover no-repeat;
  color: var(--white);
}

.studio-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 74px;
  height: 74px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.studio-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -22% auto;
  width: 170px;
  height: 170px;
  background: rgba(182, 106, 97, 0.12);
  border-radius: 50%;
}

.studio-card:hover,
.studio-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.studio-card:not(.has-image):hover,
.studio-card:not(.has-image):focus-visible {
  background: linear-gradient(145deg, #fffaf1, #efe5d5);
}

.studio-card.tall {
  grid-row: span 2;
  background: var(--blue);
  color: var(--white);
}

.studio-card.wide {
  grid-column: span 2;
  background: #9b6258;
  color: var(--white);
}

.studio-card.learn-card {
  background: var(--sage);
  color: var(--white);
}

.studio-card.wide::after {
  background: rgba(255, 253, 248, 0.16);
}

.card-number {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  color: currentColor;
  font-weight: 800;
  opacity: 0.62;
}

.studio-card h3,
.learn-steps h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.studio-card p {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin: 12px 0 0;
  color: currentColor;
  opacity: 0.76;
}

.offering-grid {
  grid-template-columns: 1.1fr 1fr 0.9fr;
}

.offering-grid .studio-card.tall,
.offering-grid .studio-card.wide {
  grid-column: auto;
  grid-row: auto;
}

.offering-grid .studio-card {
  min-height: 380px;
}

.gallery-section,
.process-section {
  background: var(--dark-glow);
  color: var(--white);
}

.image-custom-artwork {
  --image: url("../assets/images/artworks/custom-artwork/custom-artwork.png");
}

.image-love-to-love-2 {
  --image: url("../assets/images/artworks/custom-artwork/Love To Love/2.png");
}

.image-love-to-love-3 {
  --image: url("../assets/images/artworks/custom-artwork/Love To Love/3.png");
}

.image-love-to-love-4 {
  --image: url("../assets/images/artworks/custom-artwork/Love To Love/4.png");
}

.image-love-to-love-5 {
  --image: url("../assets/images/artworks/custom-artwork/Love To Love/5.png");
}

.image-love-to-love-6 {
  --image: url("../assets/images/artworks/custom-artwork/Love To Love/6.png");
}

.image-love-to-love-7 {
  --image: url("../assets/images/artworks/custom-artwork/Love To Love/7.png");
}

.image-fabric-hanuman {
  --image: url("../assets/images/artworks/fabric-painting/HanuMan JI.png");
}

.image-fabric-jacket {
  --image: url("../assets/images/artworks/fabric-painting/Jacket Broken Love.png");
}

.image-fabric-kids-joy {
  --image: url("../assets/images/artworks/fabric-painting/Kids Joy.png");
}

.image-fabric-krishna {
  --image: url("../assets/images/artworks/fabric-painting/Krishna Love.png");
}

.image-fabric-lipstick {
  --image: url("../assets/images/artworks/fabric-painting/Lipstick kiss print on white fabric.png");
}

.image-gift-pack {
  --image: url("../assets/images/artworks/fabric-painting/Packing Gifts.png");
}

.image-couple-sweatshirts-1 {
  --image: url("../assets/images/artworks/fabric-painting/Hand-painted Couple Sweatshirts/1.png");
}

.image-couple-sweatshirts-2 {
  --image: url("../assets/images/artworks/fabric-painting/Hand-painted Couple Sweatshirts/2.png");
}

.image-couple-sweatshirts-3 {
  --image: url("../assets/images/artworks/fabric-painting/Hand-painted Couple Sweatshirts/3.png");
}

.image-couple-sweatshirts-4 {
  --image: url("../assets/images/artworks/fabric-painting/Hand-painted Couple Sweatshirts/4.png");
}

.image-stippling-michael {
  --image: url("../assets/images/artworks/stippling/Micheal Jackson.png");
}

.image-stippling-butterfly {
  --image: url("../assets/images/artworks/stippling/Butterfly.png");
}

.image-stippling-flower {
  --image: url("../assets/images/artworks/stippling/Flower.png");
}

.image-stippling-fly {
  --image: url("../assets/images/artworks/stippling/Fly.png");
}

.image-stippling-insect {
  --image: url("../assets/images/artworks/stippling/Insect.png");
}

.image-stippling-mosquito {
  --image: url("../assets/images/artworks/stippling/Mosquito.png");
}

.image-stippling-snack {
  --image: url("../assets/images/artworks/stippling/Snack.png");
}

.image-letter-romantic {
  --image: url("../assets/images/artworks/custom-letters/Romantic handwritten note with bangles.png");
}

.image-letter-memories {
  --image: url("../assets/images/artworks/custom-letters/Handwritten memories and heartfelt moments.png");
}

.image-letter-gift {
  --image: url("../assets/images/artworks/custom-letters/Handcrafted gift with thoughtful details.png");
}

.image-letter-city {
  --image: url("../assets/images/artworks/custom-letters/Gift wrapped with love in the city.png");
}

.image-letter-charm {
  --image: url("../assets/images/artworks/custom-letters/Handcrafted charm in a cozy space.png");
}

.image-studio-craft {
  --image: url("../assets/images/studio-moments/Cozy craft desk with floral art.png");
}

.image-studio-pink {
  --image: url("../assets/images/studio-moments/Cozy pink artist nook with plants.png");
}

.image-studio-urban {
  --image: url("../assets/images/studio-moments/Urban charm under a cloudy sky%27.png");
}

.image-testimonial-birthday {
  --image: url("../assets/images/testimonials/3.png");
}

.image-testimonial-sunset {
  --image: url("../assets/images/testimonials/8.png");
}

.image-testimonial-gift {
  --image: url("../assets/images/testimonials/7.png");
}

.image-testimonial-student {
  --image: url("../assets/images/testimonials/1.png");
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.split-heading h2 {
  max-width: 840px;
}

.text-link {
  flex: 0 0 auto;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--clay);
  border-color: currentColor;
  transform: translateY(-2px) scale(1.02);
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 clamp(26px, 4vw, 42px);
}

.gallery-showcase {
  position: relative;
  display: grid;
  margin-bottom: clamp(58px, 8vw, 104px);
  overflow: hidden;
  background: #14110f;
}

.gallery-slides {
  position: relative;
  min-height: min(76svh, 760px);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: clamp(28px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(20, 16, 13, 0.84), rgba(20, 16, 13, 0.36) 50%, rgba(20, 16, 13, 0.08)),
    linear-gradient(0deg, rgba(20, 16, 13, 0.62), rgba(20, 16, 13, 0.02) 58%),
    var(--image) center / cover no-repeat;
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 620ms ease, transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.gallery-slide div {
  max-width: 680px;
}

.gallery-slide h2 {
  font-size: clamp(3.6rem, 7.8vw, 8rem);
}

.gallery-slide p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 253, 248, 0.8);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 253, 248, 0.52);
  border-radius: 50%;
  background: rgba(33, 29, 26, 0.34);
  color: var(--white);
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  background: rgba(33, 29, 26, 0.7);
  border-color: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.gallery-arrow-prev {
  left: clamp(16px, 3vw, 34px);
}

.gallery-arrow-next {
  right: clamp(16px, 3vw, 34px);
}

.gallery-dots {
  position: absolute;
  right: clamp(24px, 5vw, 70px);
  bottom: clamp(24px, 4vw, 54px);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.gallery-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.82);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, transform 180ms ease, border-color 180ms ease;
}

.gallery-dots button.is-active {
  width: 34px;
  background: var(--white);
}

.gallery-dots button:hover,
.gallery-dots button:focus-visible {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.18);
}

.gallery-browse-heading {
  align-items: start;
}

.gallery-browse-heading h2 {
  max-width: 760px;
  font-size: clamp(3rem, 5.4vw, 6rem);
}

.gallery-browse-heading > p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
}

.filter-chip {
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

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

.gallery-collection-card {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(320px, 0.95fr);
  min-height: 440px;
  border: 1px solid rgba(255, 253, 248, 0.12);
  background: rgba(255, 253, 248, 0.04);
  overflow: hidden;
  opacity: 0;
  transform: translateY(26px);
  animation: galleryTileIn 720ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.gallery-collection-card:nth-child(2) {
  animation-delay: 80ms;
}

.gallery-collection-card:nth-child(3) {
  animation-delay: 160ms;
}

.gallery-collection-card:nth-child(4) {
  animation-delay: 240ms;
}

.gallery-collection-card:nth-child(5) {
  animation-delay: 320ms;
}

.gallery-collection-card.is-hidden {
  display: none;
}

.gallery-collection-visual {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #14110f;
}

.gallery-collection-track,
.collection-slide {
  position: absolute;
  inset: 0;
}

.collection-slide {
  background:
    linear-gradient(0deg, rgba(20, 16, 13, 0.16), rgba(20, 16, 13, 0.02)),
    var(--image) center / cover no-repeat;
  opacity: 0;
  transform: scale(1.06) translateX(18px);
  transition: opacity 680ms ease, transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-slide.is-active {
  opacity: 1;
  transform: scale(1) translateX(0);
}

.collection-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 253, 248, 0.48);
  border-radius: 50%;
  background: rgba(33, 29, 26, 0.34);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.collection-arrow:hover,
.collection-arrow:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
  transform: translateY(-50%) scale(1.06);
}

.collection-arrow.prev {
  left: 18px;
}

.collection-arrow.next {
  right: 18px;
}

.gallery-collection-copy {
  display: grid;
  align-content: end;
  padding: clamp(24px, 4vw, 52px);
}

.gallery-collection-copy h2 {
  max-width: 560px;
  font-size: clamp(2.55rem, 4.5vw, 5rem);
}

.gallery-collection-copy p:not(.eyebrow) {
  max-width: 500px;
  margin: 18px 0 24px;
  color: rgba(255, 253, 248, 0.72);
}

.gallery-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 620px;
}

.gallery-name-list span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 253, 248, 0.16);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.collection-dots {
  display: flex;
  gap: 9px;
  margin-top: 28px;
}

.collection-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 253, 248, 0.72);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease, border-color 220ms ease;
}

.collection-dots button.is-active {
  width: 30px;
  background: var(--white);
  border-color: var(--white);
}

.masonry-gallery {
  columns: 3 250px;
  column-gap: 16px;
}

.masonry-gallery:has(.art-tile:hover) .art-tile:not(:hover),
.masonry-gallery:has(.art-tile:focus-visible) .art-tile:not(:focus-visible) {
  opacity: 0.48;
  filter: grayscale(0.28) saturate(0.68) brightness(0.78);
}

.art-tile {
  width: 100%;
  border: 0;
  min-height: 280px;
  margin: 0 0 16px;
  break-inside: avoid;
  display: flex;
  align-items: end;
  padding: 20px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.18)),
    var(--rose);
  position: relative;
  overflow: hidden;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(255, 253, 248, 0.05);
  opacity: 0;
  transform: translateY(22px);
  animation: galleryTileIn 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  isolation: isolate;
  transition: box-shadow 280ms ease, filter 280ms ease, opacity 220ms ease, transform 280ms ease;
}

.art-tile:hover,
.art-tile:focus-visible {
  z-index: 2;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 253, 248, 0.22);
  filter: saturate(1.12) contrast(1.04);
  transform: translateY(-10px) scale(1.018);
  outline: 0;
}

.art-tile.is-hidden {
  display: none;
}

.art-tile.has-image {
  background:
    linear-gradient(0deg, rgba(33, 29, 26, 0.7), rgba(33, 29, 26, 0.04) 62%),
    var(--image) center / cover no-repeat;
  background-size: auto, cover;
  transition: background-size 620ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease, filter 280ms ease, opacity 220ms ease, transform 280ms ease;
}

.art-tile.has-image:hover,
.art-tile.has-image:focus-visible {
  background-size: auto, 110%;
}

.art-tile::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.24);
  transform: scale(1);
  transition: border-color 260ms ease, inset 260ms ease, transform 260ms ease;
}

.art-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.08), rgba(255, 253, 248, 0) 34%),
    linear-gradient(0deg, rgba(20, 16, 13, 0.78), rgba(20, 16, 13, 0.08) 58%);
  opacity: 0;
  transition: opacity 280ms ease;
}

.art-tile:hover::before,
.art-tile:focus-visible::before {
  inset: 14px;
  border-color: rgba(255, 253, 248, 0.72);
  transform: scale(0.992);
}

.art-tile:hover::after,
.art-tile:focus-visible::after {
  opacity: 1;
}

.art-tile span {
  position: relative;
  z-index: 3;
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  transform: translateY(0);
  transition: transform 280ms ease, text-shadow 280ms ease;
}

.art-tile span::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.art-tile:hover span,
.art-tile:focus-visible span {
  transform: translateY(-8px);
  text-shadow: 0 14px 36px rgba(0, 0, 0, 0.46);
}

.art-tile:hover span::after,
.art-tile:focus-visible span::after {
  opacity: 0.82;
  transform: scaleX(1);
}

.premium-gallery .art-tile:nth-child(2),
.finished-gallery .art-tile:nth-child(2) {
  animation-delay: 70ms;
}

.premium-gallery .art-tile:nth-child(3),
.finished-gallery .art-tile:nth-child(3) {
  animation-delay: 140ms;
}

.premium-gallery .art-tile:nth-child(4),
.finished-gallery .art-tile:nth-child(4) {
  animation-delay: 210ms;
}

.premium-gallery .art-tile:nth-child(5),
.finished-gallery .art-tile:nth-child(5) {
  animation-delay: 280ms;
}

.premium-gallery .art-tile:nth-child(6),
.finished-gallery .art-tile:nth-child(n + 6) {
  animation-delay: 350ms;
}

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

@keyframes artistPanelIn {
  from {
    opacity: 0;
    transform: rotate(-1deg);
  }

  to {
    opacity: 1;
    transform: rotate(-1deg);
  }
}

@keyframes artistPhotoIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

@keyframes artistPhotoInSmall {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes artistNameIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.art-tile.large {
  min-height: 520px;
}

.art-tile.tall {
  min-height: 430px;
}

.art-tile.wide {
  min-height: 340px;
}

.custom-work {
  background:
    linear-gradient(140deg, rgba(39, 59, 82, 0.24), rgba(33, 29, 26, 0.24)),
    url("../assets/images/hero/studio-hero.png") center / cover no-repeat;
}

.letter-work {
  background: linear-gradient(135deg, #e9d7c0, #9e5d58);
}

.fabric-work {
  background: linear-gradient(160deg, #263b52, #6f8066);
}

.stippling-work {
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.42) 0 2px, transparent 3px), #3b332e;
  background-size: 18px 18px;
}

.framed-print-work {
  background: linear-gradient(135deg, #a06a4e, #e7c59a);
}

.studio-work-tile {
  background: linear-gradient(135deg, #f1e4d1, #253b52 72%);
}

.artwork-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  background: rgba(33, 29, 26, 0.96);
  color: var(--white);
}

.artwork-modal[hidden] {
  display: none;
}

.modal-art {
  min-height: 100svh;
  background:
    linear-gradient(0deg, rgba(33, 29, 26, 0.14), rgba(33, 29, 26, 0)),
    var(--image) center / contain no-repeat;
}

.modal-copy {
  display: grid;
  align-content: end;
  padding: clamp(28px, 5vw, 70px);
  background: var(--ink);
}

.modal-copy h2 {
  font-size: clamp(3rem, 5.5vw, 6.2rem);
}

.modal-copy dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.modal-copy dt {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.modal-copy dd {
  margin: 4px 0 0;
  color: rgba(255, 253, 248, 0.82);
}

.modal-copy p:last-child {
  margin: 0;
  color: rgba(255, 253, 248, 0.76);
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 253, 248, 0.44);
  border-radius: 50%;
  background: rgba(33, 29, 26, 0.28);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.artist-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 94px);
  align-items: center;
}

.artist-image {
  min-height: clamp(520px, 58vw, 720px);
  position: relative;
  display: grid;
  align-items: end;
  padding: clamp(18px, 3vw, 30px);
  isolation: isolate;
}

.artist-image::before {
  content: "";
  position: absolute;
  inset: 10% 4% 0 12%;
  z-index: -1;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
  animation: artistPanelIn 700ms ease-out both;
}

.artist-photo {
  display: block;
  object-fit: cover;
  border: 12px solid var(--white);
  box-shadow: 0 18px 48px rgba(33, 29, 26, 0.14);
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  will-change: opacity, filter, transform;
}

.artist-photo-main {
  width: min(78%, 460px);
  aspect-ratio: 4 / 5;
  align-self: center;
  justify-self: center;
  object-position: 52% 32%;
  position: relative;
  z-index: 1;
  animation: artistPhotoIn 720ms 120ms ease-out both;
}

.artist-photo-small {
  position: absolute;
  width: clamp(118px, 18vw, 210px);
  aspect-ratio: 4 / 5;
  opacity: 0;
  animation: artistPhotoInSmall 720ms ease-out both;
  z-index: 2;
}

.artist-photo-small.first {
  left: 0;
  top: 15%;
  object-position: 48% 22%;
  transform: rotate(-7deg);
  animation-delay: 220ms;
}

.artist-photo-small.second {
  right: 0;
  bottom: 18%;
  object-position: 50% 18%;
  transform: rotate(6deg);
  animation-delay: 320ms;
}

.artist-image:hover .artist-photo {
  opacity: 0.42;
  filter: blur(2px) saturate(0.78);
}

.artist-image:hover .artist-photo-main {
  transform: translateY(0) scale(0.98);
}

.artist-image:hover .artist-photo-small.first {
  transform: rotate(-7deg) scale(0.98);
}

.artist-image:hover .artist-photo-small.second {
  transform: rotate(6deg) scale(0.98);
}

.artist-image .artist-photo:hover {
  opacity: 1;
  filter: none;
  box-shadow: 0 24px 62px rgba(33, 29, 26, 0.22);
  z-index: 5;
}

.artist-image .artist-photo-main:hover {
  transform: translateY(-8px) scale(1.025);
}

.artist-image .artist-photo-small.first:hover {
  transform: rotate(-7deg) translateY(-8px) scale(1.05);
}

.artist-image .artist-photo-small.second:hover {
  transform: rotate(6deg) translateY(-8px) scale(1.05);
}

.artist-nameplate {
  position: absolute;
  left: clamp(18px, 4vw, 50px);
  right: clamp(18px, 4vw, 50px);
  bottom: clamp(22px, 4vw, 54px);
  z-index: 6;
  padding: 18px 22px;
  background: rgba(33, 29, 26, 0.72);
  color: var(--white);
  backdrop-filter: blur(16px);
  animation: artistNameIn 650ms 340ms ease-out both;
}

.artist-nameplate span {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.9;
}

.artist-nameplate p {
  margin: 8px 0 0;
  color: rgba(255, 253, 248, 0.76);
  font-weight: 800;
}

.artist-copy {
  max-width: 720px;
}

.artist-copy p {
  font-size: 1.04rem;
}

.artist-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.artist-highlights span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(239, 229, 213, 0.58));
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.artist-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.learn-section {
  background: var(--paper-deep);
}

.learn-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.learn-intro h2 {
  max-width: 900px;
}

.learn-note {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.62), rgba(239, 229, 213, 0.42));
}

.learn-note p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.learn-note-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}

.learn-note-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(33, 29, 26, 0.14);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.learn-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.learn-steps article {
  min-height: 300px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.38);
}

.learn-steps span {
  display: block;
  margin-bottom: 72px;
  color: var(--rose);
  font-weight: 800;
}

.learn-steps p {
  color: var(--muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
  border-top: 1px solid rgba(255, 253, 248, 0.18);
  border-left: 1px solid rgba(255, 253, 248, 0.18);
}

.process-list li {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid rgba(255, 253, 248, 0.18);
  border-bottom: 1px solid rgba(255, 253, 248, 0.18);
  position: relative;
  counter-increment: process;
}

.process-list li::before {
  content: "0" counter(process);
  color: var(--clay);
  font-weight: 800;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  z-index: 2;
  width: 24px;
  height: 1px;
  background: var(--clay);
}

.process-list span {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.moments-section {
  background: var(--white);
}

.moments-section .split-heading p {
  max-width: 420px;
}

.moments-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 1fr 0.82fr;
  gap: 16px;
}

.moments-strip article {
  min-height: 360px;
  display: flex;
  align-items: end;
  padding: 22px;
  background:
    linear-gradient(0deg, rgba(33, 29, 26, 0.42), rgba(33, 29, 26, 0.03)),
    var(--image, url("../assets/images/hero/studio-hero.png")) center / cover no-repeat;
  color: var(--white);
}

.moments-strip article:nth-child(2) {
  min-height: 430px;
  background-position: 20% center;
}

.moments-strip article:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(33, 29, 26, 0.44), rgba(33, 29, 26, 0.02)),
    var(--image, url("../assets/images/hero/studio-hero.png")) center / cover no-repeat;
  color: var(--white);
}

.moments-strip article:nth-child(4) {
  min-height: 300px;
  background-position: 80% center;
}

.moments-strip span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
}

.testimonials-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(182, 106, 97, 0.08), transparent 30%),
    var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.testimonial {
  margin: 0;
  padding: clamp(14px, 2vw, 18px);
  background: var(--surface-glow);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.testimonial:hover,
.testimonial:focus-within {
  border-color: rgba(182, 106, 97, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.testimonial-image {
  min-height: clamp(420px, 42vw, 620px);
  margin-bottom: 24px;
  background:
    linear-gradient(145deg, rgba(248, 243, 234, 0.42), rgba(33, 29, 26, 0.04)),
    var(--image, url("../assets/images/hero/studio-hero.png")) center / contain no-repeat;
  background-color: #f1eadf;
}

blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  line-height: 1;
}

.testimonial p {
  margin: 20px 0 4px;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(52px, 8vw, 90px) clamp(20px, 6vw, 86px);
  background: var(--dark-glow);
  color: var(--white);
}

.site-footer h2 {
  max-width: 760px;
  font-size: clamp(2.8rem, 6vw, 6rem);
}

.footer-contact {
  align-self: end;
  display: grid;
  gap: 12px;
  min-width: min(100%, 390px);
}

.footer-contact a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.22);
  color: rgba(255, 253, 248, 0.82);
  font-weight: 800;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0), rgba(255, 253, 248, 0));
  transition: color 180ms ease, padding 180ms ease, background 180ms ease;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
  padding-inline: 10px;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.08), rgba(255, 253, 248, 0));
}

.footer-contact span {
  color: var(--clay);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.subpage-hero {
  min-height: 68svh;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 150px clamp(20px, 6vw, 86px) 72px;
  background:
    linear-gradient(90deg, rgba(248, 243, 234, 0.96), rgba(248, 243, 234, 0.72)),
    url("../assets/images/hero/studio-hero.png") center / cover no-repeat;
}

.subpage-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.subpage-hero .button {
  justify-self: start;
  margin-top: 10px;
}

.learn-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 86px) 72px;
  overflow: hidden;
  color: var(--white);
}

.learn-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 16, 13, 0.78), rgba(20, 16, 13, 0.34) 48%, rgba(20, 16, 13, 0.08)),
    var(--image, url("../assets/images/hero/studio-hero.png")) center / cover no-repeat;
  transform: scale(1.02);
}

.learn-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.learn-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.4rem, 9vw, 9.4rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
}

.learn-hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.mentor-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 94px);
  align-items: center;
  background: var(--white);
}

.mentor-portrait {
  min-height: clamp(430px, 58vw, 680px);
  display: grid;
  align-items: end;
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(0deg, rgba(33, 29, 26, 0.58), rgba(33, 29, 26, 0.06)),
    var(--image, url("../assets/images/hero/studio-hero.png")) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.mentor-portrait span {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.9;
}

.mentor-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.04rem;
}

.mentor-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 32px 0 0;
}

.mentor-stats div,
.benefit-grid article,
.pricing-card,
.faq-grid details {
  border: 1px solid var(--line);
  background: var(--surface-glow);
}

.mentor-stats div {
  padding: 20px;
}

.mentor-stats dt {
  color: var(--rose);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
}

.mentor-stats dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.benefit-grid,
.pricing-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-grid article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, #fffdf8, #f3e4d2);
}

.benefit-grid span {
  display: block;
  margin-bottom: 54px;
  color: var(--rose);
  font-weight: 800;
}

.benefit-grid h3,
.pricing-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  line-height: 0.95;
}

.benefit-grid p,
.pricing-card p,
.faq-grid p,
.enrolment-copy p {
  color: var(--muted);
}

.curriculum-section,
.pricing-section,
.faq-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(182, 106, 97, 0.08), transparent 34%),
    var(--paper);
}

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

.curriculum-grid article {
  min-height: 280px;
  display: flex;
  align-items: end;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(33, 29, 26, 0.64), rgba(33, 29, 26, 0.05)),
    var(--image, url("../assets/images/hero/studio-hero.png")) center / cover no-repeat;
  transition: transform 180ms ease, filter 180ms ease;
}

.curriculum-grid article:hover {
  filter: saturate(1.08);
  transform: translateY(-5px);
}

.curriculum-grid span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 3.4vw, 3.8rem);
  line-height: 0.95;
}

.class-process {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pricing-card {
  display: grid;
  align-content: end;
  min-height: 430px;
  padding: clamp(24px, 4vw, 42px);
}

.pricing-card.featured {
  background:
    radial-gradient(circle at 18% 18%, rgba(194, 139, 99, 0.22), transparent 38%),
    linear-gradient(145deg, var(--blue), #18273a);
  color: var(--white);
}

.pricing-card.featured p {
  color: rgba(255, 253, 248, 0.76);
}

.pricing-card strong {
  display: block;
  margin: 22px 0 10px;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
}

.pricing-card .button {
  justify-self: start;
  margin-top: 16px;
}

.enrolment-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(239, 229, 213, 0.96), rgba(248, 243, 234, 0.78)),
    radial-gradient(circle at 80% 10%, rgba(120, 134, 106, 0.14), transparent 34%);
}

.enrolment-copy {
  position: sticky;
  top: 118px;
}

.enrolment-flow {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: enrolment;
}

.enrolment-flow li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.54);
  counter-increment: enrolment;
  font-weight: 800;
}

.enrolment-flow li::before {
  content: "0" counter(enrolment);
  margin-right: 16px;
  color: var(--rose);
}

.enrolment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: var(--white);
}

.enrolment-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.enrolment-form .full-field,
.enrolment-form button,
.form-success {
  grid-column: 1 / -1;
}

.form-success {
  margin: 0;
  padding: 15px 16px;
  background: rgba(120, 134, 106, 0.16);
  color: var(--ink);
  font-weight: 800;
}

.faq-grid details {
  padding: 0;
  overflow: hidden;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-grid details:hover,
.faq-grid details:focus-within {
  border-color: rgba(182, 106, 97, 0.4);
  box-shadow: 0 18px 46px rgba(33, 29, 26, 0.08);
  transform: translateY(-3px);
}

.faq-grid details[open] {
  background: #fffaf1;
}

.faq-grid summary {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  color: var(--ink);
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  list-style: none;
}

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

.faq-grid summary::before {
  content: "+";
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--rose);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.faq-grid details[open] summary::before {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-grid p {
  margin: -8px 0 0;
  padding: 0 clamp(22px, 3vw, 32px) clamp(24px, 3vw, 34px) calc(clamp(22px, 3vw, 32px) + 56px);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.faq-grid details[open] p {
  opacity: 1;
  transform: translateY(0);
}

.shop-hero,
.compact-hero {
  min-height: 54svh;
}

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

.product-card {
  display: grid;
  grid-template-rows: minmax(310px, 0.9fr) auto;
  border: 1px solid var(--line);
  background: var(--surface-glow);
  overflow: hidden;
}

.product-card-image,
.related-card,
.cart-thumb {
  background:
    linear-gradient(0deg, rgba(33, 29, 26, 0.28), rgba(33, 29, 26, 0.02)),
    var(--image) center / cover no-repeat;
}

.product-card-copy {
  padding: 24px;
}

.product-card-copy h2 {
  font-size: clamp(2.3rem, 3.6vw, 3.8rem);
}

.product-card-copy p:not(.eyebrow) {
  color: var(--muted);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}

.product-card-footer strong,
.product-price {
  font-size: 1.25rem;
}

.product-page {
  padding-top: 92px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: calc(100svh - 92px);
  background: linear-gradient(135deg, var(--white), var(--paper));
}

.product-carousel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(22px, 5vw, 64px);
  background: var(--dark-glow);
  color: var(--white);
}

.carousel-frame {
  position: relative;
  display: flex;
  min-height: min(68svh, 720px);
  overflow: hidden;
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  display: grid;
  place-items: center;
}

.carousel-slide img {
  width: 100%;
  height: min(68svh, 720px);
  object-fit: contain;
  transform: scale(0.985);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
}

.carousel-slide img:hover {
  transform: scale(1);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 253, 248, 0.46);
  border-radius: 50%;
  background: rgba(33, 29, 26, 0.34);
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  opacity: 0.72;
  backdrop-filter: blur(12px);
  transform: translateY(-50%) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  opacity: 1;
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
  transform: translateY(-50%) scale(1.06);
}

.carousel-arrow.prev {
  left: clamp(12px, 3vw, 34px);
}

.carousel-arrow.next {
  right: clamp(12px, 3vw, 34px);
}

.carousel-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(255, 253, 248, 0.72);
  font-weight: 800;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 253, 248, 0.72);
  cursor: pointer;
  transition: width 220ms ease, border-radius 220ms ease, background 220ms ease, color 220ms ease, opacity 220ms ease, transform 180ms ease;
}

.carousel-dot.is-active {
  width: 28px;
  background: var(--white);
  border-radius: 999px;
  color: var(--white);
}

.carousel-dot:hover,
.carousel-dot:focus-visible {
  background: var(--white);
  color: var(--white);
  transform: scale(1.18);
}

.product-info {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(28px, 5vw, 70px);
}

.product-info h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 600;
  line-height: 0.95;
}

.product-info p {
  color: var(--muted);
}

.field-label,
.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.dark-on-light {
  background: var(--paper-deep);
  border-color: var(--paper-deep);
  color: var(--ink);
}

.related-section {
  background: var(--paper);
}

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

.related-card {
  min-height: 260px;
  display: flex;
  align-items: end;
  padding: 22px;
  color: var(--white);
}

.related-card span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
}

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

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.cart-thumb {
  min-height: 110px;
}

.cart-item h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.cart-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}

.quantity-controls button,
.text-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.quantity-controls button {
  width: 38px;
  height: 38px;
}

.quantity-controls button:hover,
.quantity-controls button:focus-visible,
.text-button:hover,
.text-button:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: scale(1.04);
}

.quantity-controls span {
  min-width: 32px;
  text-align: center;
  font-weight: 800;
}

.cart-summary,
.checkout-summary,
.empty-state {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: var(--surface-glow);
}

.cart-summary {
  align-self: start;
  position: sticky;
  top: 110px;
}

.cart-summary p,
.checkout-summary p {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.cart-summary strong {
  display: block;
  margin-bottom: 22px;
  font-size: 2rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 20px;
}

.checkout-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: var(--surface-glow);
}

.checkout-form label:nth-child(4),
.checkout-form label:nth-child(7),
.checkout-form button {
  grid-column: 1 / -1;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.summary-row.total {
  border-bottom: 0;
  font-size: 1.25rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
  min-height: 330px;
  border: 1px solid var(--line);
  background: var(--surface-glow);
  overflow: hidden;
}

.service-card-wide {
  grid-column: 1 / -1;
}

.service-visual {
  background:
    linear-gradient(0deg, rgba(33, 29, 26, 0.28), rgba(33, 29, 26, 0.02)),
    var(--image) center / cover no-repeat;
}

.service-copy {
  display: grid;
  align-content: end;
  padding: clamp(24px, 4vw, 46px);
}

.service-copy span {
  display: block;
  margin-bottom: clamp(52px, 8vw, 96px);
  color: var(--rose);
  font-weight: 800;
}

.service-copy h2 {
  font-size: clamp(2.45rem, 4.6vw, 4.9rem);
}

.service-copy p {
  max-width: 420px;
  margin: 16px 0 24px;
  color: var(--muted);
}

.service-copy ul {
  display: grid;
  gap: 7px;
  margin: 0 0 26px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-copy li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--rose);
  vertical-align: 0.12em;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.service-actions .button {
  min-height: 44px;
  padding: 11px 18px;
}

.service-actions .text-link {
  flex: 0 0 auto;
}

.footer-actions {
  align-content: end;
  justify-content: flex-end;
}

.footer-actions a {
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header.is-open {
    min-height: 100svh;
    align-items: flex-start;
    background: var(--paper);
    backdrop-filter: none;
  }

  .site-header.is-open .brand,
  .site-header.is-open .nav-toggle {
    position: relative;
    z-index: 23;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 22;
  }

  .site-nav {
    position: absolute;
    inset: 0;
    z-index: 21;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(7px, 1.8svh, 14px);
    padding: 88px 24px 34px;
    background: var(--paper);
    color: var(--ink);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.9rem, 6.6vw, 3.05rem);
    font-weight: 600;
    text-transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 260ms ease, opacity 200ms ease, visibility 0s linear 260ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    width: 100%;
    max-width: 340px;
    padding: 6px 18px 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-align: center;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a:active {
    border-color: rgba(44, 35, 29, 0.2);
    background: rgba(44, 35, 29, 0.06);
    color: var(--clay);
    transform: scale(0.98);
  }

  .studio-grid,
  .learn-steps,
  .process-list,
  .service-grid,
  .product-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-card,
  .service-card-wide,
  .gallery-collection-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .service-visual,
  .gallery-collection-visual {
    min-height: 260px;
  }

  .artwork-modal {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .modal-art {
    min-height: 58svh;
  }

  .artist-section,
  .learn-intro,
  .site-footer,
  .product-detail,
  .cart-layout,
  .checkout-layout,
  .mentor-section,
  .enrolment-section {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-contact {
    min-width: 0;
  }

  .cart-summary {
    position: static;
  }

  .enrolment-copy {
    position: static;
  }

  .benefit-grid,
  .pricing-grid,
  .faq-grid,
  .curriculum-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .moments-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 18px 18px;
  }

  .brand span:last-child {
    max-width: 170px;
    line-height: 1;
  }

  .hero {
    min-height: 100svh;
    padding: 124px 18px 58px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.6rem);
  }

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

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 70px 18px;
  }

  .section-heading,
  .split-heading {
    text-align: left;
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .split-heading {
    display: grid;
  }

  .studio-grid,
  .learn-steps,
  .process-list,
  .moments-strip,
  .testimonial-grid,
  .service-grid,
  .product-grid,
  .related-grid,
  .checkout-form,
  .benefit-grid,
  .pricing-grid,
  .faq-grid,
  .curriculum-grid,
  .mentor-stats,
  .enrolment-form {
    grid-template-columns: 1fr;
  }

  .product-page {
    padding-top: 78px;
  }

  .product-detail {
    min-height: 0;
  }

  .product-carousel {
    padding: 18px;
  }

  .carousel-frame,
  .carousel-slide img {
    min-height: 380px;
    height: 58svh;
  }

  .product-info h1 {
    font-size: clamp(3.4rem, 16vw, 5.5rem);
  }

  .cart-item {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .cart-item > strong,
  .cart-item > .text-button,
  .quantity-controls {
    grid-column: 2;
    justify-self: start;
  }

  .checkout-form label:nth-child(4),
  .checkout-form label:nth-child(7),
  .checkout-form button {
    grid-column: auto;
  }

  .gallery-toolbar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .filter-chip {
    flex: 0 0 auto;
  }

  .gallery-collection-card {
    min-height: 0;
  }

  .gallery-collection-visual {
    min-height: 330px;
  }

  .gallery-collection-copy {
    padding: 24px;
  }

  .gallery-collection-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .modal-copy dl {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    min-height: 64svh;
    padding: 126px 18px 58px;
  }

  .learn-hero {
    min-height: 88svh;
    padding: 126px 18px 58px;
  }

  .learn-hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.8rem);
  }

  .learn-hero .hero-actions {
    align-items: stretch;
  }

  .studio-card.wide,
  .studio-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .studio-card,
  .learn-steps article,
  .process-list li {
    min-height: 220px;
  }

  .offering-grid .studio-card {
    min-height: 280px;
  }

  .process-list li:not(:last-child)::after {
    right: auto;
    left: 26px;
    top: auto;
    bottom: -12px;
    width: 1px;
    height: 24px;
  }

  .artist-image,
  .testimonial-image,
  .mentor-portrait {
    min-height: 420px;
  }

  .artist-photo {
    border-width: 8px;
  }

  .artist-photo-main {
    width: min(78%, 340px);
  }

  .artist-photo-small {
    width: clamp(92px, 27vw, 132px);
  }

  .artist-photo-small.first {
    top: 10%;
  }

  .artist-photo-small.second {
    bottom: 24%;
  }

  .artist-nameplate {
    padding: 14px 16px;
  }

  .artist-actions {
    align-items: stretch;
  }

  .artist-actions .button {
    width: 100%;
  }

  .footer-contact a {
    display: grid;
    gap: 4px;
    overflow-wrap: anywhere;
  }

  .curriculum-grid article,
  .pricing-card {
    min-height: 260px;
  }

  .enrolment-form .full-field,
  .enrolment-form button,
  .form-success {
    grid-column: auto;
  }

  .learn-intro .button {
    justify-self: start;
  }

  .moments-strip article,
  .moments-strip article:nth-child(2),
  .moments-strip article:nth-child(4) {
    min-height: 260px;
  }
}

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

  .carousel-track,
  .carousel-slide img {
    transition: none !important;
  }
}
