  <style>
    * { box-sizing: border-box; }
    html, body {
      margin: 0;
      padding: 0;
      font-family: 'Open Sans', sans-serif;
      color: #333;
      background: #FDFBF7;
      line-height: 1.6;
    }
    img { max-width: 100%; height: auto; display: block; }

    /* Colors & accents */
    :root {
      --cream: #FDFBF7;
      --warm-brown: #8B4513;
      --gold: #D4A017;
      --dark: #2C1B0F;
      --light-gray: #f5f0e6;
    }

    h1, h3 {
      font-family: 'Playfair Display', serif;
      color: var(--dark);
      margin: 0.4em 0;
    }
    h1 { font-size: 3.2rem; }
    h3 { font-size: 1.8rem; }

    .content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section {
      padding: 80px 0;
    }
    .section-heading {
      text-align: center;
      margin-bottom: 48px;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 16px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Navbar */
    .top {
      position: fixed;
      top: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      z-index: 1000;
    }
    .bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 32px;
      max-width: 1400px;
      margin: 0 auto;
    }
    .bar-item {
      color: var(--dark);
      text-decoration: none;
      padding: 12px 20px;
      font-weight: 500;
      transition: color 0.2s;
    }
    .bar-item:hover { color: var(--warm-brown); }

    .menu-toggle {
      font-size: 1.8rem;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--dark);
      display: none;
    }

    #mobileMenu {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      background: white;
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
      min-width: 220px;
      padding: 16px 0;
    }
    #mobileMenu a {
      display: block;
      padding: 14px 24px;
      color: var(--dark);
      text-decoration: none;
    }
    #mobileMenu a:hover { background: var(--light-gray); }

    /* Hero / Header – improved readability */
    .hero {
      position: relative;
      height: 80vh;
      min-height: 600px;
      overflow: hidden;
    }
    .hero img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      width: 90%;
      max-width: 1100px;
      z-index: 2;
    }
    .hero-text h1 {
      font-size: clamp(3.2rem, 8vw, 7rem);
      font-weight: 900;
      color: #ffffff;
      margin: 0;
      letter-spacing: 1.5px;
      line-height: 1.05;
      text-shadow: 
        0 0 20px rgba(0,0,0,0.9),
        0 0 40px rgba(0,0,0,0.7),
        0 4px 16px rgba(0,0,0,1);
      -webkit-text-stroke: 1px #000;
      paint-order: stroke fill;
    }
    .black-bg {
      background: #000;
      display: inline-block;
      padding: 0.8em 1.6em;
      border-radius: 8px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.6);
      backdrop-filter: blur(2px);
    }

    /* Products grid */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 32px;
      margin-top: 40px;
    }
    .product-card {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    }
    .product-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }
    .product-info {
      padding: 20px;
      text-align: center;
    }
    .product-info h4 {
      margin: 0 0 8px;
      font-size: 1.3rem;
      color: var(--dark);
    }
    .price {
      color: var(--warm-brown);
      font-weight: 600;
      font-size: 1.1rem;
    }

    /* Buttons */
    .btn {
      display: inline-block;
      padding: 14px 32px;
      background: var(--warm-brown);
      color: white;
      text-decoration: none;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.25s;
      margin: 12px 0;
    }
    .btn:hover {
      background: #6d3610;
      transform: translateY(-2px);
    }

    /* Footer */
    footer {
      background: var(--dark);
      color: white;
      text-align: center;
      padding: 48px 20px;
      margin-top: 80px;
    }
    footer a {
      color: var(--gold);
      text-decoration: none;
    }
    footer a:hover { text-decoration: underline; }

    /* Responsive */
    @media (max-width: 768px) {
      .bar { padding: 16px 20px; }
      .menu-toggle { display: block; }
      .right.hide-small { display: none; }
      .hero-text h1 { font-size: clamp(2.8rem, 10vw, 4.5rem); }
      .black-bg { padding: 0.6em 1.2em; }
    }
  </style>
