:root {
  --ivory: #f8f4ee;
  --linen: #f2ece4;
  --sand: #e7dccb;
  --gold: #d7b26f;
  --gold-soft: #f2d79a;
  --ink: #1a1510;
  --ink-soft: #40362c;
  --sky: #7fb9ea;
  --sky-soft: #d9f1ff;
  --sky-deep: #2f5c9d;
  --rose: #f06b98;
  --sage: #6bd4b8;
  --clay: #ff8a5c;
  --hero-bg: linear-gradient(160deg, var(--sky) 0%, #6796cf 55%, var(--sky-deep) 100%);
  --hero-sky:
    radial-gradient(circle at 20% 20%, rgba(127, 185, 234, 0.5), transparent 50%),
    radial-gradient(circle at 80% 24%, rgba(240, 107, 152, 0.22), transparent 55%),
    radial-gradient(circle at 18% 82%, rgba(107, 212, 184, 0.2), transparent 55%),
    var(--hero-bg);
  --shadow: 0 24px 60px rgba(20, 14, 10, 0.2);
  --radius: 18px;
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  --cursor-x: 50%;
  --cursor-y: 35%;
  background:
    radial-gradient(circle at 12% 10%, rgba(215, 178, 111, 0.22), transparent 45%),
    radial-gradient(circle at 85% 0%, rgba(127, 185, 234, 0.28), transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(240, 107, 152, 0.18), transparent 45%),
    radial-gradient(circle at 18% 82%, rgba(107, 212, 184, 0.18), transparent 50%),
    linear-gradient(180deg, var(--sky-soft) 0%, #f6eee3 45%, var(--ivory) 100%);
  line-height: 1.7;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection {
  background: rgba(215, 178, 111, 0.35);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("imgs/flowers-texture.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: multiply;
  z-index: 1;
}

.light-dust {
  position: fixed;
  inset: -20%;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255, 255, 255, 0.45), transparent 60%),
    radial-gradient(2px 2px at 75% 20%, rgba(215, 178, 111, 0.45), transparent 60%),
    radial-gradient(1.8px 1.8px at 40% 78%, rgba(240, 107, 152, 0.35), transparent 60%),
    radial-gradient(2px 2px at 85% 70%, rgba(107, 212, 184, 0.3), transparent 60%),
    radial-gradient(2px 2px at 62% 52%, rgba(255, 255, 255, 0.3), transparent 60%);
  opacity: 0.35;
  mix-blend-mode: screen;
  filter: blur(0.2px);
  z-index: 0;
  animation: dust-drift 24s linear infinite;
}

.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(420px 320px at var(--cursor-x, 50%) var(--cursor-y, 35%), rgba(127, 185, 234, 0.35), transparent 70%),
    radial-gradient(320px 260px at calc(var(--cursor-x, 50%) + 10%) calc(var(--cursor-y, 35%) + 6%), rgba(240, 107, 152, 0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  mix-blend-mode: screen;
  z-index: 0;
}

body.has-cursor .cursor-glow {
  opacity: 0.5;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.center {
  text-align: center;
}

.section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.section-lead {
  color: rgba(26, 21, 16, 0.65);
  max-width: 720px;
  margin: 20px auto 0;
}

.collection-showcase .section-lead {
  margin-top: 12px;
  margin-bottom: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-self: start;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(215, 178, 111, 0.6);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  color: var(--gold);
}

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

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(26, 21, 16, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  justify-self: end;
}

.nav-links a {
  color: rgba(26, 21, 16, 0.65);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(215, 178, 111, 0.6);
  color: var(--gold);
  background: rgba(248, 244, 238, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav-back {
  min-width: 44px;
  height: 44px;
  padding: 10px 12px;
}

.back-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.nav-toggle {
  display: none;
  justify-self: end;
}

.burger {
  position: relative;
  width: 40px;
  height: 30px;
  background: transparent;
  cursor: pointer;
}

.burger input {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: var(--ink);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

body.nav-open {
  overflow: hidden;
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0;
  left: 5px;
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 28px;
  left: 5px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  background: var(--hero-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-effect {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-effect .container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  max-width: none;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}

.hero-effect canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  mix-blend-mode: screen;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.35;
  animation: float 12s ease-in-out infinite;
}

.orb-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(215, 178, 111, 0.6), transparent 70%);
  top: -80px;
  left: 6%;
}

.orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(240, 107, 152, 0.4), transparent 70%);
  bottom: -140px;
  right: 8%;
  animation-delay: 2s;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(107, 212, 184, 0.45), transparent 70%);
  top: 25%;
  right: 35%;
  animation-delay: 4s;
}

.hero-glints {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 25% 30%, rgba(255, 255, 255, 0.7), transparent 60%),
    radial-gradient(1.2px 1.2px at 60% 25%, rgba(255, 255, 255, 0.6), transparent 60%),
    radial-gradient(2px 2px at 70% 60%, rgba(215, 178, 111, 0.6), transparent 60%),
    radial-gradient(1.5px 1.5px at 35% 70%, rgba(240, 107, 152, 0.45), transparent 60%);
  opacity: 0.45;
  mix-blend-mode: screen;
  animation: glints 16s ease-in-out infinite;
}

.light-beams {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.light-beams span {
  position: absolute;
  width: 220px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(180deg, transparent, rgba(127, 185, 234, 0.25), rgba(215, 178, 111, 0.35), transparent);
  filter: blur(6px);
  opacity: 0.35;
  transform: translateY(0) rotate(var(--tilt, 12deg));
  animation: beam-float 18s ease-in-out infinite;
}

.light-beams span:nth-child(1) {
  --tilt: 12deg;
  left: 5%;
  top: -20%;
  animation-delay: 0s;
}

.light-beams span:nth-child(2) {
  --tilt: -8deg;
  right: 10%;
  top: -10%;
  animation-delay: 3s;
}

.light-beams span:nth-child(3) {
  --tilt: 18deg;
  left: 45%;
  top: -30%;
  animation-delay: 6s;
}

.hero-line {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  color: rgba(26, 21, 16, 0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 8vw, 6.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 16px;
  color: var(--gold);
}

.hero-subtitle {
  color: rgba(0, 0, 0, 0.85);
  font-size: 1.5rem;
  margin: 16px auto 0;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.hero-detail {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(248, 244, 238, 0.8);
  border: 1px solid rgba(215, 178, 111, 0.25);
  box-shadow: 0 18px 40px rgba(20, 14, 10, 0.08);
}

.detail-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 9px;
  color: rgba(26, 21, 16, 0.55);
  margin-bottom: 6px;
}

.detail-text {
  display: block;
  font-size: 12px;
  color: rgba(26, 21, 16, 0.7);
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: center;
}

.hero-frame {
  position: relative;
  width: min(420px, 72vw);
  aspect-ratio: 4 / 5;
  padding: 10px;
  border-radius: 220px 220px 40px 40px;
  background: linear-gradient(160deg, rgba(215, 178, 111, 0.6), rgba(248, 244, 238, 0.3));
  box-shadow: 0 30px 80px rgba(20, 14, 10, 0.2);
}

.hero-frame::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 210px 210px 34px 34px;
  box-shadow: inset 0 0 40px rgba(248, 244, 238, 0.25);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 210px 210px 34px 34px;
  filter: saturate(1.05);
}

.hero-badge {
  position: absolute;
  left: -6%;
  bottom: 6%;
  background: rgba(248, 244, 238, 0.95);
  border: 1px solid rgba(215, 178, 111, 0.35);
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: left;
  min-width: 200px;
}

.hero-badge .badge-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 9px;
  color: rgba(26, 21, 16, 0.55);
}

.hero-badge .badge-title {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: var(--gold);
  margin: 6px 0 2px;
}

.hero-badge .badge-meta {
  display: block;
  font-size: 11px;
  color: rgba(26, 21, 16, 0.6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-soft));
  color: #2b1f13;
  box-shadow: 0 20px 40px rgba(215, 178, 111, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(26, 21, 16, 0.2);
  color: rgba(26, 21, 16, 0.7);
  background: rgba(248, 244, 238, 0.6);
}

.btn.outline {
  border-color: rgba(215, 178, 111, 0.6);
  color: var(--gold);
  background: transparent;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(26, 21, 16, 0.4);
  display: grid;
  gap: 12px;
  align-items: center;
  justify-items: center;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(215, 178, 111, 0.6), transparent);
  animation: scroll 2s ease-in-out infinite;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

.about {
  background: rgba(248, 244, 238, 0.6);
}

.about h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 18px;
  color: var(--gold);
}

.about p {
  color: rgba(26, 21, 16, 0.65);
}

.about-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat {
  min-width: 120px;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
  color: rgba(26, 21, 16, 0.6);
}

.about-media {
  position: relative;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.media-frame img {
  height: 520px;
  object-fit: cover;
}

.media-card {
  position: absolute;
  bottom: 18px;
  left: -20px;
  background: rgba(248, 244, 238, 0.95);
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
}

.media-card .card-title {
  display: block;
  font-weight: 600;
  color: var(--gold);
}

.collection-showcase {
  background:
    radial-gradient(circle at 10% 20%, rgba(127, 185, 234, 0.22), transparent 45%),
    radial-gradient(circle at 90% 12%, rgba(240, 107, 152, 0.18), transparent 45%),
    radial-gradient(circle at 82% 82%, rgba(107, 212, 184, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(242, 236, 228, 0.6), rgba(248, 244, 238, 0.9));
  padding: 90px 0 70px;
}

.collection-showcase h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin: 0;
  color: var(--gold);
}

.collection-showcase .eyebrow {
  margin-bottom: 8px;
}

.collection-gallery {
  margin-top: 0;
  display: grid;
  gap: 24px;
  width: 100%;
  padding-inline: 0;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  padding: 24px;
}

.collection-grid figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fefaf4;
  box-shadow: var(--shadow);
}

.collection-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.circular-gallery {
  position: relative;
  width: 100%;
  height: min(680px, 75vh);
  border-radius: 0;
  overflow: hidden;
  cursor: grab;
  background: transparent;
  box-shadow: none;
  touch-action: pan-y;
}

.circular-gallery:active {
  cursor: grabbing;
}

.circular-gallery canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.circular-gallery__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  padding: 24px;
  align-content: center;
  transition: opacity 0.4s var(--ease);
}

