:root {
  --bg: #050505;
  --bg-soft: rgba(255, 255, 255, 0.03);
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f6f1eb;
  --muted: #a79fa8;
  --muted-strong: #d0c9cf;
  --gold: #d2b07a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1380px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.07), transparent 18%),
    radial-gradient(circle at 84% 12%, rgba(255, 0, 140, 0.08), transparent 18%),
    radial-gradient(circle at 70% 78%, rgba(210, 176, 122, 0.08), transparent 18%),
    linear-gradient(180deg, #020202 0%, #060606 46%, #030303 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.noise,
.grid-overlay,
.glow {
  position: fixed;
  pointer-events: none;
  z-index: -2;
}

.noise,
.grid-overlay {
  inset: 0;
}

.noise {
  opacity: 0.045;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.85) 0.7px, transparent 1px),
    radial-gradient(circle at 70% 65%, rgba(255, 255, 255, 0.55) 0.7px, transparent 1px);
  background-size: 22px 22px, 30px 30px;
}

.grid-overlay {
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 72px 72px;
}

.glow {
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.glow-a {
  top: 6%;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 255, 255, 0.07);
}

.glow-b {
  right: -7rem;
  top: 10%;
  width: 22rem;
  height: 22rem;
  background: rgba(255, 0, 140, 0.11);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(4, 4, 4, 0.62);
  border-bottom: 1px solid var(--line);
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brand-kicker,
.section-kicker,
.card-kicker,
.realm,
.essence-label,
.micro-line,
.stat-card p,
.spec-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.68rem;
  color: var(--muted);
}

.brand-title {
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.main-nav a,
.footer-links a {
  padding: 0.82rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  transition: 220ms ease;
}

.main-nav a:hover,
.footer-links a:hover {
  border-color: var(--line-strong);
  color: #ffffff;
  transform: translateY(-1px);
}

main {
  display: grid;
  gap: 4.75rem;
  padding-top: 2rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 2.25rem;
  align-items: center;
  min-height: calc(100vh - 8rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.72rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
}

.eyebrow-dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, var(--gold));
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
}

.micro-line {
  margin-top: 1.35rem;
}

.hero-copy h1,
.manifesto-intro h2,
.section-heading h2,
.closing-copy h2,
.hero-side-card h2,
.collection-card h3,
.authority-card h3,
.product-copy h1,
.detail-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

