*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #1A1209;
  --parchment:  #F5EDD8;
  --aged:       #EDE0C0;
  --gold:       #C9952A;
  --gold-light: #E8BB56;
  --gold-dim:   rgba(201,149,42,0.15);
  --burgundy:   #6B1E2E;
  --navy:       #1C2B4A;
  --cream:      #FAF5E8;
  --muted:      #7A6A50;
  --border:     rgba(201,149,42,0.22);
  --white:      #FEFCF5;
}

html { scroll-behavior: smooth; }


body {
  font-family: 'Crimson Pro', serif;
  background: var(--ink);
  color: var(--parchment);
  
  overflow-x: hidden;
}

/* ── Texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  /*z-index: 9998;*/
  /*opacity: 0.8;*/
}

/* ── Ambient light ── */
body::after {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,149,42,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}



/* Navbar main container */
  .nav-container-flex {
    position: sticky;
    top: 0;
     border-bottom: 1px solid #e8d9c8;
     /*background: #fdf8f3;*/
     background-color: black;
    z-index: 999;
    box-shadow: 0 2px 16px rgba(59,42,26,.07);
    transition: box-shadow .3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 5%;
  }

  .larkita{
   font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color:tan;
  text-decoration: none;
  }

  
.nav-order {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid tan;
  color: var(--parchment);
  padding: 0.5rem 1.3rem;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-order:hover { background: var(--gold); color: var(--ink); }


  nav.scrolled { box-shadow: 0 4px 28px rgba(59,42,26,.13); }

  /* Navigation links */
  
 
  .btn-book-now{
   margin-left: 100px;
    width: 150px;
    height: 40px;
    
  }


  .nav-links a {
    color: var(--parchment);
    
    text-decoration: none;
    font-size: 0.8rem;
    padding: 10px;
    /*font-family: "raleway", sans-serif;*/
    font-weight: 400;
     text-transform: uppercase;
     
     position: relative;
      transition: color .3s;
      letter-spacing: 2px; 
      font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
 
  }

  
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px; background: #c49a6c; transition: width .3s;
  }

  
  .nav-links a:hover, .nav-links a.active { color: tan; }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

  
  /* Hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
  }

  
  .hamburger span {
    display: block; height: 2px; 
    background: #3b2a1a;
    border-radius: 2px; transition: all .35s;
  }

  
  .hamburger span:nth-child(1) { width: 24px; }
  .hamburger span:nth-child(2) { width: 18px; }
  .hamburger span:nth-child(3) { width: 24px; }

  
  /* Animate to X */
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
   

  
  /* ── OVERLAY ── */
  .overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.45); z-index: 1000;
    opacity: 0; transition: opacity .3s;
  }

  
  .overlay.show { display: block; }
  .overlay.visible { opacity: 1; }

   /* ── MOBILE DRAWER ── */
  .drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 70%; 
   /* background: #fdf8f3;*/
   background-color: #333;
     z-index: 1001;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(59,42,26,.18);
    display: flex; flex-direction: column;
  }

  .drawer.open { transform: translateX(0); }


  
  /* Drawer header */
  .drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px; border-bottom: 1px solid #e8d9c8;
   /* background-color: ;*/
  }

  
  .close-btn {
    width: 38px; height: 38px; border-radius: 50%;
    background: #f5ede0; border: 1px solid #e8d9c8;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: #3b2a1a;
    transition: background .2s, transform .3s;
  }

  .close-btn:hover { background: #e8d0b8; transform: rotate(90deg); }

  /* Drawer links */
  .drawer-links { list-style: none; padding: 14px 0; flex: 1; overflow-y: auto; }
  .drawer-links li a {
    display: flex; align-items: center; gap: 13px;
    padding: 14px 26px; text-decoration: none;
    font-size: .8rem; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; color: white;
    border-left: 3px solid transparent;
    transition: color .2s, background .2s, border-color .2s;
    font-family: "raleway", sans-serif;
  }

  
  .drawer-links li a .d-icon { font-size: 1.05rem; }
  .drawer-links li a:hover { background: #f5ede0; color: #c49a6c; }
  .drawer-links li a.active {
    color: #c49a6c; border-left-color: #c49a6c;
    font-weight: 700; background: #fdf0e2;
  }

  
  /* Drawer footer */
  .drawer-footer { padding: 20px 22px; border-top: 1px solid #e8d9c8; }
  .drawer-footer .btn-book { width: 100%; padding: 13px; font-size: .72rem; margin-bottom: 14px; }
  .drawer-socials { display: flex; justify-content: center; gap: 12px; margin-bottom: 12px; }
  .drawer-socials a {
    width: 50px; height: 50px; border-radius: 50%;
    
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; text-decoration: none; color: white;
    transition: border-color .2s, transform .2s;
  }

  
  .drawer-socials a:hover { border-color: #c49a6c; transform: translateY(-5px); }
  .drawer-tagline { text-align: center; font-size: .6rem; color: white; letter-spacing: 1px; }

   /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-right { display: none; }
    .hamburger { display: flex; }

  }



/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

/* Decorative rings */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(201,149,42,0.08);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201,149,42,0.06);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; max-width: 780px; }

.hero-ornament {
  font-family: 'IM Fell English', serif;
  font-size: 1.8rem;
  /*color: var(--gold);*/
  color: tan;
  opacity: 0.6;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3em;
  animation: fadeDown 1s ease both;
}

.hero-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  /*color: var(--gold);*/
  color:tan;
  margin-bottom: 1.8rem;
  animation: fadeDown 1s 0.1s ease both;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--parchment);
  margin-bottom: 0.5rem;
  animation: fadeDown 1s 0.2s ease both;
  letter-spacing: 0.06em;
}

