    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: #f8f9fb;
      color: #333;
    }

    /* ── Hero ── */
    .hero {
      min-height: 32vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem 1rem;
    }

    .hero h1 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 600;
      letter-spacing: -0.5px;
      color: #1a1a2e;
    }

    .hero p.tagline {
      color: #6c757d;
      font-size: 1rem;
      margin-bottom: 2rem;
    }

    .search-wrap {
      width: 100%;
      max-width: 600px;
      display: flex;
      gap: 0.5rem;
    }

    .search-wrap input {
      border-radius: 50px;
      border: 1.5px solid #dee2e6;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      box-shadow: 0 2px 8px rgba(0,0,0,.06);
      transition: border-color .2s;
    }

    .search-wrap input:focus {
      border-color: #1a1a1a;
      box-shadow: 0 0 0 3px rgba(108,99,255,.15);
      outline: none;
    }

    .search-wrap button {
      border-radius: 50px;
      padding: 0.75rem 1.5rem;
      background: #1a1a1a;
      border: none;
      color: #fff;
      font-weight: 500;
      white-space: nowrap;
      transition: background .2s;
    }

    .search-wrap button:hover { background: #574fd6; }

    /* ── Menu Cards ── */
    .menu-section { padding: 2rem 1rem 3rem; }

    .menu-card {
      background: #fff;
      border: 1px solid #e9ecef;
      border-radius: 16px;
      padding: 2rem 1.5rem;
      text-align: center;
      text-decoration: none;
      color: inherit;
      display: block;
      transition: transform .2s, box-shadow .2s;
      height: 100%;
    }

    .menu-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,.09);
      color: inherit;
    }

    .menu-card .icon-wrap {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.6rem;
    }

    .menu-card h5 { font-weight: 600; font-size: 1rem; margin-bottom: .4rem; }
    .menu-card p  { font-size: .875rem; color: #6c757d; margin: 0; }

    /* icon bg tints */
    .tint-purple { background: #ede9ff; color: #6c63ff; }
    .tint-pink   { background: #fde8f0; color: #e91e8c; }
    .tint-blue   { background: #e3f0ff; color: #1976d2; }
    .tint-green  { background: #e6f9f0; color: #1a9e5c; }

    /* ── News Carousel ── */
    .news-section { padding: 2rem 1rem 3rem; }

    .news-section h2 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: #1a1a2e;
    }

    .news-card {
      background: #fff;
      border: 1px solid #e9ecef;
      border-radius: 14px;
      padding: 1.5rem;
      height: 100%;
    }

    .news-card .badge-tag {
      font-size: .72rem;
      background: #f7ccc2;
      color: #993506;
      border-radius: 50px;
      padding: .25rem .75rem;
      display: inline-block;
      margin-bottom: .75rem;
      font-weight: 500;
    }

    .news-card h6 { font-weight: 600; font-size: .95rem; margin-bottom: .5rem; }
    .news-card p  { font-size: .85rem; color: #6c757d; margin: 0; }

    /* carousel controls */
    .carousel-control-prev-icon,
    .carousel-control-next-icon { filter: invert(1) grayscale(1) brightness(.4); }

    .carousel-indicators [data-bs-target] {
      background-color: #6c63ff;
      width: 8px; height: 8px;
      border-radius: 50%;
      border: none;
    }

    /* ── Footer ── */
    footer {
      background: #fff;
      border-top: 1px solid #e9ecef;
      padding: 1.75rem 1rem;
      text-align: center;
      font-size: .85rem;
      color: #adb5bd;
    }

    .social-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #f1f0ff;
      color: #6c63ff;
      font-size: 1.1rem;
      text-decoration: none;
      transition: background .2s, color .2s, transform .2s;
    }

    .social-icon:hover {
      background: #6c63ff;
      color: #fff;
      transform: translateY(-2px);
    }
