* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    background-color: #fefaf5;  /* soft warm white base */
    font-family: 'Inter', sans-serif;
    color: #2c2a29;
    scroll-behavior: smooth;
  }

  /* Elegant serif for headings & accents */
  h1, h2, h3, .serif-text, .logo, .nav-links a, .hero-subtitle, .price, .trust-item span {
    font-family: 'Cormorant Garamond', serif;
  }

  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* header / navigation */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .logo {
    font-size: 1.9rem;
    font-weight: 500;
    letter-spacing: -0.3px;
    color: #b38b6d;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .logo span {
    font-weight: 300;
    color: #2c2a29;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: #3b3531;
    letter-spacing: 0.3px;
    transition: color 0.2s;
  }

  .nav-links a:hover {
    color: #b38b6d;
  }

  /* hero section */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0 4rem;
  }

  .hero-content h1 {
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: #2c2a29;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #6e5e54;
    margin-bottom: 2rem;
    border-left: 3px solid #dbbc9b;
    padding-left: 1rem;
  }

  .btn-primary {
    display: inline-block;
    background: #2c2a29;
    color: #fefaf5;
    padding: 14px 34px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 6px 12px rgba(0,0,0,0.02);
    border: 1px solid #2c2a29;
  }

  .btn-primary:hover {
    background: #b38b6d;
    border-color: #b38b6d;
    color: white;
  }

  /* hero image */
  .hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 40px -18px rgba(0,0,0,0.2);
    transition: transform 0.4s ease;
    object-fit: cover;
  }

  /* trust badges row */
  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    background: rgba(255, 247, 240, 0.7);
    backdrop-filter: blur(2px);
    padding: 1.2rem 2rem;
    border-radius: 60px;
    margin: 2rem 0 3rem;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4f3f36;
  }

  .trust-item i {
    font-size: 1.5rem;
    color: #b38b6d;
  }

  .trust-item span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: -0.2px;
  }

  /* featured collection title */
  .section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
    margin: 4rem 0 1rem;
    letter-spacing: -0.3px;
    color: #2c2a29;
  }

  .section-sub {
    text-align: center;
    color: #8f7a6b;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    font-weight: 400;
  }

  /* product grid — clean, soft shadows */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
  }

  .product-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0,0,0,0.01);
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 36px -14px rgba(0, 0, 0, 0.12);
  }

  .product-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }

  .product-card:hover .product-img {
    transform: scale(1.02);
  }

  .product-info {
    padding: 1.4rem 1.2rem 1.6rem;
  }

  .product-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #2c2a29;
  }

  .product-desc {
    font-size: 0.85rem;
    color: #7e6c60;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }

  .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #b38b6d;
    letter-spacing: -0.2px;
  }

  /* italian streets & atmosphere double column */
  .italian-inspiration {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 5rem 0;
    align-items: center;
  }

  .street-img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
    transition: all 0.3s;
  }

  .inspiration-text h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
  }

  .inspiration-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4f443e;
    margin-bottom: 1rem;
  }

  .signature {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 1rem;
    color: #b38b6d;
  }

  /* Newsletter & footer */
  .newsletter {
    background: #f6efe8;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    text-align: center;
    margin: 4rem 0 2rem;
    box-shadow: 0 6px 12px -6px rgba(0,0,0,0.02);
  }

  .newsletter h4 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  .newsletter p {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    color: #6c5b50;
  }

  .newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .newsletter-form input {
    padding: 12px 18px;
    border: 1px solid #e1d5cc;
    border-radius: 40px;
    width: 280px;
    background: white;
    font-family: 'Inter', sans-serif;
    outline: none;
  }

  .newsletter-form button {
    background: #2c2a29;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
  }

  .newsletter-form button:hover {
    background: #b38b6d;
  }

  footer {
    border-top: 1px solid #eee4dc;
    padding: 2rem 0 2.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #9c897c;
  }

  .footer-links {
    display: flex;
    gap: 2rem;
  }

  .footer-links a {
    text-decoration: none;
    color: #7f695c;
    transition: color 0.2s;
  }

  .footer-links a:hover {
    color: #b38b6d;
  }

  /* responsive */
  @media (max-width: 880px) {
    .hero {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
    }
    .hero-subtitle {
      border-left: none;
      padding-left: 0;
      text-align: center;
    }
    .navbar {
      flex-direction: column;
      gap: 1rem;
    }
    .nav-links {
      gap: 1.8rem;
    }
    .italian-inspiration {
      grid-template-columns: 1fr;
    }
    .trust-badges {
      gap: 1.5rem;
    }
    .container {
      padding: 0 20px;
    }
  }

  @media (max-width: 540px) {
    .product-grid {
      grid-template-columns: 1fr;
    }
    .logo {
      font-size: 1.5rem;
    }
    .hero-content h1 {
      font-size: 2.5rem;
    }
  }

  /* decorative subtle line */
  .accent-line {
    width: 70px;
    height: 2px;
    background: #dbbc9b;
    margin: 1rem auto;
  }

  /* image hover subtle */
  img {
    max-width: 100%;
    display: block;
  }