:root {
  --paper: #faf5ec;
  --paper-2: #f3eadc;
  --ink: #2b2a27;
  --muted: #6c6258;
  --line: rgba(157, 119, 57, 0.28);
  --gold: #b88a40;
  --rose: #b87578;
  --charcoal: #1e2020;
  --shadow: 0 24px 80px rgba(50, 36, 22, 0.14);
  --serif: Didot, "Bodoni 72", "Bodoni 11", "Libre Bodoni", Georgia, serif;
  --sans: Optima, "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 8%, rgba(184, 117, 120, 0.15), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(184, 138, 64, 0.14), transparent 22rem),
    linear-gradient(180deg, #fffaf2 0%, var(--paper) 55%, #f8efe7 100%);
  cursor: none;
  font-family: var(--sans);
  overflow-x: hidden;
}

body.has-lightbox {
  overflow: hidden;
}

a,
button {
  cursor: none;
}

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

.needle-cursor,
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 2147483647;
  transform: translate3d(-100px, -100px, 0);
}

.needle-cursor {
  width: 20px;
  height: 96px;
  filter: drop-shadow(0 0 8px rgba(214, 178, 96, 0.62)) drop-shadow(0 0 18px rgba(255, 230, 151, 0.34));
  transform-origin: 50% 2%;
}

.needle-cursor img {
  width: 20px;
  height: 96px;
}

.cursor-glow {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 236, 181, 0.5), rgba(184, 138, 64, 0.08) 48%, transparent 70%);
  mix-blend-mode: screen;
}

.spark {
  position: fixed;
  width: var(--size, 4px);
  height: var(--size, 4px);
  pointer-events: none;
  z-index: 2147483646;
  border-radius: 999px;
  background: radial-gradient(circle, #fff8d6 0 18%, #f3c86d 40%, rgba(184, 138, 64, 0) 72%);
  transform: translate(-50%, -50%);
  animation: sparkle 760ms ease-out forwards;
}

@keyframes sparkle {
  to {
    opacity: 0;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(0.25);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: 76px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(184, 138, 64, 0.12));
}

.brand-name,
.site-nav a {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: 0.24em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  transform: translateX(-50%);
  transition: width 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.nav-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  min-height: calc(100vh - 74px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 104px) 5vw;
}

.eyebrow {
  position: relative;
  margin: 0 0 22px;
  color: var(--rose);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.82rem;
  font-weight: 700;
}

.eyebrow::after {
  display: block;
  width: 132px;
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.8rem, 7.4vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: 0.05em;
}

.hero-text {
  max-width: 540px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.8;
}

.hero-note {
  max-width: 500px;
  margin: 18px 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.55;
}

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

.button {
  position: relative;
  isolation: isolate;
  min-width: 190px;
  padding: 17px 22px;
  overflow: hidden;
  border: 1px solid rgba(184, 138, 64, 0.58);
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.button::before {
  position: absolute;
  inset: -30% auto -30% -45%;
  z-index: -1;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  transform: skewX(-16deg);
  transition: left 560ms ease;
}

.button:hover::before {
  left: 120%;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(84, 55, 30, 0.12);
}

.button.primary {
  border-color: var(--rose);
  background: var(--rose);
  color: #fffaf3;
}

.button.secondary {
  background: rgba(255, 250, 242, 0.36);
}

.hero-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #eee4d8;
}

.hero-image::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(250, 245, 236, 0.88) 0%, rgba(250, 245, 236, 0.2) 42%, rgba(250, 245, 236, 0) 72%),
    radial-gradient(circle at 62% 38%, transparent 0 34%, rgba(255, 255, 255, 0.28) 68%);
  content: "";
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 74px);
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.05);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(28px, 5vw, 90px);
  padding: clamp(54px, 7vw, 96px) 5vw;
  border-bottom: 1px solid var(--line);
}

.intro-kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.82rem;
  line-height: 1.8;
}

.intro-copy h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 4.9rem);
  line-height: 1;
}