.circular-gallery__fallback figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fffaf3;
  box-shadow: var(--shadow);
  display: grid;
}

.circular-gallery__fallback img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.circular-gallery__fallback figcaption {
  padding: 12px 14px 14px;
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.circular-gallery.is-ready .circular-gallery__fallback {
  opacity: 0;
  pointer-events: none;
}


.marquee {
  overflow: hidden;
  padding: 30px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.marquee-left .marquee-track {
  animation: marquee-left 40s linear infinite;
}

.marquee-right .marquee-track {
  animation: marquee-right 45s linear infinite;
}

.marquee-card {
  width: 180px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.marquee-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.marquee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(20, 14, 10, 0.25);
}

.marquee-card::after,
.step-media::after,
.media-frame::after,
.signature-frame::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 42%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
  opacity: 0;
  transform: translateX(-30%) rotate(8deg);
  transition: opacity 0.6s var(--ease), transform 0.9s var(--ease);
  pointer-events: none;
}

.marquee-card:hover::after,
.step-media:hover::after,
.media-frame:hover::after,
.signature-frame:hover::after {
  opacity: 0.6;
  transform: translateX(30%) rotate(8deg);
}

.marquee-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.65));
  color: #fefaf4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.marquee-overlay strong {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: none;
}

.signature {
  background: var(--hero-sky);
  color: #f8f4ee;
}

