/* ========================================
   MYOW DESIGN SYSTEM
   ======================================== */
:root {
  --color-obsidian: #0D0D0D;
  --color-warm-black: #1A1410;
  --color-gold: #B8966A;
  --color-gold-light: #D4B896;
  --color-ivory: #F5F0E8;
  --color-stone: #E8E0D0;
  --color-mid: #9E9488;
  --color-steel-blue: #7B9AB5;
  --color-white: #FFFFFF;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1440px;
  --gutter: clamp(24px, 5vw, 80px);
  --space-section: 120px;
  --space-section-sm: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--color-obsidian);
  color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

::selection {
  background: var(--color-gold);
  color: var(--color-obsidian);
}

/* ========================================
   UTILITY
   ======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.label-caps {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.display-hero {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.05;
  color: var(--color-white);
}

.display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 48px);
  line-height: 1.2;
}

.heading-md {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
}

.body-lg {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-mid);
}

.body-md {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-mid);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  background: var(--color-obsidian);
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  cursor: pointer;
  transition: all 300ms ease;
}

.btn-primary:hover {
  background: var(--color-gold);
  color: var(--color-obsidian);
}

.btn-ghost {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 38px;
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
  cursor: pointer;
  transition: all 300ms ease;
}

.btn-ghost:hover {
  background: var(--color-white);
  color: var(--color-obsidian);
}

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  border: none;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(184, 150, 106, 0.15);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.nav-logo:hover img {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--color-gold) !important;
  color: var(--color-gold) !important;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--color-gold) !important;
  color: var(--color-obsidian) !important;
}

.nav-cta::after { display: none !important; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* --- Cinematic Slideshow Background --- */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-img {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

@media (max-width: 768px) {
  .hero-slide-img { inset: -20px; }
}

/* Ken Burns — each slide zooms/pans differently */
.hero-slide.active .hero-slide-img {
  animation: var(--kb-animation) 8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes kbZoomIn {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.12) translate(-1%, -1%); }
}

@keyframes kbZoomOut {
  from { transform: scale(1.15) translate(-2%, 0); }
  to   { transform: scale(1) translate(0, 0); }
}

@keyframes kbPanRight {
  from { transform: scale(1.08) translate(-3%, -1%); }
  to   { transform: scale(1.08) translate(1%, 1%); }
}

@keyframes kbPanLeft {
  from { transform: scale(1.08) translate(2%, 1%); }
  to   { transform: scale(1.08) translate(-2%, -1%); }
}

/* Dark cinematic overlay with vignette */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(13,13,13,0.2) 0%, rgba(13,13,13,0.55) 100%),
    linear-gradient(to bottom, rgba(13,13,13,0.5) 0%, rgba(13,13,13,0.35) 30%, rgba(13,13,13,0.4) 60%, rgba(13,13,13,0.75) 100%);
  z-index: 1;
}

