@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Cinzel:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --black:       #080808;
  --black-soft:  #101010;
  --charcoal:    #181818;
  --dark-grey:   #252525;
  --mid-grey:    #484848;
  --grey:        #787878;
  --light-grey:  #adadad;
  --silver:      #d0d0d0;
  --off-white:   #ede9e3;
  --white:       #ffffff;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dark:   #8a6520;
  --gold-shine:  #f5e09a;
  --font-display: 'Cinzel', serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-sans:    'Lato', sans-serif;
  --max-width:    900px; /* Slightly wider for better reading */
  --gutter:       clamp(1.5rem, 5vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px; /* Increased base size for better readability */
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-serif);
  font-size: 1.25rem; /* Increased base font size */
  line-height: 1.85; /* Better line height */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
  border-radius: 4px;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .05em;
  color: var(--white);
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 1rem; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  margin-bottom: 2rem;
  color: var(--off-white);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem); /* Much larger readable font */
  line-height: 1.9;
}

strong {
  color: var(--white);
  font-weight: 700;
}

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

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

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* GOLD RULE */
.gold-rule {
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 3rem;
}
.gold-rule.left {
  margin: 0 0 3rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* LABELS & ORNAMENTS */
.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.ornament {
  text-align: center;
  color: var(--gold-dark);
  font-size: 1rem;
  letter-spacing: 1rem;
  padding: 2rem 0;
  opacity: .7;
}

/* PANELS */
.dark-panel {
  background: var(--charcoal);
  border: 1px solid var(--dark-grey);
  padding: 3rem;
  margin: 3.5rem 0;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.dark-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.dark-panel h3 {
  color: var(--gold-light);
  font-size: 1.4rem;
}

/* BLOCKQUOTE */
.bq {
  border-left: 2px solid var(--gold);
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  background: rgba(201, 168, 76, 0.05);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--white);
  position: relative;
}
.bq-attr {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-display);
}

/* HIGHLIGHTS */
.highlight-text {
  color: var(--gold-shine);
  font-weight: 600;
}

/* BUTTONS */
.btn-gold {
  display: block;
  width: 100%;
  padding: 1.5rem 2.5rem;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 45%, var(--gold-shine) 50%, var(--gold) 55%, var(--gold-dark) 100%);
  background-size: 200% auto;
  color: var(--black);
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background-position .6s ease, transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.2);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  margin: 2.5rem auto;
  border-radius: 2px;
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn-gold:hover::after {
  left: 150%;
}
.btn-subtext {
  text-align: center;
  font-size: 0.85rem;
  color: var(--grey);
  letter-spacing: .1em;
  font-family: var(--font-sans);
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-subtext i {
  color: var(--gold-dark);
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 8rem var(--gutter) 6rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201,168,76,.08) 0%, transparent 80%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  display: block;
}
.hero h1 {
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.15;
}
.hero h1 .gw {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--light-grey);
  max-width: 700px;
  margin: 0 auto 3.5rem;
  font-family: var(--font-serif);
  font-style: italic;
}

/* VSL WRAPPER */
.vsl-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter) 4.5rem;
}
.vsl-frame {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--charcoal);
  border: 1px solid var(--gold-dark);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.vsl-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #181818 0%, #0c0c0c 100%);
}
.vsl-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  z-index: 1;
}
.vsl-play {
  width: 80px;
  height: 80px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.8rem;
  cursor: pointer;
  transition: all .3s;
}
.vsl-play:hover {
  background: rgba(201,168,76,.1);
  transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .hero { padding: 6rem var(--gutter) 4rem; }
  .dark-panel { padding: 2rem 1.5rem; }
  .bq { padding: 1.5rem; }
}