.scroll-reveal__spacer {
  position: relative;
  height: calc(100vh * var(--count, 6));
}

.scroll-reveal__sticky {
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  display: grid;
  place-items: center;
  z-index: 0;
}

.scroll-reveal__sticky::before {
  content: '';
  position: absolute;
  top: calc(-1 * var(--header-height));
  left: 0;
  right: 0;
  height: 100vh;
  background: var(--hero-sky);
  pointer-events: none;
  z-index: -1;
}

.scroll-reveal__frame {
  position: relative;
  width: min(960px, 86vw);
  height: min(72vh, 640px);
  z-index: 1;
}

.scroll-reveal__item {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--hero-sky);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(40px) scale(0.94);
  transition: opacity 0.2s ease;
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.scroll-reveal__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0);
  will-change: transform, filter;
}

.signature .section-lead {
  color: rgba(248, 244, 238, 0.7);
}

.signature-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 16px;
  color: var(--gold);
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  margin-top: 48px;
  align-items: start;
}

.signature-media {
  position: sticky;
  top: 120px;
}

.signature-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  position: relative;
}

.signature-frame img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

.signature-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  background: rgba(18, 16, 14, 0.7);
  padding: 18px 20px;
  border-radius: 14px;
}

.signature-meta {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 10px;
  color: rgba(248, 244, 238, 0.7);
}

