:root {
  --ivory: #F5EDE0;
  --cream: #E8D8C4;
  --champagne: #C4976A;
  --brass: #A8804A;
  --gold-light: #D4A878;
  --walnut: #4A1A10;
  --charcoal: #160504;
  --charcoal-mid: #230B09;
  --text-dark: #160504;
  --text-mid: #4A4540;
  --text-light: #8A827A;
  --white: #FAF4EC;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

body {
  background: var(--charcoal);
  color: var(--ivory);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

img {
  max-width: 100%;
}

button,
a,
input,
select,
textarea {
  font-family: inherit;
}

button,
a {
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--champagne);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196,151,106,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: all 0.18s ease;
}

body:hover .cursor-ring {
  opacity: 1;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: linear-gradient(to bottom, rgba(22,5,4,0.97) 0%, transparent 100%);
  backdrop-filter: blur(0px);
  transition: all 0.6s ease;
}

nav.scrolled {
  background: rgba(22,5,4,0.94);
  backdrop-filter: blur(20px);
  padding: 20px 60px;
  border-bottom: 1px solid rgba(196,151,106,0.12);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 34px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: rgba(248,244,238,0.7);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.4s ease;
}

.nav-links a:hover {
  color: var(--champagne);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid rgba(196,151,106,0.5);
  color: var(--champagne);
  background: transparent;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  cursor: none;
  transition: all 0.4s ease;
}

.nav-cta:hover {
  background: var(--champagne);
  color: var(--charcoal);
  border-color: var(--champagne);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--ivory);
  transition: all 0.35s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(22,5,4,0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  cursor: none;
}

.mobile-menu a:hover {
  color: var(--champagne);
}

.mobile-menu .mobile-book {
  margin-top: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid rgba(196,151,106,0.5);
  color: var(--champagne);
  background: transparent;
  cursor: none;
  transition: all 0.3s ease;
}

.mobile-menu .mobile-book:hover {
  background: var(--champagne);
  color: var(--charcoal);
}

/* HERO */
#hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(22,5,4,0.45) 0%, rgba(22,5,4,0.1) 35%, rgba(22,5,4,0.15) 60%, rgba(22,5,4,0.82) 100%),
    radial-gradient(ellipse at 50% 100%, rgba(22,5,4,0.5) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 400;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--ivory);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-title em {
  font-style: italic;
  color: var(--champagne);
}

.hero-sub {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(248,244,238,0.6);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 52px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 44px;
  background: var(--champagne);
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  border: none;
  cursor: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brass);
  transform: translateX(-101%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 17px 44px;
  border: 1px solid rgba(248,244,238,0.25);
  color: var(--ivory);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  background: transparent;
  cursor: none;
  transition: all 0.4s ease;
}

.btn-ghost:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.4);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(196,151,106,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
}

/* MARQUEE */
.marquee-strip {
  background: rgba(196,151,106,0.08);
  border-top: 1px solid rgba(196,151,106,0.15);
  border-bottom: 1px solid rgba(196,151,106,0.15);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.35);
  padding: 0 50px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.marquee-item::after {
  content: '◆';
  color: var(--champagne);
  font-size: 6px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* INTRO STATEMENT */
#intro {
  padding: 140px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.intro-left .section-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 400;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--champagne);
}

.intro-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 28px;
}

.intro-left h2 em {
  font-style: italic;
  color: var(--champagne);
}

.intro-right p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(248,244,238,0.6);
  margin-bottom: 24px;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 52px;
  padding-top: 52px;
  border-top: 1px solid rgba(248,244,238,0.1);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(248,244,238,0.4);
  text-transform: uppercase;
}

/* COLLECTION GRID */
#collection {
  padding: 60px 60px 140px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  line-height: 1;
  color: var(--ivory);
}

.section-header h2 em {
  font-style: italic;
  color: var(--champagne);
}

.see-all {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.5);
  text-decoration: none;
  cursor: none;
  border-bottom: 1px solid rgba(248,244,238,0.2);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.see-all:hover {
  color: var(--champagne);
  border-color: var(--champagne);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal-mid);
  cursor: none;
}

