:root {
    --gold: #c8a96e;
    --gold-light: #e8cc99;
    --dark: #fff;
    --dark2: #fff;
    --dark3: #fff;
    --text: #e8e2d8;
    --text-muted: #9a9080;
    --border: rgba(200,169,110,0.18);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 160px;
    background: #fff !important;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .nav-brand img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .nav-name {
    font-family: 'geometric', sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #084387;
    letter-spacing: 0.02em;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-name span {
    display: block;
    font-size: 18px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #042c71;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
  }

  .nav-links a {
    text-decoration: none;
    color: #084387;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.25s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }

  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  /* ── HERO SLIDER ── */
  #home {
    position: relative;
    height: 60vh;
    overflow: hidden;
    margin-top: 160px;
    padding: 0;
  }

  .slider {
    position: relative;
    width: 100%; height: 100%;
  }

  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide.active { opacity: 1; }

  .slide-bg {
    position: absolute;
    inset: 0;
    background-size: 100% 100%;
    background-position: center center;
    transform: scale(1.05);
    transition: transform 8s ease;
    background-repeat: no-repeat;
    background-color: #000;
  }

  .slide.active .slide-bg { transform: scale(1); }

  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.3) 100%);
  }

  .slide-content {
    position: relative;
    z-index: 2;
    padding: 0 80px;
    max-width: 780px;
    width: 100%;
    text-align: center;
  }

  .slide-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease 0.3s;
  }

  .slide.active .slide-tag {
    opacity: 1; transform: translateY(0);
  }

  .slide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
  }

  .slide.active .slide-title { opacity: 1; transform: translateY(0); }

  .slide-sub {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease 0.7s;
  }

  .slide.active .slide-sub { opacity: 1; transform: translateY(0); }

  .btn {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease 0.9s;
  }

  .slide.active .btn { opacity: 1; transform: translateY(0); }
  .btn:hover { background: var(--gold); color: var(--dark); }

  /* ── SLIDER ARROWS ── */
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(200, 169, 110, 0.4);
    color: var(--gold);
    font-size: 22px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, transform 0.2s;
    line-height: 1;
  }

  .slider-arrow:hover {
    background: rgba(200, 169, 110, 0.25);
    border-color: var(--gold);
  }

  .slider-prev { left: 20px; }
  .slider-next { right: 20px; }

  @media (max-width: 480px) {
    .slider-arrow { width: 36px; height: 36px; font-size: 16px; }
    .slider-prev { left: 8px; }
    .slider-next { right: 8px; }
  }

  .slider-dots {
    position: absolute;
    bottom: 36px;
    display: flex;
    gap: 10px;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
  }

  .dot {
    width: 28px; height: 2px;
    background: rgba(200,169,110,0.3);
    cursor: pointer;
    transition: all 0.3s;
  }

  .dot.active {
    background: var(--gold);
    width: 48px;
  }

  /* ── SECTION BASE ── */
  section { padding: 50px 8px; }

  .section-tag {
    font-size: 31px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #0a001a;
    margin-bottom: 2px;
    font-weight: 500;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 0.35;
    margin-bottom: 8px;
  }

  .section-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #042c71;
    max-width: 640px;
  }

  .divider {
    width: 48px; height: 2px;
    background: var(--gold);
    margin: 14px 0;
  }

  /* ── HOME PRODUCTS ── */
  #home-products {
    background: var(--dark2);
    border-top: 1px solid var(--border);
  }

  #home-products .section-title,
  #products .section-title {
    font-size: clamp(38px, 5vw, 64px);
  }

  .products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .product-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
  }

  .product-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
  }

  /* ── EQUAL PRODUCT IMAGE SIZES ── */
  .product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
  }

  .full-product-img {
    width: 200px;
    height: 220px;
    min-height: 220px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .full-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-muted);
  }

  .product-img-placeholder .icon {
    font-size: 32px;
    opacity: 0.4;
  }

  .p1-bg { background: linear-gradient(135deg, #1a1200, #332500); }
  .p2-bg { background: linear-gradient(135deg, #001219, #00232e); }
  .p3-bg { background: linear-gradient(135deg, #0f0019, #1e0033); }
  .p4-bg { background: linear-gradient(135deg, #001a07, #003311); }

  .product-body { padding: 22px 24px; }

  .product-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #084387;
    margin-bottom: 8px;
  }

  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
  }

  .product-desc {
    font-size: 15px;
    color: #084387;
    line-height: 1.7;
  }

  /* ── ABOUT ── */
  #about {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #1a1200, #3d2b00 50%, #1a1200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    overflow: hidden;
  }

  .about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 130px; height: 130px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: fill;
    font-family: 'Cormorant Garamond', serif;
  }

  .about-badge .num {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
  }

  .about-badge .txt {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 0 12px;
  }

  /* ── PRODUCTS PAGE ── */
  #products {
    background: var(--dark2);
    border-top: 1px solid var(--border);
  }

  .full-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 56px;
  }

  .full-product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: var(--dark3);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: border-color 0.3s;
    align-items: stretch;
  }

  .full-product-card:hover { border-color: var(--gold); }

  .full-product-img .icon { font-size: 28px; opacity: 0.4; }

  .full-product-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .full-product-body .product-label { margin-bottom: 10px; }
  .full-product-body .product-name { font-size: 24px; margin-bottom: 14px; }

  .full-product-body .product-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s;
  }

  .product-link:hover { gap: 14px; }

  /* ── CONTACT ── */
  #contact {
    background: var(--dark);
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-info { padding-top: 8px; }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
  }

  .contact-icon {
    width: 42px; height: 42px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: var(--gold);
  }

  .contact-item-label {
    font-size: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #084387;
    margin-bottom: 4px;
  }

  .contact-item-val {
    font-size: 18px;
    color: #042c71;
  }

  .contact-form { display: flex; flex-direction: column; gap: 18px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

  .form-group { display: flex; flex-direction: column; gap: 8px; }

  .form-group label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .form-group input,
  .form-group textarea {
    background: var(--dark2);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 14px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    resize: none;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
  }

  .form-group textarea { height: 120px; }

  .btn-submit {
    padding: 16px 40px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.3s, transform 0.2s;
  }

  .btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: #0a0a0a;
    border-top: 1px solid var(--border);
    padding: 40px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-brand {
    font-family: 'geometric', sans-serif;
    font-size: 18px;
    color: var(--gold-light);
  }

  .footer-copy {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
  }

  /* ── HAMBURGER BUTTON ── */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 1001;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #084387;
    transition: all 0.3s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* WhatsApp nav button */
  .btn-whatsapp-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 0.3s, transform 0.2s;
    flex-shrink: 0;
  }

  .btn-whatsapp-nav:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
  }

  /* ── TABLET ── */
  @media (max-width: 1024px) {
    nav { padding: 0 28px; height: 110px; }
    .nav-brand img { width: 90px; height: 90px; }
    .nav-name { font-size: 28px; }
    .nav-name span { font-size: 13px; }
    .nav-links { gap: 20px; }
    .nav-links a { font-size: 14px; }
    #home { margin-top: 110px; }
    section { padding: 80px 40px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    /* About: show image on tablet too */
    #about { grid-template-columns: 1fr; }
    #contact { grid-template-columns: 1fr; gap: 40px; }
    footer { padding: 32px 40px; }
    .full-products-grid { grid-template-columns: 1fr; }
    .full-product-card { grid-template-columns: 1fr; }
    /* Stack image on top when card goes single-column */
    .full-product-card .full-product-img {
      width: 100%;
      height: 220px;
    }
    .slide-content { padding: 0 40px; }
    .slider-dots { left: 40px; }
  }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    nav {
      padding: 12px 16px;
      height: auto;
      min-height: 72px;
      flex-wrap: nowrap;
      justify-content: space-between;
      align-items: center;
      position: fixed;
    }
    .nav-brand img { width: 56px; height: 56px; }
    .nav-name { font-size: 18px; align-items: flex-start; text-align: left; }
    .nav-name span { font-size: 11px; text-align: left; letter-spacing: 0.08em; }

    /* Hamburger dropdown */
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0; right: 0;
      background: #fff;
      border-top: 1px solid var(--border);
      padding: 16px 20px 20px;
      gap: 0;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links li { border-bottom: 1px solid rgba(200,169,110,0.12); }
    .nav-links a {
      display: block;
      padding: 14px 4px;
      font-size: 14px;
      letter-spacing: 0.08em;
      color: #084387;
    }
    .nav-toggle { display: flex; }

    /* WhatsApp button visible on mobile */
    .btn-whatsapp-nav {
      display: inline-flex;
      font-size: 11px;
      padding: 8px 12px;
    }

    #home { margin-top: 72px; height: 55vh; min-height: 300px; }
    section { padding: 50px 20px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .products-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .full-products-grid { grid-template-columns: 1fr; gap: 20px; }
    .full-product-card { grid-template-columns: 1fr; }
    .full-product-card .full-product-img {
      width: 100%;
      height: 200px;
    }
    .full-product-card .full-product-img img {
      object-position: center;
    }

    /* About image visible on mobile */
    #about {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .about-visual { display: block; }

    /* Contact stacked correctly */
    #contact {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .slide-content { padding: 0 24px; max-width: 100%; }
    .slide-title { font-size: clamp(28px, 7vw, 48px); }
    .slide-sub { font-size: 13px; margin-bottom: 24px; }
    .btn { padding: 10px 24px; font-size: 11px; }
    .slider-dots { left: 50%; transform: translateX(-50%); bottom: 16px; }
    .form-row { grid-template-columns: 1fr; }
    footer { padding: 28px 20px; flex-direction: column; gap: 10px; text-align: center; }

    .section-tag { font-size: 20px; letter-spacing: 0.18em; }
    #contact { padding: 50px 20px; }
  }

  /* ── SMALL MOBILE ── */
  @media (max-width: 480px) {
    #home { height: 52vh; min-height: 280px; }
    .slide-content { padding: 0 16px; }
    .slide-title { font-size: clamp(24px, 8vw, 36px); }
    section { padding: 44px 14px; }
    .products-grid { grid-template-columns: 1fr; }
    #home-products .section-title,
    #products .section-title { font-size: clamp(26px, 8vw, 40px); }
    .full-product-body { padding: 20px 16px; }
    .contact-item-val { font-size: 15px; }
    footer { padding: 20px 14px; }

    /* WhatsApp button still visible at 480px */
    .btn-whatsapp-nav {
      display: inline-flex;
      font-size: 10px;
      padding: 7px 10px;
    }
  }