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

:root {
  --bg-deep: #0b0812;
  --bg-mid: #120f1e;
  --bg-card: #1a1530;
  --bg-card2: #1e1838;
  --gold: #c9a84c;
  --gold-light: #e4c97e;
  --gold-dim: #7a6228;
  --purple: #7b5ea7;
  --purple-light: #a882d6;
  --purple-glow: #9d6fd420;
  --text-main: #ede8f5;
  --text-muted: #9d93b8;
  --text-dim: #5e5577;
  --border: #2d2650;
  --border-gold: #c9a84c44;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ─── STAR BACKGROUND ─── */
#stars-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, #0b081299, transparent);
  backdrop-filter: blur(6px);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-decoration: none;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }

/* ─── SECTIONS ─── */
section {
  position: relative;
  z-index: 1;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
}
.hero-ornament {
  font-size: 2.5rem;
  color: var(--gold-dim);
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  opacity: 0.7;
}
.hero-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-shadow: 0 0 60px #c9a84c55;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: clamp(0.75rem, 2vw, 1rem);
  letter-spacing: 0.35em;
  color: var(--purple-light);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero-desc {
  max-width: 560px;
  font-size: 1.2rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 3rem;
  line-height: 1.9;
}
.hero-ctas { display: flex; gap: 1.2rem; flex-wrap: wrap; justify-content: center; }

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn-gold:hover { background: var(--gold); color: var(--bg-deep); }
.btn-ghost {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--purple-light); color: var(--purple-light); }

/* ─── SCROLL INDICATOR ─── */
.scroll-indicator {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ─── DIVIDER ─── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 3rem 0 1rem;
  color: var(--gold-dim);
  font-size: 1.2rem;
  letter-spacing: 0.5em;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim));
}
.divider::after { background: linear-gradient(to left, transparent, var(--gold-dim)); }

/* ─── SECTION HEADINGS ─── */
.section-wrap { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--purple-light);
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 0 0 40px #c9a84c33;
}
.section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3.5rem;
  font-style: italic;
  font-size: 1.1rem;
}

/* ─── ABOUT ─── */
#about { background: var(--bg-mid); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: center;
}
.about-portrait { position: relative; }
.portrait-frame {
  width: 100%;
  aspect-ratio: 3/4;
  border: 1px solid var(--border-gold);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.portrait-frame::before {
  content: '✦';
  font-size: 5rem;
  color: var(--gold-dim);
  opacity: 0.3;
}
.portrait-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.6;
}
.portrait-corner.tl { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.portrait-corner.tr { top: 10px; right: 10px; border-width: 1px 1px 0 0; }
.portrait-corner.bl { bottom: 10px; left: 10px; border-width: 0 0 1px 1px; }
.portrait-corner.br { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }
.portrait-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, #0b081299, transparent);
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}
.about-text h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
}
.about-text p { color: var(--text-muted); margin-bottom: 1.2rem; font-size: 1.1rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.tag {
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
}

/* ─── SERVICES ─── */
#services { background: var(--bg-deep); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
.service-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card2);
}
.service-card::before {
  content: attr(data-symbol);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  opacity: 0.25;
  color: var(--gold);
}
.service-name {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}
.service-desc {
  color: var(--text-muted);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.service-price {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--gold);
}
.service-price span {
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-left: 0.3rem;
}
.service-features {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-features li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.service-features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  color: var(--gold-dim);
  top: 0.35rem;
}

/* ─── YOUTUBE ─── */
#videos { background: var(--bg-mid); }
.yt-config {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.yt-config label {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}
.yt-config input {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 0.5rem 0.9rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  width: 320px;
  max-width: 100%;
  outline: none;
}
.yt-config input:focus { border-color: var(--gold-dim); }
.yt-config .btn-gold { border: 1px solid var(--gold); padding: 0.55rem 1.4rem; font-size: 0.65rem; }
.yt-notice {
  text-align: center;
  color: var(--text-dim);
  font-style: italic;
  padding: 3rem 0;
}
.yt-notice strong {
  color: var(--text-muted);
  font-style: normal;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.video-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.3s;
  cursor: pointer;
}
.video-card:hover { border-color: var(--border-gold); }
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b081260;
  opacity: 0;
  transition: opacity 0.3s;
}
.video-card:hover .video-play { opacity: 1; }
.video-play-btn {
  width: 52px;
  height: 52px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-btn::after {
  content: '';
  border-left: 16px solid var(--gold);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.video-info { padding: 1.2rem 1.4rem; }
.video-title {
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-date { font-size: 0.85rem; color: var(--text-dim); }
.yt-error {
  background: var(--bg-card);
  border: 1px solid #3d2020;
  padding: 1.5rem 2rem;
  color: #c98080;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.yt-error strong {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.3rem;
}

/* ─── CONTACT ─── */
#contact { background: var(--bg-deep); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.contact-info p { color: var(--text-muted); font-size: 1.05rem; font-style: italic; margin-bottom: 1.5rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  transition: color 0.3s;
}
.contact-link:hover { color: var(--gold); }
.contact-link-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold-dim);
  flex-shrink: 0;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-input, .form-select, .form-textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 0.8rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold-dim); }
.form-select option { background: var(--bg-card); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.form-submit:hover { background: var(--gold); color: var(--bg-deep); }

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-style: italic;
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.footer-nav { display: flex; justify-content: center; gap: 2.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-nav a {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 0.85rem; color: var(--text-dim); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-wrap { padding: 4rem 1.5rem; }
}

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
