   :root {
      --red: #CD2E3A;
      --pink: #FAD4D4;
      --cream: #FFFDFA;
      --dark: #333333;
      --red-dark: #a8242e;
      --red-light: rgba(205, 46, 58, 0.08);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--dark);
      background-color: var(--cream);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6, .font-heading {
      font-family: 'Sriracha', cursive;
    }

    /* ── Navbar ── */
    .navbar {
      background-color: var(--red);
      padding: 0.8rem 0;
      transition: box-shadow 0.3s;
    }
    .navbar.scrolled {
      box-shadow: 0 4px 20px rgba(205, 46, 58, 0.3);
    }
    .navbar-brand {
      font-family: 'Sriracha', cursive;
      font-size: 1.6rem;
      color: #fff !important;
      letter-spacing: 0.5px;
    }
    .nav-link {
      font-family: 'Montserrat', sans-serif;
      font-weight: 500;
      color: rgba(255,255,255,0.85) !important;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      padding: 0.5rem 1rem !important;
      transition: color 0.2s;
    }
    .nav-link:hover, .nav-link.active {
      color: #fff !important;
    }
    .navbar-toggler {
      border-color: rgba(255,255,255,0.4);
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ── Hero ── */
    .hero {
      background-color: var(--cream);
      position: relative;
      padding: 6rem 0 4rem;
      min-height: 90vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: var(--pink);
      opacity: 0.5;
      z-index: 0;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: var(--pink);
      opacity: 0.35;
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 1;
    }
    .hero h1 {
      font-size: clamp(3rem, 7vw, 5.5rem);
      color: var(--red);
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .hero p.lead {
      font-size: 1.15rem;
      color: #777;
      font-weight: 400;
      max-width: 420px;
      line-height: 1.7;
    }
    .hero-img-wrapper {
      position: relative;
      z-index: 1;
    }
    .hero-img-wrapper img {
      border-radius: 2rem;
      box-shadow: 0 30px 60px rgba(205, 46, 58, 0.15);
      width: 100%;
      height: 480px;
      object-fit: cover;
    }
    .hero-img-badge {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: var(--red);
      color: #fff;
      font-family: 'Sriracha', cursive;
      font-size: 1rem;
      padding: 1rem 1.4rem;
      border-radius: 1rem;
      box-shadow: 0 8px 24px rgba(205, 46, 58, 0.3);
      z-index: 2;
    }

    /* ── Buttons ── */
    .btn-umma {
      background-color: var(--red);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      border: none;
      transition: all 0.3s;
      text-transform: uppercase;
    }
    .btn-umma:hover {
      background-color: var(--red-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(205, 46, 58, 0.3);
    }
    .btn-umma-outline {
      background: transparent;
      color: var(--red);
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      padding: 0.75rem 2rem;
      border-radius: 50px;
      border: 2px solid var(--red);
      transition: all 0.3s;
      text-transform: uppercase;
    }
    .btn-umma-outline:hover {
      background-color: var(--red);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(205, 46, 58, 0.3);
    }

    /* ── Section Shared ── */
    section {
      padding: 5rem 0;
    }
    .section-label {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.6rem;
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--dark);
      margin-bottom: 1rem;
    }
    .section-subtitle {
      color: #888;
      font-size: 1rem;
      max-width: 560px;
      line-height: 1.7;
    }

    /* ── About ── */
    .about {
      background-color: #fff;
    }
    .about-img {
      border-radius: 1.5rem;
      width: 100%;
      height: 400px;
      object-fit: cover;
      box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    }
    .about-stat {
      text-align: center;
      padding: 1.5rem;
    }
    .about-stat .number {
      font-family: 'Sriracha', cursive;
      font-size: 2.5rem;
      color: var(--red);
      line-height: 1;
    }
    .about-stat .label {
      font-size: 0.8rem;
      color: #999;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 0.3rem;
    }

    /* ── Menu / Products ── */
    .menu {
      background-color: var(--cream);
    }
    .menu-card {
      background: #fff;
      border-radius: 1.2rem;
      overflow: hidden;
      border: none;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
      height: 100%;
    }
    .menu-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(205, 46, 58, 0.12);
    }
    .menu-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }
    .menu-card .card-body {
      padding: 1.5rem;
    }
    .menu-card .card-title {
      font-size: 1.4rem;
      color: var(--dark);
      margin-bottom: 0.4rem;
    }
    .menu-card .card-text {
      font-size: 0.9rem;
      color: #888;
      line-height: 1.6;
    }
    .menu-card .price {
      font-family: 'Sriracha', cursive;
      font-size: 1.3rem;
      color: var(--red);
      margin-top: 0.8rem;
      display: inline-block;
    }
    .menu-tag {
      display: inline-block;
      background: var(--pink);
      color: var(--red);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 0.3rem 0.7rem;
      border-radius: 50px;
      margin-bottom: 0.6rem;
    }

    /* ── How It Works ── */
    .how-it-works {
      background: #fff;
    }
    .step-card {
      text-align: center;
      padding: 2.5rem 1.5rem;
      border-radius: 1.2rem;
      background: var(--cream);
      transition: all 0.3s;
      height: 100%;
    }
    .step-card:hover {
      background: var(--pink);
    }
    .step-number {
      font-family: 'Sriracha', cursive;
      font-size: 3rem;
      color: var(--red);
      line-height: 1;
      margin-bottom: 1rem;
      opacity: 0.7;
    }
    .step-card h4 {
      font-size: 1.3rem;
      color: var(--dark);
      margin-bottom: 0.6rem;
    }
    .step-card p {
      font-size: 0.9rem;
      color: #888;
      line-height: 1.6;
    }

    /* ── Wholesale CTA ── */
    .wholesale-cta {
      background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .wholesale-cta::before {
      content: '엄마';
      position: absolute;
      font-family: 'Sriracha', cursive;
      font-size: 18rem;
      color: rgba(255,255,255,0.04);
      top: -3rem;
      right: -2rem;
      line-height: 1;
      pointer-events: none;
    }
    .wholesale-cta h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      color: #fff;
    }
    .wholesale-cta p {
      color: rgba(255,255,255,0.8);
      font-size: 1.05rem;
      max-width: 500px;
      line-height: 1.7;
    }
    .btn-white {
      background: #fff;
      color: var(--red);
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      padding: 0.8rem 2rem;
      border-radius: 50px;
      border: none;
      transition: all 0.3s;
      text-transform: uppercase;
    }
    .btn-white:hover {
      background: var(--cream);
      color: var(--red);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    /* ── Testimonials ── */
    .testimonials {
      background: var(--cream);
    }
    .testimonial-card {
      background: #fff;
      border-radius: 1.2rem;
      padding: 2rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      height: 100%;
      position: relative;
    }
    .testimonial-card::before {
      content: '"';
      font-family: 'Sriracha', cursive;
      font-size: 4rem;
      color: var(--pink);
      line-height: 1;
      position: absolute;
      top: 0.8rem;
      left: 1.5rem;
    }
    .testimonial-card p {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.7;
      padding-top: 1.5rem;
      font-style: italic;
    }
    .testimonial-author {
      margin-top: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }
    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--pink);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Sriracha', cursive;
      font-size: 1.1rem;
      color: var(--red);
      flex-shrink: 0;
    }
    .testimonial-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--dark);
    }
    .testimonial-role {
      font-size: 0.78rem;
      color: #aaa;
    }

    /* ── Gallery ── */
    .gallery {
      background: #fff;
    }
    .gallery-img {
      border-radius: 1rem;
      width: 100%;
      height: 260px;
      object-fit: cover;
      transition: all 0.4s;
      cursor: pointer;
    }
    .gallery-img:hover {
      transform: scale(1.03);
      box-shadow: 0 12px 30px rgba(205, 46, 58, 0.15);
    }

    /* ── Contact ── */
    .contact {
      background: var(--cream);
    }
    .contact-form {
      background: #fff;
      border-radius: 1.5rem;
      padding: 2.5rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    }
    .form-control, .form-select {
      border: 2px solid #eee;
      border-radius: 0.8rem;
      padding: 0.8rem 1rem;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.2s;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(205, 46, 58, 0.1);
    }
    .form-label {
      font-weight: 500;
      font-size: 0.85rem;
      color: var(--dark);
      margin-bottom: 0.4rem;
    }
    .contact-info-card {
      background: var(--red);
      border-radius: 1.5rem;
      padding: 2.5rem;
      color: #fff;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .contact-info-card h3 {
      color: #fff;
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }
    .contact-info-card p {
      color: rgba(255,255,255,0.8);
      font-size: 0.95rem;
      line-height: 1.7;
    }
    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      margin-top: 1.2rem;
    }
    .contact-info-item svg {
      flex-shrink: 0;
      margin-top: 3px;
    }
    .contact-info-item span {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.9);
    }

    /* ── Footer ── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,0.6);
      padding: 3.5rem 0 2rem;
    }
    footer h5 {
      color: #fff;
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }
    footer p, footer a {
      font-size: 0.88rem;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      line-height: 2;
      transition: color 0.2s;
    }
    footer a:hover {
      color: var(--pink);
    }
    .footer-brand {
      font-family: 'Sriracha', cursive;
      font-size: 1.8rem;
      color: #fff !important;
    }
    .footer-divider {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin: 2rem 0 1.5rem;
    }
    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.6) !important;
      transition: all 0.3s;
      margin-right: 0.5rem;
    }
    .social-link:hover {
      background: var(--red);
      color: #fff !important;
    }

    /* ── Animations ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Responsive ── */
    @media (max-width: 991.98px) {
      .hero { padding: 4rem 0 3rem; min-height: auto; }
      .hero h1 { font-size: 3rem; }
      .hero-img-wrapper { margin-top: 2.5rem; }
      .hero-img-wrapper img { height: 350px; }
      section { padding: 3.5rem 0; }
    }
    @media (max-width: 767.98px) {
      .hero h1 { font-size: 2.5rem; }
      .hero-img-wrapper img { height: 280px; }
      .hero-img-badge { bottom: -15px; left: 10px; font-size: 0.85rem; padding: 0.8rem 1rem; }
      .gallery-img { height: 200px; }
      .contact-form { padding: 1.5rem; }
      .contact-info-card { padding: 1.5rem; margin-top: 1.5rem; }
    }