:root {
  --ivory: #f7f8f7;
  --paper: #ffffff;
  --linen: #e3e6e3;
  --mist: rgba(255, 255, 255, 0.74);
  --ink: #211f1b;
  --muted: #6f7470;
  --line: rgba(33, 31, 27, 0.12);
  --shadow: 0 28px 80px rgba(34, 38, 36, 0.12);
  --glass: rgba(255, 255, 255, 0.48);
  --glass-strong: rgba(255, 255, 255, 0.68);
  --glass-line: rgba(255, 255, 255, 0.72);
  --glow: 0 30px 90px rgba(65, 75, 70, 0.09);
  --lift: 0 24px 70px rgba(35, 43, 39, 0.11);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 14%, rgba(214, 222, 218, 0.34), transparent 28rem),
    radial-gradient(circle at 18% 62%, rgba(226, 231, 228, 0.42), transparent 26rem),
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.98), transparent 30rem),
    linear-gradient(120deg, #ffffff 0%, #f2f4f3 48%, #ffffff 100%);
  font-family: "Times New Roman", "Songti SC", "SimSun", serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(36, 32, 25, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 32, 25, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent, black 14%, black 84%, transparent);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: minmax(8rem, 14rem) minmax(32rem, 1fr) minmax(6rem, 8.2rem);
  align-items: center;
  gap: 1.25rem;
  min-height: 56px;
  padding: 0 clamp(2rem, 6.7vw, 7rem);
  border: 1px solid var(--glass-line);
  border-right: 0;
  border-left: 0;
  background: rgba(255, 255, 255, 0.44);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  backdrop-filter: blur(22px) saturate(1.15);
  overflow: hidden;
  transition:
    min-height 700ms var(--ease),
    background 700ms var(--ease),
    box-shadow 700ms var(--ease);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.2)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.site-header.is-compact {
  min-height: 44px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 38px rgba(48, 42, 35, 0.07);
}

.brand {
  font-size: clamp(0.95rem, 1.16vw, 1.28rem);
  letter-spacing: 0.31em;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 3.4vw, 4.4rem);
  min-width: 0;
  font-size: 0.72rem;
}

.main-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.login-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 1.75rem;
  border: 1px solid rgba(33, 31, 27, 0.58);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.68rem;
  line-height: 1;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  white-space: nowrap;
}

.panel {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 6vw;
  overflow: clip;
}

.hero-sequence {
  --hero-progress: 0;
  position: relative;
  height: 220svh;
  background: var(--ivory);
}

.hero {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center start;
  min-height: 100svh;
  height: 100svh;
  padding-top: 56px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 248, 247, 0.96) 0%, rgba(247, 248, 247, 0.68) 46%, rgba(247, 248, 247, 0) 72%),
    radial-gradient(circle at 27% 48%, rgba(255, 255, 255, 0.72), transparent 20rem),
    var(--ivory);
}

.hero-bg {
  position: absolute;
  inset: 56px 0 0;
  padding-top: 0;
  overflow: hidden;
  background: var(--ivory);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      90deg,
      rgba(247, 248, 247, calc(0.9 - var(--hero-progress) * 0.18)) 0%,
      rgba(247, 248, 247, calc(0.58 - var(--hero-progress) * 0.18)) 42%,
      rgba(247, 248, 247, 0) 70%
    ),
    linear-gradient(to bottom, transparent 82%, rgba(247, 248, 247, 0.94) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0.66) contrast(0.94) brightness(1.08);
  transform:
    translateX(calc(var(--hero-progress) * -2.2vw))
    translateY(calc(var(--hero-progress) * 1.6vh))
    scale(calc(1.12 - var(--hero-progress) * 0.1));
  transition: filter 240ms linear;
}

.moon-window {
  position: absolute;
  top: calc(19% - var(--hero-progress) * 2%);
  left: calc(-7% + var(--hero-progress) * 5%);
  width: min(calc(55vw - var(--hero-progress) * 5vw), 720px);
  aspect-ratio: 1;
  border: clamp(0.8rem, 1.45vw, 1.35rem) solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow:
    inset 0 0 96px rgba(255, 255, 255, 0.38),
    0 20px 90px rgba(36, 43, 39, 0.08);
  opacity: calc(0.38 + var(--hero-progress) * 0.42);
  transform: translateY(calc(var(--hero-progress) * -1.4vh));
}

