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

:root {
  --cream: #f5f0e8;
  --warm-white: #faf7f2;
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --dark: #0d0b08;
  --charcoal: #1a1714;
  --mid: #2e2a24;
  --text-muted: #7a7060;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, opacity 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s, height 0.3s, opacity 0.3s;
}
body:hover .cursor { opacity: 1; }

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ──────────────────── HERO ──────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
}

/* Ambient radial glow */
.hero::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.07) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: breathe 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* Decorative lines */
.hero-line {
  position: absolute;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.25), transparent);
  width: 1px;
  height: 100%;
  top: 0;
  animation: lineFade 3s ease forwards;
  opacity: 0;
}
.hero-line:nth-child(1) { left: 12%; animation-delay: 0.3s; }
.hero-line:nth-child(2) { right: 12%; animation-delay: 0.6s; }

@keyframes lineFade {
  to { opacity: 1; }
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: clamp(9px, 1.1vw, 11px);
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: riseUp 1s 0.2s ease forwards;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--warm-white);
  opacity: 0;
  animation: riseUp 1.2s 0.4s ease forwards;
  position: relative;
}

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

.hero-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 32px auto;
  opacity: 0;
  animation: riseUp 1s 0.7s ease forwards;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: riseUp 1s 0.9s ease forwards;
  text-align: center;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: riseUp 1s 1.6s ease forwards;
}

.scroll-cue span {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  text-transform: uppercase;
}

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

@keyframes scrollPulse {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

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

/* ──────────────────── DIVIDER ──────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 8vw;
  margin: 40px 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.3), transparent);
}

.divider-ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold);
  opacity: 0.7;
}

/* ──────────────────── VIDEO SECTION ──────────────────── */
.performance-section {
  padding: 20px 0 100px;
  position: relative;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  opacity: 0.8;
}

.video-wrapper {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Corner brackets */
.video-frame {
  position: relative;
  padding: 16px;
}

.video-frame::before,
.video-frame::after,
.video-frame .corner-br,
.video-frame .corner-tl {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.7;
}

.video-frame::before {
  top: 0; left: 0;
  border-width: 1px 0 0 1px;
}
.video-frame::after {
  top: 0; right: 0;
  border-width: 1px 1px 0 0;
}

.video-frame .corner-br {
  bottom: 0; right: 0;
  border-width: 0 1px 1px 0;
}
.video-frame .corner-bl {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.7;
  bottom: 0; left: 0;
  border-width: 0 0 1px 1px;
}

.video-inner {
  position: relative;
  padding-top: 178.22%;
  overflow: hidden;
  background: var(--charcoal);
  box-shadow:
    0 0 0 1px rgba(201,169,110,0.12),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 120px rgba(201,169,110,0.04);
}

.video-inner iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Glow behind video */
.video-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.video-caption {
  text-align: center;
  margin-top: 28px;
}

.video-caption .title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.video-caption .meta {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-top: 8px;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
}

/* ──────────────────── ABOUT ──────────────────── */
.about-section {
  padding: 80px 8vw 100px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.about-section::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  color: rgba(201,169,110,0.06);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.about-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  line-height: 1.7;
  color: rgba(245,240,232,0.75);
  position: relative;
}

.about-text strong {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 400;
}

/* ──────────────────── STYLES ──────────────────── */
.styles-section {
  padding: 60px 8vw 100px;
  border-top: 1px solid rgba(201,169,110,0.08);
}

.styles-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.style-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.style-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.style-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  position: relative;
  transition: border-color 0.3s;
}

.style-item:hover .style-icon {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,169,110,0.2);
}

.style-name {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ──────────────────── FOOTER ──────────────────── */
footer {
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(201,169,110,0.08);
}

footer .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

footer .fine {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 0.4em;
  color: rgba(122,112,96,0.5);
  text-transform: uppercase;
}

/* ──────────────────── INSTAGRAM SECTION ──────────────────── */
.ig-section {
  padding: 80px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ig-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(131,58,180,0.06) 0%, rgba(253,29,29,0.04) 40%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ig-cta-label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0.8;
}

.ig-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
  position: relative;
  cursor: none;
}

.ig-icon-wrap {
  width: 100px; height: 100px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 60px rgba(220,39,67,0.25),
    0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
}

.ig-card:hover .ig-icon-wrap {
  transform: scale(1.08) rotate(-3deg);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 28px 80px rgba(220,39,67,0.35),
    0 12px 30px rgba(0,0,0,0.5);
}

.ig-icon-wrap svg {
  width: 48px; height: 48px;
  fill: #fff;
}

.ig-handle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 56px);
  font-style: italic;
  font-weight: 300;
  color: var(--warm-white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
  position: relative;
}

.ig-handle::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: transform 0.4s ease;
  transform-origin: center;
}

.ig-card:hover .ig-handle::after {
  transform: translateX(-50%) scaleX(1);
}

.ig-card:hover .ig-handle { color: var(--gold-light); }

.ig-subtext {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 24px;
  transition: color 0.3s;
}

.ig-card:hover .ig-subtext { color: var(--gold); }

.ig-arrow {
  display: inline-block;
  margin-top: 32px;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(201,169,110,0.4);
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  transition: color 0.3s, transform 0.3s;
}

.ig-card:hover .ig-arrow {
  color: var(--gold);
  transform: translateX(6px);
}

/* ──────────────────── RESPONSIVE ──────────────────── */
@media (max-width: 600px) {
  .hero-line { display: none; }
  .styles-grid { gap: 36px; }
  .about-section { padding: 60px 6vw 60px; }
}