.intro-copy p {
  max-width: 780px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.dresses-section {
  padding: clamp(52px, 7vw, 94px) 5vw 42px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.section-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 1;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184, 138, 64, 0.16);
  background: rgba(255, 250, 242, 0.64);
  box-shadow: 0 18px 48px rgba(50, 36, 22, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.product-card:hover {
  border-color: rgba(184, 138, 64, 0.42);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.product-image {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #eee4d8;
}

.product-image img {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  object-fit: cover;
  object-position: center center;
  transition: transform 700ms ease, filter 700ms ease;
}

.product-card:hover .product-image img {
  filter: saturate(1.04);
  transform: scale(1.055);
}

.product-info {
  padding: 20px 20px 24px;
  text-align: center;
}

.product-info h3 {
  margin: 0;
  font-size: clamp(1.2rem, 1.5vw, 1.72rem);
}

.product-info p {
  min-height: 3.2em;
  margin: 7px 0 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.details {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) 5vw;
}

.details-media {
  overflow: hidden;
  border: 1px solid rgba(184, 138, 64, 0.22);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.details-media img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center;
}

.details-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: 0.98;
}

.details-copy p,
.details-copy li {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.details-copy ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.details-copy li {
  position: relative;
  padding-left: 28px;
}

.details-copy li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  background: var(--gold);
  content: "";
  transform: rotate(45deg);
}

.product-info span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 5vw clamp(52px, 7vw, 90px);
  border: 1px solid var(--line);
  background: var(--line);
}

.process-card {
  padding: 26px;
  background: rgba(255, 250, 242, 0.78);
}

.process-card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.process-card h3 {
  margin: 12px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--sans);
  font-size: 0.84rem;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.atelier {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(58px, 8vw, 108px) 5vw;
  background:
    linear-gradient(135deg, rgba(30, 32, 32, 0.96), rgba(38, 37, 34, 0.92)),
    radial-gradient(circle at 20% 20%, rgba(184, 138, 64, 0.4), transparent 30rem);
  color: #fff7e9;
}

.atelier h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 4.8rem);
  line-height: 1.02;
}

.atelier p {
  color: rgba(255, 247, 233, 0.74);
  font-size: 1.05rem;
  line-height: 1.8;
}

.atelier-panel {
  align-self: end;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(184, 138, 64, 0.34);
  background: rgba(255, 250, 242, 0.05);
  box-shadow: inset 0 0 80px rgba(184, 138, 64, 0.08);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 5vw;
  background: var(--charcoal);
  color: #fff7e9;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 247, 233, 0.7);
}

.site-footer a {
  color: #f0d493;
  text-decoration-color: rgba(240, 212, 147, 0.42);
  text-underline-offset: 4px;
}

.footer-note {
  max-width: 360px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(25, 21, 18, 0.7);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  transition: opacity 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: min(760px, calc(100vw - 56px));
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(184, 138, 64, 0.38);
  background: #efe7dc;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.36);
}

.lightbox h2 {
  width: min(760px, calc(100vw - 56px));
  margin: 0;
  padding: 18px 24px 22px;
  background: var(--paper);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(184, 138, 64, 0.45);
  background: rgba(255, 250, 242, 0.86);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
}

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

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

@media (max-width: 1060px) {
  .site-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 74px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 18px 5vw;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 250, 242, 0.96);
    transform: translateY(-130%);
    transition: transform 240ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-flex;
    padding: 10px 12px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 242, 0.52);
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
  }

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

  .hero-image {
    min-height: 520px;
    order: -1;
  }

  .hero-image img {
    min-height: 520px;
  }

  .product-grid,
  .process,
  .details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  body {
    cursor: auto;
  }

  a,
  button {
    cursor: pointer;
  }

  .needle-cursor,
  .cursor-glow {
    display: none;
  }

  .site-header {
    min-height: 66px;
  }

  .brand-name {
    max-width: 150px;
    line-height: 1.4;
  }

  .site-nav {
    top: 66px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 36px 6vw 48px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  .hero-image,
  .hero-image img {
    min-height: 390px;
  }

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

  .button {
    width: 100%;
  }

  .section-heading,
  .atelier,
  .details {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .product-grid,
  .process {
    grid-template-columns: 1fr;
  }
}

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