.signature-title {
  margin: 8px 0 0;
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
}

.signature-list {
  display: grid;
  gap: 18px;
}

.signature-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(248, 244, 238, 0.15);
  background: rgba(248, 244, 238, 0.04);
  cursor: pointer;
  transition: border 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.signature-item h4 {
  font-family: 'Fraunces', serif;
  margin: 0 0 6px;
  font-size: 1.3rem;
}

.signature-item p {
  margin: 0;
  color: rgba(248, 244, 238, 0.7);
}

.signature-item.is-active {
  border-color: rgba(215, 178, 111, 0.6);
  background: rgba(215, 178, 111, 0.12);
  transform: translateY(-2px);
}

.signature-index {
  font-size: 12px;
  color: var(--gold-soft);
  letter-spacing: 0.2em;
  margin: 0;
}

.process {
  background: rgba(248, 244, 238, 0.8);
}

.section-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 16px;
  color: var(--gold);
}

.process-steps {
  display: grid;
  gap: 42px;
  margin-top: 52px;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  --delay: 0s;
}

.process-step:nth-child(2) {
  --delay: 0.12s;
}

.process-step:nth-child(3) {
  --delay: 0.24s;
}

.process-step:nth-child(4) {
  --delay: 0.36s;
}

.process-step:nth-child(even) {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.process-step:nth-child(even) .step-content,
.process-step:nth-child(even) .step-media {
  direction: ltr;
}

.step-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.step-media img {
  height: 320px;
  width: 100%;
  object-fit: cover;
}

.step-number {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  color: rgba(248, 244, 238, 0.9);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  margin: 0 0 12px;
}

.step-content p {
  margin: 0;
  color: rgba(26, 21, 16, 0.65);
}

.process-step[data-reveal] .step-media img {
  transform: scale(1.04);
  transition: transform 1s var(--ease);
  transition-delay: calc(var(--delay, 0s) + 0.05s);
}

.process-step[data-reveal].is-visible .step-media img {
  transform: scale(1);
}

.process-step[data-reveal] .step-content {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: calc(var(--delay, 0s) + 0.12s);
}

.process-step[data-reveal].is-visible .step-content {
  opacity: 1;
  transform: translateY(0);
}

.collections-grid {
  background: linear-gradient(180deg, rgba(248, 244, 238, 0.95), rgba(242, 236, 228, 0.8));
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.collection-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fffaf3;
  transition: transform 0.4s var(--ease);
}

.collection-card img {
  height: 260px;
  width: 100%;
  object-fit: cover;
}

.collection-card:hover {
  transform: translateY(-6px);
}

.card-content {
  padding: 24px;
}

.card-content span {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 10px;
}

.card-content h3 {
  font-family: 'Fraunces', serif;
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.card-content p {
  margin: 0;
  color: rgba(26, 21, 16, 0.65);
}

.contact {
  background: rgba(248, 244, 238, 0.85);
}

.contact h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 0 0 16px;
  color: var(--gold);
}

.contact p {
  color: rgba(26, 21, 16, 0.65);
}

.contact-list {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.contact-list span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-list strong {
  font-size: 15px;
  letter-spacing: 0.04em;
}

.contact-form {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 21, 16, 0.7);
}

input,
select,
textarea {
  border: 1px solid rgba(26, 21, 16, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  background: rgba(248, 244, 238, 0.7);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(215, 178, 111, 0.4);
  border-color: rgba(215, 178, 111, 0.6);
}

.form-status {
  font-size: 13px;
  color: rgba(26, 21, 16, 0.7);
}

.footer {
  background: #3E5075;
  color: #f8f4ee;
  padding: 80px 0 50px;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(248, 244, 238, 0.12);
  padding-bottom: 30px;
}

.footer-top h3 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  margin: 0;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  margin-top: 24px;
  font-size: 12px;
  color: rgba(248, 244, 238, 0.6);
  align-items: center;
}

.footer-bottom > p {
  justify-self: start;
  min-width: 0;
}

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.footer-actions .footer-instagram.tooltip-container {
  margin: 0;
}

.footer-home-link {
  justify-self: end;
  align-self: center;
  text-decoration: none;
  white-space: nowrap;
}

.sparkle-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  background: var(--gold);
  font-size: 11px;
  font-weight: 600;
  color: #2b1f13;
  border: 2px solid var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 rgba(215, 178, 111, 0.55);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  overflow: visible;
  line-height: 1;
  z-index: 0;
}

