/* ========================================
   1611 PRESS - MASTER STYLESHEET
   Compiled from all site pages
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
  --ink: #1a1a18;
  --parchment: #ffffff;
  --cream: #ffffff;
  --gold: #b8860b;
  --gold-light: #d4a843;
  --burgundy: #722f37;
  --burgundy-deep: #4a1c23;
  --sage: #5c6b5e;
  --text: #3d3d3a;
  --text-light: #6b6b66;
  --border: rgba(26, 26, 24, 0.1);
  --bg-light: #f9f9f9;
  --success: #4a7c59;
}

/* ========== RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant', serif;
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

/* ========== UTILITY ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes drawLine {
  from { width: 0; }
  to { width: 60px; }
}

.animate {
  animation: fadeUp 0.8s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 252, 247, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

/* Sticky header variant (for inner pages) */
.header.sticky {
  position: sticky;
  padding: 20px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-decoration: none;
}

.logo-year {
  font-family: 'Cormorant', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--burgundy);
  letter-spacing: -1px;
}

.logo-text {
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Smaller logo for inner pages */
.header.sticky .logo-year {
  font-size: 28px;
}

.header.sticky .logo-text {
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a:hover,
.nav a.active {
  color: var(--burgundy);
}

.nav-cta {
  background: var(--burgundy);
  color: var(--cream) !important;
  padding: 12px 24px !important;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--burgundy-deep);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .nav { display: none; }
  .mobile-toggle { display: flex; }
}

@media (max-width: 768px) {
  .nav { display: none; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(114, 47, 55, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-light {
  background: var(--cream);
  color: var(--burgundy);
}

.btn-light:hover {
  background: var(--gold);
  color: var(--ink);
}

.btn-amazon {
  background: #ff9900;
  color: #111;
}

.btn-amazon:hover {
  background: #e68a00;
}

/* ========== HERO (Landing Page) ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--parchment) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8860b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--burgundy);
  color: var(--cream);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-title em {
  font-style: italic;
  color: var(--burgundy);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-book {
  width: 300px;
  height: 450px;
  position: relative;
  transform: perspective(1000px) rotateY(-5deg);
  animation: fadeIn 1s ease-out 0.5s forwards;
  opacity: 0;
}

.hero-book::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 20px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  filter: blur(20px);
  z-index: -1;
}

.book-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-stats {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
  background: var(--cream);
  padding: 24px 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: 'Cormorant', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--burgundy);
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
}

@media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-ctas { justify-content: center; }
  .hero-visual { margin-top: 60px; }
  .hero-stats { position: relative; bottom: auto; margin-top: 60px; }
}

@media (max-width: 600px) {
  .hero-book { width: 220px; height: 330px; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 20px 30px; }
}

/* ========== PAGE HERO (Inner Pages) ========== */
.page-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--cream) 100%);
  text-align: center;
}

.page-hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.page-hero-title {
  font-size: 56px;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.page-hero-subtitle {
  font-size: 20px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-hero-title { font-size: 40px; }
}

/* ========== SECTION STYLES ========== */
section {
  padding: 120px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--burgundy);
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* ========== ABOUT / WHY SECTION ========== */
.about {
  background: var(--parchment);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-content {
  max-width: 520px;
}

.about-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 32px;
}

.about-text:first-of-type::first-letter {
  font-family: 'Cormorant', serif;
  font-size: 72px;
  float: left;
  line-height: 0.8;
  padding-right: 12px;
  color: var(--burgundy);
}

.about-quote {
  font-family: 'Cormorant', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--burgundy);
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  margin: 40px 0;
}

.about-visual {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: 'Cormorant', serif;
  font-size: 120px;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(212, 168, 67, 0.3);
}

.float-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--cream);
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  max-width: 280px;
}

.float-card-number {
  font-family: 'Cormorant', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1;
}

.float-card-text {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .float-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }
}

/* ========== PACKAGES ========== */
.packages {
  background: var(--cream);
}

.packages-header {
  text-align: center;
  margin-bottom: 80px;
}

