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

    :root {
      --navy: #1a2a4a;
      --navy-light: #243659;
      --gold: #b8945a;
      --gold-light: #d4af7a;
      --cream: #f8f6f2;
      --text: #2c2c2c;
      --muted: #6b7280;
      --white: #ffffff;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      font-size: 15px;
      line-height: 1.6;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(26, 42, 74, 0.97);
      backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 48px;
      height: 72px;
      border-bottom: 1px solid rgba(184,148,90,0.25);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 14px;
    }

    .nav-logo-text {
      font-family: 'Cormorant Garamond', serif;
      color: var(--white);
      font-size: 17px;
      font-weight: 600;
      letter-spacing: 0.04em;
      line-height: 1.2;
    }

    .nav-logo-text span {
      display: block;
      font-family: 'Inter', sans-serif;
      font-size: 10px;
      font-weight: 300;
      letter-spacing: 0.18em;
      color: var(--gold-light);
      text-transform: uppercase;
    }

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

    .nav-links a {
      color: rgba(255,255,255,0.78);
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--gold-light); }

    .nav-cta {
      background: var(--gold);
      color: var(--navy) !important;
      padding: 8px 20px;
      border-radius: 2px;
      font-weight: 500 !important;
    }

    .nav-cta:hover { background: var(--gold-light); color: var(--navy) !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: linear-gradient(160deg, var(--navy) 0%, #0f1e38 60%, #0a1628 100%);
      display: flex; align-items: center;
      padding: 72px 0 0;
      position: relative;
      overflow: hidden;
    }

    /* Wave decoration */
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 120px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23f8f6f2' fill-opacity='1' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,58.7C960,64,1056,64,1152,58.7C1248,53,1344,43,1392,37.3L1440,32L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
      background-size: cover;
    }

    /* Ambient circle */
    .hero::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 700px; height: 700px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,148,90,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 48px 160px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      display: flex; align-items: center; gap: 10px;
    }

    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 28px; height: 1px;
      background: var(--gold);
    }

    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 5vw, 62px);
      font-weight: 300;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 24px;
      letter-spacing: -0.01em;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--gold-light);
    }

    .hero-desc {
      color: rgba(255,255,255,0.62);
      font-size: 15px;
      line-height: 1.7;
      max-width: 420px;
      margin-bottom: 40px;
    }

    .hero-actions {
      display: flex; gap: 16px; flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      padding: 13px 30px;
      border-radius: 2px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: background 0.2s, transform 0.15s;
    }

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

    .btn-outline {
      border: 1px solid rgba(255,255,255,0.3);
      color: rgba(255,255,255,0.85);
      padding: 13px 30px;
      border-radius: 2px;
      text-decoration: none;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

    /* Hero visual side */
    .hero-visual {
      display: flex;
      justify-content: center; align-items: center;
      position: relative;
    }

    .hero-badge-ring {
      width: 320px; height: 320px;
      border-radius: 50%;
      border: 1px solid rgba(184,148,90,0.2);
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }

    .hero-badge-ring::before {
      content: '';
      position: absolute;
      inset: 20px;
      border-radius: 50%;
      border: 1px solid rgba(184,148,90,0.12);
    }

    .hero-anchor {
      font-size: 100px;
      opacity: 0.85;
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .hero-stats {
      position: absolute;
      bottom: -10px; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 32px;
    }

    .stat {
      text-align: center;
    }

    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 600;
      color: var(--gold-light);
      line-height: 1;
    }

    .stat-label {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-top: 4px;
    }

    /* ── BRANDS ── */
    .brands {
      background: var(--cream);
      padding: 96px 48px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-eyebrow {
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 4vw, 42px);
      font-weight: 300;
      color: var(--navy);
      line-height: 1.2;
    }

    .section-divider {
      width: 48px; height: 1px;
      background: var(--gold);
      margin: 20px auto 0;
    }

    .brands-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .brand-card {
      background: var(--white);
      border: 1px solid rgba(26,42,74,0.08);
      border-radius: 4px;
      padding: 40px 36px;
      transition: box-shadow 0.25s, transform 0.2s;
      position: relative;
      overflow: hidden;
    }

    .brand-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }

    .brand-card:hover { box-shadow: 0 8px 32px rgba(26,42,74,0.1); transform: translateY(-3px); }
    .brand-card:hover::after { transform: scaleX(1); }

    .brand-icon {
      font-size: 40px;
      margin-bottom: 20px;
      display: block;
    }

    .brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 10px;
    }

    .brand-tag {
      display: inline-block;
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(184,148,90,0.1);
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 16px;
    }

    .brand-desc {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .brand-products {
      list-style: none;
      display: flex; flex-direction: column; gap: 8px;
    }

    .brand-products li {
      font-size: 13px;
      color: var(--text);
      display: flex; align-items: center; gap: 10px;
    }

    .brand-products li::before {
      content: '';
      width: 18px; height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ── PRODUCTS / WHY ── */
    .why {
      background: var(--white);
      padding: 96px 48px;
    }

    .why-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .why-visual {
      background: var(--navy);
      border-radius: 4px;
      padding: 56px 40px;
      display: flex; flex-direction: column; gap: 28px;
    }

    .why-feature {
      display: flex; gap: 20px; align-items: flex-start;
    }

    .why-feature-icon {
      width: 44px; height: 44px;
      background: rgba(184,148,90,0.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .why-feature-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 4px;
    }

    .why-feature-text {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      line-height: 1.6;
    }

    .why-content .section-header { text-align: left; }
    .why-content .section-divider { margin: 20px 0 0; }

    .why-body {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
      margin-top: 24px;
    }

    .why-cta {
      margin-top: 36px;
    }

    /* ── CONTACT ── */
    .contact {
      background: var(--navy);
      padding: 96px 48px;
    }

    .contact-inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .contact .section-title { color: var(--white); }
    .contact .section-eyebrow { color: var(--gold); }

    .contact-grid {
      margin-top: 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
    }

    .contact-info { display: flex; flex-direction: column; gap: 28px; }

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

    .contact-icon {
      width: 42px; height: 42px;
      background: rgba(184,148,90,0.15);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 17px;
      flex-shrink: 0;
    }

    .contact-label {
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }

    .contact-value {
      color: rgba(255,255,255,0.85);
      font-size: 14px;
      line-height: 1.5;
    }

    /* Contact form */
    .contact-form { display: flex; flex-direction: column; gap: 16px; }

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

    .form-label {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    .form-input, .form-textarea {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 2px;
      padding: 11px 14px;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
    }

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

    .form-textarea { resize: vertical; min-height: 100px; }

    .form-input::placeholder, .form-textarea::placeholder {
      color: rgba(255,255,255,0.25);
    }

    .form-submit {
      background: var(--gold);
      color: var(--navy);
      border: none;
      padding: 13px;
      border-radius: 2px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s;
      width: 100%;
    }

    .form-submit:hover { background: var(--gold-light); }

    /* ── FOOTER ── */
    footer {
      background: #0e1929;
      padding: 36px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(184,148,90,0.15);
    }

    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      color: rgba(255,255,255,0.5);
      font-size: 14px;
      letter-spacing: 0.08em;
    }

    .footer-copy {
      font-size: 12px;
      color: rgba(255,255,255,0.3);
    }

    .footer-brands {
      display: flex; gap: 20px;
    }

    .footer-brand {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(184,148,90,0.6);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .hero-inner { grid-template-columns: 1fr; padding: 60px 24px 140px; gap: 40px; }
      .hero-visual { display: none; }
      .brands { padding: 64px 24px; }
      .brands-grid { grid-template-columns: 1fr; }
      .why { padding: 64px 24px; }
      .why-inner { grid-template-columns: 1fr; }
      .contact { padding: 64px 24px; }
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      footer { flex-direction: column; gap: 12px; text-align: center; padding: 24px; }
      .footer-brands { justify-content: center; }
    }

.nav-logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.nav-logo-image{
    width:110px;
    height:110px;
    object-fit:contain;
    display:block;
}
/* ===========================
   PRODUCTS
=========================== */

.products{

    padding:120px 8%;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

    margin-top:60px;

}

.product-card{

    background:#132435;

    border-radius:18px;

    overflow:hidden;

    transition:.3s;

}

.product-card:hover{

    transform:translateY(-8px);

}

.product-image{

    width:100%;

    height:230px;

    object-fit:cover;

}

.product-info{

    padding:25px;

}

.product-info h3{

    color:white;

    margin-bottom:10px;

}

.product-brand{

    color:#d4af5a;

    font-weight:bold;

    margin-bottom:15px;

}

.homepage-brand-logo{

    width:100%;
    height:180px;

    object-fit:contain;

    padding:20px;

    background:white;

}