:root {
  --ink: #29527a;
  --ink-soft: #557391;
  --cream: #fffdf6;
  --white: #ffffff;
  --sun: #ffd85c;
  --sun-soft: #fff1ad;
  --coral: #ff7d6f;
  --coral-soft: #ffe2dc;
  --sky: #58c7e8;
  --sky-soft: #dff6ff;
  --mint: #69d3a0;
  --mint-soft: #e0faec;
  --lilac: #b890f2;
  --lilac-soft: #f0e7ff;
  --pink: #ff9cc7;
  --peach: #ffbd80;
  --line: rgba(41, 82, 122, .16);
  --shadow: 0 24px 55px rgba(75, 123, 160, .16);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .wordmark { font-family: Georgia, "Times New Roman", serif; }
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.3vw, 6.8rem);
  line-height: .95;
  letter-spacing: -.052em;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.04em;
}
h3 { margin-bottom: 12px; font-size: 1.55rem; line-height: 1.08; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 5000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 12px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 27px;
  height: 8px;
  background: var(--coral);
  border-radius: 99px;
}
.section-title { max-width: 740px; margin-bottom: 50px; }
.section-title > p:last-child { color: var(--ink-soft); font-size: 1.08rem; }
.centered-title { margin-inline: auto; text-align: center; }
.centered-title .eyebrow { justify-content: center; }

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .2s ease, box-shadow .2s ease;
}
.topbar.scrolled {
  background: rgba(255, 253, 246, .94);
  box-shadow: 0 12px 35px rgba(74, 124, 161, .1);
  backdrop-filter: blur(15px);
}
.topbar-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  position: relative;
  z-index: 1002;
  color: var(--ink);
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  font-weight: 700;
}
.menu { display: flex; align-items: center; gap: 28px; }
.menu a { font-size: .9rem; font-weight: 900; }
.menu-contact {
  padding: 10px 18px;
  background: var(--sun);
  border-radius: 999px;
  box-shadow: 0 7px 0 rgba(255, 125, 111, .36);
}
.menu-button {
  display: none;
  position: relative;
  z-index: 1002;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: var(--sun);
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 99px;
  transition: .2s ease;
}
.menu-button.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button.active span:nth-child(2) { opacity: 0; }
.menu-button.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.entrance {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 126px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 216, 92, .64), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(255, 156, 199, .36), transparent 25%),
    radial-gradient(circle at 82% 84%, rgba(88, 199, 232, .32), transparent 27%),
    linear-gradient(135deg, #fffdf6 0%, #fff5c9 48%, #e8fbff 100%);
}
.entrance::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(41,82,122,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41,82,122,.11) 1px, transparent 1px);
  background-size: 54px 54px;
}
.entrance-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .78fr);
  align-items: center;
  gap: 68px;
}
.intro { max-width: 620px; margin-bottom: 28px; color: var(--ink-soft); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border-radius: 17px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.primary-button { color: var(--ink); background: var(--sun); box-shadow: 0 8px 0 rgba(255,125,111,.5); }
.light-button { background: rgba(255,255,255,.8); box-shadow: 0 8px 0 rgba(88,199,232,.28); }
.location-line { margin: 24px 0 0; color: var(--ink-soft); font-weight: 800; }
.paint-spot { position: absolute; z-index: 1; border-radius: 50%; filter: blur(.1px); }
.spot-one { width: 95px; height: 68px; left: 3%; bottom: 13%; background: var(--coral); transform: rotate(24deg); }
.spot-two { width: 72px; height: 104px; right: 5%; top: 19%; background: var(--lilac); transform: rotate(-18deg); }
.spot-three { width: 56px; height: 56px; left: 48%; top: 13%; background: var(--mint); }

.studio-front { position: relative; padding-bottom: 30px; filter: drop-shadow(0 25px 22px rgba(75,123,160,.16)); }
.studio-sign {
  width: 72%;
  position: relative;
  z-index: 3;
  margin: 0 auto -5px;
  padding: 14px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 18px 18px 5px 5px;
  box-shadow: inset 0 -5px rgba(255,125,111,.22);
  text-align: center;
  font-weight: 900;
  letter-spacing: .12em;
}
.studio-wall {
  min-height: 405px;
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  align-items: end;
  gap: 12px;
  padding: 40px 25px 0;
  background: #fff3d8;
  border: 8px solid #9eddf0;
  border-bottom-width: 18px;
  border-radius: 22px 22px 8px 8px;
}
.display-window {
  height: 205px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #effcff, #cceff8);
  border: 7px solid #9eddf0;
  border-radius: 12px 12px 3px 3px;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.78);
}
.display-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(255,255,255,.58), transparent 30% 70%, rgba(255,255,255,.35));
}
.window-art { position: absolute; z-index: 1; border-radius: 18px; }
.art-one { width: 68px; height: 92px; left: 16px; top: 38px; background: linear-gradient(145deg, var(--coral) 0 48%, var(--sun) 48%); transform: rotate(-8deg); }
.art-two { width: 74px; height: 70px; right: 13px; top: 65px; background: radial-gradient(circle, var(--pink) 0 30%, transparent 31%), var(--mint-soft); transform: rotate(7deg); }
.double-door { height: 290px; position: relative; display: grid; grid-template-columns: 1fr 1fr; perspective: 900px; }
.door-panel {
  position: relative;
  background: linear-gradient(180deg, #ff9cc7, #ffb888);
  border: 6px solid #ffcf8d;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.45);
  transition: transform .7s ease;
}
.door-left { transform-origin: left center; border-radius: 12px 2px 2px 3px; }
.door-right { transform-origin: right center; border-radius: 2px 12px 3px 2px; }
.double-door i { position: absolute; top: 50%; width: 10px; height: 10px; background: var(--sun); border-radius: 50%; }
.door-left i { right: 11px; }
.door-right i { left: 11px; }
.double-door b {
  position: absolute;
  z-index: 5;
  top: 35px;
  left: 50%;
  padding: 8px 13px;
  background: var(--white);
  border-radius: 10px;
  font-size: .75rem;
  letter-spacing: .12em;
  transform: translateX(-50%) rotate(-2deg);
  transition: opacity .3s ease;
}
.studio-front.opened .door-left { transform: rotateY(-72deg); }
.studio-front.opened .door-right { transform: rotateY(72deg); }
.studio-front.opened .double-door b { opacity: 0; }
.brush-cup { width: 70px; height: 76px; position: absolute; z-index: 2; left: 50%; bottom: 28px; background: var(--coral); border-radius: 10px 10px 28px 28px; transform: translateX(-50%); }
.brush-cup i { position: absolute; bottom: 65px; width: 7px; height: 83px; background: #7ca7c3; border-radius: 99px 99px 0 0; transform-origin: bottom; }
.brush-cup i:nth-child(1) { left: 12px; transform: rotate(-17deg); }
.brush-cup i:nth-child(2) { left: 28px; transform: rotate(-4deg); }
.brush-cup i:nth-child(3) { right: 20px; transform: rotate(9deg); }
.brush-cup i:nth-child(4) { right: 7px; transform: rotate(19deg); }
.doorstep { width: 48%; margin: 0 auto; padding: 9px; background: var(--mint); border-radius: 3px 3px 20px 20px; text-align: center; font-size: .72rem; font-weight: 900; letter-spacing: .14em; }

.workshop { padding: 105px 0 120px; background: #f3fcff; }
.hallway {
  position: relative;
  padding: 64px 36px 72px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.75), rgba(255,255,255,.25)),
    repeating-linear-gradient(90deg, #f9e6bf 0 58px, #f2d8aa 58px 61px);
  border-radius: 36px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hallway::before {
  content: "";
  position: absolute;
  inset: 0 0 34% 0;
  background: linear-gradient(180deg, #ffffff, #eefbff);
}
.hallway-ceiling { position: absolute; z-index: 2; top: 16px; left: 12%; right: 12%; display: flex; justify-content: space-around; }
.hallway-ceiling span { width: 90px; height: 16px; background: #fff4a9; border-radius: 999px; box-shadow: 0 7px 18px rgba(255,216,92,.42); }
.room-grid { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: end; gap: 14px; }
.room {
  min-height: 355px;
  position: relative;
  border-radius: 22px 22px 8px 8px;
  box-shadow: 0 18px 32px rgba(75,123,160,.14);
  overflow: hidden;
  transition: transform .2s ease;
}
.room:hover { transform: translateY(-7px); }
.room[open] { min-height: 420px; }
.room-coral { background: var(--coral-soft); }
.room-sky { background: var(--sky-soft); }
.room-yellow { background: var(--sun-soft); }
.room-mint { background: var(--mint-soft); }
.room-lilac { background: var(--lilac-soft); }
.room summary {
  min-height: 355px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  padding: 20px 13px 25px;
  list-style: none;
  cursor: pointer;
  text-align: center;
}
.room summary::-webkit-details-marker { display: none; }
.room summary::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 67px;
  width: 10px;
  height: 10px;
  background: var(--sun);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,.65);
}
.room-number { position: absolute; top: 14px; left: 15px; font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.room-art {
  position: absolute;
  top: 48px;
  left: 12px;
  right: 12px;
  height: 150px;
  background: rgba(255,255,255,.82);
  border-radius: 14px;
  overflow: hidden;
}
.room-art i, .room-art b { position: absolute; display: block; }
.personalized-art i:first-child { width: 90px; height: 95px; left: 50%; top: 25px; background: linear-gradient(135deg, var(--sun), var(--coral)); border-radius: 18px; transform: translateX(-50%) rotate(-5deg); }
.personalized-art i:last-child { width: 100px; height: 8px; left: 50%; bottom: 12px; background: var(--sky); border-radius: 99px; transform: translateX(-50%); }
.copies-art i { width: 72px; height: 95px; top: 25px; border-radius: 12px; }
.copies-art i:first-child { left: 19%; background: var(--sun); transform: rotate(-7deg); }
.copies-art i:last-child { right: 19%; background: var(--pink); transform: rotate(7deg); }
.murals-art i:first-child { inset: 0; background: linear-gradient(135deg, var(--pink) 0 25%, var(--sun) 25% 48%, var(--sky) 48% 72%, var(--lilac) 72%); }
.murals-art i:last-child { width: 85px; height: 85px; right: 10px; top: 10px; background: rgba(255,255,255,.68); border-radius: 50%; }
.murals-art b { width: 120px; height: 17px; left: 10px; bottom: 17px; background: rgba(255,255,255,.7); border-radius: 99px; }
.restoration-art i { width: 96px; height: 112px; left: 50%; top: 17px; background: linear-gradient(160deg, var(--sun), #fff); border: 10px solid var(--mint); border-radius: 8px; transform: translateX(-50%); }
.restoration-art b { width: 8px; height: 105px; right: 22px; top: 24px; background: var(--coral); border-radius: 99px; transform: rotate(24deg); }
.decoration-art i:first-child { width: 83px; height: 64px; left: 14px; top: 20px; background: var(--pink); border-radius: 55% 45% 50% 50%; }
.decoration-art i:last-child { width: 56px; height: 56px; right: 16px; top: 27px; background: var(--sun); border-radius: 50%; }
.decoration-art b { width: 130px; height: 19px; left: 50%; bottom: 20px; background: var(--mint); border-radius: 99px; transform: translateX(-50%); }
.room strong { max-width: 165px; font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; line-height: 1.05; }
.room small { font-size: .68rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.room-info { margin: -10px 13px 14px; padding: 15px; background: rgba(255,255,255,.78); border-radius: 14px; text-align: center; }
.room-info p { margin-bottom: 9px; }
.room-info a { display: inline-block; padding: 8px 14px; background: var(--white); border-radius: 999px; font-weight: 900; }
.hallway-floor { position: absolute; z-index: 1; inset: 66% 0 0; background: repeating-linear-gradient(90deg, #f1d09b 0 54px, #e8c188 54px 58px); }

.gallery { padding: 115px 0; background: linear-gradient(135deg, #fff3c8, #ffe7ef 50%, #e5faff); }
.gallery-layout { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); align-items: center; gap: 70px; }
.gallery-copy p:last-child { color: var(--ink-soft); font-size: 1.08rem; }
.gallery-wall {
  min-height: 470px;
  position: relative;
  background: #fffefb;
  border-radius: 32px 32px 12px 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.gallery-wall::after { content: ""; position: absolute; inset: auto 0 0; height: 92px; background: repeating-linear-gradient(90deg, #f3d5a4 0 52px, #e9c58c 52px 56px); }
.frame { position: absolute; z-index: 2; display: grid; place-items: center; padding: 10px; background: var(--white); box-shadow: 0 10px 22px rgba(75,123,160,.15); }
.frame::before { content: ""; position: absolute; inset: 9px; background: linear-gradient(145deg, var(--sky-soft), var(--lilac-soft)); }
.frame span { position: relative; z-index: 2; padding: 7px 10px; background: rgba(255,255,255,.86); border-radius: 999px; font-size: .7rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.frame-one { width: 28%; height: 52%; left: 8%; top: 11%; transform: rotate(-2deg); }
.frame-two { width: 40%; height: 36%; left: 39%; top: 15%; transform: rotate(1.5deg); }
.frame-three { width: 25%; height: 43%; right: 5%; top: 42%; transform: rotate(-1deg); }
.gallery-bench { position: absolute; z-index: 3; left: 35%; bottom: 62px; width: 230px; height: 48px; background: var(--coral); border-radius: 18px; }
.gallery-bench::before, .gallery-bench::after { content: ""; position: absolute; top: 43px; width: 11px; height: 68px; background: #8bcbe0; border-radius: 0 0 8px 8px; }
.gallery-bench::before { left: 28px; }
.gallery-bench::after { right: 28px; }
.gallery-plant { position: absolute; z-index: 3; left: 7%; bottom: 74px; width: 64px; height: 62px; background: var(--peach); border-radius: 12px 12px 28px 28px; }
.gallery-plant i { position: absolute; bottom: 45px; width: 27px; height: 68px; background: var(--mint); border-radius: 100% 0 100% 0; transform-origin: bottom; }
.gallery-plant i:nth-child(1) { left: 5px; transform: rotate(-30deg); }
.gallery-plant i:nth-child(2) { left: 20px; height: 82px; }
.gallery-plant i:nth-child(3) { right: 4px; transform: rotate(30deg) scaleX(-1); }

.rooms-section { padding: 110px 0; background: #fffdf6; }
.support-rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.support-room { min-height: 340px; padding: 34px; border-radius: 30px; box-shadow: var(--shadow); }
.recommendations { background: var(--coral-soft); }
.techniques { background: var(--sky-soft); }
.ideas-room { background: var(--sun-soft); }
.support-room p { color: var(--ink-soft); }
.room-icon { width: 88px; height: 88px; position: relative; margin-bottom: 28px; background: rgba(255,255,255,.72); border-radius: 24px; }
.room-icon span, .room-icon i, .room-icon b { position: absolute; display: block; }
.note-icon span { width: 46px; height: 58px; left: 21px; top: 15px; background: var(--sun); border-radius: 8px; transform: rotate(-5deg); }
.note-icon i { width: 36px; height: 7px; left: 28px; top: 38px; background: var(--coral); border-radius: 99px; box-shadow: 0 13px var(--sky); }
.palette-icon span { width: 59px; height: 50px; left: 14px; top: 18px; background: var(--lilac); border-radius: 55% 45% 52% 48%; }
.palette-icon i, .palette-icon b { width: 13px; height: 13px; border-radius: 50%; top: 31px; }
.palette-icon i { left: 28px; background: var(--sun); }
.palette-icon b { right: 27px; background: var(--coral); }
.bulb-icon span { width: 48px; height: 55px; left: 20px; top: 11px; background: var(--sun); border-radius: 50% 50% 42% 42%; }
.bulb-icon i { width: 25px; height: 17px; left: 32px; bottom: 10px; background: var(--sky); border-radius: 3px 3px 9px 9px; }
.idea-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.idea-chips a { padding: 8px 11px; background: rgba(255,255,255,.78); border-radius: 999px; font-size: .82rem; font-weight: 900; }

.customer-service { padding: 110px 0; background: linear-gradient(135deg, var(--mint-soft), #e8f8ff 55%, var(--lilac-soft)); }
.service-desk { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .75fr); align-items: center; gap: 72px; }
.desk-illustration { min-height: 420px; position: relative; background: rgba(255,255,255,.78); border-radius: 34px 34px 12px 12px; box-shadow: var(--shadow); overflow: hidden; }
.desk-illustration::after { content: ""; position: absolute; inset: auto 0 0; height: 105px; background: repeating-linear-gradient(90deg, #f2d2a0 0 52px, #e8c48c 52px 56px); }
.desk-backdrop { position: absolute; z-index: 2; inset: 34px 50px 130px; background: linear-gradient(140deg, #fff1ad, #dff6ff); border-radius: 22px; }
.desk-backdrop span { position: absolute; width: 120px; height: 105px; left: 12%; top: 18%; background: var(--pink); border-radius: 45% 55% 40% 60%; }
.desk-backdrop i { position: absolute; width: 90px; height: 90px; right: 13%; top: 22%; background: var(--sky); border-radius: 50%; }
.desk-backdrop b { position: absolute; width: 170px; height: 20px; left: 50%; bottom: 21%; background: var(--mint); border-radius: 99px; transform: translateX(-50%); }
.counter { position: absolute; z-index: 4; left: 13%; right: 13%; bottom: 58px; height: 125px; background: linear-gradient(180deg, var(--coral), #ff9b79); border-radius: 24px 24px 8px 8px; }
.counter::before { content: ""; position: absolute; left: -18px; right: -18px; top: -16px; height: 28px; background: var(--sun); border-radius: 15px; }
.counter i { position: absolute; top: 36px; width: 52px; height: 58px; background: rgba(255,255,255,.62); border-radius: 12px; }
.counter i:first-child { left: 24px; }
.counter i:last-child { right: 24px; }
.desk-lamp { position: absolute; z-index: 5; right: 20%; bottom: 170px; width: 14px; height: 90px; background: var(--sky); border-radius: 99px; }
.desk-lamp::before { content: ""; position: absolute; width: 75px; height: 38px; left: 50%; top: -14px; background: var(--sun); border-radius: 50% 50% 12px 12px; transform: translateX(-50%); }
.service-copy p { color: var(--ink-soft); }
.service-copy p strong { color: var(--ink); font-size: 1.1rem; }
.phone-link { display: inline-block; margin: 8px 0 18px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1; }
.coverage { max-width: 380px; }

footer { padding: 30px 0; background: #fff8d8; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner a { font-weight: 900; }

@media (max-width: 1000px) {
  .entrance-layout, .gallery-layout, .service-desk { grid-template-columns: 1fr; }
  .entrance-copy { text-align: center; }
  .entrance-copy .eyebrow { justify-content: center; }
  .intro, .location-line { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .studio-front { width: min(100%, 650px); margin-inline: auto; }
  .room-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .room { min-height: 340px; }
  .support-rooms { grid-template-columns: 1fr 1fr; }
  .ideas-room { grid-column: 1 / -1; }
  .gallery-copy { text-align: center; }
  .gallery-copy .eyebrow { justify-content: center; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 76px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar-inner { min-height: 72px; }
  .menu-button { display: block; }
  .menu {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 90px 24px 36px;
    background: rgba(255,253,246,.98);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: .2s ease;
  }
  .menu.open { visibility: visible; opacity: 1; transform: none; }
  .menu a { font-size: 1.35rem; }
  .entrance { padding: 110px 0 70px; }
  .entrance-layout { gap: 45px; }
  .studio-wall { min-height: 335px; grid-template-columns: .85fr 1.2fr .85fr; gap: 7px; padding: 30px 12px 0; border-width: 6px 6px 14px; }
  .display-window { height: 160px; border-width: 5px; }
  .double-door { height: 240px; }
  .studio-sign { width: 84%; font-size: .72rem; }
  .art-one { width: 47px; height: 70px; left: 7px; }
  .art-two { width: 52px; height: 48px; right: 6px; }
  .brush-cup { transform: translateX(-50%) scale(.78); transform-origin: bottom; }
  .workshop { padding: 82px 0 90px; }
  .hallway { padding: 60px 18px 60px; border-radius: 25px; }
  .room-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .room:last-child { grid-column: 1 / -1; width: calc(50% - 6px); justify-self: center; }
  .room, .room summary { min-height: 325px; }
  .gallery, .rooms-section, .customer-service { padding: 84px 0; }
  .gallery-wall { min-height: 390px; }
  .gallery-bench { left: 31%; width: 180px; }
  .support-rooms { grid-template-columns: 1fr; }
  .ideas-room { grid-column: auto; }
  .desk-illustration { min-height: 360px; }
  .desk-backdrop { inset: 28px 22px 118px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 470px) {
  h1 { font-size: clamp(2.75rem, 15vw, 4.2rem); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .studio-front { transform: scale(.97); }
  .studio-wall { min-height: 300px; }
  .display-window { height: 135px; }
  .double-door { height: 210px; }
  .room-grid { grid-template-columns: 1fr; }
  .room:last-child { grid-column: auto; width: 100%; }
  .room, .room summary { min-height: 310px; }
  .gallery-wall { min-height: 350px; }
  .frame-one { width: 32%; left: 4%; }
  .frame-two { width: 44%; left: 38%; }
  .frame-three { width: 29%; right: 3%; }
  .gallery-bench { width: 150px; left: 34%; }
  .gallery-plant { transform: scale(.82); transform-origin: bottom left; }
  .support-room { min-height: 0; padding: 27px; }
  .desk-illustration { min-height: 330px; }
}

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