:root {
  --deep-plum: #2D1B3D;
  --royal-purple: #4A2266;
  --soft-purple: #6B3FA0;
  --lavender: #B89FD4;
  --gold: #C9A84C;
  --light-gold: #E8D5A3;
  --silver: #C0C0C0;
  --pearl: #F5F0F7;
  --cream: #FFFAF5;
  --white: #FFFFFF;
  --text-dark: #1A0E26;
  --text-muted: #6B5C7A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO — Split Layout (image left, text right) ===== */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100vh;
  overflow: hidden;
}

/* Image panel */
.hero-image-panel {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 8s ease;
}

.hero-image-panel:hover .hero-img {
  transform: scale(1.03);
}

/* Subtle dark gradient from bottom for badge legibility */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(45, 27, 61, 0.55) 100%
  );
  pointer-events: none;
}

/* Floating product badge — bottom left of image */
.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 1rem 1.5rem;
  z-index: 2;
}

.hero-badge-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--light-gold);
  margin-bottom: 0.35rem;
}

.hero-badge-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}

/* Secondary floating image — texture detail, top right of image panel */
.hero-secondary-img-wrap {
  position: absolute;
  top: 2.5rem;
  right: -1px;
  width: 140px;
  height: 180px;
  border: 3px solid var(--cream);
  overflow: hidden;
  box-shadow: -6px 6px 30px rgba(45, 27, 61, 0.35);
  z-index: 2;
}

.hero-secondary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Text panel */
.hero-text-panel {
  position: relative;
  background: linear-gradient(160deg, var(--deep-plum) 0%, #1A0E26 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
  overflow: hidden;
}

/* Decorative arc — background flourish */
.hero-panel-accent {
  position: absolute;
  top: -15%;
  right: -25%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.08);
  pointer-events: none;
}

.hero-panel-accent::after {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.05);
}

.hero-text-inner {
  position: relative;
  z-index: 2;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

/* Main headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

.hero-headline em {
  font-style: italic;
  color: var(--light-gold);
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--lavender);
  line-height: 1.8;
  max-width: 360px;
  margin-bottom: 2.5rem;
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-cta-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--deep-plum);
  background: var(--gold);
  padding: 0.9rem 2rem;
  transition: background 0.25s ease, transform 0.2s ease;
}

.hero-cta-primary:hover {
  background: var(--light-gold);
  transform: translateY(-2px);
}

.hero-cta-ghost {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--lavender);
  border: 1px solid rgba(184, 159, 212, 0.35);
  padding: 0.9rem 2rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.hero-cta-ghost:hover {
  color: var(--white);
  border-color: rgba(184, 159, 212, 0.7);
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 1.75rem;
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
}

.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 50% 50%;
  }

  .hero-text-panel {
    padding: 4rem 2.5rem;
  }

  .hero-secondary-img-wrap {
    width: 100px;
    height: 130px;
  }
}

@media (max-width: 768px) {
  /* Stack: full-bleed image on top, text below */
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 65vw auto;
  }

  .hero-image-panel {
    height: 65vw;
    min-height: 300px;
  }

  .hero-secondary-img-wrap {
    display: none;
  }

  .hero-text-panel {
    padding: 3rem 1.75rem 4rem;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 9vw, 3.5rem);
  }

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

  .hero-cta-primary,
  .hero-cta-ghost {
    text-align: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-stat-divider {
    display: none;
  }
}

/* Gold line (kept for backwards compat) */
.gold-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 8rem 2rem;
  background: var(--cream);
  text-align: center;
}

.philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
}

.philosophy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 2rem;
}

.philosophy h2 em {
  font-style: italic;
  color: var(--soft-purple);
}

.philosophy-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto;
}

.philosophy-divider {
  margin-top: 4rem;
}

.diamond {
  font-size: 1rem;
  color: var(--gold);
}

/* ===== COLLECTIONS ===== */
.collections {
  padding: 6rem 2rem 8rem;
  background: var(--white);
}

.collections-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

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

.collection-card {
  padding: 3rem 2rem;
  background: var(--pearl);
  border: 1px solid rgba(107, 63, 160, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 27, 61, 0.08);
}

.card-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.collection-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.collection-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== RITUAL / STANDARDS ===== */
.ritual {
  padding: 8rem 2rem;
  background: linear-gradient(180deg, var(--deep-plum), #1A0E26);
  color: var(--white);
}

.ritual-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.ritual-left .section-label {
  color: var(--light-gold);
}

.ritual-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
}

.standard-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.standard-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.standard-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.standard-item p {
  font-size: 0.9rem;
  color: var(--lavender);
  line-height: 1.7;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  background: var(--cream);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-accent {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.closing-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  background: var(--deep-plum);
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ritual-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

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

  .hero {
    min-height: 90vh;
  }

  .philosophy {
    padding: 5rem 1.5rem;
  }

  .collections {
    padding: 4rem 1.5rem 5rem;
  }

  .ritual {
    padding: 5rem 1.5rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .standard-item {
    gap: 1rem;
  }

  .standard-number {
    font-size: 1.5rem;
  }
}