/* ═══════════════════════════════════════════
   BASE & RESET
═══════════════════════════════════════════ */

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

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

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --border: rgba(201,169,110,0.25);
  --text-dim: rgba(237,232,224,0.35);
  --text-muted: rgba(237,232,224,0.6);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: #0E0B08;
  color: #EDE8E0;
  font-size: 17px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 300;
  line-height: 1.15;
  color: #EDE8E0;
  margin-bottom: 28px;
}
h1 em { font-style: italic; color: var(--gold); }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.25;
  color: #EDE8E0;
  margin-bottom: 32px;
}
h2 em { font-style: italic; color: var(--gold); }

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 20px;
}

p { margin-bottom: 18px; color: rgba(237,232,224,0.8); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.italic { font-style: italic; }
.text-center { text-align: center; }

.signature {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-top: 24px;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */

section { padding: 90px 24px; }
.slim { padding: 70px 24px; }

.container { max-width: 720px; margin: 0 auto; }
.container-wide { max-width: 1020px; margin: 0 auto; }
.prose { max-width: 680px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 40px;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(to bottom, rgba(14,11,8,0.97) 0%, rgba(14,11,8,0.85) 70%, transparent 100%);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; letter-spacing: 0.12em;
  color: var(--gold); text-decoration: none;
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(237,232,224,0.6); text-decoration: none;
  font-weight: 400; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #EDE8E0; }

.nav-cta {
  border: 1px solid rgba(201,169,110,0.4) !important;
  padding: 9px 20px !important;
  color: var(--gold) !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--gold) !important; color: #0E0B08 !important; }

.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px 2px;
}
.burger span {
  display: block; width: 24px; height: 1px;
  background: rgba(237,232,224,0.7); transition: 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(14,11,8,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300; letter-spacing: 0.06em;
  color: #EDE8E0; text-decoration: none; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */

header.hero, .hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  max-width: 100%;
  background: radial-gradient(ellipse at 50% 30%, rgba(201,169,110,0.08) 0%, transparent 70%);
}
header.hero::after, .hero::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.lead {
  font-size: 18px;
  color: rgba(237,232,224,0.65);
  max-width: 580px;
  margin-bottom: 48px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */

.btn {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none; cursor: pointer; border: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-lg { padding: 18px 52px; font-size: 13px; }

.btn-gold { background: var(--gold); color: #0E0B08; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #0E0B08; }

/* ═══════════════════════════════════════════
   DIVIDERS
═══════════════════════════════════════════ */

.divider-line {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.25;
}

/* ═══════════════════════════════════════════
   AD SLOTS
═══════════════════════════════════════════ */

.ad-slot { max-width: 728px; margin: 0 auto; display: block; }
.ad-slot:empty { display: none; }

/* ═══════════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   TRIED LIST
═══════════════════════════════════════════ */

.tried-grid { margin: 28px 0; }
.tried-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid rgba(201,169,110,0.1);
  color: rgba(237,232,224,0.6); font-size: 16px;
}
.tried-item .x {
  color: rgba(201,169,110,0.45); font-size: 13px;
  flex-shrink: 0; margin-top: 3px;
}
.tried-item s {
  text-decoration: line-through;
  text-decoration-color: rgba(201,169,110,0.35);
}

/* ═══════════════════════════════════════════
   PHOTO SECTION
═══════════════════════════════════════════ */

.photo-section { padding: 90px 24px; }
.photo-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 320px 1fr;
  gap: 64px; align-items: start;
}
.photo-frame {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.photo-placeholder {
  width: 100%; height: 100%; min-height: 380px;
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: rgba(201,169,110,0.5); font-size: 13px; text-align: center;
}

/* ═══════════════════════════════════════════
   RESULTS
═══════════════════════════════════════════ */

.results-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 40px 0;
}
.result-card {
  padding: 28px 24px;
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.15);
}
.result-name {
  display: block;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.result-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 300; color: #EDE8E0;
  margin-bottom: 12px; line-height: 1.3;
}
.result-quote {
  font-size: 14px; color: rgba(237,232,224,0.55);
  font-style: italic; line-height: 1.6; margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   FOR / NOT FOR
═══════════════════════════════════════════ */

.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin: 40px 0;
}
.col-card { padding: 36px 28px; }
.col-card.for {
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.2);
}
.col-card.not-for {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}
.col-card h3 { font-size: 20px; color: var(--gold); margin-bottom: 20px; }
.col-card ul { list-style: none; }
.col-card ul li {
  padding: 8px 0; font-size: 15px;
  color: rgba(237,232,224,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}
.col-card ul li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════
   PROGRAMME BOX
═══════════════════════════════════════════ */

.program-box {
  border: 1px solid rgba(201,169,110,0.35);
  padding: 48px 40px; margin: 40px 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.06) 0%, transparent 70%);
}
.program-box h3 {
  font-size: 32px; font-weight: 300; color: var(--gold); margin-bottom: 16px;
}
.program-box .sub {
  font-size: 15px; color: rgba(237,232,224,0.6); margin-bottom: 20px;
}
.includes { list-style: none; margin: 20px 0; }
.includes li {
  padding: 10px 0; font-size: 16px; color: rgba(237,232,224,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex; gap: 14px;
}
.includes li::before {
  content: '✦'; color: var(--gold); font-size: 11px;
  margin-top: 4px; flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   OBJECTIONS
═══════════════════════════════════════════ */

.objection { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.objection-q {
  font-size: 16px; color: rgba(237,232,224,0.5);
  margin-bottom: 10px; font-style: italic;
}
.objection-a {
  font-size: 16px; color: rgba(237,232,224,0.85);
  line-height: 1.65; margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */

.faq-item { border-bottom: 1px solid rgba(201,169,110,0.15); }
.faq-trigger {
  width: 100%; padding: 22px 0;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  text-align: left;
  color: #EDE8E0; font-size: 16px;
  font-family: 'Jost', sans-serif; font-weight: 400;
}
.faq-trigger span:first-child { flex: 1; line-height: 1.5; }
.faq-icon { color: var(--gold); font-size: 22px; flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-body {
  font-size: 15px; color: rgba(237,232,224,0.65); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-body { max-height: 400px; padding-bottom: 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */

footer {
  text-align: center; padding: 48px 24px 40px;
  border-top: 1px solid rgba(201,169,110,0.1);
}
.footer-logo {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 300; letter-spacing: 0.1em;
  color: rgba(201,169,110,0.55); text-decoration: none;
  margin-bottom: 20px;
}
.footer-links {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(237,232,224,0.3); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
footer p { font-size: 12px; color: rgba(237,232,224,0.3); margin-bottom: 8px; }
.footer-disc {
  font-size: 11px; color: rgba(237,232,224,0.2);
  max-width: 600px; margin: 16px auto 0; line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FORM STYLES (book.html)
═══════════════════════════════════════════ */

.form-wrap { max-width: 680px; margin: 0 auto; }

.form-row { margin-bottom: 28px; }
.form-row label {
  display: block;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(237,232,224,0.45); margin-bottom: 10px; font-weight: 400;
}

.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.2);
  color: #EDE8E0;
  font-family: 'Jost', sans-serif;
  font-size: 16px; font-weight: 300;
  padding: 14px 18px;
  outline: none;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus { border-color: rgba(201,169,110,0.55); }

input::placeholder,
textarea::placeholder { color: rgba(237,232,224,0.2); }

textarea { resize: vertical; min-height: 120px; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A96E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
select option { background: #1a1410; color: #EDE8E0; }

.radio-group { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.radio-label {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: rgba(237,232,224,0.7);
  cursor: pointer; padding: 12px 16px;
  border: 1px solid rgba(201,169,110,0.12);
  background: rgba(255,255,255,0.02);
  text-transform: none; letter-spacing: 0; font-weight: 300;
  transition: border-color 0.2s, background 0.2s;
}
.radio-label:hover {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.04);
}
.radio-label input[type="radio"] {
  width: 16px; height: 16px; min-width: 16px; padding: 0;
  accent-color: var(--gold); margin-top: 2px; cursor: pointer;
}

.char-count {
  font-size: 12px; color: rgba(237,232,224,0.25);
  text-align: right; margin-top: 6px; margin-bottom: 0;
}

.honeypot { display: none; }

.form-submit { text-align: center; margin-top: 44px; }
.form-note {
  font-size: 13px; color: rgba(237,232,224,0.3);
  margin-top: 16px; line-height: 1.6;
}

.success-msg { display: none; text-align: center; padding: 60px 24px; }
.success-msg .icon {
  display: block; font-size: 24px; color: var(--gold); margin-bottom: 24px;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 860px) {
  .photo-inner { grid-template-columns: 1fr; gap: 40px; }
  .photo-frame { max-width: 300px; }
}

@media (max-width: 768px) {
  nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .burger { display: flex; }

  .two-col { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .program-box { padding: 32px 24px; }
  .form-two { grid-template-columns: 1fr; }
  section { padding: 70px 20px; }
  .slim { padding: 56px 20px; }
}

@media (max-width: 480px) {
  header.hero, .hero { padding: 120px 20px 60px; }
  .program-box { padding: 28px 20px; }
}
