/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --black:       #080808;
  --deep:        #0e0e0e;
  --surface:     #141414;
  --surface-2:   #1c1c1c;
  --border:      #2a2a2a;

  --gold:        #c8a84a;
  --gold-light:  #e8cc78;
  --gold-dim:    #8a6e2a;

  --white:       #ffffff;
  --off-white:   #f0ece4;
  --muted:       #888880;
  --subtle:      #555550;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w:       1100px;
  --gutter:      clamp(1.25rem, 5vw, 2.5rem);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 1.75;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.gold {
  color: var(--gold);
}

.centered {
  text-align: center;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--muted);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 3rem;
  text-align: center;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 168, 74, 0.25);
}

.btn-large {
  padding: 1.15rem 2.8rem;
  font-size: 0.85rem;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--gold);
  background: rgba(200, 168, 74, 0.06);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  background-color: var(--black);
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(200,168,74,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 0% 80%, rgba(200,168,74,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-price-block {
  margin-bottom: 2rem;
}

.price-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 0.4rem;
}

.price-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.price-value sup {
  font-size: 0.4em;
  vertical-align: super;
  font-weight: 400;
  color: var(--muted);
}

.price-note {
  font-size: 0.82rem;
  color: var(--subtle);
  max-width: 380px;
  line-height: 1.7;
  font-style: italic;
}

/* Hero visual column */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-img-wrap {
  width: 100%;
  max-width: 380px;
  margin-inline: auto;
  position: relative;
}

.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(200,168,74,0.2);
  border-radius: 2px;
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  filter: brightness(0.92) contrast(1.05);
}

.hero-book-wrap {
  width: 100%;
  max-width: 160px;
  margin-inline: auto;
}

.hero-book {
  width: 100%;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.6));
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ═══════════════════════════════════════════
   ALTAR SECTION
═══════════════════════════════════════════ */
.altar-section {
  padding: 6rem 0;
  background: var(--deep);
  text-align: center;
}

.altar-inner {
  max-width: 680px;
}

.altar-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
  margin: 0 auto 2.5rem;
}

.altar-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.9;
  margin-bottom: 2.5rem;
  border: none;
  padding: 0;
}

.altar-quote p + p {
  margin-top: 0.15rem;
}

.altar-body {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.85;
}

/* ═══════════════════════════════════════════
   AUTHOR SECTION
═══════════════════════════════════════════ */
.author-section {
  padding: 6rem 0;
  background: var(--surface);
}

.author-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.author-img-frame {
  position: relative;
  max-width: 340px;
}

.author-img-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(200,168,74,0.15);
  border-radius: 2px;
  pointer-events: none;
}

.author-img-frame::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-right: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  pointer-events: none;
}

.author-img-frame img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  filter: brightness(0.94);
}

.author-text-col p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.author-rule {
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  margin-bottom: 1.75rem;
}

.author-credentials {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-dim) !important;
  font-size: 1rem !important;
  letter-spacing: 0.05em;
  margin-top: 1.5rem !important;
}

