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

    body {
      background: #fbfaf7;
      font-family: system-ui, 'Segoe UI', 'Inter', 'Helvetica Neue', sans-serif;
      color: #2c2418;
      line-height: 1.4;
      scroll-behavior: smooth;
    }

    /* TYPOGRAPHY & UTILITIES */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 32px;
    }

    .section {
      padding: 80px 0;
      border-bottom: 1px solid #f0e8de;
    }

    .section:last-child {
      border-bottom: none;
    }

    h1, h2, h3 {
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    h1 {
      font-size: 3.7rem;
      line-height: 1.2;
      margin-bottom: 1.2rem;
      color: #2e241f;
    }

    h2 {
      font-size: 2.4rem;
      margin-bottom: 1.5rem;
      text-align: center;
      position: relative;
      display: inline-block;
    }

    .section-title {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title h2 {
      margin-bottom: 0.5rem;
    }

    .section-title .title-accent {
      width: 70px;
      height: 4px;
      background: #e3b27c;
      margin: 1rem auto 0;
      border-radius: 4px;
    }

    .btn {
      display: inline-block;
      background: #cc9c6b;
      color: white;
      font-weight: 600;
      padding: 12px 28px;
      border-radius: 48px;
      text-decoration: none;
      transition: all 0.2s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .btn:hover {
      background: #b5814b;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid #cc9c6b;
      color: #5c3e2a;
      box-shadow: none;
    }

    .btn-outline:hover {
      background: #fef5ec;
      border-color: #b5814b;
      transform: translateY(-2px);
    }

    /* HEADER / NAV (no JS, pure CSS) */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 24px 0;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #5c3e2a, #b47c48);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #3f2e20;
      transition: color 0.2s;
      font-size: 1rem;
    }

    .nav-links a:hover {
      color: #b47c48;
    }

    /* HERO */
    .hero {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .hero-content {
      flex: 1.2;
      min-width: 280px;
    }

    .hero-badge {
      background: #f2e7db;
      display: inline-block;
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #b47c48;
      margin-bottom: 1rem;
      letter-spacing: 0.3px;
    }

    .hero-content p {
      font-size: 1.2rem;
      color: #5a4a38;
      margin: 1.5rem 0 2rem;
      line-height: 1.5;
      max-width: 550px;
    }

    .hero-actions {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .hero-image {
      flex: 1;
      min-width: 260px;
      background:  #F8F8F8;
      border-radius: 48px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 25px 40px -12px rgba(0,0,0,0.1);
    }

    .pillow-illustration {
      max-width: 100%;
      height: auto;
      display: block;
      margin: 0 auto;
      border-radius: 32px;
    }

    /* FEATURE CARDS (pure CSS, no JS) */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      margin-top: 20px;
    }

    .feature-card {
      background: white;
      border-radius: 32px;
      padding: 32px 24px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0,0,0,0.02), 0 2px 6px rgba(0,0,0,0.03);
      transition: all 0.25s;
      border: 1px solid #f3eae2;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      border-color: #eedbcb;
      box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
    }

    .feature-icon {
      font-size: 2.6rem;
      margin-bottom: 1rem;
    }

    .feature-card h3 {
      font-size: 1.5rem;
      margin-bottom: 0.6rem;
    }

    .feature-card p {
      color: #5f4d3a;
      line-height: 1.4;
    }

    /* COMFORT ZONE / QUOTE */
    .comfort-showcase {
      background: #fef7ef;
      border-radius: 56px;
      padding: 48px 40px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
      margin-top: 20px;
    }

    .comfort-text {
      flex: 1;
    }

    .comfort-text h3 {
      font-size: 1.9rem;
      margin-bottom: 1rem;
    }

    .comfort-text p {
      font-size: 1.05rem;
      line-height: 1.5;
      color: #4a3a2c;
      margin-bottom: 1.2rem;
    }

    .comfort-stats {
      display: flex;
      gap: 32px;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    .stat {
      text-align: left;
    }

    .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: #cc9c6b;
      line-height: 1;
    }

    .comfort-image {
      flex: 0.8;
      background:  #F8F8F8;
      border-radius: 40px;
      padding: 20px;
      text-align: center;
    }

    /* PRODUCT GALLERY (static, no JS) */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 36px;
      margin: 40px 0 20px;
    }

    .product-card {
      background: white;
      border-radius: 32px;
      overflow: hidden;
      transition: 0.2s;
      box-shadow: 0 10px 20px rgba(0,0,0,0.02);
      border: 1px solid #f0e3d8;
    }

    .product-img {
      background: #f7ede3;
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .product-img img {
      max-width: 85%;
      max-height: 170px;
      object-fit: contain;
    }

    .product-info {
      padding: 24px 20px 28px;
    }

    .product-info h3 {
      font-size: 1.5rem;
      margin-bottom: 8px;
    }

    .product-price {
      font-weight: 700;
      font-size: 1.4rem;
      color: #b47c48;
      margin: 12px 0 16px;
    }

    .product-desc {
      color: #5f4d3a;
      margin-bottom: 20px;
      font-size: 0.9rem;
    }

    /* TESTIMONIALS (static grid) */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .testimonial-card {
      background: #ffffffdd;
      backdrop-filter: blur(0px);
      background: white;
      border-radius: 32px;
      padding: 28px 24px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.03);
      border: 1px solid #f1e4d8;
    }

    .stars {
      color: #e7b15d;
      font-size: 1.2rem;
      letter-spacing: 3px;
      margin-bottom: 14px;
    }

    .testimonial-text {
      font-style: normal;
      line-height: 1.5;
      margin-bottom: 20px;
      color: #2a241e;
    }

    .customer-name {
      font-weight: 700;
      color: #7c5c40;
    }

    /* NEWSLETTER (pure html/css, no js) */
    .newsletter-box {
      background: linear-gradient(120deg, #faf1e6, #fff6ed);
      border-radius: 56px;
      padding: 56px 48px;
      text-align: center;
      margin-top: 20px;
    }

    .newsletter-box h3 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .newsletter-form {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 28px;
      max-width: 550px;
      margin-left: auto;
      margin-right: auto;
    }

    .newsletter-form input {
      flex: 2;
      min-width: 220px;
      padding: 14px 20px;
      border-radius: 80px;
      border: 1px solid #ddd0c2;
      background: white;
      font-size: 1rem;
      outline: none;
      transition: 0.2s;
    }

    .newsletter-form input:focus {
      border-color: #cc9c6b;
      box-shadow: 0 0 0 2px rgba(204,156,107,0.2);
    }

    .newsletter-form button {
      background: #2c2418;
      padding: 14px 32px;
      border-radius: 80px;
      border: none;
      font-weight: 600;
      color: white;
      cursor: pointer;
      font-size: 1rem;
      transition: 0.2s;
    }

    .newsletter-form button:hover {
      background: #cc9c6b;
    }

    .disclaimer-note {
      font-size: 0.75rem;
      color: #8f7b68;
      margin-top: 20px;
    }

    /* FOOTER */
    .footer {
      background: #1f1b17;
      color: #cfc3b6;
      padding: 48px 0 32px;
      margin-top: 20px;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand p {
      margin-top: 12px;
      max-width: 280px;
      font-size: 0.9rem;
    }

    .footer-links {
      display: flex;
      gap: 60px;
      flex-wrap: wrap;
    }

    .footer-col h4 {
      color: #e7cfb7;
      margin-bottom: 16px;
      font-weight: 500;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col li {
      margin-bottom: 10px;
    }

    .footer-col a {
      text-decoration: none;
      color: #cfc3b6;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: #e7b15d;
    }

    .copyright {
      text-align: center;
      padding-top: 32px;
      border-top: 1px solid #332c24;
      font-size: 0.8rem;
    }

    @media (max-width: 780px) {
      .container {
        padding: 0 24px;
      }
      .section {
        padding: 60px 0;
      }
      h1 {
        font-size: 2.6rem;
      }
      h2 {
        font-size: 2rem;
      }
      .navbar {
        flex-direction: column;
        gap: 18px;
      }
      .hero {
        flex-direction: column-reverse;
      }
      .comfort-showcase {
        flex-direction: column;
      }
      .newsletter-box {
        padding: 36px 24px;
      }
    }

    /* fallback image placeholders (SVG inline) */
    .pillow-svg {
      width: 100%;
      max-width: 280px;
      filter: drop-shadow(0 8px 12px rgba(0,0,0,0.1));
    }

    .product-svg {
      width: 140px;
    }