:root {
  --bg: #060709;
  --bg-soft: #0d1013;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --text: #f4f3f1;
  --muted: #a7adb4;
  --line: rgba(240, 243, 246, 0.14);
  --line-strong: rgba(240, 243, 246, 0.28);
  --silver: #dfe4e8;
  --silver-deep: #8e99a2;
  --ice: #d2e0ea;
  --glow: rgba(226, 234, 240, 0.22);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --radius-lg: 1.35rem;
  --radius-md: 0.92rem;
  --radius-pill: 999px;
  --content: min(100% - 1.5rem, 88rem);
  --sans: "Manrope", sans-serif;
  --serif: "Cormorant Garamond", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 85% -8%, rgba(210, 224, 234, 0.08), transparent 28%),
    radial-gradient(circle at 14% 86%, rgba(146, 153, 160, 0.08), transparent 24%),
    linear-gradient(180deg, #07080a 0%, #050608 100%);
  text-rendering: optimizeLegibility;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

button,
input,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: -3rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.7rem 0.95rem;
  background: var(--silver);
  color: #050608;
  border-radius: 0.55rem;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--silver);
  outline-offset: 3px;
}

.shell {
  width: var(--content);
  margin-inline: auto;
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 200;
  background: rgba(255, 255, 255, 0.08);
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(223, 228, 232, 0.85), rgba(255, 255, 255, 0.35));
  box-shadow: 0 0 20px rgba(223, 228, 232, 0.36);
}

.scene {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.fog,
.light-orbit,
.mesh {
  position: absolute;
  will-change: transform;
}

.fog {
  border-radius: 50%;
  filter: blur(16px);
}

.fog-a {
  width: 30rem;
  height: 30rem;
  top: -10rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(223, 228, 232, 0.1), transparent 72%);
  animation: drift-a 16s ease-in-out infinite alternate;
}

.fog-b {
  width: 24rem;
  height: 24rem;
  bottom: -6rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(149, 158, 167, 0.12), transparent 72%);
  animation: drift-b 18s ease-in-out infinite alternate;
}

.light-orbit {
  width: 54rem;
  height: 54rem;
  left: 50%;
  top: 34%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    conic-gradient(
      from 120deg,
      rgba(223, 228, 232, 0.18),
      rgba(210, 224, 234, 0.05),
      rgba(255, 255, 255, 0.09),
      rgba(223, 228, 232, 0.18)
    );
  filter: blur(22px);
  opacity: 0.62;
  animation: spin 36s linear infinite;
}

.mesh {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 2.5rem 2.5rem;
  mask-image: radial-gradient(circle at center, black 28%, transparent 80%);
}

.grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  opacity: 0.13;
}

.site-header {
  width: var(--content);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 0;
}

.header-bar {
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  position: sticky;
  top: 0;
}

.wordmark {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.79rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.22rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(223, 228, 232, 0.9), rgba(223, 228, 232, 0.15));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

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

.section {
  position: relative;
  padding: 4.8rem 0;
}

.section.merged {
  margin-top: -1.1rem;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.eyebrow {
  margin: 0 0 0.82rem;
  color: var(--muted);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
}

h1,
h2 {
  font-family: var(--serif);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(4.2rem, 15vw, 9.8rem);
  max-width: 6.4ch;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.25rem, 8vw, 5.2rem);
  max-width: 10ch;
}

h3 {
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}

p,
figcaption,
summary,
input {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero {
  min-height: calc(100svh - 3rem);
  display: grid;
  align-items: center;
  padding-top: 3.2rem;
}

.hero-layout {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 1rem;
}

.hero-lede {
  max-width: 32rem;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  padding-top: 0.5rem;
}

.button,
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border-radius: var(--radius-pill);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
  overflow: hidden;
}

.button {
  padding: 0.88rem 1.3rem;
  background:
    linear-gradient(140deg, rgba(250, 252, 255, 0.92), rgba(181, 191, 199, 0.92));
  color: #040507;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 38px rgba(223, 228, 232, 0.12);
}

.button::after {
  content: "";
  position: absolute;
  inset: -24%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.6) 50%, transparent 65%);
  transform: translateX(-145%);
  transition: transform 680ms ease;
}

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

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(145%);
}

.text-link {
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.magnetic {
  --mx: 50%;
  --my: 50%;
}

.magnetic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 42%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.magnetic:hover::before,
.magnetic:focus-visible::before {
  opacity: 1;
}

.hero-stage {
  position: relative;
  min-height: 31rem;
  border-radius: calc(var(--radius-lg) + 0.2rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.08), transparent 28%);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.moving-light {
  position: absolute;
  inset: -12%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22) 48%, transparent 64%);
  transform: translateX(-120%);
  animation: sweep 7.6s ease-in-out infinite;
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 72%);
  filter: blur(10px);
  animation: pulse-glow 8s ease-in-out infinite;
  pointer-events: none;
}