.packages-header .section-subtitle {
  margin: 0 auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.package-card {
  background: var(--parchment);
  padding: 48px 36px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.package-card.featured {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}

.package-card.featured .package-name,
.package-card.featured .package-price,
.package-card.featured .package-desc,
.package-card.featured .package-feature {
  color: var(--cream);
}

.package-card.featured .package-price span {
  color: rgba(255,255,255,0.6);
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 36px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
}

.package-name {
  font-family: 'Cormorant', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.package-desc {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.6;
}

.package-price {
  font-family: 'Cormorant', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.package-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-light);
}

.package-note {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.package-features {
  list-style: none;
  margin-bottom: 32px;
}

.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.package-card.featured .package-feature {
  border-color: rgba(255,255,255,0.15);
}

.package-feature svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.package-feature svg path {
  fill: var(--sage);
}

.package-card.featured .package-feature svg path {
  fill: var(--gold-light);
}

.package-btn {
  width: 100%;
  justify-content: center;
  background: var(--ink);
  color: var(--cream);
}

.package-card.featured .package-btn {
  background: var(--cream);
  color: var(--burgundy);
}

.package-btn:hover {
  transform: none;
  opacity: 0.9;
}

@media (max-width: 1000px) {
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
}

/* ========== PROCESS ========== */
.process {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '1611';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant', serif;
  font-size: 400px;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
}

.process .section-label {
  color: var(--gold);
}

.process .section-label::before {
  background: var(--gold);
}

.process .section-title {
  color: var(--cream);
}

.process .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.process-header {
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--cream);
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: 'Cormorant', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}

.step-text {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

@media (max-width: 800px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .process-steps::before { display: none; }
}

/* ========== TESTIMONIAL ========== */
.testimonial {
  background: var(--parchment);
  text-align: center;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-quote {
  font-family: 'Cormorant', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 40px;
}

.testimonial-quote::before {
  content: '"';
  display: block;
  font-size: 120px;
  line-height: 0.5;
  color: var(--burgundy);
  opacity: 0.3;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--ink);
}

.testimonial-role {
  font-size: 14px;
  color: var(--text-light);
}

/* ========== CONTROL / DASHBOARD ========== */
.control {
  background: linear-gradient(135deg, #faf9f7 0%, #f5f3f0 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.control-content {
  max-width: 800px;
  margin: 0 auto;
}

.control-text {
  font-size: 18px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 48px;
}

.control-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.control-feature {
  display: flex;
  gap: 20px;
}

.control-icon {
  width: 48px;
  height: 48px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.control-icon svg {
  width: 24px;
  height: 24px;
  color: var(--cream);
}

.control-feature-text h4 {
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.control-feature-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .control-features {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ========== ROYALTIES ========== */
.royalties {
  background: var(--ink);
  color: var(--cream);
}

.royalties-header {
  text-align: center;
  margin-bottom: 60px;
}

.royalties .section-label {
  color: var(--gold);
}

.royalties .section-label::before {
  background: var(--gold);
}

.royalties .section-title {
  color: var(--cream);
}

.royalties .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

.royalties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.royalty-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.royalty-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.royalty-type {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.royalty-price {
  font-family: 'Cormorant', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.royalty-price span {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.royalty-earn {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

.royalty-earn strong {
  color: var(--gold-light);
  font-weight: 600;
}

.royalties-note {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.royalties-note p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

@media (max-width: 800px) {
  .royalties-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto 40px;
  }
}

/* ========== CTA SECTION ========== */
.cta,
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta .section-title,
.cta-title {
  font-size: 42px;
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn-primary {
  background: var(--cream);
  color: var(--burgundy);
}

.cta .btn-primary:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-brand em {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gold);
}

.footer-title {
  font-family: 'Cormorant', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

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

.footer .logo-year {
  color: var(--gold);
}

.footer .logo-text {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Simple footer (inner pages) */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* ========== BREADCRUMB ========== */
.breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 13px;
}

.breadcrumb-list a {
  color: var(--text-light);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  color: var(--burgundy);
}

.breadcrumb-list span {
  color: var(--text-light);
}

.breadcrumb-list li:last-child {
  color: var(--ink);
  font-weight: 500;
}

/* ========== FILTER TABS ========== */
.filters {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}

.filters-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-tab:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.filter-tab.active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--cream);
}

.filter-count {
  font-size: 14px;
  color: var(--text-light);
}

/* ========== LIBRARY GRID ========== */
.library-section {
  padding-bottom: 100px;
}

.library-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
}

.book-card {
  width: 25%;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  display: block;
}

.book-card-inner {
  transition: transform 0.4s ease;
}

.book-cover {
  width: 100%;
  aspect-ratio: 6/9;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  position: relative;
}

.book-card:hover .book-cover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--gold-light);
}

.book-cover-placeholder .title,
.book-cover-placeholder .placeholder-title {
  font-family: 'Cormorant', serif;
  font-size: 18px;
  text-align: center;
  line-height: 1.3;
}

.book-cover-placeholder .placeholder-author {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 16px;
}

.book-info {
  text-align: center;
}

.book-title {
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  transition: color 0.3s;
}

.book-card:hover .book-title {
  color: var(--burgundy);
}

.book-author {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.book-excerpt {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.book-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--burgundy);
  background: rgba(114, 47, 55, 0.1);
  padding: 4px 10px;
  border-radius: 2px;
  margin-top: 12px;
}

@media (max-width: 1000px) {
  .book-card { width: 33.333%; }
}

@media (max-width: 768px) {
  .book-card { width: 50%; }
  .book-title { font-size: 18px; }
  .book-excerpt { display: none; }
}

@media (max-width: 480px) {
  .book-card { width: 100%; }
  .library-grid { justify-content: center; }
}

.load-more {
  text-align: center;
  padding-top: 60px;
}

/* ========== BOOK DETAIL PAGE ========== */
.book-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--cream) 100%);
}

.book-hero-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 80px;
  align-items: start;
}

.book-cover-wrap {
  position: sticky;
  top: 120px;
}

.book-details {
  padding-top: 20px;
}

.book-subtitle {
  font-family: 'Cormorant', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 24px;
}

.book-description {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 40px;
}

.book-meta {
  display: flex;
  gap: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.meta-item {
  text-align: center;
}

.meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.meta-value {
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
}

.buy-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.buy-row {
  display: flex;
  gap: 16px;
}

.price-tag {
  font-family: 'Cormorant', serif;
  font-size: 18px;
  font-weight: 600;
}

.amazon-note {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
}

.share-section {
  display: flex;
  align-items: center;
  gap: 16px;
}

.share-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
}

.share-links {
  display: flex;
  gap: 12px;
}

.share-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-link:hover {
  background: var(--burgundy);
  color: var(--cream);
}

.share-link svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1000px) {
  .book-hero-grid {
    grid-template-columns: 280px 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .book-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .book-cover-wrap {
    position: relative;
    top: auto;
    max-width: 280px;
    margin: 0 auto;
  }
  .book-meta {
    flex-wrap: wrap;
    gap: 24px;
  }
  .buy-row {
    flex-direction: column;
  }
}

/* ========== AUTHOR SECTION ========== */
.author-section {
  padding: 80px 0;
  background: var(--cream);
}

.author-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px;
  background: var(--bg-light);
  border-radius: 8px;
}

.author-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--burgundy);
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: 'Cormorant', serif;
  font-size: 64px;
}