.collection-card:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.collection-card .card-visual {
  width: 100%;
  height: 100%;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.collection-card:first-child .card-visual {
  min-height: 700px;
}

.card-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,5,4,0.92) 0%, rgba(22,5,4,0.12) 60%);
  transition: background 0.5s ease;
}

.collection-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(22,5,4,0.97) 0%, rgba(26,23,20,0.25) 60%);
}

.card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  transform: translateY(10px);
  transition: transform 0.5s ease;
}

.collection-card:hover .card-info {
  transform: translateY(0);
}

.card-category {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 8px;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 12px;
}

.collection-card:first-child .card-name {
  font-size: 36px;
}

.card-price {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(248,244,238,0.5);
}

.card-action {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
}

.card-action::after {
  content: '→';
  transition: transform 0.3s ease;
}

.collection-card:hover .card-action {
  opacity: 1;
  transform: translateY(0);
}

.collection-card:hover .card-action::after {
  transform: translateX(6px);
}

/* CRAFTSMANSHIP SECTION */
#craft {
  padding: 140px 0;
  background: var(--charcoal-mid);
  position: relative;
  overflow: hidden;
}

.craft-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(196,151,106,0.05) 0%, transparent 60%);
}

.craft-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.craft-visual {
  position: relative;
  max-width: 405px;
  justify-self: start;
}

.craft-canvas-wrap {
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 720px;
  position: relative;
  overflow: hidden;
  background: #0F0403;
}

.craft-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

#craft-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.craft-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border-top: 1px solid rgba(196,151,106,0.4);
  border-left: 1px solid rgba(196,151,106,0.4);
}

.craft-accent-br {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-bottom: 1px solid rgba(196,151,106,0.4);
  border-right: 1px solid rgba(196,151,106,0.4);
}

.craft-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: rgba(196,151,106,0.1);
  line-height: 1;
}

.craft-text .section-label {
  margin-bottom: 28px;
}

.craft-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ivory);
  margin-bottom: 32px;
}

.craft-text h2 em {
  font-style: italic;
  color: var(--champagne);
}

.craft-text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(248,244,238,0.55);
  margin-bottom: 20px;
}

.craft-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
}

.craft-feat {
  padding: 20px;
  border: 1px solid rgba(248,244,238,0.08);
  transition: border-color 0.3s ease;
}

.craft-feat:hover {
  border-color: rgba(196,151,106,0.3);
}

.craft-feat-icon {
  width: 32px;
  height: 1px;
  background: var(--champagne);
  margin-bottom: 16px;
}

.craft-feat h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 8px;
}

.craft-feat p {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(248,244,238,0.4);
  margin: 0;
}

/* EDITORIAL FULL BLEED */
#editorial {
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0F0403;
}

#editorial-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Full-bleed video that replaces the old 3D-canvas quote section.
   Uses object-fit:cover so the video fills the band edge-to-edge. */
.editorial-video { padding: 0; }

.editorial-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22,5,4,0.88) 0%, rgba(22,5,4,0.42) 100%);
}

.editorial-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 60px;
}

.editorial-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--ivory);
  max-width: 900px;
  margin: 0 auto 32px;
}

.editorial-content cite {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  font-style: normal;
}

/* PROCESS */
#process {
  padding: 140px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

#process .section-header {
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,151,106,0.3) 20%, rgba(196,151,106,0.3) 80%, transparent);
}

.process-step {
  padding: 0 24px 0 0;
  position: relative;
}

.step-num-wrap {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(196,151,106,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: var(--charcoal);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.process-step:hover .step-num-wrap {
  border-color: var(--champagne);
  background: rgba(196,151,106,0.08);
}

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--champagne);
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(248,244,238,0.4);
}

/* MATERIALS */
#materials {
  padding: 140px 60px;
  background: linear-gradient(to bottom, var(--charcoal-mid), var(--charcoal));
}

.materials-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.materials-header {
  text-align: center;
  margin-bottom: 80px;
}

.materials-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 300;
  line-height: 1;
  color: var(--ivory);
  margin-bottom: 16px;
}

.materials-header h2 em {
  font-style: italic;
  color: var(--champagne);
}

.materials-header p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(248,244,238,0.5);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

/* Path A — four category cards, taller, text-led */
.materials-grid--cat {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.material-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: none;
  background: var(--charcoal-mid);
}