.floating-panel {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.floating-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.panel-large {
  inset: 1.2rem 9rem 1.2rem 1.2rem;
}

.panel-small {
  width: 9rem;
  height: 11rem;
  right: 1.2rem;
}

.panel-small-a {
  top: 1.2rem;
  animation: float-soft 7.5s ease-in-out infinite;
}

.panel-small-b {
  bottom: 1.2rem;
  animation: float-soft 8.5s ease-in-out infinite reverse;
}

.panel-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.showcase-grid,
.story-layout,
.contact-layout {
  display: grid;
  gap: 1rem;
}

.section-intro {
  display: grid;
  gap: 0.82rem;
  margin-bottom: 1.4rem;
}

.showcase-copy,
.story-copy,
.contact-copy {
  display: grid;
  gap: 0.9rem;
}

.showcase-visual,
.campaign-card,
.product-card,
.story-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
}

.showcase-visual {
  padding: 1rem;
  overflow: hidden;
}

.showcase-visual img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 0.1rem);
}

.showcase-visual figcaption,
.campaign-card figcaption {
  padding-top: 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.campaign-strip {
  display: grid;
  gap: 0.9rem;
}

.campaign-card {
  padding: 0.9rem;
  overflow: hidden;
}

.float-card {
  animation: float-soft 8.8s ease-in-out infinite;
}

.float-card-delay {
  animation-delay: 0.7s;
}

.campaign-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 0.1rem);
  transition: transform 900ms ease, filter 900ms ease;
}

.campaign-card:hover img,
.campaign-card:focus-within img {
  transform: scale(1.035);
  filter: brightness(1.06) contrast(1.04);
}

.product-grid {
  display: grid;
  gap: 0.9rem;
}

.product-card {
  padding: 0.95rem;
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
  overflow: hidden;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(223, 228, 232, 0.36);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.46);
}

.product-photo {
  width: 100%;
  aspect-ratio: 1 / 1.14;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 0.08rem);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 0.95rem;
  position: relative;
  transition: transform 900ms ease, filter 900ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 34%, rgba(255, 255, 255, 0.14) 50%, transparent 66%);
  transform: translateX(-135%);
  transition: transform 760ms ease;
  pointer-events: none;
}

.product-card:hover::after,
.product-card:focus-within::after {
  transform: translateX(135%);
}

.product-card:hover .product-photo,
.product-card:focus-within .product-photo {
  transform: scale(1.04);
  filter: brightness(1.05) contrast(1.04);
}

.product-copy {
  display: grid;
  gap: 0.45rem;
}

.story-panel {
  display: grid;
  gap: 0.65rem;
  align-content: center;
  padding: 1.1rem;
  min-height: 18rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--silver);
  position: relative;
  overflow: hidden;
}

.story-panel::after {
  content: "";
  position: absolute;
  inset: -18%;
  background: linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.12) 50%, transparent 62%);
  transform: translateX(-130%);
  animation: sweep 9.5s ease-in-out infinite;
  pointer-events: none;
}

.story-panel span {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
}

.story-panel span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-form {
  padding: 1rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.input-row {
  display: grid;
  gap: 0.7rem;
}

.contact-form input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.form-status {
  min-height: 1.5rem;
  padding-top: 0.8rem;
  font-size: 0.9rem;
}

.depth-card {
  transition: transform 340ms ease, border-color 340ms ease, box-shadow 340ms ease;
}

.depth-card:hover,
.depth-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 36px 76px rgba(0, 0, 0, 0.46);
}

.tilt-card {
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}

.tilt-card:hover,
.tilt-card:focus-within {
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-5px);
}

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

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

body[data-scene="showcase"] .light-orbit {
  filter: blur(22px) hue-rotate(8deg);
}

body[data-scene="campaign"] .light-orbit {
  filter: blur(22px) hue-rotate(18deg);
}

body[data-scene="collection"] .light-orbit {
  filter: blur(22px) hue-rotate(32deg);
}

body[data-scene="story"] .light-orbit {
  filter: blur(22px) hue-rotate(44deg);
}

body[data-scene="contact"] .light-orbit {
  filter: blur(22px) hue-rotate(56deg);
}

@keyframes drift-a {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-2rem, 1.6rem, 0) scale(1.05);
  }
}

@keyframes drift-b {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(1.8rem, -1.6rem, 0) scale(1.04);
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes sweep {
  0%,
  100% {
    transform: translateX(-120%);
    opacity: 0;
  }
  20%,
  70% {
    opacity: 1;
  }
  55% {
    transform: translateX(120%);
  }
}

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

@keyframes shimmer-bg {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.07);
  }
}

@media (min-width: 48rem) {
  .site-nav {
    display: flex;
  }

  .hero-layout {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .showcase-grid {
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
  }

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

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

  .story-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

  .contact-layout {
    grid-template-columns: 1fr 0.92fr;
    align-items: start;
  }

  .input-row {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 72rem) {
  .section {
    padding: 5.6rem 0;
  }

  .section.merged {
    margin-top: -1.35rem;
  }

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

  .campaign-card:nth-child(2) {
    transform: translateY(2.5rem);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
