*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink: #22231A;
  --olive: #616044;
  --sage-deep: #6B7857;
  --stone-light: #EBE9E3;
  --white: #FFFFFF;
  --peach: #E89A6A;
  --peach-light: #F2B384;
  --warm-white: #FFFFFF;
  --ember: #E89A6A;
  --ember-light: #F2B384;
  --gold-pale: #879571;
  --cream: #D4D0CB;
  --muted: #7A7D6D;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body.marketing-landing { background: var(--ink); color: var(--warm-white); font-family: var(--sans); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
body.marketing-landing .site-header,
body.marketing-landing .mobile-menu,
body.marketing-landing .site-footer { display: none !important; }
img { max-width: 100%; display: block; }

/* LOGO BAR */
.mkt-logo-bar { padding: 1.25rem 3rem; text-align: center; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,0.06); }
.mkt-logo { display: inline-block; text-decoration: none; transition: opacity 0.25s; }
.mkt-logo:hover { opacity: 0.85; }
.mkt-logo img { max-height: 72px; width: auto; margin: 0 auto; }

/* HERO */
.hero { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; padding: 0; }
.hero-carousel { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; pointer-events: none; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; opacity: 0.72; }
.hero-slide-label { position: absolute; left: 2rem; bottom: 2rem; z-index: 1; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-pale); background: rgba(34,35,26,0.72); border: 1px solid rgba(255,255,255,0.1); padding: 0.5rem 0.9rem; border-radius: 2px; backdrop-filter: blur(4px); }
.hero-dots { position: absolute; right: 2rem; bottom: 2rem; z-index: 2; display: flex; gap: 0.55rem; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.45); background: transparent; padding: 0; cursor: pointer; transition: background 0.25s, border-color 0.25s, transform 0.25s; }
.hero-dot.is-active { background: var(--ember); border-color: var(--ember); transform: scale(1.15); }
.hero-dot:hover { border-color: var(--ember-light); }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(to bottom, rgba(34,35,26,0.45) 0%, rgba(34,35,26,0.12) 35%, rgba(34,35,26,0.82) 80%, rgba(34,35,26,0.97) 100%),
  radial-gradient(ellipse at 70% 30%, rgba(232,154,106,0.2), transparent 55%);
}
.hero-content { position: relative; z-index: 2; padding: 0 6rem 5rem; max-width: 1000px; margin: 0 auto; width: 100%; text-align: center; }
.eyebrow { font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ember-light); margin-bottom: 1.25rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.eyebrow::before, .eyebrow::after { content: ''; display: block; width: 2.5rem; height: 1px; background: var(--ember); }
.hero-headline { font-family: var(--serif); font-size: clamp(2.75rem, 5.5vw, 4.75rem); font-weight: 300; line-height: 1.08; color: var(--warm-white); margin-bottom: 1.25rem; }
.hero-headline em { font-style: italic; color: var(--gold-pale); }
.hero-sub { font-size: 1.05rem; color: var(--cream); font-weight: 300; max-width: 640px; line-height: 1.75; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.spectrum-strip { height: 3px; background: linear-gradient(to right, #7b2fff 0%, #4466ff 14%, #00aaff 28%, #00cc88 42%, #aadd00 56%, #ffcc00 70%, #ff6600 84%, #cc1111 100%); }

section { padding: 6rem; }
.section-label { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3.1rem); font-weight: 300; line-height: 1.2; color: var(--warm-white); margin-bottom: 1.25rem; }
.section-title em { font-style: italic; color: var(--gold-pale); }
.section-body { font-size: 0.975rem; color: var(--cream); font-weight: 300; max-width: 600px; line-height: 1.85; }

.btn-primary { display: inline-block; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; background: var(--ember); color: #fff; text-decoration: none; padding: 0.95rem 2.3rem; border-radius: 2px; transition: background 0.25s, transform 0.2s; border: none; cursor: pointer; font-family: inherit; }
.btn-primary:hover { background: var(--ember-light); transform: translateY(-1px); }
.btn-outline { display: inline-block; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-pale); background: transparent; text-decoration: none; padding: 0.95rem 2rem; border: 1px solid rgba(135,149,113,0.4); border-radius: 2px; transition: border-color 0.25s, color 0.25s, background 0.25s; }
.btn-outline:hover { border-color: var(--gold-pale); color: var(--warm-white); background: rgba(135,149,113,0.05); }

/* WHY ARROYO */
.why-arroyo { background: var(--stone-light); color: var(--ink); }
.why-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-arroyo .section-label { color: var(--olive); }
.why-arroyo .section-title { color: var(--ink); }
.why-arroyo .section-title em { color: var(--sage-deep); }
.why-arroyo .section-body { color: var(--olive); margin-bottom: 1.5rem; }
.why-list { list-style: none; margin-bottom: 2rem; }
.why-list li { font-size: 0.95rem; color: var(--olive); padding: 0.65rem 0 0.65rem 1.5rem; position: relative; line-height: 1.7; }
.why-list li::before { content: ''; position: absolute; left: 0; top: 1.1rem; width: 0.55rem; height: 1px; background: var(--peach); }
.why-media { border-radius: 2px; overflow: hidden; aspect-ratio: 4/5; }
.why-media img { width: 100%; height: 100%; object-fit: cover; }

/* HIGHLIGHTS */
.highlights { background: var(--ink); text-align: center; }
.highlights .section-body { margin: 0 auto; }
.highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 3.5rem auto 0; text-align: left; }
.highlight-card { background: #2a2b22; border: 1px solid rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; transition: transform 0.3s, border-color 0.3s; }
.highlight-card:hover { transform: translateY(-4px); border-color: rgba(232,154,106,0.35); }
.highlight-img { aspect-ratio: 16/10; overflow: hidden; }
.highlight-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.highlight-card:hover .highlight-img img { transform: scale(1.04); }
.highlight-body { padding: 1.5rem 1.75rem 1.75rem; }
.highlight-body h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--warm-white); margin-bottom: 0.5rem; }
.highlight-body p { font-size: 0.88rem; color: var(--cream); font-weight: 300; line-height: 1.75; }