.materials-grid--cat .material-card {
  aspect-ratio: 3 / 4.4;
  border: 1px solid rgba(196,151,106,0.10);
  transition: border-color 0.5s ease;
}

.materials-grid--cat .material-card:hover {
  border-color: rgba(196,151,106,0.4);
}

.material-swatch {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s ease;
}

.material-card:hover .material-swatch {
  transform: scale(1.04);
}

.mat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,5,4,0.92) 0%, rgba(26,23,20,0.2) 100%);
}

.materials-grid--cat .mat-overlay {
  background: linear-gradient(to top, rgba(22,5,4,0.96) 0%, rgba(22,5,4,0.78) 38%, rgba(22,5,4,0.25) 72%, rgba(22,5,4,0.1) 100%);
}

.mat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
}

.materials-grid--cat .mat-info {
  padding: 28px 26px;
}

.mat-cat-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  color: rgba(196,151,106,0.7);
  margin-bottom: 10px;
}

.mat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 4px;
}

.materials-grid--cat .mat-name {
  font-size: clamp(26px, 2.2vw, 34px);
  margin-bottom: 14px;
}

.mat-body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(245,237,224,0.62);
}

.mat-origin {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,244,238,0.4);
}

/* materials footer */
.materials-foot {
  text-align: center;
  margin-top: 56px;
}

.materials-foot p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(245,237,224,0.65);
  margin: 0 0 28px;
}

.mat-cta {
  background: transparent;
  border: 1px solid rgba(196,151,106,0.5);
  color: #C4976A;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 18px 38px;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease;
}

.mat-cta:hover {
  background: #C4976A;
  color: #160504;
}

/* BESPOKE CTA */
#bespoke {
  padding: 160px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.bespoke-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196,151,106,0.07) 0%, transparent 70%);
}

.bespoke-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bespoke-lines::before,
.bespoke-lines::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(196,151,106,0.15) 30%, rgba(196,151,106,0.15) 70%, transparent);
}

.bespoke-lines::before {
  left: 30%;
}

.bespoke-lines::after {
  right: 30%;
}

.bespoke-content {
  position: relative;
  z-index: 1;
}

.bespoke-eyebrow {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 32px;
}

.bespoke-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 7vw, 100px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--ivory);
  margin-bottom: 32px;
}

.bespoke-title em {
  font-style: italic;
  color: var(--champagne);
}

.bespoke-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248,244,238,0.5);
  max-width: 560px;
  margin: 0 auto 52px;
}

.bespoke-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

/* TESTIMONIALS */
#testimonials {
  padding: 120px 60px;
  background: var(--charcoal-mid);
  overflow: hidden;
}

.testimonials-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

.testimonial {
  padding: 48px 48px 44px;
  border: 1px solid rgba(248,244,238,0.07);
  position: relative;
  transition: border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.testimonial:hover {
  border-color: rgba(196,151,106,0.2);
}

.testimonial::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  line-height: 0.8;
  color: rgba(196,151,106,0.1);
  position: absolute;
  top: 24px;
  left: 32px;
  pointer-events: none;
}

.testimonial-stars {
  position: relative;
  z-index: 1;
  color: var(--champagne);
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 22px;
  margin-top: 18px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--ivory);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(196,151,106,0.3), rgba(92,61,46,0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--champagne);
}

.author-name {
  font-size: 13px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 2px;
}

.author-title {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(248,244,238,0.35);
}

/* FOOTER */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(248,244,238,0.08);
  padding: 80px 60px 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  margin-bottom: 26px;
  line-height: 1;
  transform: translateX(-2px);
}

.footer-logo-img {
  width: 205px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(248,244,238,0.38);
  max-width: 310px;
  margin: 0 0 26px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0 0 30px;
}

.footer-contact a,
.footer-contact span {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(248,244,238,0.42);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--champagne);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196,151,106,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(248,244,238,0.46);
  text-decoration: none;
  cursor: none;
  transition: all 0.35s ease;
  background: rgba(255,255,255,0.01);
}

.social-link svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

.social-link:hover {
  border-color: var(--champagne);
  color: var(--champagne);
  background: rgba(196,151,106,0.08);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(248,244,238,0.35);
  text-decoration: none;
  cursor: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: rgba(248,244,238,0.7);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(248,244,238,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(248,244,238,0.2);
  letter-spacing: 0.05em;
}

.footer-bottom a {
  font-size: 12px;
  color: rgba(248,244,238,0.24);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--champagne);
}

