/* -- TOKENS -- */
      :root {
        --navy: #0d1b3e;
        --navy2: #162850;
        --navy3: #1e3a6e;
        --gold: #c9973a;
        --gold2: #e5b84a;
        --gold3: #f5d27a;
        --cream: #faf7f0;
        --cream2: #f2ede3;
        --ink: #0d1521;
        --muted: #5a6478;
        --border: #e8e2d6;
        --white: #ffffff;
        --wa: #25d366;
      }
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "DM Sans", sans-serif;
        background: var(--cream);
        color: var(--ink);
        overflow-x: hidden;
        line-height: 1.6;
      }

      /* -- TYPOGRAPHY -- */
      .serif {
        font-family: "Cormorant Garamond", serif;
      }

      /* -- CURSOR -- */
      .cursor {
        width: 8px;
        height: 8px;
        background: var(--gold);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition:
          width 0.2s,
          height 0.2s;
      }
      .cursor-ring {
        width: 32px;
        height: 32px;
        border: 1.5px solid rgba(201, 151, 58, 0.4);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: all 0.15s ease;
      }
      @media (max-width: 768px) {
        .cursor,
        .cursor-ring {
          display: none;
        }
      }

      /* -- PROGRESS BAR -- */
      .progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--gold), var(--gold2));
        z-index: 200;
        transition: width 0.1s;
      }

      /* -- NAV -- */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 0 5vw;
        height: 68px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s;
      }
      nav.scrolled {
        background: rgba(13, 27, 62, 0.97);
        backdrop-filter: blur(16px);
        box-shadow: 0 2px 32px rgba(0, 0, 0, 0.25);
      }
      .nav-logo {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
      }
      .nav-logo-mark {
        width: 38px;
        height: 38px;
        background: var(--gold);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Cormorant Garamond", serif;
        font-size: 20px;
        font-weight: 700;
        color: var(--navy);
        letter-spacing: -1px;
      }
      .nav-brand {
        font-size: 15px;
        font-weight: 600;
        color: var(--white);
        letter-spacing: 0.3px;
      }
      .nav-brand span {
        color: var(--gold);
      }
      .nav-links {
        display: flex;
        gap: 32px;
        list-style: none;
      }
      .nav-links a {
        font-size: 13px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        letter-spacing: 0.3px;
        transition: color 0.2s;
      }
      .nav-links a:hover {
        color: var(--gold);
      }
      .nav-enquire {
        display: flex;
        align-items: center;
        gap: 7px;
        background: var(--gold);
        color: var(--navy);
        font-size: 13px;
        font-weight: 700;
        padding: 9px 20px;
        border-radius: 7px;
        text-decoration: none;
        transition: all 0.2s;
        letter-spacing: 0.3px;
      }
      .nav-enquire:hover {
        background: var(--gold2);
        transform: translateY(-1px);
      }
      .nav-enquire svg {
        width: 14px;
        height: 14px;
      }
      .nav-ham {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
      }
      .nav-ham span {
        width: 21px;
        height: 1.5px;
        background: white;
        border-radius: 2px;
        transition: all 0.2s;
      }
      #mob-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        background: rgba(13, 27, 62, 0.98);
      }
      #mob-menu.open {
        max-height: 360px;
      }
      #mob-menu a {
        display: block;
        padding: 13px 5vw;
        font-size: 14px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      #mob-menu a:hover {
        color: var(--gold);
      }

      /* -- WA FLOAT -- */
      .wa-float {
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 50;
        display: flex;
        align-items: center;
        gap: 10px;
        background: var(--wa);
        color: white;
        font-weight: 700;
        font-size: 13px;
        padding: 12px 18px;
        border-radius: 50px;
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
        text-decoration: none;
        transition: all 0.2s;
        animation: waPulse 3s ease-in-out infinite;
      }
      @keyframes waPulse {
        0%,
        100% {
          box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
        }
        50% {
          box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
        }
      }
      .wa-float:hover {
        transform: translateY(-3px);
      }
      .wa-float svg {
        width: 20px;
        height: 20px;
      }
      .wa-float span {
        white-space: nowrap;
      }

      /* -- HERO -- */
      .hero {
        min-height: 100vh;
        background: var(--navy);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding: 100px 5vw 60px;
      }
      .hero-grid-lines {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(201, 151, 58, 0.06) 1px, transparent 1px),
          linear-gradient(90deg, rgba(201, 151, 58, 0.06) 1px, transparent 1px);
        background-size: 64px 64px;
        pointer-events: none;
      }
      .hero-glow {
        position: absolute;
        top: -200px;
        right: -200px;
        width: 700px;
        height: 700px;
        background: radial-gradient(
          circle,
          rgba(201, 151, 58, 0.12) 0%,
          transparent 65%
        );
        border-radius: 50%;
        pointer-events: none;
      }
      .hero-glow2 {
        position: absolute;
        bottom: -200px;
        left: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(
          circle,
          rgba(30, 58, 110, 0.8) 0%,
          transparent 70%
        );
        border-radius: 50%;
        pointer-events: none;
      }

      .hero-inner {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
      }

      /* Left */
      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
      }
      .eyebrow-line {
        width: 36px;
        height: 1px;
        background: var(--gold);
      }
      .eyebrow-text {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--gold);
      }
      .hero-h1 {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(44px, 6vw, 72px);
        line-height: 1.05;
        letter-spacing: -0.5px;
        color: var(--white);
        margin-bottom: 6px;
      }
      .hero-h1 em {
        font-style: italic;
        color: var(--gold);
      }
      .hero-sub-h {
        font-size: clamp(16px, 2vw, 21px);
        color: rgba(255, 255, 255, 0.5);
        font-weight: 300;
        margin-bottom: 28px;
      }
      .hero-desc {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.65);
        line-height: 1.75;
        max-width: 460px;
        margin-bottom: 40px;
        font-weight: 300;
      }
      .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 48px;
      }
      .btn-gold {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--gold);
        color: var(--navy);
        font-weight: 700;
        font-size: 14px;
        padding: 14px 28px;
        border-radius: 9px;
        text-decoration: none;
        transition: all 0.2s;
        letter-spacing: 0.2px;
      }
      .btn-gold:hover {
        background: var(--gold2);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(201, 151, 58, 0.3);
      }
      .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: rgba(255, 255, 255, 0.85);
        font-weight: 600;
        font-size: 14px;
        padding: 13px 28px;
        border-radius: 9px;
        border: 1.5px solid rgba(255, 255, 255, 0.2);
        text-decoration: none;
        transition: all 0.2s;
      }
      .btn-ghost:hover {
        border-color: var(--gold);
        color: var(--gold);
      }
      .hero-stats {
        display: flex;
        gap: 40px;
      }
      .hero-stat-num {
        font-family: "Cormorant Garamond", serif;
        font-size: 40px;
        font-weight: 700;
        color: var(--gold);
        line-height: 1;
      }
      .hero-stat-num span {
        font-size: 22px;
      }
      .hero-stat-label {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.45);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-top: 2px;
      }

      /* Right: product stack */
      .hero-right {
        position: relative;
        display: flex;
        justify-content: center;
      }
      .hero-img-main {
        width: 100%;
        max-width: 420px;
        height: auto; /*  keeps full image */
        object-fit: contain; /*  no crop */
        border-radius: 16px;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
      }
      .hero-card-float {
        position: absolute;
        bottom: -20px;
        left: -30px;
        background: var(--cream);
        border-radius: 14px;
        padding: 16px 20px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
        max-width: 180px;
        animation: floatCard 5s ease-in-out infinite;
      }
      @keyframes floatCard {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }
      .hero-card-float .cf-num {
        font-family: "Cormorant Garamond", serif;
        font-size: 30px;
        font-weight: 700;
        color: var(--navy);
        line-height: 1;
      }
      .hero-card-float .cf-label {
        font-size: 11px;
        color: var(--muted);
        font-weight: 500;
        margin-top: 3px;
      }
      .hero-badge-float {
        position: absolute;
        top: 20px;
        right: -20px;
        background: var(--navy2);
        border: 1px solid rgba(201, 151, 58, 0.3);
        color: var(--gold);
        font-size: 11px;
        font-weight: 700;
        padding: 10px 14px;
        border-radius: 10px;
        text-align: center;
        animation: floatCard 4s ease-in-out infinite 0.8s;
      }
      .hero-badge-float div:first-child {
        font-size: 20px;
        margin-bottom: 2px;
      }

      /* -- TICKER -- */
      .ticker {
        background: var(--gold);
        padding: 12px 0;
        overflow: hidden;
      }
      .ticker-inner {
        display: flex;
        gap: 48px;
        animation: ticker 20s linear infinite;
        white-space: nowrap;
      }
      @keyframes ticker {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }
      .ticker-item {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--navy);
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .ticker-dot {
        width: 5px;
        height: 5px;
        background: var(--navy);
        border-radius: 50%;
        opacity: 0.4;
      }

      /* -- SECTION BASE -- */
      section {
        padding: 88px 5vw;
      }
      .sec-inner {
        max-width: 1200px;
        margin: 0 auto;
      }
      .sec-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
      }
      .sec-eyebrow-line {
        width: 28px;
        height: 1.5px;
        background: var(--gold);
      }
      .sec-eyebrow-text {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--gold);
      }
      .sec-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(32px, 4.5vw, 52px);
        color: var(--navy);
        line-height: 1.12;
        letter-spacing: -0.3px;
        margin-bottom: 14px;
      }
      .sec-sub {
        font-size: 16px;
        color: var(--muted);
        max-width: 520px;
        line-height: 1.7;
        font-weight: 300;
      }

      /* -- PRODUCTS -- */
      .products-bg {
        background: var(--white);
      }
      .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 56px;
      }
      .product-card {
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid var(--border);
        background: var(--cream);
        transition:
          transform 0.25s,
          box-shadow 0.25s,
          border-color 0.25s;
        cursor: default;
      }
      .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 48px rgba(13, 27, 62, 0.1);
        border-color: var(--gold);
      }
      .product-img-wrap {
        position: relative;
        aspect-ratio: 4/3;
        overflow: hidden;
        background: #e8e2d8;
      }
      .product-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      .product-card:hover .product-img-wrap img {
        transform: scale(1.06);
      }
      .product-cat-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: var(--navy);
        color: var(--gold);
        font-size: 10px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 6px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }
      .product-body {
        padding: 20px 22px;
      }
      .product-name {
        font-family: "Cormorant Garamond", serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 7px;
      }
      .product-desc {
        font-size: 13px;
        color: var(--muted);
        line-height: 1.65;
        margin-bottom: 14px;
      }
      .product-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
      }
      .product-tag {
        font-size: 11px;
        font-weight: 600;
        background: var(--cream2);
        color: var(--navy3);
        padding: 4px 10px;
        border-radius: 6px;
        border: 1px solid var(--border);
      }
      .product-enquire {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 14px;
        font-size: 12px;
        font-weight: 700;
        color: var(--gold);
        text-decoration: none;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        transition: gap 0.2s;
      }
      .product-enquire:hover {
        gap: 10px;
      }
      .product-enquire svg {
        width: 14px;
        height: 14px;
      }

      /* -- WHY US -- */
      .why-bg {
        background: var(--navy);
      }
      .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        margin-top: 56px;
      }
      .why-card {
        border: 1px solid rgba(201, 151, 58, 0.2);
        border-radius: 14px;
        padding: 28px 24px;
        transition:
          border-color 0.2s,
          background 0.2s;
      }
      .why-card:hover {
        border-color: rgba(201, 151, 58, 0.5);
        background: rgba(201, 151, 58, 0.04);
      }
      .why-icon {
        width: 48px;
        height: 48px;
        background: rgba(201, 151, 58, 0.12);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
      }
      .why-icon svg {
        width: 22px;
        height: 22px;
        color: var(--gold);
      }
      .why-title {
        font-size: 15px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 8px;
      }
      .why-text {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.65;
        font-weight: 300;
      }

      /* -- ABOUT -- */
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .about-img-wrap {
        position: relative;
      }
      .about-img-stack {
        position: relative;
        height: 480px;
      }
      .about-img-main {
        width: 75%;
        aspect-ratio: 3/4;
        object-fit: cover;
        border-radius: 16px;
        position: absolute;
        top: 0;
        right: 0;
        box-shadow: 0 24px 56px rgba(0, 0, 0, 0.15);
      }
      .about-img-accent {
        width: 55%;
        aspect-ratio: 1;
        object-fit: cover;
        border-radius: 12px;
        position: absolute;
        bottom: 0;
        left: 0;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        border: 4px solid var(--cream);
      }
      .about-year-badge {
        position: absolute;
        top: 32px;
        left: -16px;
        background: var(--navy);
        color: var(--gold);
        text-align: center;
        padding: 14px 18px;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(13, 27, 62, 0.15);
      }
      .about-year-badge .year {
        font-family: "Cormorant Garamond", serif;
        font-size: 34px;
        font-weight: 700;
        line-height: 1;
      }
      .about-year-badge .since {
        font-size: 10px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 2px;
      }
      .about-facts {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-top: 32px;
      }
      .about-fact {
        padding: 16px 18px;
        background: var(--cream2);
        border-radius: 12px;
        border: 1px solid var(--border);
      }
      .about-fact-num {
        font-family: "Cormorant Garamond", serif;
        font-size: 28px;
        font-weight: 700;
        color: var(--navy);
        line-height: 1;
        margin-bottom: 3px;
      }
      .about-fact-label {
        font-size: 12px;
        color: var(--muted);
        font-weight: 500;
      }
      .about-text {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.8;
        margin-bottom: 18px;
        font-weight: 300;
      }
      .about-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
      }
      .about-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: var(--ink);
      }
      .about-check {
        width: 20px;
        height: 20px;
        background: var(--gold);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .about-check svg {
        width: 11px;
        height: 11px;
        color: var(--navy);
      }

      /* -- CLIENTS (school type badges) -- */
      .clients-bg {
        background: var(--cream2);
      }
      .clients-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 40px;
      }
      .client-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        background: var(--white);
        border: 1px solid var(--border);
        padding: 12px 20px;
        border-radius: 10px;
        font-size: 13px;
        font-weight: 600;
        color: var(--navy);
        transition: all 0.2s;
      }
      .client-badge:hover {
        border-color: var(--gold);
        background: var(--cream);
        transform: translateY(-2px);
      }
      .client-badge svg {
        width: 16px;
        height: 16px;
        color: var(--gold);
      }

      /* -- TESTIMONIALS -- */
      .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 48px;
      }
      .testi-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 26px;
        transition:
          transform 0.2s,
          box-shadow 0.2s;
      }
      .testi-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
      }
      .testi-stars {
        color: var(--gold);
        font-size: 14px;
        letter-spacing: 2px;
        margin-bottom: 14px;
      }
      .testi-quote {
        font-family: "Cormorant Garamond", serif;
        font-size: 18px;
        line-height: 1.6;
        color: var(--navy);
        font-style: italic;
        margin-bottom: 18px;
      }
      .testi-author {
        display: flex;
        align-items: center;
        gap: 12px;
        padding-top: 14px;
        border-top: 1px solid var(--border);
      }
      .testi-avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: var(--navy);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Cormorant Garamond", serif;
        font-size: 16px;
        font-weight: 700;
        color: var(--gold);
        flex-shrink: 0;
      }
      .testi-name {
        font-size: 13px;
        font-weight: 700;
        color: var(--ink);
      }
      .testi-role {
        font-size: 11px;
        color: var(--muted);
      }

      /* -- CTA SECTION -- */
      .cta-section {
        background: var(--navy);
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta-section::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          rgba(201, 151, 58, 0.12) 0%,
          transparent 65%
        );
        border-radius: 50%;
        pointer-events: none;
      }
      .cta-title {
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(36px, 5vw, 58px);
        color: var(--white);
        line-height: 1.1;
        margin-bottom: 16px;
        position: relative;
      }
      .cta-title em {
        font-style: italic;
        color: var(--gold);
      }
      .cta-sub {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.55);
        max-width: 520px;
        margin: 0 auto 40px;
        line-height: 1.7;
        font-weight: 300;
        position: relative;
      }
      .cta-actions {
        display: flex;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
        position: relative;
      }
      .cta-trust {
        margin-top: 28px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.3);
        position: relative;
        letter-spacing: 0.05em;
      }

      /* -- CONTACT -- */
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
      }
      .contact-info-list {
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 0;
        border-bottom: 1px solid var(--border);
      }
      .contact-item:last-child {
        border-bottom: none;
      }
      .contact-icon-wrap {
        width: 44px;
        height: 44px;
        background: var(--cream2);
        border: 1px solid var(--border);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .contact-icon-wrap svg {
        width: 18px;
        height: 18px;
        color: var(--navy3);
      }
      .contact-label {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--muted);
        margin-bottom: 4px;
      }
      .contact-value {
        font-size: 15px;
        font-weight: 600;
        color: var(--ink);
      }
      .contact-value a {
        color: var(--navy3);
        text-decoration: none;
      }
      .contact-value a:hover {
        color: var(--gold);
      }
      .contact-form {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 36px;
      }
      .form-title {
        font-family: "Cormorant Garamond", serif;
        font-size: 26px;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 6px;
      }
      .form-sub {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 28px;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        margin-bottom: 14px;
      }
      .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .form-group.full {
        grid-column: span 2;
      }
      .form-label {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: var(--muted);
      }
      .form-input,
      .form-select,
      .form-textarea {
        font-family: "DM Sans", sans-serif;
        font-size: 14px;
        color: var(--ink);
        border: 1.5px solid var(--border);
        border-radius: 9px;
        padding: 11px 14px;
        background: var(--cream);
        outline: none;
        transition: border-color 0.15s;
        width: 100%;
      }
      .form-input:focus,
      .form-select:focus,
      .form-textarea:focus {
        border-color: var(--gold);
      }
      .form-textarea {
        min-height: 110px;
        resize: vertical;
      }
      .form-btn {
        width: 100%;
        padding: 14px;
        background: var(--navy);
        color: white;
        font-family: "DM Sans", sans-serif;
        font-size: 15px;
        font-weight: 700;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition:
          background 0.2s,
          transform 0.15s;
        margin-top: 6px;
      }
      .form-btn:hover {
        background: var(--navy3);
        transform: translateY(-1px);
      }
      #form-ok {
        display: none;
        text-align: center;
        padding: 20px;
        background: #f0fdf4;
        border: 1px solid #bbf7d0;
        border-radius: 10px;
        color: #15803d;
        font-weight: 600;
        font-size: 14px;
        margin-top: 8px;
      }

      /* -- MAP -- */
      .map-wrap {
        border-radius: 14px;
        overflow: hidden;
        border: 1px solid var(--border);
        height: 200px;
        margin-top: 20px;
      }
      .map-wrap iframe {
        width: 100%;
        height: 100%;
        border: none;
      }

      /* -- FOOTER -- */
      footer {
        background: var(--navy);
        padding: 56px 5vw 28px;
        color: rgba(255, 255, 255, 0.5);
      }
      .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        max-width: 1200px;
        margin: 0 auto 40px;
      }
      .footer-logo-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
      }
      .footer-brand {
        font-size: 17px;
        font-weight: 700;
        color: white;
      }
      .footer-brand span {
        color: var(--gold);
      }
      .footer-desc {
        font-size: 13px;
        line-height: 1.75;
        max-width: 260px;
        margin-bottom: 20px;
      }
      .footer-gold-line {
        width: 40px;
        height: 2px;
        background: var(--gold);
        border-radius: 2px;
      }
      .footer-col h4 {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 18px;
      }
      .footer-col a {
        display: block;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        text-decoration: none;
        margin-bottom: 10px;
        transition: color 0.2s;
      }
      .footer-col a:hover {
        color: var(--gold);
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        max-width: 1200px;
        margin: 0 auto;
      }
      .footer-bottom a {
        color: rgba(255, 255, 255, 0.3);
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-bottom a:hover {
        color: var(--gold);
      }

      /* -- FADE IN -- */
      .fade {
        opacity: 0;
        transform: translateY(22px);
        transition:
          opacity 0.65s ease,
          transform 0.65s ease;
      }
      .fade.in {
        opacity: 1;
        transform: translateY(0);
      }

      /* -- RESPONSIVE -- */
      @media (max-width: 1024px) {
        .products-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .why-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .about-grid {
          grid-template-columns: 1fr;
        }
        .about-img-stack {
          display: none;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 768px) {
        .nav-links,
        .nav-enquire {
          display: none;
        }
        .nav-ham {
          display: flex;
        }
        .hero-inner {
          grid-template-columns: 1fr;
        }
        .hero-right {
          display: none;
        }
        .products-grid,
        .why-grid,
        .testi-grid,
        .contact-grid {
          grid-template-columns: 1fr;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
        .form-group.full {
          grid-column: span 1;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
        }
        .footer-bottom {
          flex-direction: column;
          gap: 8px;
          text-align: center;
        }
        .hero-stats {
          gap: 28px;
        }
      }
      @media (max-width: 480px) {
        .footer-top {
          grid-template-columns: 1fr;
        }
        .hero-stats {
          flex-wrap: wrap;
          gap: 20px;
        }
      }

      /* -- UTILS / NEW CLASSES -- */
      .section-white {
        background: var(--white);
      }
      .section-cream {
        background: var(--cream);
      }
      .section-center {
        text-align: center;
      }
      .sec-eyebrow-center {
        justify-content: center;
      }
      .sec-eyebrow-line-soft {
        background: rgba(201, 151, 58, 0.5);
      }
      .sec-title-light {
        color: var(--white);
        text-align: center;
      }
      .hero-badge-title {
        font-size: 11px;
        font-weight: 700;
        color: rgba(201, 151, 58, 1);
        margin-top: 2px;
      }
      .hero-badge-sub {
        font-size: 10px;
        color: rgba(255, 255, 255, 0.4);
      }
      .btn-lg {
        font-size: 15px;
        padding: 15px 32px;
      }
      .btn-ghost-lg {
        font-size: 15px;
        padding: 14px 32px;
        border-color: rgba(255, 255, 255, 0.25);
      }
      .map-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 10px;
        font-size: 13px;
        font-weight: 700;
        color: var(--navy3);
        text-decoration: none;
      }
      .form-group-tight {
        margin-bottom: 14px;
      }
      .form-footnote {
        text-align: center;
        margin-top: 12px;
        font-size: 12px;
        color: var(--muted);
      }
      .form-whatsapp {
        color: var(--gold);
        font-weight: 700;
      }
      .contact-muted {
        font-size: 12px;
        color: var(--muted);
      }

      .product-card--special {
        background: var(--navy);
        border-color: rgba(201, 151, 58, 0.25);
      }
      .product-card--special .product-name,
      .product-card--special .product-desc {
        color: rgba(255, 255, 255, 0.85);
      }
      .product-card--special .product-enquire {
        color: var(--gold);
      }
      .product-special {
        background: rgba(201, 151, 58, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
      }
      .product-special-inner {
        text-align: center;
        padding: 40px 20px;
      }
      .product-special-mark {
        font-family: "Cormorant Garamond", serif;
        font-size: 48px;
        color: var(--gold);
        line-height: 1;
      }
      .product-special-text {
        color: rgba(255, 255, 255, 0.5);
        font-size: 13px;
        margin-top: 10px;
      }
      .product-img-wrap .product-cat-badge:empty {
        display: none;
      }

      .about-text-wrap .about-text {
        margin-bottom: 18px;
      }

      .seo-section {
        padding: 40px 5vw 0;
        background: var(--cream);
      }
      .seo-text {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.7;
        text-align: center;
        max-width: 900px;
        margin: 0 auto 40px;
      }

      .footer-columns {
        display: contents;
      }