.moon-window::after {
  position: absolute;
  inset: 12% 18% 18% 14%;
  content: "";
  border-radius: 50%;
  background:
    linear-gradient(rgba(105, 109, 98, 0.18), rgba(105, 109, 98, 0.02)),
    radial-gradient(circle at 30% 70%, rgba(90, 95, 86, 0.22), transparent 28%),
    radial-gradient(circle at 55% 60%, rgba(90, 95, 86, 0.13), transparent 24%);
  filter: blur(5px);
  opacity: calc(0.25 + var(--hero-progress) * 0.36);
}

.hero-veil {
  position: absolute;
  left: -18vw;
  right: -18vw;
  top: 30%;
  z-index: 1;
  height: 28vh;
  pointer-events: none;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.76) 24%, rgba(230, 235, 232, 0.38) 50%, rgba(255, 255, 255, 0.68) 74%, transparent 100%);
  filter: blur(10px);
  opacity: calc(0.7 - var(--hero-progress) * 0.48);
  transform:
    translateX(calc(-8vw + var(--hero-progress) * 22vw))
    translateY(calc(var(--hero-progress) * 7vh))
    rotate(calc(-8deg + var(--hero-progress) * 12deg))
    scale(calc(1 + var(--hero-progress) * 0.18));
  mix-blend-mode: screen;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: clamp(3.5rem, 13vw, 15rem);
  padding-top: clamp(1rem, 5vh, 4rem);
  text-shadow: 0 1px 28px rgba(255, 255, 255, 0.86);
  opacity: calc(0.72 + var(--hero-progress) * 0.28);
  transform:
    translateY(calc((1 - var(--hero-progress)) * 3.5vh))
    scale(calc(1.06 - var(--hero-progress) * 0.06));
}

.hero-stage-note {
  position: absolute;
  right: clamp(2rem, 7vw, 7rem);
  bottom: clamp(5rem, 9vh, 8rem);
  z-index: 2;
  max-width: 18rem;
  margin: 0;
  color: rgba(33, 31, 27, calc(var(--hero-progress) * 0.55));
  font-size: 0.82rem;
  line-height: 1.9;
  letter-spacing: 0.18em;
  transform: translateY(calc((1 - var(--hero-progress)) * 1.6rem));
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.05rem;
  font-size: clamp(2.35rem, 3.45vw, 4.15rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.06em;
}

.hero-subtitle {
  margin-bottom: 0;
  font-size: clamp(0.82rem, 0.98vw, 1.02rem);
  letter-spacing: 0.38em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(33, 31, 27, 0.86);
  font-size: 0.9rem;
}

.text-link::after {
  display: block;
  width: 5rem;
  height: 1px;
  content: "";
  background: currentColor;
  transition: width 420ms var(--ease);
}

.text-link:hover::after {
  width: 7.2rem;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  width: 0.78rem;
  height: 2.1rem;
  border: 1px solid rgba(33, 31, 27, 0.35);
  border-radius: 999px;
  transform: translateX(-50%);
  opacity: calc(1 - var(--hero-progress) * 1.35);
}

.scroll-cue span {
  position: absolute;
  top: 0.45rem;
  left: 50%;
  width: 2px;
  height: 0.55rem;
  border-radius: 99px;
  background: var(--ink);
  animation: cue 1.8s infinite;
}

@keyframes cue {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, 0);
  }
  42% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: translate(-50%, 1.05rem);
  }
}

.silk-story {
  display: grid;
  place-items: center;
  min-height: 510px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.82), transparent 32rem),
    linear-gradient(180deg, var(--ivory), #eef1ef),
    var(--ivory);
}

.home-silk {
  padding: 0;
  background-color: #eef1ef;
}

.silk-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.42) blur(1.5px) brightness(1.08);
  opacity: 0.36;
}