.sparkle-button .sparkle-label {
  position: relative;
  z-index: 1;
}

.sparkle-button svg {
  display: block;
  width: 100%;
  height: auto;
}

.sparkle-button .star-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -1;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
  pointer-events: none;
}

.sparkle-button .star-2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -1;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
  pointer-events: none;
}

.sparkle-button .star-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -1;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
  pointer-events: none;
}

.sparkle-button .star-4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -1;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
  pointer-events: none;
}

.sparkle-button .star-5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -1;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
  pointer-events: none;
}

.sparkle-button .star-6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -1;
  transition: all 0.8s ease;
  pointer-events: none;
}

.sparkle-button:hover {
  background: transparent;
  color: var(--gold);
  box-shadow: 0 0 25px rgba(215, 178, 111, 0.6);
}

.sparkle-button:hover .star-1 {
  top: -80%;
  left: -30%;
  width: 25px;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.sparkle-button:hover .star-2 {
  top: -25%;
  left: 10%;
  width: 15px;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.sparkle-button:hover .star-3 {
  top: 55%;
  left: 25%;
  width: 5px;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.sparkle-button:hover .star-4 {
  top: 30%;
  left: 80%;
  width: 8px;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.sparkle-button:hover .star-5 {
  top: 25%;
  left: 115%;
  width: 15px;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.sparkle-button:hover .star-6 {
  top: 5%;
  left: 60%;
  width: 5px;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.sparkle-button .fil0 {
  fill: #fffdef;
}

.footer-instagram.tooltip-container {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

.footer-instagram .tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
  z-index: 4;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
}

.footer-instagram .profile {
  background: #2a2b2f;
  border-radius: 10px 15px;
  padding: 10px;
  border: 1px solid #52382f;
}

.footer-instagram.tooltip-container:hover .tooltip,
.footer-instagram.tooltip-container:focus-within .tooltip {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.footer-instagram .icon {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}

.footer-instagram .layer {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}

.footer-instagram .icon:hover .layer {
  transform: rotate(-35deg) skew(20deg);
}

.footer-instagram .layer span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 15px;
  transition: all 0.3s;
}

.footer-instagram .layer span,
.footer-instagram .text {
  color: #e6683c;
  border-color: #e6683c;
}

.footer-instagram .icon:hover .layer span {
  box-shadow: -1px 1px 3px #e6683c;
}

.footer-instagram .icon .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 500;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
}

.footer-instagram .icon:hover .text {
  bottom: -35px;
  opacity: 1;
}

.footer-instagram .icon:hover .layer span:nth-child(1) {
  opacity: 0.2;
}

.footer-instagram .icon:hover .layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}

.footer-instagram .icon:hover .layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}

.footer-instagram .icon:hover .layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}

.footer-instagram .icon:hover .layer span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

.footer-instagram .instagramSVG {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

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

.footer-instagram .img {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  border: 1px solid #e6683c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}

.footer-instagram .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-instagram .name {
  font-size: 17px;
  font-weight: 700;
  color: #e6683c;
}

.footer-instagram .details {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}

.footer-instagram .about {
  color: #ccc;
  padding-top: 5px;
}

.reveal,
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--delay, 0s);
}

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

.reveal.on-load {
  opacity: 0;
  transform: translateY(26px);
}

body.is-loaded .reveal.on-load {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0s);
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1f1a14;
  color: #f8f4ee;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

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

.toast.is-success {
  background: #2d2419;
}

.toast.is-error {
  background: #3a1d1d;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes scroll {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes dust-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-3%, 2%, 0);
  }
}

@keyframes glints {
  0%, 100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-12px);
  }
}