.author-info h2 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 8px;
  font-family: 'Libre Franklin', sans-serif;
}

.author-name {
  font-size: 32px;
  margin-bottom: 8px;
}

.author-title {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.author-bio {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.author-links {
  display: flex;
  gap: 16px;
}

.author-link {
  font-size: 14px;
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 500;
}

.author-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .author-photo {
    max-width: 150px;
    margin: 0 auto;
  }
  .author-links {
    justify-content: center;
  }
}

/* ========== BOOK DETAILS SECTION ========== */
.details-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.book-excerpt-wrap .section-title {
  font-size: 28px;
  margin-bottom: 24px;
}

.book-excerpt-content {
  font-size: 17px;
  line-height: 2;
  color: var(--text);
}

.book-excerpt-content p {
  margin-bottom: 24px;
}

.book-excerpt-content p:first-of-type::first-letter {
  font-family: 'Cormorant', serif;
  font-size: 64px;
  float: left;
  line-height: 0.8;
  padding-right: 12px;
  color: var(--burgundy);
}

.book-specs {
  background: var(--cream);
  padding: 32px;
  border-radius: 8px;
}

.specs-title {
  font-size: 18px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.specs-list {
  list-style: none;
}

.specs-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

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

.specs-list .label {
  color: var(--text-light);
}

.specs-list .value {
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== RELATED BOOKS ========== */
.related-section {
  padding: 80px 0;
  background: var(--cream);
}

.related-header {
  text-align: center;
  margin-bottom: 48px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.related-book {
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.related-cover {
  width: 100%;
  aspect-ratio: 6/9;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.related-cover:hover {
  transform: translateY(-4px);
}

.related-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-title {
  font-family: 'Cormorant', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.related-author {
  font-size: 13px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== FAQ ========== */
.faq-section {
  padding: 80px 0 120px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}

.faq-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.faq-categories {
  list-style: none;
}

.faq-categories li {
  margin-bottom: 8px;
}

.faq-categories a {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.faq-categories a:hover {
  background: var(--bg-light);
  color: var(--burgundy);
}

.faq-categories a.active {
  background: var(--burgundy);
  color: var(--cream);
}

.faq-sidebar-cta {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 8px;
}

.faq-sidebar-cta h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.faq-sidebar-cta p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.faq-sidebar-cta a {
  font-size: 13px;
  font-weight: 600;
  color: var(--burgundy);
  text-decoration: none;
}

.faq-content {
  max-width: 720px;
}

.faq-category {
  margin-bottom: 60px;
}

.faq-category-title {
  font-size: 28px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--burgundy);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-family: 'Cormorant', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--burgundy);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--burgundy);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.faq-answer ul {
  margin: 16px 0;
  padding-left: 24px;
}

.faq-answer li {
  font-size: 15px;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    position: relative;
    top: auto;
  }
  .faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .faq-categories li {
    margin-bottom: 0;
  }
}

/* ========== FORMS ========== */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Libre Franklin', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b66' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========== CONTACT PAGE ========== */
.contact-section {
  padding: 80px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.form-section h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.form-section > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.info-section {
  padding: 40px;
  background: var(--bg-light);
  border-radius: 8px;
}

.info-section h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.info-block {
  margin-bottom: 32px;
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-block h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--burgundy);
}

.info-block p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
}

.info-block a {
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 500;
}

.info-block a:hover {
  text-decoration: underline;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.quick-fact {
  text-align: center;
  padding: 20px;
  background: var(--cream);
  border-radius: 4px;
}

.quick-fact-value {
  font-family: 'Cormorant', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 4px;
}

.quick-fact-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ========== PACKAGE DETAIL PAGE ========== */
.package-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.package-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.package-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.package-hero h1 {
  font-size: 56px;
  color: var(--cream);
  margin-bottom: 16px;
}

.package-hero-subtitle {
  font-size: 22px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-family: 'Cormorant', serif;
  font-style: italic;
}

.package-hero-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
}

.price-main {
  font-family: 'Cormorant', serif;
  font-size: 64px;
  font-weight: 600;
  color: var(--cream);
}

.price-note {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
  .package-hero h1 { font-size: 40px; }
  .price-main { font-size: 48px; }
}

/* ========== OVERVIEW SECTION ========== */
.overview {
  padding: 100px 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.overview h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.overview p {
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-box {
  text-align: center;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 4px;
}

@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ========== INCLUDED SECTION ========== */
.included {
  padding: 100px 0;
  background: var(--bg-light);
}

.included-header {
  text-align: center;
  margin-bottom: 60px;
}

.included-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.included-header p {
  font-size: 18px;
  color: var(--text-light);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.included-item {
  background: var(--cream);
  padding: 32px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.included-icon {
  width: 48px;
  height: 48px;
  background: rgba(114, 47, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  margin-bottom: 20px;
}

.included-icon svg {
  width: 24px;
  height: 24px;
}

.included-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.included-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .included-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== MATERIALS SECTION ========== */
.materials {
  padding: 100px 0;
}

.materials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.materials h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.materials-list {
  list-style: none;
}

.materials-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

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

.check-icon {
  width: 24px;
  height: 24px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg {
  width: 12px;
  height: 12px;
}

.materials-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.materials-list span {
  font-size: 14px;
  color: var(--text-light);
}

.materials-note {
  background: var(--bg-light);
  padding: 32px;
  border-radius: 8px;
  margin-top: 32px;
}

.materials-note h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--burgundy);
}

.materials-note p {
  font-size: 14px;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== PRICING CARDS ========== */
.pricing {
  padding: 100px 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  padding: 48px;
  border: 2px solid var(--border);
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--burgundy);
}

.pricing-card.featured {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.pricing-card.featured h3 {
  color: var(--cream);
}

.pricing-card .price {
  font-family: 'Cormorant', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--burgundy);
  margin: 16px 0;
}

.pricing-card.featured .price {
  color: var(--cream);
}

.pricing-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-card.featured p {
  color: rgba(255,255,255,0.7);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

.pricing-card.featured .btn {
  background: var(--cream);
  color: var(--burgundy);
}

@media (max-width: 600px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

/* ========== OTHER PACKAGES ========== */
.other-packages {
  padding: 80px 0;
  background: var(--bg-light);
}

.other-header {
  text-align: center;
  margin-bottom: 48px;
}

.other-header h2 {
  font-size: 32px;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.other-card {
  background: var(--cream);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.other-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.other-card .price {
  font-family: 'Cormorant', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.other-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.other-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--burgundy);
  text-decoration: none;
}

@media (max-width: 600px) {
  .other-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== PACKAGES PREVIEW ========== */
.packages-preview {
  padding: 80px 0;
  background: var(--ink);
  color: var(--cream);
}

.packages-preview-header {
  text-align: center;
  margin-bottom: 48px;
}

.packages-preview-header h2 {
  font-size: 36px;
  color: var(--cream);
  margin-bottom: 12px;
}

.packages-preview-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}

.packages-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-preview-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.package-preview-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.package-preview-card h3 {
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 8px;
}

.package-preview-card .price {
  font-family: 'Cormorant', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.package-preview-card .price span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.package-preview-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.package-preview-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.package-preview-card a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .packages-preview-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}