.home-silk::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.34), transparent 24rem),
    linear-gradient(90deg, rgba(250, 251, 250, 0.28), rgba(255, 255, 255, 0.64), rgba(244, 247, 245, 0.26));
}

.silk-orbit {
  position: absolute;
  inset: 0;
  filter: blur(0.2px);
}

.silk {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 22vh;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), rgba(232, 237, 234, 0.52), transparent);
  opacity: 0.8;
  transform: rotate(-9deg);
  animation: drift 12s ease-in-out infinite alternate;
}

.silk-a {
  top: 20%;
}

.silk-b {
  top: 42%;
  transform: rotate(7deg);
  animation-delay: -3s;
}

.silk-c {
  top: 60%;
  transform: rotate(-4deg);
  animation-delay: -6s;
}

@keyframes drift {
  from {
    translate: -3vw 0;
    scale: 0.98;
  }
  to {
    translate: 4vw 2vh;
    scale: 1.04;
  }
}

.story-pin {
  position: relative;
  z-index: 2;
  width: min(560px, 58vw);
  min-height: 250px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: clamp(2rem, 3.8vw, 3.8rem);
  border: 1px solid var(--glass-line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.38);
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 36px 120px rgba(87, 75, 58, 0.18);
}

.story-pin h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(1.05rem, 1.28vw, 1.45rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.16em;
}

.story-pin p {
  color: rgba(33, 31, 27, 0.7);
  font-size: clamp(0.72rem, 0.86vw, 0.88rem);
  line-height: 2;
}

.play-link {
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  margin-top: 1.5rem;
  border: 1px solid rgba(33, 31, 27, 0.26);
  border-radius: 50%;
  font-size: 1.5rem;
  transform: rotate(90deg);
  transition:
    background 360ms var(--ease),
    transform 360ms var(--ease);
}

.play-link:hover {
  background: rgba(255, 255, 255, 0.64);
  transform: rotate(90deg) translateX(0.18rem);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  height: 560px;
  padding: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.78), transparent 22rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(239, 242, 240, 0.86));
}

.about-copy {
  display: grid;
  align-content: center;
  max-width: 440px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) 6vw;
}

.about-copy h2,
.craft-heading h2,
.page-hero h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(1.38rem, 1.78vw, 2.15rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.055em;
}

.about-copy p,
.craft-heading p,
.page-hero p,
.page-card p,
.footer-contact span {
  color: rgba(33, 31, 27, 0.68);
  font-size: 0.82rem;
  line-height: 2;
}

.about-still {
  min-height: 560px;
  height: 560px;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.52);
}

.about-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  filter: saturate(0.56) brightness(1.08);
  transition: transform 900ms var(--ease);
}

.about-split:hover .about-still img {
  transform: scale(1.04);
}

.craft-strip {
  min-height: auto;
  padding: clamp(3.2rem, 5vw, 5.3rem) 0 0;
  background: linear-gradient(180deg, #ffffff, #eef1ef);
}

.craft-heading {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 3.2vw, 3.3rem);
  padding: 0 1.5rem;
  text-align: center;
}

.craft-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.craft-mosaic img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  filter: saturate(0.6);
}

.studio-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
  min-height: 520px;
  padding-top: clamp(4rem, 6vw, 6rem);
  padding-bottom: clamp(4rem, 6vw, 6rem);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(238, 242, 240, 0.66)),
    radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.72), transparent 22rem);
  border-top: 1px solid rgba(33, 31, 27, 0.08);
}

.studio-feature-image {
  height: 410px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 2rem;
  box-shadow: var(--glow);
}

.studio-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62) brightness(1.02);
  transition: transform 1000ms var(--ease);
}

.studio-feature:hover .studio-feature-image img {
  transform: scale(1.035);
}

.studio-feature-copy {
  max-width: 520px;
}

.studio-feature-copy h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(1.42rem, 1.95vw, 2.35rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.045em;
}

.studio-feature-copy > p:not(.eyebrow) {
  color: rgba(33, 31, 27, 0.68);
  font-size: 0.86rem;
  line-height: 2.05;
}

.studio-points {
  display: grid;
  margin: clamp(1.4rem, 2vw, 2rem) 0;
  border-top: 1px solid var(--line);
}

