/* =========================================================
GLOBAL RESET
========================================================= */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:#ffffff;
  color:#1e1b18;
  line-height:1.6;
}

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

video{
  max-width:100%;
  display:block;
}

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

section{
  scroll-margin-top:110px;
}

/* =========================================================
LAYOUT
========================================================= */

.wrap{
  max-width:1200px;
  margin:0 auto;
  padding:0 28px;
}

.site-main{
  min-height:70vh;
}

/* =========================================================
HEADER
========================================================= */

.site-header{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
}

.site-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:26px 0;
}

.nav-logo{
  font-size:1.1rem;
  font-weight:700;
  color:#ffffff;
}

.nav-links{
  display:flex;
  gap:22px;
}

.nav-links a{
  color:#ffffff;
  font-size:.95rem;
  font-weight:600;
}

/* =========================================================
HERO
========================================================= */

.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:#ffffff;
}

.hero-bg{
  position:absolute;
  inset:0;
}

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

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    rgba(0,0,0,.3),
    rgba(0,0,0,.45)
  );
}

.hero-inner{
  position:relative;
  z-index:2;
  max-width:720px;
  padding-top:120px;
}

.hero-kicker{
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-weight:700;
  margin-bottom:18px;
}

.hero h1{
  font-size:clamp(2.6rem,5vw,4.8rem);
  line-height:1.05;
  font-weight:800;
  margin-bottom:22px;
}

.hero-sub{
  font-size:1.15rem;
  margin-bottom:34px;
  color:#f3f3f3;
}

.hero-buttons{
  display:flex;
  gap:14px;
}

/* =========================================================
BUTTONS
========================================================= */

.btn{
  padding:14px 22px;
  border-radius:999px;
  background:#d46d4b;
  color:#fff;
  font-weight:700;
  font-size:.95rem;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:all .2s ease;
}

.btn:hover{
  background:#bf5f40;
  transform:translateY(-1px);
}

.btn-ghost{
  background:rgba(255,255,255,.15);
  border:1px solid rgba(255,255,255,.4);
}

/* =========================================================
TOPICS
========================================================= */

.topics{
  background:#f6efe9;
}

.topics-inner{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  padding:22px 0;
}

.topics-inner span{
  padding:10px 16px;
  border-radius:999px;
  background:#efe4dc;
  font-size:.9rem;
  font-weight:600;
}

/* =========================================================
SECTIONS
========================================================= */

.about-section,
.books-section,
.writing-section,
.contact-section,
.services,
.featured-video{
  padding:90px 0;
}

.section-head{
  text-align:center;
  margin-bottom:40px;
}

.section-head h2{
  font-size:2.4rem;
  margin-bottom:10px;
}

/* =========================================================
ABOUT
========================================================= */

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

.about-image img{
  border-radius:24px;
  box-shadow:0 14px 40px rgba(0,0,0,.12);
}

.about-text p{
  margin-bottom:18px;
}

/* =========================================================
CARDS
========================================================= */

.books-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.book-card{
  background:#fff;
  border-radius:22px;
  padding:26px;
  border:1px solid rgba(0,0,0,.06);
}

.book-card h3{
  margin-bottom:10px;
}

.book-image{
  max-width:260px;
  margin:0 auto 18px;
  border-radius:12px;
}

/* =========================================================
WRITING
========================================================= */

.writing-section .books-grid{
  grid-template-columns:repeat(3,1fr);
}

/* =========================================================
FEATURED VIDEO
========================================================= */

.featured-video{
  background:#f7f1ec;
}

.featured-video-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

.featured-video-frame{
  background:#fff;
  border-radius:20px;
  padding:14px;
  box-shadow:0 16px 40px rgba(0,0,0,.1);
}

/* =========================================================
CONTACT
========================================================= */

.contact-section{
  text-align:center;
}

.contact-section a{
  color:#d46d4b;
  font-weight:700;
}

/* =========================================================
FOOTER
========================================================= */

.site-footer{
  border-top:1px solid rgba(0,0,0,.08);
  padding:28px 0;
  text-align:center;
  font-size:.9rem;
  color:#666;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width:1000px){

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

  .featured-video-grid{
    grid-template-columns:1fr;
  }

  .writing-section .books-grid{
    grid-template-columns:1fr;
  }

}

@media (max-width:700px){

  .hero-buttons{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

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

  .wrap{
    padding:0 20px;
  }

}