/* ═══════════════════════════════════════════
   CONTENT CARDS SECTION
═══════════════════════════════════════════ */
.content-section {
  padding: 6rem 0;
  background: var(--black);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  margin-bottom: 4rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.card {
  background: var(--surface);
  padding: 2.25rem;
  transition: background 0.25s ease;
  position: relative;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.35s var(--ease-out-expo);
}

.card:hover {
  background: var(--surface-2);
}

.card:hover::after {
  height: 100%;
}

.card-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.card:hover .card-number {
  color: rgba(200,168,74,0.25);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

.highlight-box {
  background: var(--surface);
  border-left: 2px solid var(--gold);
  padding: 2rem 2.5rem;
  max-width: 700px;
  margin-inline: auto;
}

.highlight-verse {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-style: italic;
  color: var(--off-white);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.highlight-source {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

/* ═══════════════════════════════════════════
   AUDIENCE SECTION
═══════════════════════════════════════════ */
.audience-section {
  padding: 6rem 0;
  background: var(--deep);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  color: var(--off-white);
  background: var(--surface);
  transition: background 0.2s ease;
}

.audience-item:last-child {
  border-bottom: none;
}

.audience-item:hover {
  background: var(--surface-2);
}

.check-mark {
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.audience-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
  max-width: 520px;
  margin-inline: auto;
}

/* ═══════════════════════════════════════════
   INVESTMENT SECTION
═══════════════════════════════════════════ */
.investment-section {
  padding: 6rem 0;
  background: var(--surface);
}

.investment-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.inv-price {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2rem;
}

.inv-price sup {
  font-size: 0.35em;
  vertical-align: super;
  font-weight: 400;
  color: var(--muted);
}

.inv-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.inv-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.inv-list li:last-child {
  border-bottom: none;
}

.investment-book {
  display: flex;
  justify-content: center;
  align-items: center;
}

.investment-book img {
  max-width: 240px;
  width: 100%;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.7));
}

/* ═══════════════════════════════════════════
   GUARANTEE
═══════════════════════════════════════════ */
.guarantee-section {
  padding: 5rem 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.guarantee-inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 780px;
}

.guarantee-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.guarantee-icon svg {
  width: 100%;
  height: 100%;
}

.guarantee-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
}

.guarantee-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.guarantee-text p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   INSTAGRAM
═══════════════════════════════════════════ */
.instagram-section {
  padding: 6rem 0;
  background: var(--deep);
}

.instagram-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.insta-img-frame {
  position: relative;
  max-width: 320px;
}

.insta-img-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(200,168,74,0.12);
  border-radius: 2px;
  pointer-events: none;
}

.insta-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  filter: brightness(0.95);
}

.insta-text-col p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.insta-handle {
  font-family: var(--font-display);
  font-size: 1.4rem !important;
  font-style: italic;
  color: var(--gold) !important;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  padding: 3.5rem 0 2.5rem;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.footer-inner {
  text-align: center;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-role {
  font-size: 0.78rem;
  color: var(--subtle);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  color: var(--gold-dim);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-sep {
  color: var(--border);
}

.footer-rule {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 1.5rem;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--subtle);
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-visual {
    order: 1;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
  }

  .hero-img-wrap {
    max-width: 260px;
  }

  .hero-photo {
    height: 340px;
  }

  .hero-book-wrap {
    max-width: 110px;
  }

  .hero-desc,
  .price-note {
    max-width: 100%;
  }

  .hero-price-block,
  .hero-desc {
    text-align: left;
  }

  .author-inner {
    grid-template-columns: 1fr;
  }

  .author-img-frame {
    max-width: 280px;
    margin-inline: auto;
  }

  .author-img-frame img {
    height: 360px;
  }

  .investment-inner {
    grid-template-columns: 1fr;
  }

  .investment-book {
    order: -1;
  }

  .investment-book img {
    max-width: 180px;
  }

  .instagram-inner {
    grid-template-columns: 1fr;
  }

  .insta-img-frame {
    max-width: 260px;
    margin-inline: auto;
  }

  .insta-img-frame img {
    height: 340px;
  }

  .guarantee-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 560px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════ */
@media (max-width: 560px) {
  .hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-height: auto;
  }

  .hero-visual {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-img-wrap {
    max-width: 88%;
  }

  .hero-photo {
    height: 300px;
  }

  .hero-book-wrap {
    max-width: 120px;
  }

  .hero-price-block,
  .hero-desc {
    text-align: center;
  }

  .price-note {
    max-width: 100%;
  }

  .altar-section,
  .author-section,
  .content-section,
  .audience-section,
  .investment-section,
  .instagram-section {
    padding: 4rem 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .audience-list {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .investment-inner {
    text-align: center;
  }

  .inv-list li {
    justify-content: flex-start;
    text-align: left;
  }

  .author-img-frame img,
  .insta-img-frame img {
    height: 300px;
  }

  .author-rule {
    margin-inline: auto;
  }

  .author-text-col {
    text-align: center;
  }

  .insta-text-col {
    text-align: center;
  }
}

/* ═══════════════════════════════════════════
   REDUCE MOTION
═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll-hint span {
    animation: none;
  }

  .btn,
  .card,
  .card::after {
    transition: none;
  }
}