/* PARTICLES */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
}

/* SCROLLBAR */
#booking-modal button,
#booking-modal input,
#booking-modal select,
#booking-modal textarea {
  cursor: none;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: rgba(196,151,106,0.4);
}

/* LOADING */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #160504;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
}

.loader-logo-img {
  width: 260px;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 2px;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(248,244,238,0.1);
  position: relative;
  overflow: hidden;
}

.loader-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--champagne);
  animation: load 1.8s ease forwards;
}

@keyframes load {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.loader-pct {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(248,244,238,0.3);
}

/* MOBILE */
@media (max-width: 900px) {
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none !important;
  }

  a,
  button,
  input,
  select,
  textarea,
  .collection-card,
  .material-card,
  .testimonial,
  .pp-card,
  .social-link,
  .nav-cta,
  .mobile-book {
    cursor: pointer !important;
  }

  #booking-modal button,
  #booking-modal input,
  #booking-modal select,
  #booking-modal textarea {
    cursor: pointer !important;
  }

  nav {
    padding: 20px 24px;
  }

  nav.scrolled {
    padding: 16px 24px;
  }

  .nav-logo-img {
    height: 28px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .loader-logo-img {
    width: 190px;
  }

  #hero {
    height: 100vh;
    min-height: 720px;
  }

  .hero-content {
    padding: 0 24px;
  }

  .hero-title {
    font-size: clamp(50px, 14vw, 78px);
  }

  .hero-sub {
    font-size: 14px;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  #intro {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 80px 24px;
  }

  .intro-stats {
    gap: 24px;
  }

  #collection {
    padding: 60px 24px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .collection-grid {
    grid-template-columns: 1fr 1fr;
  }

  .collection-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .collection-card:first-child .card-visual {
    min-height: 520px;
  }

  .craft-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }

  .craft-visual {
    max-width: 100%;
    justify-self: stretch;
  }

  .craft-features {
    grid-template-columns: 1fr;
  }

  #editorial {
    height: 70vh;
    min-height: 560px;
  }

  .editorial-content {
    padding: 0 24px;
  }

  #process {
    padding: 80px 24px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }

  .process-steps::before {
    display: none;
  }

  #materials {
    padding: 90px 24px;
  }

  .materials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .materials-grid--cat {
    grid-template-columns: repeat(2, 1fr);
  }

  #bespoke {
    padding: 100px 24px;
  }

  .bespoke-actions {
    flex-direction: column;
    width: 100%;
    gap: 14px;
  }

  #testimonials {
    padding: 80px 24px;
  }

  .testimonials-track {
    grid-template-columns: 1fr;
  }

  .testimonial {
    padding: 36px 28px;
  }

  .testimonial-stars {
    position: static;
    margin-bottom: 18px;
  }

  footer {
    padding: 70px 24px 34px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 48px 34px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-logo-img {
    width: 175px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-social {
    gap: 12px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* SMALL MOBILE */
@media (max-width: 560px) {
  nav {
    padding: 18px 20px;
  }

  nav.scrolled {
    padding: 14px 20px;
  }

  .nav-logo-img {
    height: 26px;
  }

  .mobile-menu a {
    font-size: 32px;
  }

  .loader-logo-img {
    width: 170px;
  }

  #hero {
    min-height: 680px;
  }

  .hero-title {
    font-size: clamp(46px, 15vw, 68px);
  }

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.32em;
  }

  .hero-scroll {
    bottom: 26px;
  }

  #intro {
    padding: 70px 20px;
  }

  .intro-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #collection {
    padding: 60px 20px;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  .collection-card:first-child .card-visual,
  .collection-card .card-visual {
    min-height: 420px;
  }

  .card-info {
    padding: 26px;
  }

  .materials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .materials-grid--cat {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .bespoke-title {
    font-size: clamp(46px, 14vw, 68px);
  }

  footer {
    padding: 64px 20px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-logo-img {
    width: 165px;
  }

  .footer-brand p,
  .footer-contact a,
  .footer-contact span,
  .footer-col a {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 12px;
  }
}