
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --teal: #5bb8c4;
      --teal-light: #d6eef2;
      --red: #e03a5a;
      --gold: #e8a630;
      --navy: #1a4a5c;
      --cream: #f5f0e8;
      --white: #ffffff;
      --text: #2d3748;
      --text-light: #5a6a7a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Nunito', sans-serif;
      background-color: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(245,240,232,0.95);
      backdrop-filter: blur(8px);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-mark {
      font-family: 'Baloo 2', cursive;
      font-weight: 800;
      font-size: 2rem;
      line-height: 1;
    }
    .logo-mark .v { color: var(--teal); }
    .logo-mark .c { color: var(--gold); }

    .logo-text {
      font-weight: 800;
      font-size: 0.9rem;
      color: var(--navy);
      line-height: 1.2;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--teal); }
    .nav-links a.active { color: var(--red); }

    .btn-enquire {
      background: var(--red);
      color: var(--white);
      padding: 0.55rem 1.3rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .btn-enquire:hover { background: #c02a4a; transform: translateY(-1px); }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 26px;
      height: 3px;
      background: var(--navy);
      border-radius: 3px;
      transition: all 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

    /* Mobile menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 72px;
      left: 0; right: 0;
      background: var(--white);
      padding: 1.5rem 5%;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      z-index: 99;
      flex-direction: column;
      gap: 1rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-weight: 700;
      color: var(--text);
      text-decoration: none;
      font-size: 1rem;
      padding: 0.4rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .mobile-menu a.active { color: var(--red); }
    .mobile-menu .btn-enquire { width: fit-content; margin-top: 0.5rem; }

    /* ── HERO ── */
    .hero {
      position: relative;
      padding: 4rem 5% 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
      min-height: calc(100vh - 72px);
      overflow: hidden;
    }

    /* Blob backgrounds */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(0px);
      pointer-events: none;
      z-index: 0;
    }
    .blob-tl {
      width: 340px; height: 260px;
      background: var(--teal-light);
      top: -80px; left: -80px;
      border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    }
    .blob-tr {
      width: 280px; height: 220px;
      background: #fde9c0;
      top: -40px; right: -60px;
      border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    }
    .blob-bl {
      width: 220px; height: 180px;
      background: var(--teal-light);
      bottom: 80px; left: -40px;
      border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      animation: fadeSlideUp 0.7s ease both;
    }

    .paper-plane {
      position: absolute;
      top: 0; left: 55%;
      font-size: 2rem;
      opacity: 0.55;
      animation: float 3s ease-in-out infinite;
      z-index: 1;
    }

    @keyframes float {
      0%,100% { transform: translateY(0) rotate(-10deg); }
      50% { transform: translateY(-14px) rotate(-5deg); }
    }
    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-title {
      font-family: 'Baloo 2', cursive;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 0.5rem;
    }
    .hero-title .line1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); color: var(--navy); }
    .hero-title .line2 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); color: var(--red); }
    .hero-title .line3 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); color: var(--gold); }

    .heart-divider {
      color: var(--red);
      font-size: 1.1rem;
      margin: 0.6rem 0 1rem;
      display: block;
    }

    .hero-sub {
      font-size: clamp(1rem, 1.8vw, 1.15rem);
      color: var(--text-light);
      line-height: 1.65;
      max-width: 400px;
      margin-bottom: 1.8rem;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--red);
      color: var(--white);
      padding: 0.75rem 1.6rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 14px rgba(224,58,90,0.35);
    }
    .btn-primary:hover { background: #c02a4a; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,58,90,0.45); }

    .btn-outline {
      background: transparent;
      color: var(--navy);
      padding: 0.75rem 1.6rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 2px solid var(--navy);
      transition: all 0.2s;
    }
    .btn-outline:hover { background: var(--navy); color: var(--white); }

    /* Hero image */
    .hero-image {
      position: relative;
      z-index: 1;
      animation: fadeSlideUp 0.7s 0.15s ease both;
    }

    .hero-image img {
      width: 100%;
      max-width: 560px;
      border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
      object-fit: cover;
      aspect-ratio: 1 / 1;
      display: block;
      margin: 0 auto;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }

    /* Decorative dots */
    .dots {
      position: absolute;
      width: 80px; height: 80px;
      background-image: radial-gradient(circle, var(--teal) 2px, transparent 2px);
      background-size: 14px 14px;
      opacity: 0.35;
    }
    .dots-tl { top: 30px; left: 30px; z-index: 0; }
    .dots-br { bottom: 110px; right: 20px; z-index: 0; }

    /* ── FEATURES BAR ── */
    .features {
      position: relative;
      z-index: 2;
      background: var(--white);
      margin: 0 5% 0;
      border-radius: 20px;
      padding: 2rem 3%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    }

    .feature-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.3rem;
    }
    .icon-teal { background: var(--teal-light); }
    .icon-pink { background: #fde8ed; }
    .icon-sand { background: #fdebd0; }
    .icon-blue { background: #e8f4f8; }

    .feature-text h3 {
      font-size: 0.95rem;
      font-weight: 800;
      color: var(--red);
      margin-bottom: 0.2rem;
    }
    .feature-text p {
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.5;
    }

    /* ── TAGLINE FOOTER ── */
    .tagline-bar {
      text-align: center;
      padding: 1.6rem 1rem;
      font-size: clamp(1rem, 2vw, 1.15rem);
      color: var(--navy);
      font-weight: 700;
    }
    .tagline-bar span { color: var(--gold); margin: 0 0.3rem; }

    /* Leaf decoration */
    .leaf {
      position: absolute;
      bottom: 180px;
      left: 0;
      font-size: 4rem;
      opacity: 0.7;
      pointer-events: none;
      z-index: 0;
    }

    /* ── RESPONSIVE ── */

    /* Tablet: 768–1024px */
    @media (max-width: 1024px) {
      .hero {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 3rem 5% 2rem;
        min-height: auto;
      }

      .features {
        grid-template-columns: repeat(2, 1fr);
        margin: 1.5rem 5% 0;
      }

      .nav-links { gap: 1.2rem; }
      .nav-links a { font-size: 0.85rem; }
    }

    /* Mobile: <768px */
    @media (max-width: 767px) {
      nav { height: 64px; }

      .nav-links, .btn-enquire { display: none; }
      .hamburger { display: flex; }

      .hero {
        grid-template-columns: 1fr;
        padding: 2rem 5% 1.5rem;
        gap: 2rem;
        min-height: auto;
        text-align: center;
      }

      .hero-content { order: 2; }
      .hero-image { order: 1; }

      .hero-image img {
        max-width: 280px;
        border-radius: 50%;
      }

      .hero-sub { margin-left: auto; margin-right: auto; }

      .hero-btns { justify-content: center; }

      .paper-plane { left: 50%; top: -10px; }

      .features {
        grid-template-columns: 1fr;
        margin: 1rem 4% 0;
        padding: 1.5rem 5%;
        border-radius: 16px;
        gap: 1.2rem;
      }

      .blob-tl { width: 200px; height: 160px; }
      .blob-tr { width: 160px; height: 130px; }
      .leaf { font-size: 2.5rem; bottom: 300px; }
    }

    /* Small mobile: <480px */
    @media (max-width: 480px) {
      .hero-title .line1,
      .hero-title .line2,
      .hero-title .line3 { font-size: 2.1rem; }

      .btn-primary, .btn-outline { font-size: 0.9rem; padding: 0.65rem 1.3rem; }
    }