/* Slide progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 5;
  background: rgba(184, 150, 106, 0.15);
}

.hero-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transition: width 0.3s ease;
}

.hero-progress-bar.running {
  width: 100%;
  transition: width var(--slide-duration) linear;
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
}

.hero-dot.active {
  background: var(--color-gold);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(184, 150, 106, 0.4);
}

/* Floating petal particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.petal {
  position: absolute;
  width: 8px;
  height: 12px;
  background: var(--color-gold);
  opacity: 0;
  border-radius: 50% 0 50% 50%;
  animation: petalFall linear infinite;
}

@keyframes petalFall {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(0deg) scale(0.5);
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.08;
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(360deg) scale(0.3);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--gutter);
}

/* Hero text — animated per slide change */
.hero-label {
  margin-bottom: 32px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero-title {
  margin-bottom: 32px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--color-gold);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-desc {
  max-width: 600px;
  margin: 0 auto 48px;
  color: var(--color-stone);
  text-shadow: 0 1px 12px rgba(0,0,0,0.7);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Staggered entrance animation for hero text */
.hero-content .hero-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-content .hero-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-content .hero-animate:nth-child(1) { transition-delay: 0.15s; }
.hero-content .hero-animate:nth-child(2) { transition-delay: 0.35s; }
.hero-content .hero-animate:nth-child(3) { transition-delay: 0.55s; }
.hero-content .hero-animate:nth-child(4) { transition-delay: 0.75s; }
.hero-content .hero-animate:nth-child(5) { transition-delay: 0.95s; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease 2s forwards;
}

.hero-scroll span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mid);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   SIGNATURE COLLECTIONS
   ======================================== */
.collections {
  padding: var(--space-section) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header .gold-rule {
  margin: 24px auto;
}

.section-header .body-lg {
  max-width: 560px;
  margin: 0 auto;
}

/* --- 3-column tall collection cards --- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.collection-card {
  cursor: pointer;
  text-align: center;
}

.collection-card-image-wrap {
  overflow: hidden;
  background: var(--color-warm-black);
  margin-bottom: 28px;
}

.collection-card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  pointer-events: none;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-card:hover .collection-card-image {
  transform: scale(1.06);
}

.collection-card-label {
  margin-bottom: 14px;
}

.collection-card-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
}

.collection-card-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-gold);
  padding: 12px 32px;
  border: 1px solid var(--color-gold);
  transition: all 0.3s ease;
}

.collection-card:hover .collection-card-cta {
  background: var(--color-gold);
  color: var(--color-obsidian);
}

/* --- Full-width bespoke banner --- */
.bespoke-banner {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  overflow: hidden;
  cursor: pointer;
}

.bespoke-banner-image {
  position: relative;
  overflow: hidden;
}

.bespoke-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.bespoke-banner:hover .bespoke-banner-image img {
  transform: scale(1.04);
}

.bespoke-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 80px;
  background: var(--color-warm-black);
  border: 1px solid rgba(184, 150, 106, 0.12);
  border-left: none;
}

.bespoke-banner-content .label-caps {
  margin-bottom: 20px;
}

.bespoke-banner-content .collection-card-title {
  text-align: left;
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 16px;
}

.bespoke-banner-content .body-md {
  margin-bottom: 32px;
  max-width: 400px;
}

.bespoke-banner-content .collection-card-cta {
  align-self: flex-start;
}

/* ========================================
   MATERIALS SECTION
   ======================================== */
.materials {
  padding: var(--space-section) 0;
  background: var(--color-warm-black);
  position: relative;
  overflow: hidden;
}

.materials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0.3;
}

/* Section intro */
.materials-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

.materials-intro .label-caps {
  margin-bottom: 20px;
}

.materials-intro .display-xl {
  margin-bottom: 20px;
}

/* 3x3 Swatch Grid — Photo-based */
.swatch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 80px;
}

.swatch-card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-obsidian);
}

.swatch-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s ease;
  filter: brightness(0.8) saturate(0.9);
  pointer-events: none;
}

.swatch-card:hover .swatch-img {
  transform: scale(1.08);
  filter: brightness(0.95) saturate(1);
}

.swatch-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(to top, rgba(13,13,13,0.8) 0%, rgba(13,13,13,0.15) 45%, transparent 100%);
  transition: background 0.5s ease;
}

.swatch-card:hover .swatch-info {
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.5) 50%, rgba(13,13,13,0.2) 100%);
}

.swatch-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.swatch-hindi {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 15px;
  color: var(--color-gold-light);
  opacity: 0.7;
  margin-left: 4px;
}

.swatch-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-stone);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.5s ease 0.1s;
  margin-top: 8px;
}

.swatch-card:hover .swatch-desc {
  max-height: 80px;
  opacity: 1;
}

/* --- Craft Features — Full-width immersive --- */
.craft-features {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 80px;
}

.craft-feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 480px;
  overflow: hidden;
  background: var(--color-obsidian);
}

.craft-feature-card.reversed {
  direction: rtl;
}

.craft-feature-card.reversed > * {
  direction: ltr;
}

.craft-feature-image {
  position: relative;
  overflow: hidden;
}

.craft-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}

.craft-feature-card:hover .craft-feature-image img {
  transform: scale(1.05);
}

.craft-feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px;
}

.craft-feature-content .label-caps {
  margin-bottom: 20px;
}

.craft-feature-content h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 2.5vw, 42px);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.craft-feature-content p {
  font-size: 15px;
  color: var(--color-mid);
  line-height: 1.8;
  max-width: 420px;
}

