@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Cinzel:wght@400;500;600;700;900&family=Crimson+Pro:ital,wght@0,300;0,400;1,300;1,400&display=swap');

:root {
  --black: #080808;
  --deep: #0f0c09;
  --dark: #1a1208;
  --purple: #3d1466;
  --purple-mid: #5c2194;
  --gold: #c8a04a;
  --gold-light: #e8c470;
  --gold-pale: #f0d898;
  --cream: #f5ead8;
  --white: #fdf8f0;
  --green: #1a4a1a;
  --nav-height: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, background 0.2s, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
  opacity: 0.6;
}
.cursor-ring.hover { width: 60px; height: 60px; opacity: 0.3; }
.cursor.hover { width: 8px; height: 8px; }

/* ===== LOADING SCREEN ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo {
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 3vw, 20px);
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  animation: loaderFade 0.5s ease forwards;
  opacity: 0;
}
.loader-script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(38px, 8vw, 72px);
  color: var(--cream);
  line-height: 1.1;
  animation: loaderFade 0.5s 0.2s ease forwards;
  opacity: 0;
}
.loader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 24px;
  animation: loaderLine 1.2s 0.4s ease forwards;
}
.loader-tagline {
  font-family: 'Crimson Pro', serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 16px;
  opacity: 0;
  animation: loaderFade 0.5s 1.4s ease forwards;
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderLine { to { width: 200px; } }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 160, 74, 0.15);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav-logo-script {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-light);
  transition: color 0.3s;
}
.nav-logo-main {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--cream);
  text-transform: uppercase;
  opacity: 0.7;
}
.nav-logo:hover .nav-logo-script { color: var(--gold-pale); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  opacity: 0.75;
  transition: opacity 0.3s, color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold);
  border: 1px solid rgba(200, 160, 74, 0.5);
  padding: 10px 22px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: -1;
}
.nav-cta:hover { color: var(--black); border-color: var(--gold); }
.nav-cta:hover::before { transform: translateX(0); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; display: flex; }
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  letter-spacing: 0.3em;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
  transform: translateY(20px);
  opacity: 0;
  animation: menuItemIn 0.4s forwards;
}
.mobile-menu a:hover { color: var(--gold); }
@keyframes menuItemIn {
  to { transform: translateY(0); opacity: 1; }
}
.mobile-menu a:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu a:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu a:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu a:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu a:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu a:nth-child(6) { animation-delay: 0.35s; }

/* ===== PAGE HEADER ===== */
.page-header {
  height: 55vh;
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 60px clamp(20px, 6vw, 100px);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 30%, rgba(8,8,8,0.4) 70%, rgba(8,8,8,0.6));
  z-index: 1;
}
.page-header img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.page-header img.loaded { transform: scale(1); }
.page-header-content {
  position: relative;
  z-index: 2;
}
.page-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.7s 0.3s forwards;
}
.page-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: revealUp 0.8s 0.5s forwards;
}

/* ===== SECTION ELEMENTS ===== */
.section { padding: clamp(60px, 8vw, 120px) clamp(20px, 6vw, 100px); }
.section-center { text-align: center; }

.section-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-sub {
  font-family: 'Crimson Pro', serif;
  font-size: 19px;
  color: rgba(245, 234, 216, 0.65);
  max-width: 560px;
  font-style: italic;
}
.section-center .section-sub { margin: 0 auto; }

.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto;
}

/* ===== ORNAMENT ===== */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gold);
  opacity: 0.5;
  margin: 20px 0;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  max-width: 120px;
}
.ornament::after { background: linear-gradient(270deg, transparent, var(--gold)); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  cursor: none;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-pale); border-color: var(--gold-pale); }
.btn-outline {
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(200, 160, 74, 0.5);
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: -1;
}
.btn-outline:hover { color: var(--black); border-color: var(--gold); }
.btn-outline:hover::before { transform: translateX(0); }

/* ===== FOOTER ===== */
footer {
  background: #05050a;
  border-top: 1px solid rgba(200, 160, 74, 0.12);
  padding: 60px clamp(20px, 6vw, 100px) 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 36px;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: var(--cream);
  opacity: 0.5;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 15px;
  color: rgba(245, 234, 216, 0.5);
  line-height: 1.8;
  max-width: 280px;
}
.footer-heading {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(245, 234, 216, 0.55);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: rgba(245, 234, 216, 0.55);
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }
.footer-contact-item a { color: inherit; text-decoration: none; transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(200, 160, 74, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(245, 234, 216, 0.3);
  letter-spacing: 0.05em;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  color: rgba(245, 234, 216, 0.35);
  transition: color 0.3s, transform 0.3s;
  display: flex;
}
.footer-social a:hover { color: var(--gold); transform: translateY(-2px); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== NOISE 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: 99990;
  opacity: 0.3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 600px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}