.hero-title-sub {
  font-family: 'IM Fell English', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-style: italic;
  /*color: var(--gold-light);*/
  color: white;
  margin-bottom: 2rem;
  animation: fadeDown 1s 0.3s ease both;
  line-height: 1.3;
}

.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  animation: fadeDown 1s 0.4s ease both;
}

.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  /*background: linear-gradient(to right, transparent, var(--gold));*/
  background: linear-gradient(to right, transparent, var(--parchment));
}

.divider-ornament::after {
  /*background: linear-gradient(to left, transparent, var(--gold));*/
  background: linear-gradient(to left, transparent, var(--parchment));
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background: tan;
  transform: rotate(45deg);
}

.hero-sub {
  font-family: 'Crimson Pro', serif;
  font-size: 1.1rem;
  color:var(--parchment);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto 3rem;
  font-style: italic;
  animation: fadeDown 1s 0.5s ease both;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeDown 1s 0.7s ease both;
  cursor: pointer;
  text-decoration: none;
}

.hero-scroll span {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: tan;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--parchment), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaley(1.1); }
   50% {transform: skewy(7deg)};
}

/* ── Section header ── */
.section-header {
  text-align: center;
  padding: 6rem 2rem 3.5rem;
  position: relative;
  z-index: 1;
}

.section-header .eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.section-header h2 em {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment);
  font-size: 1.15em;
  font-weight: 400;
}

.section-header p {
  font-family: 'Crimson Pro', serif;
  font-size: 1.05rem;
  color:white;
  font-style: italic;
  max-width: 480px;
  margin: 1rem auto 0;
  line-height: 1.8;
}

.books-section-flex-cont{
    display: flex;
  
    margin: auto;
      gap: 0;
    /*border: 1px solid tan;*/
    justify-content: center;
}

.intimacy-with-god-cont,.saved-by-grace-cont{
    padding: 30px;
    
    width: 700px;
    display: grid;
    place-items: center;
    justify-content: center;
    
    position: relative;
     background-color: white;;
     color: black;
}

.intimacy-with-god-cont::before,
.intimacy-with-god-cont::after{
    position: absolute;
    content: "";
    width: 33px;
    height: 33px;
  
}

.intimacy-with-god-cont::before{
    left: 0;
    top: 0;
    border-left: 5px solid tan;
    border-top: 5px solid tan;
}

.saved-by-grace-cont::before,
.saved-by-grace-cont::after{
   position: absolute;
    content: "";
    width: 33px;
    height: 33px;
}

.saved-by-grace-cont::before{
    right: 0;
    bottom: 0;
     border-right: 5px solid tan;
    border-bottom: 5px solid tan;
}




.intimacy-with-god-img{
    display: grid;
    justify-content: center;
    place-items: center;
    text-align: center;
   
}
   

.intimacy-img{
    transform: skewy(7deg);
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
     gap: 10px;
    animation: scrollPulse 2s ease-in-out infinite;
}


.book-1-number-cont{
    font-family: 'Cinzel', serif;
    font-size: 0.55rem;
     text-transform: uppercase;
     letter-spacing: 0.4em;
     color: black;
}

.book-label-name-txt-cont{
   font-family: 'IM Fell English', serif;
   font-size: 1.1rem;
   font-style: italic;
   color:black;
    
}

.book-info,.book-info2{
    padding: 30px;
    width: 700px;
    display: flex;
   flex-direction: column;
    justify-content: center;
    position: relative;
     background-color: #F5EDD8;;
     color: black;
    
}


.book-info::before,
.book-info::after{
    position: absolute;
    width: 33px;
    height: 33px;
    content: "";
}

.book-info::before{
    top: 0;
    left: 0;
    border-top: 5px solid tan;
    border-left: 5px solid tan;

}


.book-info2::before,
.book-info2::after{
    position: absolute;
    width: 33px;
    height: 33px;
    content: "";

}

.book-info2::before{
    bottom: 0;
    right: 0;
    border-bottom: 5px solid tan;
    border-right: 5px solid tan;
}



.book-number {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: black;
  opacity: 0.7;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}



.book-number::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background-color: black;
  opacity: 0.5;
  color: black;
}