.craft-feature-content .craft-detail {
  margin-top: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--color-gold-light);
  opacity: 0.8;
}

/* CTA row */
.materials-cta {
  text-align: center;
}

.materials-note {
  font-size: 14px;
  color: var(--color-gold-light);
  font-style: italic;
  margin-bottom: 32px;
}

/* ========================================
   CUSTOMISATION USP
   ======================================== */
.customisation {
  padding: var(--space-section) 0;
  position: relative;
}

.custom-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.custom-header .display-xl {
  margin-bottom: 24px;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.custom-card {
  padding: 48px 32px;
  border: 1px solid rgba(184, 150, 106, 0.15);
  text-align: center;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.custom-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.custom-card:hover {
  border-color: rgba(184, 150, 106, 0.4);
  background: rgba(184, 150, 106, 0.03);
}

.custom-card:hover::before {
  transform: scaleX(1);
}

.custom-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-icon svg {
  stroke: var(--color-gold);
  width: 36px;
  height: 36px;
  stroke-width: 1.2;
  fill: none;
}

.custom-card .heading-md {
  margin-bottom: 16px;
  color: var(--color-white);
}

.custom-card .body-md {
  font-size: 14px;
}

/* ========================================
   PROJECTS / PORTFOLIO
   ======================================== */
.projects {
  padding: var(--space-section) 0;
  background: var(--color-warm-black);
  position: relative;
}

.projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0.3;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.projects-header-text {
  max-width: 560px;
}

.projects-header-text .label-caps {
  margin-bottom: 16px;
}

.projects-header-text .display-xl {
  margin-bottom: 16px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--color-obsidian);
}

.project-card-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  pointer-events: none;
}

.project-card:hover .project-card-img {
  transform: scale(1.06);
}

.project-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.3) 60%, transparent 100%);
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.5s ease;
}

.project-card:hover .project-card-info {
  transform: translateY(0);
  opacity: 1;
}

.project-card-info .label-caps {
  margin-bottom: 8px;
  font-size: 10px;
}

.project-card-info h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--color-white);
}

/* ========================================
   STATS BAR
   ======================================== */
.stats {
  padding: var(--space-section-sm) 0;
  border-top: 1px solid rgba(184, 150, 106, 0.15);
  border-bottom: 1px solid rgba(184, 150, 106, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--color-gold);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--color-mid);
  letter-spacing: 0.05em;
}

/* ========================================
   OPTION A — PROCESS TIMELINE
   ======================================== */
.process-section {
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

.process-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.process-header .label-caps { margin-bottom: 20px; }
.process-header .display-xl { margin-bottom: 16px; }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Gold connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--color-gold) 15%, var(--color-gold) 85%, transparent 100%);
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process-step-num {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(184, 150, 106, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-gold);
  background: var(--color-obsidian);
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}

.process-step:hover .process-step-num {
  border-color: var(--color-gold);
  box-shadow: 0 0 24px rgba(184, 150, 106, 0.15);
}

.process-step-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
  opacity: 0.7;
}

.process-step h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--color-white);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.process-step p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.55);
  max-width: 220px;
  margin: 0 auto;
}

.process-cta {
  text-align: center;
  margin-top: 64px;
}

/* ========================================
   OPTION B — FOUNDER / PHILOSOPHY
   ======================================== */
.founder-section {
  padding: var(--space-section) 0;
  position: relative;
}

.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
  border: 1px solid rgba(184, 150, 106, 0.12);
  overflow: hidden;
}

.founder-image {
  position: relative;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.9);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.founder-layout:hover .founder-image img {
  transform: scale(1.03);
  filter: brightness(0.9) saturate(1);
}

.founder-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(13,13,13,0.4) 100%);
  pointer-events: none;
}

.founder-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  position: relative;
}

.founder-content .label-caps {
  margin-bottom: 32px;
}

.founder-quote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 2.8vw, 38px);
  line-height: 1.35;
  color: var(--color-gold-light);
  margin-bottom: 32px;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid rgba(184, 150, 106, 0.3);
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.founder-title {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.45);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.founder-philosophy {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.6);
  max-width: 420px;
  margin-bottom: 36px;
}

