    * {
      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
    ========================== */

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

      background: #f9eee8;

      text-align: center;
    }

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

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

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

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

      max-width: 620px;
      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;
    }

    /* =========================
       SOCIAL SECTION
    ========================== */

    .social-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;
    }

    .social-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);

      gap: 30px;

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

    .social-card {
      background: white;

      border-radius: 24px;
      overflow: hidden;

      border: 1px solid #eaded7;

      padding: 60px 50px;

      text-align: center;

      transition: 0.25s ease;
    }

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

    .social-icon {
      width: 90px;
      height: 90px;

      margin: auto auto 30px;

      border-radius: 50%;

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

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

      color: white;
    }

    .facebook {
      background: #1877f2;
    }

    .instagram {
      background: linear-gradient(
        135deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
      );
    }

    .social-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 32px;

      margin-bottom: 14px;
    }

    .social-card p {
      color: #6b4c3b;
      line-height: 1.8;

      margin-bottom: 28px;
    }

    .social-btn {
      display: inline-block;

      background: #2b1b1b;
      color: white;

      text-decoration: none;

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

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

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

      transition: 0.2s ease;
    }

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

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

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

}
    }