/* REVIEWS */
.reviews { background: #1d1e16; }
.reviews-head { text-align: center; max-width: 760px; margin: 0 auto 4rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; max-width: 1200px; margin: 0 auto; }
.review-card { background: #2a2b22; border: 1px solid rgba(255,255,255,0.06); border-radius: 2px; padding: 2.5rem 2.25rem; transition: border-color 0.3s, transform 0.3s; }
.review-card:hover { border-color: rgba(232,154,106,0.3); transform: translateY(-3px); }
.review-card .stars { color: var(--peach); margin-bottom: 1.25rem; letter-spacing: 0.15em; font-size: 0.95rem; }
.review-card blockquote { font-family: var(--serif); font-size: 1.1rem; font-style: italic; line-height: 1.55; color: var(--warm-white); margin-bottom: 1.5rem; }
.review-author { font-family: var(--serif); font-size: 1rem; color: var(--peach); font-style: italic; }

/* BOOK CTA */
.book-cta { background: linear-gradient(135deg, #2e3023 0%, #22231A 60%); text-align: center; padding: 7rem 6rem; border-top: 1px solid rgba(232,154,106,0.15); position: relative; overflow: hidden; }
.book-cta::before { content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 60%; height: 100%; background: radial-gradient(ellipse, rgba(232,154,106,0.12), transparent 70%); pointer-events: none; }
.book-cta .section-body { margin: 0 auto 2rem; position: relative; z-index: 1; }
.book-cta .section-label,
.book-cta .section-title { position: relative; z-index: 1; }
.book-actions { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; position: relative; z-index: 1; }
.book-note { margin-top: 2rem; font-size: 0.78rem; letter-spacing: 0.12em; color: var(--muted); position: relative; z-index: 1; }

@media (max-width: 1100px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; }
  .why-media { aspect-ratio: 16/10; }
}
@media (max-width: 900px) {
  section, .why-arroyo { padding: 4rem 2rem; }
  .mkt-logo-bar { padding: 1rem 1.5rem; }
  .hero-content { padding: 0 2rem 4rem; }
  .hero-slide-label { left: 1.25rem; bottom: 1.25rem; font-size: 0.62rem; }
  .hero-dots { right: 1.25rem; bottom: 1.25rem; }
  .highlights-grid,
  .reviews-grid { grid-template-columns: 1fr; }
  .book-cta { padding: 4rem 2rem; }
  .mkt-logo img { max-height: 56px; }
}