.founder-divider {
  width: 48px;
  height: 1px;
  background: rgba(184, 150, 106, 0.3);
  margin-bottom: 36px;
}

/* ========================================
   CTA / CONTACT SECTION
   ======================================== */
.cta-section {
  padding: var(--space-section) 0;
  background: var(--color-warm-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ambient gold glow behind content */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(184,150,106,0.08) 0%, rgba(184,150,106,0.03) 40%, transparent 70%);
  pointer-events: none;
}

/* Top gold line */
.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0.3;
}

.cta-content {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  padding: 64px 56px;
  border: 1px solid rgba(184, 150, 106, 0.15);
}

/* Corner accents — gold decorative corners */
.cta-content::before,
.cta-content::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--color-gold);
  border-style: solid;
  opacity: 0.4;
}

.cta-content::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.cta-content::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

/* Decorative flourish */
.cta-flourish {
  display: block;
  width: 80px;
  height: 24px;
  margin: 0 auto 28px;
  opacity: 0.5;
}

.cta-content .label-caps {
  margin-bottom: 24px;
}

.cta-content .display-xl {
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-light) 50%, var(--color-white) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ctaShimmer 6s ease infinite;
}

@keyframes ctaShimmer {
  0%, 100% { background-position: 200% center; }
  50% { background-position: -200% center; }
}

.cta-content .display-lg {
  color: var(--color-gold-light);
  margin-bottom: 32px;
}