.hero-copy h1 {
  margin-top: 0.9rem;
  font-size: clamp(4.4rem, 10vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-text,
.section-body,
.authority-card p,
.closing-copy p,
.hero-side-card p,
.aura,
.essence-block p,
.product-lore,
.detail-card p:last-child {
  color: var(--muted-strong);
  line-height: 1.9;
  font-size: 1rem;
}

.hero-text {
  max-width: 42rem;
  margin: 1.4rem 0 0;
}

.hero-actions,
.closing-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  transition: 240ms ease;
}

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

.btn-solid {
  color: #0b0b0b;
  background: linear-gradient(135deg, #ffffff 0%, #eadfd1 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 28px rgba(255, 255, 255, 0.12);
}

.btn-ghost,
.btn-card {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.btn-ghost:hover,
.btn-card:hover {
  background: #ffffff;
  color: #000000;
  border-color: rgba(255, 255, 255, 0.42);
}

.house-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.stat-card,
.hero-side-card,
.manifesto-intro,
.manifesto-grid article,
.collection-card,
.authority-card,
.closing-section,
.hero-image-frame,
.product-gallery,
.product-copy,
.detail-card,
.detail-image-card {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.stat-card {
  padding: 1.25rem;
  border-radius: 24px;
}

.stat-card h3 {
  margin: 0.8rem 0 0;
  font-size: 1.35rem;
  font-weight: 700;
}

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

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 0.9rem;
  box-shadow: var(--shadow);
  min-height: 38rem;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 36rem;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.12) 48%, transparent 68%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-side-card {
  padding: 1.4rem 1.5rem;
  border-radius: 28px;
}

.hero-side-card h2 {
  margin-top: 0.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.est {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.68rem;
  color: var(--muted);
}

.manifesto-band {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 1.25rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-intro {
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.manifesto-intro h2 {
  margin-top: 0.75rem;
  font-size: clamp(3rem, 6vw, 4.9rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.manifesto-grid article {
  padding: 1.25rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.7;
  font-size: 0.88rem;
}

.collections-section {
  display: grid;
  gap: 2rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading h2,
.closing-copy h2 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.section-body {
  max-width: 36rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.collection-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  transition: 260ms ease;
}

.collection-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 22%),
    radial-gradient(circle at bottom left, rgba(255, 0, 140, 0.12), transparent 20%);
  transition: 260ms ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.34);
}

.collection-card:hover::before {
  opacity: 1;
}

.collection-card > * {
  position: relative;
  z-index: 1;
}

.offset-card {
  transform: translateY(2rem);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.collection-card h3 {
  margin-top: 0.3rem;
  font-size: 2rem;
  line-height: 0.95;
}

.index-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.3rem;
  min-height: 2.3rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.card-panel {
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.15rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 17rem;
  padding: 0;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 17rem;
  object-fit: cover;
  display: block;
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.08) 100%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 28%);
  pointer-events: none;
}

.image-panel .descriptor,
.image-panel .aura {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  z-index: 1;
}

.image-panel .descriptor {
  top: 1.1rem;
}

.image-panel .aura {
  bottom: 1.1rem;
}

.descriptor {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  line-height: 1.7;
  color: var(--muted);
}

.aura {
  margin: 0;
}

.essence-block {
  margin: 1rem 0 1.1rem;
}

.essence-block p:last-child {
  margin-top: 0.65rem;
}

.authority-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.authority-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.authority-card h3 {
  font-size: 1.7rem;
  line-height: 0.95;
}

.closing-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 20%),
    radial-gradient(circle at bottom right, rgba(255, 0, 140, 0.08), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.closing-copy p:last-child {
  margin-top: 1rem;
  max-width: 44rem;
  color: var(--muted-strong);
  line-height: 1.9;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-copy {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* Product page */

.product-main {
  display: grid;
  gap: 2rem;
  padding-top: 2rem;
}

.product-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.product-gallery {
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.product-hero-image-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 22%),
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01));
}

.product-hero-image-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.thumb {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: 220ms ease;
}

.thumb:hover,
.thumb.active {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-copy {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.product-copy h1 {
  margin: 0.3rem 0 0;
  font-size: clamp(3.5rem, 7vw, 5.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.product-tagline {
  margin: 0.9rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--muted);
}

.product-lore {
  margin-top: 1.25rem;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.spec-card {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.spec-card h3 {
  margin: 0.7rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
}

.detail-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.detail-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.detail-card h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.detail-image-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.detail-image-card img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  display: block;
}

.detail-image-wide {
  grid-column: 1 / -1;
}

.detail-image-wide img {
  min-height: 30rem;
}

.product-closing {
  margin-top: 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1180px) {
  .hero,
  .manifesto-band,
  .collections-grid,
  .authority-section,
  .closing-section,
  .product-hero,
  .detail-band,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .house-notes,
  .manifesto-grid,
  .product-specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .offset-card {
    transform: none;
  }

  .detail-image-wide {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .site-header,
  .section-heading,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav,
  .footer-links,
  .hero-actions,
  .closing-actions,
  .product-actions {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 16vw, 5.5rem);
  }

  .hero-image-frame,
  .hero-image-frame img {
    min-height: 24rem;
  }

  .house-notes,
  .manifesto-grid,
  .product-thumbs,
  .product-specs {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .product-copy h1 {
    font-size: clamp(2.9rem, 14vw, 4.3rem);
  }

  .detail-image-card img,
  .detail-image-wide img {
    min-height: 16rem;
  }
}

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

  .main-nav a,
  .footer-links a,
  .collection-card,
  .btn,
  .thumb,
  .fade-up {
    transition: none;
  }
}