.studio-points span {
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
  color: rgba(33, 31, 27, 0.72);
  font-size: 0.78rem;
}

.gallery {
  min-height: auto;
  padding: 0;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.entry-card {
  position: relative;
  height: 390px;
  min-height: 0;
  overflow: hidden;
  background: #d9dfdc;
  isolation: isolate;
}

.entry-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(to top, rgba(26, 24, 20, 0.72), rgba(26, 24, 20, 0.14) 58%, rgba(26, 24, 20, 0.02)),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.18), transparent 34%);
  pointer-events: none;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  min-height: auto;
  padding-top: clamp(6rem, 8vw, 9rem);
  padding-bottom: clamp(6rem, 8vw, 9rem);
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 255, 255, 0.76), transparent 24rem),
    linear-gradient(180deg, #f7f9f8, #ffffff);
}

.faq-heading h2,
.closing-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.55vw, 3.35rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.035em;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--glass-line);
  border-radius: 1.6rem;
  background: var(--glass);
  box-shadow: 0 18px 60px rgba(87, 75, 58, 0.08);
  backdrop-filter: blur(22px);
  overflow: hidden;
  transition:
    transform 420ms var(--ease),
    box-shadow 420ms var(--ease),
    background 420ms var(--ease);
}

.faq-list details:hover,
.faq-list details[open] {
  background: var(--glass-strong);
  box-shadow: 0 24px 80px rgba(87, 75, 58, 0.12);
  transform: translateY(-2px);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.95rem;
}

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

.faq-list summary::after {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  color: var(--muted);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 1.5rem 1.45rem;
  color: rgba(33, 31, 27, 0.66);
  font-size: 0.88rem;
  line-height: 2;
}

.closing-cta {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding-top: clamp(5rem, 8vw, 9rem);
  padding-bottom: clamp(5rem, 8vw, 9rem);
  background:
    radial-gradient(circle at 22% 25%, rgba(228, 235, 232, 0.46), transparent 24rem),
    radial-gradient(circle at 78% 38%, rgba(218, 226, 222, 0.36), transparent 26rem),
    linear-gradient(180deg, #ffffff, #eef1ef);
}

.closing-card {
  width: min(860px, 100%);
  padding: clamp(2.5rem, 6vw, 6rem);
  border: 1px solid var(--glass-line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  box-shadow: var(--glow);
  backdrop-filter: blur(24px);
}

.closing-card .text-link {
  justify-content: center;
  margin-top: 2rem;
}

.entry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.78);
  transition:
    transform 900ms var(--ease),
    filter 900ms var(--ease);
}

.entry-card:hover img {
  transform: scale(1.06);
  filter: saturate(0.82) brightness(0.64);
}

.entry-card div {
  position: absolute;
  z-index: 2;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  color: #fffaf2;
  text-align: center;
}

.entry-card h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.15rem, 1.45vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.entry-card p {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.82rem;
}

.entry-card p span {
  display: grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid rgba(255, 250, 242, 0.68);
  border-radius: 50%;
}

.contact {
  min-height: auto;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: clamp(2rem, 6vw, 7rem);
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.74), rgba(236, 240, 238, 0.62)),
    url("assets/couture-wide-1.png") center / cover;
  background-blend-mode: screen;
  box-shadow: var(--shadow);
}

.appointment-form,
.subscribe {
  display: grid;
  gap: 1rem;
}

.appointment-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.82rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  padding: 0.95rem 1rem;
  color: var(--ink);
  outline: none;
}

textarea {
  min-height: 8.5rem;
  border-radius: 1.25rem;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(33, 31, 27, 0.54);
}

button {
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition:
    transform 320ms var(--ease),
    box-shadow 320ms var(--ease),
    background 320ms var(--ease);
}

button:hover {
  background: #12100d;
  box-shadow: 0 16px 42px rgba(33, 31, 27, 0.16);
  transform: translateY(-1px);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
  box-shadow: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 0.85fr 1.25fr 1.25fr;
  gap: 2.5rem;
  padding: clamp(2.5rem, 3.9vw, 4rem) 6.7vw 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(circle at 78% 12%, rgba(220, 228, 224, 0.26), transparent 22rem),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
}