@keyframes beam-float {
  0%, 100% {
    opacity: 0.2;
    transform: translateY(-20px) rotate(var(--tilt, 12deg));
  }
  50% {
    opacity: 0.5;
    transform: translateY(40px) rotate(var(--tilt, 12deg));
  }
}

@media (hover: none) {
  .cursor-glow {
    display: none;
  }
}


@media (max-width: 1024px) {
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .signature-media {
    position: relative;
    top: auto;
  }
}

@media (max-width: 900px) {
  .nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    padding: 12px 0 14px;
    gap: 10px;
  }

  .nav-links {
    position: static;
    width: 100%;
    flex: 0 0 100%;
    order: 3;
    background: rgba(248, 244, 238, 0.96);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    display: none;
    font-size: 16px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(26, 21, 16, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
    order: 2;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(26, 21, 16, 0.04);
    text-align: left;
  }

  .nav-links .nav-cta {
    background: rgba(248, 244, 238, 0.92);
    border: 1px solid rgba(215, 178, 111, 0.6);
    color: var(--gold);
    text-align: center;
  }

  body.nav-open {
    overflow: auto;
  }

  .hero-line {
    width: 320px;
  }

  .hero {
    text-align: center;
  }

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

  .hero-copy {
    max-width: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  .hero-detail {
    text-align: center;
  }

  .hero-badge {
    left: 50%;
    bottom: 4%;
    transform: translateX(-50%);
    min-width: 0;
    width: min(240px, 80vw);
  }

  .collection-grid img {
    height: 130px;
  }

  .circular-gallery {
    height: min(580px, 72vh);
    border-radius: 22px;
  }

  .circular-gallery__fallback img {
    height: 160px;
  }

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

  .process-step,
  .process-step:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-actions {
    margin-top: 12px;
    display: flex;
    gap: 18px;
  }

  .footer-home-link {
    justify-self: center;
    margin-top: 12px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 90px 0;
  }

  .collection-showcase {
    padding: 70px 0 60px;
  }

  .collection-showcase .section-lead {
    margin-top: 10px;
  }

  .hero {
    padding-top: 110px;
  }

  .hero-title {
    letter-spacing: 0.1em;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .collection-gallery {
    margin-top: 8px;
    gap: 20px;
  }

  .circular-gallery {
    height: min(520px, 72vh);
    border-radius: 20px;
  }

  .circular-gallery__fallback {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
  }

  .circular-gallery__fallback img {
    height: 140px;
  }

  .marquee-card {
    width: 160px;
  }

  .marquee-card img {
    height: 220px;
  }

  .signature-frame img {
    height: 50vh;
  }

  .scroll-reveal__item img {
    height: 55vh;
  }
}

@media (max-width: 520px) {
  :root {
    --header-height: 72px;
  }

  .nav {
    height: 72px;
    gap: 16px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 16px;
    letter-spacing: 0.16em;
  }

  .brand-tag {
    font-size: 9px;
    letter-spacing: 0.24em;
  }

  .nav-links {
    font-size: 14px;
    letter-spacing: 0.18em;
  }

  .hero {
    min-height: 90vh;
    padding: 100px 0 80px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 4rem);
    letter-spacing: 0.08em;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-line {
    width: 240px;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .collection-showcase {
    padding: 60px 0 50px;
  }

  .circular-gallery {
    height: min(460px, 68vh);
    border-radius: 18px;
  }

  .circular-gallery__fallback {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .circular-gallery__fallback img {
    height: 130px;
  }

  .process-step {
    gap: 24px;
  }

  .step-media img {
    height: 240px;
  }

  .footer {
    padding: 70px 0 40px;
  }

  .footer-top {
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-left .marquee-track,
  .marquee-right .marquee-track,
  .orb,
  .scroll-line,
  .light-dust,
  .hero-glints,
  .light-beams span {
    animation: none;
  }

  .reveal,
  .reveal.on-load,
  [data-reveal],
  .process-step[data-reveal] .step-content,
  .process-step[data-reveal] .step-media img {
    transition: none;
  }

  .cursor-glow {
    display: none;
  }
}
