* {
      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;
    }

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

    .order-hero {
      padding-top: 180px;
      padding-bottom: 100px;

      background: #f9eee8;

      text-align: center;
    }

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

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

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

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

    /* =========================
       ORDER SECTION
    ========================== */

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

    .order-container {
      max-width: 850px;
      margin: auto;

      background: white;
      border: 1px solid #eaded7;
      border-radius: 24px;

      padding: 60px;
    }

    .price-box {
      background: #f9eee8;
      border: 1px solid #eaded7;
      border-radius: 18px;

      padding: 28px;
      margin-bottom: 40px;

      text-align: center;
    }

    .price-box h2 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      margin-bottom: 10px;
    }

    .price-box p {
      color: #6b4c3b;
      line-height: 1.7;
    }

    .price {
      color: #c1566a;
      font-size: 38px;
      font-weight: 600;
      margin: 14px 0;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    label {
      margin-bottom: 10px;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #6b4c3b;
    }

    input,
    textarea {
      width: 100%;

      padding: 16px 18px;

      border-radius: 14px;
      border: 1px solid #eaded7;

      background: #fffdfc;

      font-family: 'Inter', sans-serif;
      font-size: 15px;

      transition: 0.2s ease;
    }

    input:focus,
    textarea:focus {
      outline: none;
      border-color: #c1566a;
      box-shadow: 0 0 0 4px rgba(193, 86, 106, 0.12);
    }

    textarea {
      min-height: 180px;
      resize: vertical;
      line-height: 1.7;
    }

    .submit-btn {
      border: none;

      background: #2b1b1b;
      color: white;

      padding: 16px 26px;
      border-radius: 999px;

      font-size: 13px;
      font-weight: 600;

      text-transform: uppercase;
      letter-spacing: 0.05em;

      cursor: pointer;

      transition: 0.2s ease;
    }

    .submit-btn:hover {
      background: #c1566a;
    }

    /* =========================
       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;
  }

}