.cta-content .body-lg {
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: #25D366;
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(184, 150, 106, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-brand .nav-logo img {
  height: 32px;
  width: auto;
}

.footer-brand p {
  font-size: 14px;
  color: var(--color-mid);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--color-mid);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(184, 150, 106, 0.1);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--color-mid);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 150, 106, 0.2);
  color: var(--color-mid);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .collection-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .custom-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .bespoke-banner { min-height: 400px; }
  .bespoke-banner-content { padding: 48px 40px; }
  .swatch-grid { grid-template-columns: repeat(3, 1fr); }
  .craft-feature-card { height: 400px; grid-template-columns: 1fr 1fr; }
  .craft-feature-content { padding: 40px 32px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .process-timeline::before { display: none; }
  .founder-layout { grid-template-columns: 1fr; }
  .founder-image { min-height: 320px; }
  .founder-content { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root {
    --space-section: 64px;
    --space-section-sm: 48px;
  }

  /* --- Nav --- */
  .nav-logo img { height: 28px; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--color-obsidian);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links.open a { font-size: 20px; }
  .nav-links.open .nav-cta { font-size: 13px !important; margin-top: 8px; }
  .nav-toggle { display: flex; }

  /* --- Hero --- */
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-content { padding: 0 20px; }
  .hero-label { margin-bottom: 16px; font-size: 10px; }
  .display-hero { font-size: clamp(36px, 10vw, 56px); }
  .hero-title { margin-bottom: 12px; }
  .hero-subtitle { margin-bottom: 8px; font-size: 18px; }
  .hero-desc { font-size: 13px; line-height: 1.6; margin-bottom: 24px; max-width: 320px; }
  .hero-buttons { flex-direction: column; gap: 10px; align-items: center; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost { width: 100%; max-width: 260px; text-align: center; padding: 14px 28px; font-size: 12px; }
  .hero-indicators { bottom: 48px; }
  .hero-scroll { display: none; }

  /* --- Section headers --- */
  .section-header { margin-bottom: 48px; }
  .materials-intro { margin-bottom: 48px; }

  /* --- Collections — compact cards --- */
  .collection-grid { grid-template-columns: 1fr; gap: 32px; }
  .collection-card-image { aspect-ratio: 4 / 3; }
  .collection-card-image-wrap { margin-bottom: 20px; }
  .collection-card-label { margin-bottom: 8px; }
  .collection-card-title { margin-bottom: 14px; }

  /* --- Bespoke banner --- */
  .bespoke-banner { grid-template-columns: 1fr; min-height: auto; margin-top: 48px; }
  .bespoke-banner-image { aspect-ratio: 16 / 10; }
  .bespoke-banner-image img { height: 100%; }
  .bespoke-banner-content { padding: 32px 24px; border-left: 1px solid rgba(184, 150, 106, 0.12); }
  .bespoke-banner-content .collection-card-title { text-align: center; }
  .bespoke-banner-content .body-md { max-width: 100%; }
  .bespoke-banner-content .collection-card-cta { align-self: center; }

  /* --- Swatch grid — descriptions always visible on touch --- */
  .swatch-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .swatch-card { aspect-ratio: 3/4; }
  .swatch-info { padding: 16px; }
  .swatch-name { font-size: 16px; }
  .swatch-desc { max-height: 60px; opacity: 0.85; font-size: 11px; line-height: 1.5; }

  /* --- Craft features — stacked, constrained --- */
  .craft-features { gap: 2px; margin-bottom: 48px; }
  .craft-feature-card { grid-template-columns: 1fr; height: auto; }
  .craft-feature-card.reversed { direction: ltr; }
  .craft-feature-image { aspect-ratio: 16 / 10; }
  .craft-feature-content { padding: 28px 24px; }
  .craft-feature-content h3 { font-size: 28px; margin-bottom: 12px; }
  .craft-feature-content p { font-size: 14px; }
  .craft-detail { font-size: 16px !important; margin-top: 16px !important; }

  /* --- Materials CTA --- */
  .materials-cta { text-align: center; }
  .materials-note { font-size: 13px; margin-bottom: 20px; }

  /* --- Customisation cards --- */
  .custom-header { margin-bottom: 40px; }
  .custom-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .custom-card { padding: 28px 16px; }
  .custom-icon { width: 40px; height: 40px; margin-bottom: 16px; }
  .custom-card .heading-md { font-size: 18px; margin-bottom: 10px; }
  .custom-card .body-md { font-size: 13px; }

  /* --- Projects — horizontal scroll or compact --- */
  .projects-header { flex-direction: column; gap: 20px; align-items: flex-start; margin-bottom: 32px; }
  .project-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .project-card-img { aspect-ratio: 3 / 4; }
  .project-card-info { padding: 16px; transform: none; opacity: 1; }
  .project-card-info .label-caps { font-size: 9px; margin-bottom: 4px; }
  .project-card-info h3 { font-size: 16px; }

  /* --- Stats --- */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-number { font-size: 36px; }

  /* --- Process --- */
  .process-header { margin-bottom: 48px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 16px; }
  .process-timeline::before { display: none; }
  .process-step { padding: 0 8px; }
  .process-step-num { width: 48px; height: 48px; font-size: 18px; margin-bottom: 20px; }
  .process-step h4 { font-size: 18px; }
  .process-step p { font-size: 13px; max-width: none; }
  .process-cta { margin-top: 40px; }

  /* --- Founder --- */
  .founder-layout { grid-template-columns: 1fr; }
  .founder-image { min-height: 260px; max-height: 320px; }
  .founder-content { padding: 32px 24px; }
  .founder-quote { font-size: 22px; padding-left: 16px; }
  .founder-philosophy { font-size: 14px; }

  /* --- CTA --- */
  .cta-content { padding: 40px 24px; }
  .cta-buttons { flex-direction: column; gap: 12px; align-items: center; }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-whatsapp { width: 100%; max-width: 300px; text-align: center; justify-content: center; }

  /* --- Footer --- */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  /* --- Page hero (inner pages) --- */
  .page-hero { padding: 140px 0 56px; }
  .page-hero .display-hero { font-size: clamp(32px, 8vw, 48px); }

  /* --- Contact page --- */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-option { padding: 28px 0; }
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--color-obsidian);
}

.page-hero .label-caps {
  margin-bottom: 24px;
}

.page-hero .display-hero {
  font-size: clamp(40px, 6vw, 72px);
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
  padding: var(--space-section) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-option {
  padding: 40px 0;
}

.contact-option:first-child {
  padding-top: 0;
}

.contact-divider {
  height: 1px;
  background: rgba(184, 150, 106, 0.12);
}

.contact-studio-image {
  overflow: hidden;
  margin-bottom: 24px;
}

.contact-studio-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

.contact-studio-info {
  padding: 0;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ========================================
   FLOATING WHATSAPP CTA
   ======================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  z-index: 900;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }
}

/* ========================================
   IMAGE PROTECTION
   ======================================== */
body {
  -webkit-touch-callout: none;
}
