    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0a1628;
      --navy-mid: #112240;
      --gold: #c9a84c;
      --gold-light: #e8c96a;
      --gold-pale: #f5e9c4;
      --white: #ffffff;
      --off-white: #f8f6f1;
      --text-dark: #1a1a2e;
      --text-mid: #4a5568;
      --text-light: #718096;
      --border: #e2d9c5;
      --shadow: 0 4px 24px rgba(10,22,40,0.10);
      --shadow-lg: 0 12px 48px rgba(10,22,40,0.18);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      background: var(--white);
      line-height: 1.7;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(10,22,40,0.97);
      backdrop-filter: blur(10px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw;
      height: 70px;
      border-bottom: 1px solid rgba(201,168,76,0.2);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 12px;
      text-decoration: none;
    }
    .nav-logo-icon {
      width: 40px; height: 40px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 18px; color: var(--navy);
    }
    .nav-logo-text {
      font-size: 13px; font-weight: 700; color: var(--white);
      line-height: 1.3; letter-spacing: 0.3px;
    }
    .nav-logo-text span { color: var(--gold); display: block; font-size: 10px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }
    .nav-links {
      display: flex; gap: 28px; list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.75); text-decoration: none;
      font-size: 13.5px; font-weight: 500; letter-spacing: 0.3px;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy) !important;
      padding: 9px 20px; border-radius: 6px;
      font-weight: 700 !important;
    }
    .nav-cta:hover { opacity: 0.9; color: var(--navy) !important; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a5c 100%);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding: 70px 5vw 0;
    }
    .hero-bg-pattern {
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(201,168,76,0.04) 0%, transparent 40%);
      pointer-events: none;
    }
    .hero-grid-lines {
      position: absolute; inset: 0; opacity: 0.04;
      background-image:
        linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-content {
      position: relative; z-index: 2;
      max-width: 750px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(201,168,76,0.12);
      border: 1px solid rgba(201,168,76,0.3);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px; font-weight: 600; color: var(--gold);
      letter-spacing: 1px; text-transform: uppercase;
      margin-bottom: 32px;
    }
    .hero-badge::before {
      content: '●'; font-size: 8px; animation: pulse 2s infinite;
    }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 5.5vw, 68px);
      font-weight: 700;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 24px;
    }
    .hero-title .gold { color: var(--gold); }
    .hero-subtitle {
      font-size: clamp(15px, 1.8vw, 18px);
      color: rgba(255,255,255,0.7);
      margin-bottom: 48px;
      max-width: 580px;
      line-height: 1.7;
    }
    .hero-subtitle strong { color: var(--gold-light); }
    .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--navy);
      padding: 15px 32px; border-radius: 8px;
      font-weight: 700; font-size: 15px;
      text-decoration: none; border: none; cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(201,168,76,0.35);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,168,76,0.45); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 15px 32px; border-radius: 8px;
      font-weight: 600; font-size: 15px;
      text-decoration: none; border: 2px solid rgba(255,255,255,0.3); cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
    .hero-stats {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: rgba(255,255,255,0.04);
      border-top: 1px solid rgba(201,168,76,0.15);
      display: flex; justify-content: center;
      padding: 28px 5vw;
      gap: 60px;
    }
    .stat { text-align: center; }
    .stat-num { font-size: 26px; font-weight: 800; color: var(--gold); }
    .stat-label { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }

    /* ── SECTIONS COMMON ── */
    section { padding: 100px 5vw; }
    .section-label {
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 700; color: var(--navy);
      line-height: 1.2; margin-bottom: 16px;
    }
    .section-sub {
      font-size: 17px; color: var(--text-mid);
      max-width: 600px; line-height: 1.7; margin-bottom: 60px;
    }
    .divider {
      width: 60px; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      border-radius: 2px; margin-bottom: 20px;
    }

    /* ── ABOUT ── */
    #about { background: var(--off-white); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    .about-visual {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      border-radius: 16px;
      padding: 48px 40px;
      position: relative; overflow: hidden;
    }
    .about-visual::before {
      content: '';
      position: absolute; top: -40px; right: -40px;
      width: 200px; height: 200px;
      border-radius: 50%;
      background: rgba(201,168,76,0.08);
    }
    .about-visual-icon {
      font-size: 56px; margin-bottom: 24px;
    }
    .about-visual h3 {
      font-family: 'Playfair Display', serif;
      font-size: 26px; color: var(--white); margin-bottom: 16px;
    }
    .about-visual p { color: rgba(255,255,255,0.65); font-size: 14.5px; line-height: 1.7; }
    .about-tag {
      display: inline-block;
      background: rgba(201,168,76,0.15);
      border: 1px solid rgba(201,168,76,0.3);
      color: var(--gold); font-size: 12px; font-weight: 600;
      padding: 4px 12px; border-radius: 100px;
      margin-top: 24px;
    }
    .about-text p { color: var(--text-mid); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
    .about-highlight {
      background: var(--white);
      border-left: 4px solid var(--gold);
      border-radius: 0 12px 12px 0;
      padding: 20px 24px;
      margin-top: 32px;
      box-shadow: var(--shadow);
    }
    .about-highlight strong { color: var(--navy); font-size: 15px; }
    .about-highlight p { font-size: 14px; color: var(--text-mid); margin: 0; margin-top: 4px; }

    /* ── SERVICES ── */
    #services { background: var(--white); }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .service-card {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 36px 30px;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      position: relative; overflow: hidden;
    }
    .service-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold-light));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.3s;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
    .service-card:hover::after { transform: scaleX(1); }
    .service-icon {
      width: 52px; height: 52px;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; margin-bottom: 20px;
    }
    .service-card h3 {
      font-size: 17px; font-weight: 700; color: var(--navy);
      margin-bottom: 12px;
    }
    .service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

    /* ── HOW WE WORK ── */
    #process { background: var(--navy); }
    #process .section-title { color: var(--white); }
    #process .section-sub { color: rgba(255,255,255,0.6); }
    #process .section-label { color: var(--gold); }
    .steps-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
      background: rgba(255,255,255,0.06);
      border-radius: 16px; overflow: hidden;
      border: 1px solid rgba(201,168,76,0.15);
    }
    .step {
      background: rgba(255,255,255,0.03);
      padding: 40px 32px;
      position: relative;
      transition: background 0.25s;
    }
    .step:hover { background: rgba(201,168,76,0.06); }
    .step-num {
      font-size: 48px; font-weight: 800;
      color: rgba(201,168,76,0.15);
      line-height: 1; margin-bottom: 16px;
    }
    .step h3 {
      font-size: 16px; font-weight: 700; color: var(--white);
      margin-bottom: 10px;
    }
    .step p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.7; }
    .step-icon {
      font-size: 28px; margin-bottom: 8px;
    }

    /* ── COMMODITIES ── */
    #commodities { background: var(--off-white); }
    .commodity-intro {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 20px 24px;
      margin-bottom: 40px;
      display: flex; align-items: center; gap: 16px;
      box-shadow: var(--shadow);
    }
    .commodity-intro span { font-size: 24px; }
    .commodity-intro p { font-size: 15px; color: var(--text-mid); }
    .commodity-intro strong { color: var(--navy); }
    .commodity-tabs {
      display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px;
    }
    .tab-btn {
      padding: 9px 20px; border-radius: 100px;
      font-size: 13px; font-weight: 600;
      border: 1.5px solid var(--border);
      background: var(--white); color: var(--text-mid);
      cursor: pointer; transition: all 0.2s;
    }
    .tab-btn.active, .tab-btn:hover {
      background: var(--navy); color: var(--white); border-color: var(--navy);
    }
    .commodity-table {
      width: 100%; border-collapse: collapse;
      background: var(--white); border-radius: 16px;
      overflow: hidden; box-shadow: var(--shadow);
    }
    .commodity-table th {
      background: var(--navy); color: var(--gold);
      padding: 18px 24px; text-align: left;
      font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .commodity-table td {
      padding: 18px 24px; border-bottom: 1px solid var(--border);
      font-size: 14.5px; vertical-align: top;
    }
    .commodity-table tr:last-child td { border-bottom: none; }
    .commodity-table tr:hover td { background: var(--off-white); }
    .commodity-table td:first-child { font-weight: 700; color: var(--navy); }
    .commodity-table td:nth-child(2) { color: var(--text-mid); }
    .commodity-table td:last-child { color: var(--text-light); font-size: 13.5px; }

    /* ── WHY US ── */
    #why { background: var(--white); }
    .why-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .why-card {
      background: var(--off-white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 32px 28px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .why-card-icon { font-size: 36px; margin-bottom: 16px; }
    .why-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .why-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

    /* ── MISSION / VISION / VALUES ── */
    #mvv { background: var(--navy); }
    #mvv .section-title { color: var(--white); }
    #mvv .section-label { color: var(--gold); }
    .mvv-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
      background: rgba(255,255,255,0.06); border-radius: 16px; overflow: hidden;
      border: 1px solid rgba(201,168,76,0.15);
    }
    .mvv-card {
      background: rgba(255,255,255,0.03);
      padding: 48px 36px;
    }
    .mvv-label {
      font-size: 11px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 20px;
    }
    .mvv-card p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.8; }
    .values-list {
      list-style: none; margin-top: 8px;
    }
    .values-list li {
      color: rgba(255,255,255,0.75); font-size: 15px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      display: flex; align-items: center; gap: 10px;
    }
    .values-list li::before { content: '◆'; color: var(--gold); font-size: 8px; }
    .values-list li:last-child { border-bottom: none; }

    /* ── CONTACT ── */
    #contact { background: var(--off-white); }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
    }
    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 26px; color: var(--navy); margin-bottom: 24px;
    }
    .contact-detail {
      display: flex; gap: 16px; align-items: flex-start;
      margin-bottom: 24px;
    }
    .contact-detail-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--navy); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .contact-detail-text label {
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 1px; color: var(--gold); display: block; margin-bottom: 4px;
    }
    .contact-detail-text a, .contact-detail-text p {
      font-size: 15px; color: var(--text-dark); text-decoration: none; line-height: 1.5;
    }
    .contact-detail-text a:hover { color: var(--gold); }

    .enquiry-form {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 48px 40px;
      box-shadow: var(--shadow-lg);
    }
    .enquiry-form h3 {
      font-size: 20px; font-weight: 700; color: var(--navy);
      margin-bottom: 28px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 18px; }
    .form-group label {
      display: block; font-size: 12.5px; font-weight: 600;
      color: var(--navy); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      font-size: 14.5px; font-family: 'Inter', sans-serif;
      color: var(--text-dark); background: var(--off-white);
      outline: none; transition: border-color 0.2s, background 0.2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--gold); background: var(--white);
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-group select { cursor: pointer; }
    .form-submit {
      width: 100%; padding: 16px;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      color: var(--white); font-size: 15px; font-weight: 700;
      border: none; border-radius: 10px; cursor: pointer;
      transition: opacity 0.2s, transform 0.2s;
      letter-spacing: 0.5px;
      margin-top: 8px;
    }
    .form-submit:hover { opacity: 0.9; transform: translateY(-1px); }
    .form-note {
      text-align: center; font-size: 12.5px; color: var(--text-light);
      margin-top: 12px;
    }

    /* ── FOOTER ── */
    footer {
      background: #060e1c;
      padding: 60px 5vw 30px;
      border-top: 1px solid rgba(201,168,76,0.15);
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand p {
      font-size: 13.5px; color: rgba(255,255,255,0.45);
      line-height: 1.8; margin-top: 16px; max-width: 280px;
    }
    .footer-col h4 {
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 13.5px; color: rgba(255,255,255,0.5);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-col ul li 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;
    }
    .footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }
    .footer-badge {
      display: flex; align-items: center; gap: 8px;
      font-size: 12px; color: rgba(255,255,255,0.3);
    }
    .footer-badge span { color: var(--gold); font-weight: 600; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .about-grid, .contact-grid { grid-template-columns: 1fr; }
      .services-grid, .steps-grid, .why-grid, .mvv-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .nav-links { display: none; }
      .hero-stats { gap: 24px; }
    }
    @media (max-width: 600px) {
      .services-grid, .steps-grid, .why-grid, .mvv-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; }
      .enquiry-form { padding: 32px 24px; }
    }