.site-footer h2 {
  margin-bottom: 0.7rem;
  font-size: 1.22rem;
  font-weight: 400;
  letter-spacing: 0.34em;
}

.site-footer p,
.footer-links a {
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.footer-contact {
  display: grid;
  gap: 0.42rem;
  align-content: start;
}

.footer-contact strong {
  margin-bottom: 0.4rem;
  font-weight: 400;
  font-size: 0.84rem;
}

.page-hero {
  padding: clamp(8rem, 12vw, 12rem) 6vw clamp(3rem, 6vw, 6rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  background:
    radial-gradient(circle at 80% 24%, rgba(219, 228, 224, 0.28), transparent 25rem),
    radial-gradient(circle at 18% 55%, rgba(221, 231, 222, 0.22), transparent 25rem),
    linear-gradient(180deg, #ffffff, #eef1ef);
}

.page-hero > p {
  color: var(--muted);
  letter-spacing: 0.22em;
}

.page-hero span {
  color: var(--muted);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.6vw, 1.6rem);
  padding: clamp(2rem, 5vw, 5rem) 6vw;
}

.collection-card {
  padding: 0.55rem 0.55rem 1.25rem;
  border: 1px solid var(--glass-line);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 18px 60px rgba(87, 75, 58, 0.08);
  backdrop-filter: blur(18px);
  transition:
    transform 520ms var(--ease),
    box-shadow 520ms var(--ease);
}

.collection-card:hover {
  box-shadow: var(--lift);
  transform: translateY(-0.4rem);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  border-radius: 1.35rem;
  filter: saturate(0.66);
}

.collection-card h2 {
  margin: 1rem 0 0.35rem;
  padding: 0 0.7rem;
  font-size: 1.2rem;
  font-weight: 400;
}

.collection-card p {
  padding: 0 0.7rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.studio-hero {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  min-height: 78vh;
  padding-top: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  background:
    radial-gradient(circle at 24% 30%, rgba(255, 255, 255, 0.82), transparent 22rem),
    linear-gradient(120deg, #ffffff, #eef1ef);
}

.studio-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(3rem, 7vw, 7rem) 6vw;
}

.studio-copy h1,
.contact-info h1 {
  font-size: clamp(2rem, 3.2vw, 4rem);
  font-weight: 400;
}

.login-panel h1 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.35rem, 1.75vw, 1.85rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.studio-copy span,
.contact-info span {
  color: rgba(33, 31, 27, 0.68);
  line-height: 2;
}

.studio-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62);
}

.service-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: clamp(1.2rem, 2vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.7), transparent 22rem),
    linear-gradient(180deg, #ffffff, #eef1ef);
}

.page-card {
  min-height: 18rem;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--glass-line);
  border-radius: 1.65rem;
  background: rgba(255, 255, 255, 0.48);
  text-align: center;
  box-shadow: 0 16px 54px rgba(87, 75, 58, 0.07);
  backdrop-filter: blur(18px);
  transition:
    transform 480ms var(--ease),
    box-shadow 480ms var(--ease),
    background 480ms var(--ease);
}

.page-card:last-child {
  border-right: 1px solid var(--glass-line);
}

.page-card:hover {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--lift);
  transform: translateY(-0.35rem);
}

.page-card span {
  display: block;
  margin-bottom: 2rem;
  color: var(--muted);
}

.page-card h2 {
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 400;
}

.contact-page {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  min-height: 78vh;
  padding: clamp(8rem, 12vw, 12rem) 12vw clamp(4rem, 7vw, 7rem);
  gap: clamp(3rem, 7vw, 8rem);
  background:
    radial-gradient(circle at 78% 20%, rgba(218, 226, 222, 0.32), transparent 24rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 248, 0.72)),
    url("assets/homepage-concept.png") right center / cover;
}

