/* ---------- Reset & base ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Merriweather', serif;
    font-weight: 300;
    line-height: 1.7;
    color: #333;
    background: #fcfcfc;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    color: #db7c29;
    text-decoration: none;
  }
  a:hover {
    color: #b05f1a;
  }
  
  /* ---------- Buttons ---------- */
  .btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
  }
  .btn-primary {
    background: #db7c29;
    color: #fff;
  }
  .btn-primary:hover {
    background: #b05f1a;
    color: #fff;
  }
  .btn-secondary {
    background: #006aa1;
    color: #fff;
  }
  .btn-secondary:hover {
    background: #004d73;
    color: #fff;
  }
  .btn-tertiary {
    background: #22ab41;
    color: #fff;
  }
  .btn-tertiary:hover {
    background: #198a32;
    color: #fff;
  }
  .btn-small {
    padding: 8px 18px;
    font-size: 0.8rem;
    background: #db7c29;
    color: #fff;
  }
  .btn-small:hover {
    background: #b05f1a;
    color: #fff;
  }
  
  /* ---------- Header ---------- */
  .site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
  }
  .logo img {
    height: 60px;
    width: auto;
  }
  .logo a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #222;
  }
  .logo a:hover {
    color: #db7c29;
  }
  .main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  .main-nav a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #444;
    transition: color 0.2s;
  }
  .main-nav a:hover {
    color: #db7c29;
  }
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #333;
  }
  
  /* ---------- Hero ---------- */
  .hero {
    background-image: url('./images/website-hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
  }
  .hero-overlay {
    width: 100%;
    padding: 60px 0;
    position: relative;
    z-index: 2;
  }
  .hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(2.8rem, 8vw, 5rem);
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
  }
  .hero-sub {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255,255,255,0.85);
    margin: 0.5rem 0 2rem;
    font-weight: 300;
  }
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .hero-buttons .btn {
    min-width: 180px;
  }
  
  /* ---------- Bio ---------- */
  .bio-section {
    padding: 80px 0;
    background: #fff;
  }
  .bio-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
  }
  .bio-image img {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .bio-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    margin-top: 0;
    color: #222;
  }
  .bio-text p {
    margin-bottom: 1.2rem;
  }
  
  /* ---------- Book ---------- */
  .book-section {
    padding: 80px 0;
    background: #f2f3f4;
  }
  .book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  .book-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: #222;
  }
  .book-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
  }
  
  /* ---------- Order sections ---------- */
  .order-now {
    margin-top: 30px;
  }
  .format-group {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .format-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .format-group h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 10px;
  }
  .format-group h3 i {
    color: #db7c29;
    margin-right: 10px;
    width: 1.2rem;
    text-align: center;
  }
  .retailer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    align-items: center;
  }
  .retailer-logos img {
    max-height: 38px;
    width: auto;
    filter: grayscale(0%);
    transition: filter 0.2s, transform 0.2s;
  }
  .retailer-logos img:hover {
    filter: grayscale(100%);
    transform: scale(1.03);
  }
  
  /* ---------- Video ---------- */
  .video-section {
    padding: 80px 0;
    background: #fff;
  }
  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  }
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .video-caption {
    text-align: center;
    margin-top: 30px;
  }
  .video-caption blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #444;
    max-width: 700px;
    margin: 0 auto 20px;
    border-left: 4px solid #db7c29;
    padding-left: 20px;
  }
  .moth-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .moth-logo {
    height: 50px;
    width: auto;
  }
  .moth-row p {
    font-size: 1rem;
    margin: 0;
  }
  .moth-row .divider {
    color: #ccc;
    padding: 0 8px;
  }
  .moth-row a {
    color: #db7c29;
    font-weight: 600;
  }
  .moth-row a:hover {
    color: #b05f1a;
  }
  
  /* ---------- Praise ---------- */
  .praise-section {
    padding: 80px 0;
    background: #fafafa;
  }
  .praise-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: #222;
  }
  .praise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  .praise-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
  }
  .praise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }
  .praise-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
  }
  .praise-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
  }
  .praise-card .title {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 14px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
  }
  .praise-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    text-align: left;
    font-family: Merryweather, serif;
  }
  .center-btn {
    text-align: center;
    margin-top: 50px;
  }
  
  /* ---------- Press ---------- */
  .press-section {
    padding: 80px 0;
    background: #1d242d;
    color: #fff;
  }
  .press-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
  }
  .press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
  }
  .press-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    color: #333;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s;
  }
  .press-item:hover {
    transform: translateY(-6px);
  }
  .press-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
  }
  .press-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 16px 20px 0;
  }
  .press-item p {
    padding: 0 20px 16px;
    line-height: 1.6;
  }
  .press-item .btn-small {
    margin: 0 20px 20px;
    display: inline-block;
  }
  
  /* ---------- Footer ---------- */

  .site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%);
    z-index: 1;
  }

  .site-footer {
    background-image: url('./images/website-hero-bg.jpg');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    color: rgba(255,255,255,0.7);
    padding: 40px 0;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
  }
  .footer-nav a {
    color: rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #db7c29;
  }
  .copyright {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  .social-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    font-size: 1.4rem;
  }
  .social-links a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
  }
  .social-links a:hover {
    color: #db7c29;
  }
  
  /* ---------- Responsive ---------- */
  @media (max-width: 992px) {
    .bio-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .bio-image {
      max-width: 400px;
      margin: 0 auto;
    }
    .book-grid {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .book-cover {
      max-width: 400px;
      margin: 0 auto;
    }
    .retailer-logos {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .nav-toggle {
      display: block;
    }
    .main-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      padding: 20px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }
    .main-nav.open {
      display: block;
    }
    .main-nav ul {
      flex-direction: column;
      gap: 16px;
      text-align: center;
    }
    .hero-buttons .btn {
      min-width: 140px;
      font-size: 0.8rem;
      padding: 10px 20px;
    }
    .praise-grid {
      grid-template-columns: 1fr;
    }
    .press-grid {
      grid-template-columns: 1fr;
    }
    .footer-nav {
      gap: 16px;
    }
    .moth-row {
      flex-direction: column;
      gap: 8px;
    }
    .moth-row .divider {
      display: none;
    }
  }