.book-title-main{
   font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.06em;
     line-height: 1.15;
     margin-bottom: 0.3rem;
     
}


.book-subtitle {
  font-family: 'IM Fell English', serif;
  font-size: 1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 1.8rem;
  letter-spacing: 0.04em;
}


.book-genre-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}



.genre-tag {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #333;
  border: 1px solid rgba(201,149,42,0.3);
  padding: 0.3rem 0.8rem;
  border-radius: 1px;
  background:tan;
}

.p-book-overview{
    font-family: 'Crimson Pro', serif;
  font-size: 1.05rem;
  color: black;
  line-height: 1.95;
  margin-bottom: 2.2rem;
  font-weight: 300;
   background: tan;
  border-left:3px solid #6B1E2E;
  padding: 1.5em;
}

.fa-quote-left{
    font-size: 1.5em;
}


/* Stats row */
.book-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #6B1E2E;
}


.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}



.stat-val {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: tan;
  line-height: 1;
}


.stat-val span { color: var(--gold); }


.stat-label {
  font-family: 'Cinzel', serif;
  font-size: 0.48rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: black;
}


/* CTA buttons */
.book-ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}


.btn-primary-gold {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: tan;
  color: var(--ink);
  padding: 0.85rem 2rem;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s;
  font-weight: 700;
}


.btn-primary-gold:hover {
  background: var(--parchment);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,42,0.3);
}


.btn-ghost-gold {
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  padding: 0.85rem 1.6rem;
  border: 1px solid rgba(201,149,42,0.4);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.3s;
}


.btn-ghost-gold:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
  transform: translateY(-2px);
}



/* ── Newsletter / order section ── */
.order-section {
  position: relative;
  z-index: 1;
  padding: 8rem 4rem;
  text-align: center;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,149,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.order-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.order-ornament {
  font-family: 'IM Fell English', serif;
  font-size: 2rem;
  color: black;
  opacity: 0.4;
  display: block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3em;
}

.order-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.order-heading em {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: tan;
  font-size: 1.1em;
  font-weight: 400;
}

.order-sub {
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  color: white;
  font-style: italic;
  line-height: 1.8;
  margin: 1.5rem 0 3rem;
}

.email-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 1rem;
  border: 1px solid rgba(201,149,42,0.3);
}

.email-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: rgba(245,237,216,0.04);
  border: none;
  outline: none;
  font-family: 'Crimson Pro', serif;
  font-size: 0.9rem;
  color: white;
  font-style: italic;
}

.email-form input::placeholder { color: white;}
/* ── Newsletter / order section ── */
.order-section {
  position: relative;
  z-index: 1;
  padding: 8rem 4rem;
  text-align: center;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,149,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.order-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.order-ornament {
  font-family: 'IM Fell English', serif;
  font-size: 2rem;
  color: white;
  opacity: 0.4;
  display: block;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3em;
}

.order-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--parchment);
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.order-heading em {
  font-family: 'IM Fell English', serif;
  font-style: italic;
  color: var(--parchment);
  font-size: 1.1em;
  font-weight: 400;
}

.order-sub {
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  color:var(--parchment);
  font-style: italic;
  line-height: 1.8;
  margin: 1.5rem 0 3rem;
}

.email-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto 1rem;
  border: 1px solid rgba(201,149,42,0.3);
}

.email-form input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  background: rgba(245,237,216,0.04);
  border: none;
  outline: none;
  font-family: 'Crimson Pro', serif;
  font-size: 0.9rem;
  color:white;
  font-style: italic;
}

.email-form input::placeholder { color: white; }

.email-form button {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: white;
  color: black;
  border: none;
  padding: 0 1.5rem;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.25s;
  white-space: nowrap;
}

.email-form button:hover { background: var(--gold-light); }

 .order-note {
  font-family: 'Crimson Pro', serif;
  font-size: 0.8rem;
  color:var(--parchment);
  font-style: italic;
 }







/* ── Responsive ── */
@media (max-width: 1000px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .books-section { padding: 0 1.5rem 5rem; }
  .book-card { grid-template-columns: 1fr; }
  .book-card.reverse { direction: ltr; }
  .book-visual { min-height: 380px; }
  .book-info { padding: 2.5rem 1.8rem; }
  .book-info::before { display: none; }
  .journal-section { padding: 4rem 1.5rem; }
  .journal-grid { grid-template-columns: 1fr; gap: 2rem; }
  .journal-viewer { position: static; }
  .order-section { padding: 5rem 1.5rem; }
  footer { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
}




    /*css media querry start from here */


  @media (max-width:768px) {
     body,html{
    overflow-x: hidden;
    box-sizing: border-box;
     margin: 1px;}

     .books-section-flex-cont{
      display: flex;
      flex-direction: column;
      width: 100%;
     }

     .intimacy-with-god-cont,.book-info2{
      width: 100%;
     }

     .saved-by-grace-cont{
      width: 100%;
     }

     .book-info{
      width: 100%;
     }
  }