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

    body {
      font-family: 'Inter', sans-serif;
      background: #fdf8f5;
      color: #2b1b1b;
    }

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

    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 22px 42px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      z-index: 1000;

      transition: 0.3s ease;

      background: pink;
    }

    header.scrolled {
      background: rgba(253, 248, 245, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #eaded7;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

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

    nav a {
      text-decoration: none;
      color: #6b4c3b;
      font-size: 13px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: 0.2s ease;
    }

    nav a:hover {
      color: #c1566a;
    }

    .nav-btn {
      background: #c1566a;
      color: white;
      padding: 11px 20px;
      border-radius: 999px;
    }

    .nav-btn:hover {
      background: #a84459;
      color: white;
    }

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

    .gallery-hero {
      padding-top: 180px;
      padding-bottom: 120px;

      text-align: center;

      background: #f9eee8;
    }

    .eyebrow {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #c1566a;
      margin-bottom: 18px;
      font-weight: 600;
    }

    .gallery-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 58px;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .gallery-hero h1 em {
      color: #c1566a;
      font-style: italic;
    }

    .gallery-hero p {
      font-size: 16px;
      line-height: 1.8;
      color: #6b4c3b;

      max-width: 650px;
      margin: auto;
    }

    /* =========================
       TRUST BAR
    ========================== */

    .trust-bar {
      display: flex;
      justify-content: center;
      gap: 50px;

      padding: 24px;

      background: white;

      border-top: 1px solid #eaded7;
      border-bottom: 1px solid #eaded7;
    }

    .trust-item {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #6b4c3b;
      font-weight: 500;
    }

    /* =========================
       GALLERY SECTION
    ========================== */

    .gallery-section {
      padding: 100px 40px;
    }

    .section-label {
      text-align: center;

      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;

      color: #c1566a;

      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;

      font-size: 42px;
      text-align: center;

      margin-bottom: 20px;
    }

    .section-subtitle {
      text-align: center;

      max-width: 620px;
      margin: auto auto 70px;

      color: #6b4c3b;
      line-height: 1.8;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);

      gap: 28px;

      max-width: 1300px;
      margin: auto;
    }

    .gallery-card {
      background: white;

      border-radius: 24px;
      overflow: hidden;

      border: 1px solid #eaded7;

      transition: 0.25s ease;
    }

    .gallery-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    }

    .gallery-image {
      height: 320px;
      background-size: cover;
      background-position: center;
    }

    .gallery-content {
      padding: 28px;
    }

    .gallery-content h3 {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      margin-bottom: 12px;
    }

    .gallery-content p {
      color: #6b4c3b;
      line-height: 1.8;
      font-size: 15px;
    }

/* =========================
   REVIEWS SECTION
========================== */

.reviews-section {
  padding: 100px 40px;
  background: #fff7f4;
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 60px auto 0;
}

.review-card {
  background: white;
  border: 1px solid #eaded7;
  border-radius: 24px;
  padding: 32px;
  text-align: left;
  transition: 0.25s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.review-text {
  font-size: 15px;
  line-height: 1.8;
  color: #6b4c3b;
  margin-bottom: 18px;
  font-style: italic;
}

.review-name {
  font-size: 13px;
  font-weight: 600;
  color: #c1566a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stars {
  color: #c1566a;
  font-size: 25px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* MOBILE */
@media (max-width: 700px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

    /* =========================
       CTA
    ========================== */

    .cta {
      background: #c1566a;
      text-align: center;
      color: white;

      padding: 100px 40px;
    }

    .cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: 42px;
      margin-bottom: 18px;
    }

    .cta p {
      margin-bottom: 30px;
      color: rgba(255,255,255,0.85);
      line-height: 1.8;
    }

    .cta-btn {
      display: inline-block;

      background: white;
      color: #c1566a;

      text-decoration: none;

      padding: 14px 32px;
      border-radius: 999px;

      text-transform: uppercase;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.05em;

      transition: 0.2s ease;
    }

    .cta-btn:hover {
      background: #f6e7eb;
    }

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

    footer {
      background: #1a1010;

      display: flex;
      justify-content: space-between;
      align-items: center;

      padding: 30px 40px;

      color: #9a7d72;
      font-size: 13px;
    }

    footer a {
      color: #9a7d72;
      text-decoration: none;
      margin-left: 20px;
    }

    footer a:hover {
      color: white;
    }

    /* =========================
       MOBILE
    ========================== */

@media (max-width: 900px) {

  header {
    padding: 18px 20px;
  }

  nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  nav a {
    font-size: 11px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

  .hero-right {
    min-height: 400px;
  }

  .hero h1,
  .gallery-hero h1,
  .social-hero h1,
  .order-hero h1 {
    font-size: 42px;
  }

  .story-grid,
  .features-grid,
  .gallery-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .hero-left,
  .story-content {
    padding: 50px 32px;
  }

  footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .trust-bar {
    flex-wrap: wrap;
    gap: 20px;
  }

}
    }