.contact-info,
.contact-form,
.login-panel {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.appointment-steps {
  display: grid;
  margin: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.appointment-steps span {
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--line);
  color: rgba(33, 31, 27, 0.72);
  font-size: 0.82rem;
}

.contact-form {
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--glass-line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(24px);
  box-shadow: var(--glow);
}

.contact-form label,
.login-panel label {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.login-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 7rem 1rem 3rem;
  background:
    radial-gradient(circle at 72% 22%, rgba(220, 228, 224, 0.36), transparent 24rem),
    radial-gradient(circle at 24% 72%, rgba(221, 231, 222, 0.26), transparent 24rem),
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(247, 249, 248, 0.92)),
    url("assets/couture-wide-1.png") center / cover;
}

.login-panel {
  width: min(440px, 92vw);
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--glass-line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(24px);
  box-shadow: var(--glow);
}

.login-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.login-meta label {
  display: flex;
  align-items: center;
}

.login-meta input {
  width: auto;
}

.login-panel p {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.78rem;
}

.login-panel p.is-error {
  color: #9f2f24;
}

.compact-footer {
  grid-template-columns: 1fr 1fr;
}

.subscribe {
  grid-template-columns: 1fr 3.4rem;
  align-content: start;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 1000ms var(--ease),
    transform 1000ms var(--ease);
}

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

@media (max-width: 900px) {
  .site-header {
    display: grid;
    grid-template-columns: 3rem 1fr 3rem;
    gap: 0;
    min-height: 4rem;
    padding: 0.85rem 1rem;
    border-right: 1px solid var(--glass-line);
    border-left: 1px solid var(--glass-line);
    overflow: hidden;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    font-size: 1.1rem;
  }

  .menu-toggle {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    align-self: center;
    position: relative;
    display: block;
    width: 2.4rem;
    height: 2rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .menu-toggle span {
    position: absolute;
    left: 0.45rem;
    display: block;
    width: 1.45rem;
    height: 1px;
    transform-origin: center;
    background: var(--ink);
    transition:
      top 360ms var(--ease),
      width 360ms var(--ease),
      transform 420ms var(--ease),
      opacity 260ms var(--ease);
  }

  .menu-toggle span:first-child {
    top: 0.72rem;
  }

  .menu-toggle span + span {
    top: 1.17rem;
    width: 1.1rem;
    margin-top: 0;
  }

  .menu-toggle:hover span:first-child,
  .menu-toggle:focus-visible span:first-child {
    width: 1.1rem;
    transform: translateX(0.35rem);
  }

  .menu-toggle:hover span:last-child,
  .menu-toggle:focus-visible span:last-child {
    width: 1.45rem;
    transform: translateX(-0.35rem);
  }

  .site-header.is-menu-open .menu-toggle span:first-child {
    top: 0.96rem;
    width: 1.45rem;
    transform: rotate(38deg);
  }

  .site-header.is-menu-open .menu-toggle span:last-child {
    top: 0.96rem;
    width: 1.45rem;
    transform: rotate(-38deg);
  }

  .site-header.is-menu-open .menu-toggle:hover span,
  .site-header.is-menu-open .menu-toggle:focus-visible span {
    transform-origin: center;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    justify-content: stretch;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    border-top: 1px solid transparent;
    transition:
      max-height 420ms var(--ease),
      opacity 260ms var(--ease),
      padding 420ms var(--ease),
      border-color 420ms var(--ease);
    white-space: normal;
  }

  .main-nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .login-button {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: stretch;
    width: 100%;
    max-height: 0;
    height: auto;
    min-height: 0;
    overflow: hidden;
    border-color: transparent;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 420ms var(--ease),
      opacity 260ms var(--ease),
      padding 420ms var(--ease),
      border-color 420ms var(--ease);
  }

  .site-header.is-menu-open .main-nav {
    max-height: 18rem;
    padding-top: 0.8rem;
    opacity: 1;
    pointer-events: auto;
    border-top-color: var(--line);
  }

  .site-header.is-menu-open .login-button {
    justify-self: stretch;
    width: 100%;
    max-height: 3rem;
    margin-top: 0.9rem;
    padding: 0.85rem 1rem;
    border-color: rgba(33, 31, 27, 0.52);
    opacity: 1;
    pointer-events: auto;
  }

  .panel {
    padding: 6rem 1rem;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    padding-top: 8rem;
  }

  .hero-bg {
    inset: 0;
    padding-top: 7rem;
  }

  .moon-window {
    top: 22%;
    left: -18%;
    width: 105vw;
  }

  .hero-subtitle {
    letter-spacing: 0.28em;
  }

  .about-split,
  .craft-mosaic,
  .studio-feature,
  .entry-grid,
  .site-footer,
  .collection-grid,
  .studio-hero,
  .service-row,
  .contact-page,
  .compact-footer {
    grid-template-columns: 1fr;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-still,
  .studio-hero img {
    min-height: 25rem;
  }

  .entry-card {
    min-height: 24rem;
  }

  .service-row .page-card {
    border-right: 1px solid var(--glass-line);
    border-bottom: 1px solid var(--glass-line);
  }
}

@media (max-width: 700px) {
  body {
    background: linear-gradient(180deg, #ffffff 0%, #eef1ef 100%);
  }

  .site-header {
    gap: 0;
    padding: 0.72rem 1rem 0.65rem;
    background: rgba(255, 255, 255, 0.54);
  }

  .brand {
    max-width: calc(100vw - 8rem);
    font-size: 1rem;
    letter-spacing: 0.28em;
  }

  .login-button {
    width: 100%;
    min-width: 0;
    font-size: 0.68rem;
  }

  .main-nav {
    width: 100%;
    margin: 0;
    font-size: 0.76rem;
    scrollbar-width: none;
  }

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

  .panel {
    padding: 4rem 1.1rem;
  }

  .hero-sequence {
    height: 175svh;
  }

  .hero {
    min-height: 100svh;
    height: 100svh;
    padding: 0 1rem;
    align-items: center;
  }

  .hero-bg {
    inset: 6.65rem 0 0;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(247, 248, 247, 0.9) 0%, rgba(247, 248, 247, 0.5) 58%, rgba(247, 248, 247, 0.12) 100%),
      linear-gradient(to bottom, rgba(247, 248, 247, 0.08), rgba(247, 248, 247, 0.9) 88%, rgba(247, 248, 247, 0.98));
  }

  .hero-bg img {
    object-position: 62% center;
    transform:
      translateX(calc(var(--hero-progress) * -1vw))
      translateY(calc(var(--hero-progress) * 1vh))
      scale(calc(1.06 - var(--hero-progress) * 0.035));
  }

  .moon-window {
    top: calc(21% - var(--hero-progress) * 1%);
    left: calc(-42% + var(--hero-progress) * 6%);
    width: 120vw;
    opacity: calc(0.32 + var(--hero-progress) * 0.22);
  }

  .hero-veil {
    top: 38%;
    height: 18vh;
    opacity: calc(0.38 - var(--hero-progress) * 0.24);
    transform:
      translateX(calc(-12vw + var(--hero-progress) * 14vw))
      translateY(calc(var(--hero-progress) * 3vh))
      rotate(calc(-7deg + var(--hero-progress) * 7deg));
  }

  .hero-copy {
    width: min(100%, 22rem);
    margin-left: 0.3rem;
    padding-top: 3rem;
    transform:
      translateY(calc((1 - var(--hero-progress)) * 1.6vh))
      scale(calc(1.02 - var(--hero-progress) * 0.02));
  }

  .hero-stage-note {
    display: none;
  }

  h1 {
    font-size: clamp(1.8rem, 7.4vw, 2.35rem);
    line-height: 1.16;
    letter-spacing: 0.02em;
  }

  .hero-subtitle {
    font-size: 0.82rem;
    line-height: 1.8;
    letter-spacing: 0.3em;
  }

  .scroll-cue {
    bottom: 1rem;
  }

  .silk-story {
    min-height: 420px;
  }

  .story-pin {
    width: min(86vw, 24rem);
    min-height: 210px;
    padding: 2rem 1.4rem;
  }

  .story-pin h2 {
    font-size: 1.08rem;
    letter-spacing: 0.12em;
  }

  .about-split,
  .studio-feature {
    height: auto;
    min-height: 0;
  }

  .about-copy {
    max-width: none;
    padding: 4rem 1.3rem;
  }

  .about-copy h2,
  .craft-heading h2,
  .page-hero h1 {
    font-size: clamp(1.35rem, 6.1vw, 1.95rem);
    line-height: 1.36;
  }

  .about-still {
    height: 24rem;
    min-height: 0;
  }

  .about-still img {
    object-position: 50% 2%;
  }

  .craft-strip {
    padding-top: 3.3rem;
  }

  .craft-heading {
    margin-bottom: 2.2rem;
    padding: 0 1.25rem;
  }

  .craft-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .craft-mosaic img {
    aspect-ratio: 1 / 1.08;
  }

  .studio-feature {
    gap: 0;
    padding: 0;
  }

  .studio-feature-image {
    height: 24rem;
    order: 1;
  }

  .studio-feature-copy {
    order: 2;
    max-width: none;
    padding: 3.5rem 1.3rem 4rem;
  }

  .studio-feature-copy h2 {
    font-size: clamp(1.38rem, 6.4vw, 2.05rem);
    line-height: 1.3;
  }

  .studio-points span {
    font-size: 0.82rem;
  }

  .entry-card {
    height: 22rem;
    min-height: 0;
  }

  .faq-section {
    padding: 4.5rem 1.2rem;
  }

  .faq-heading h2,
  .closing-card h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.25rem);
  }

  .faq-list details {
    border-radius: 1.15rem;
  }

  .faq-list summary {
    align-items: flex-start;
    padding: 1.1rem 1.1rem;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .faq-list details p {
    padding: 0 1.1rem 1.2rem;
    font-size: 0.84rem;
  }

  .closing-cta {
    min-height: 440px;
    padding: 4rem 1.2rem;
  }

  .closing-card {
    border-radius: 1.45rem;
    padding: 2rem 1.35rem;
  }

  .entry-card div {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.4rem;
  }

  .entry-card h3 {
    font-size: 1.35rem;
  }

  .site-footer {
    gap: 2rem;
    padding: 3rem 1.3rem 2rem;
  }

  .subscribe {
    grid-template-columns: 1fr 3rem;
  }

  .page-hero {
    padding: 9rem 1.3rem 3.5rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.3rem 4rem;
  }

  .collection-card img {
    aspect-ratio: 1 / 1.04;
  }

  .collection-card {
    border-radius: 1.35rem;
    padding: 0.45rem 0.45rem 1rem;
  }

  .collection-card img {
    border-radius: 1rem;
  }

  .studio-hero {
    padding-top: 6.8rem;
  }

  .studio-copy {
    padding: 3.5rem 1.3rem;
  }

  .studio-copy h1,
  .contact-info h1 {
    font-size: clamp(1.8rem, 7.8vw, 2.45rem);
  }

  .login-panel h1 {
    font-size: clamp(1.35rem, 6.2vw, 1.75rem);
  }

  .studio-hero img {
    height: 24rem;
    min-height: 0;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .page-card {
    min-height: auto;
    padding: 2.5rem 1.3rem;
    border-radius: 1.25rem;
  }

  .contact-page {
    min-height: auto;
    padding: 8.5rem 1.3rem 4rem;
    gap: 2.5rem;
  }

  .contact-form {
    padding: 1.5rem;
    border-radius: 1.35rem;
  }

  input,
  textarea {
    padding: 0.88rem 0.9rem;
    font-size: 1rem;
  }

  .login-page {
    min-height: 100svh;
    padding: 8.5rem 1rem 3rem;
  }

  .login-panel {
    width: 100%;
    padding: 1.6rem;
    border-radius: 1.35rem;
  }

  .login-meta {
    flex-direction: column;
    gap: 0.7rem;
  }
}

@media (max-width: 380px) {
  .brand {
    font-size: 0.92rem;
    letter-spacing: 0.22em;
  }

  .login-button {
    width: 5.15rem;
  }

  h1 {
    font-size: clamp(1.75rem, 8.4vw, 2.25rem);
  }

  .hero-subtitle {
    letter-spacing: 0.22em;
  }

  .craft-mosaic {
    grid-template-columns: 1fr;
  }
}

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