:root{
    --navy-deep:#070c1e;
    --navy:#0d1735;
    --navy-soft:#152249;
    --gold:#d4af37;
    --gold-light:#f3dd9a;
    --gold-dim:#a3822a;
    --ink:#e9ecf5;
    --ink-dim:#9aa3c0;
    --white:#f7f8fc;
    --black:#05070d;
    --line: rgba(212,175,55,0.22);
    --radius: 2px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background: var(--navy-deep);
    color: var(--ink);
    font-family:'Vazirmatn', sans-serif;
    line-height:1.75;
    overflow-x:hidden;
  }
  .latin{ font-family:'Cormorant Garamond', serif; }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .container{ max-width:1240px; margin:0 auto; padding:0 28px; }

  /* subtle world-map dotted texture used across brand assets */
  .dotted-map{
    background-image: radial-gradient(var(--line) 1px, transparent 1.4px);
    background-size: 16px 16px;
  }

  @media (prefers-reduced-motion: no-preference){
    .reveal{ opacity:0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
    .reveal.in{ opacity:1; transform:none; }
  }
  @media (prefers-reduced-motion: reduce){ .reveal{opacity:1; transform:none;} }

  /* ===== Header ===== */
  header{
    position:fixed; inset-inline:0; top:0; z-index:50;
    background: linear-gradient(180deg, rgba(5,7,13,.92), rgba(5,7,13,.75));
    backdrop-filter: blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav-row{ display:flex; align-items:center; justify-content:space-between; height:84px; }
  .brand{ display:flex; align-items:center; gap:14px; }
  .brand img{ height:52px; width:auto; filter: drop-shadow(0 0 8px rgba(212,175,55,.25)); }
  .brand-name{ display:flex; flex-direction:column; line-height:1.1; }
  .brand-name b{ font-size:1.15rem; letter-spacing:.14em; color:var(--gold-light); font-family:'Cormorant Garamond', serif; font-weight:600; }
  .brand-name span{ font-size:.68rem; color:var(--ink-dim); letter-spacing:.06em; }
  nav ul{ display:flex; gap:34px; list-style:none; }
  nav a{ font-size:.92rem; color:var(--ink-dim); transition:color .25s; position:relative; }
  nav a:hover, nav a:focus-visible{ color:var(--gold-light); outline:none; }
  nav a::after{ content:""; position:absolute; right:0; bottom:-8px; width:0; height:1px; background:var(--gold); transition:width .3s; }
  nav a:hover::after{ width:100%; }
  .cta-mini{
    border:1px solid var(--gold-dim); padding:10px 22px; font-size:.85rem;
    color:var(--gold-light); transition:.3s;
  }
  .cta-mini:hover{ background:var(--gold); color:var(--black); border-color:var(--gold);}
  .menu-btn{ display:none; }

  /* ===== Hero ===== */
  .hero{
    position:relative; min-height:100vh; display:flex; align-items:center;
    background: linear-gradient(160deg, rgba(7,12,30,.72), rgba(7,12,30,.94)), url('assets/hero-ship-1.jpg') center/cover no-repeat;
  }
  .hero .container{ padding-top:120px; }
  .eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-size:.78rem; letter-spacing:.22em; color:var(--gold);
    border:1px solid var(--line); padding:7px 16px; margin-bottom:28px;
  }
  .eyebrow::before{ content:""; width:6px; height:6px; background:var(--gold); border-radius:50%; }
  h1.display{
    font-family:'Cormorant Garamond', serif; font-weight:600; font-style:italic;
    font-size:clamp(2.2rem, 5vw, 4.1rem); color:var(--white); max-width:820px; line-height:1.28;
  }
  h1.display em{ font-style:normal; color:var(--gold); background:linear-gradient(90deg,var(--gold-light),var(--gold)); -webkit-background-clip:text; background-clip:text; color:transparent; }
  .hero p.lead{ margin-top:26px; max-width:560px; color:var(--ink-dim); font-size:1.05rem; }
  .hero-actions{ display:flex; gap:18px; margin-top:44px; flex-wrap:wrap; }
  .btn{
    padding:16px 34px; font-size:.92rem; letter-spacing:.03em; border-radius:var(--radius);
    display:inline-flex; align-items:center; gap:10px; transition:.3s;
  }
  .btn-gold{ background:linear-gradient(120deg,var(--gold-light),var(--gold) 60%, var(--gold-dim)); color:var(--black); font-weight:600; }
  .btn-gold:hover{ filter:brightness(1.08); transform:translateY(-2px); }
  .btn-outline{ border:1px solid var(--line); color:var(--ink); }
  .btn-outline:hover{ border-color:var(--gold); color:var(--gold-light); }

  .hero-stats{
    display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line);
    margin-top:90px; border:1px solid var(--line);
  }
  .hero-stats div{ background:rgba(7,12,30,.75); padding:22px 20px; }
  .hero-stats b{ display:block; font-family:'Cormorant Garamond',serif; font-size:1.9rem; color:var(--gold-light); }
  .hero-stats span{ font-size:.78rem; color:var(--ink-dim); }

  /* ===== Section shell ===== */
  section{ padding:130px 0; position:relative; }
  .kicker{ color:var(--gold); font-size:.8rem; letter-spacing:.24em; margin-bottom:16px; display:block; }
  h2.section-title{
    font-family:'Cormorant Garamond',serif; font-weight:600; font-size:clamp(1.8rem,3.4vw,2.9rem);
    color:var(--white); max-width:680px;
  }
  .section-desc{ color:var(--ink-dim); max-width:600px; margin-top:20px; }
  .divider{ width:64px; height:1px; background:var(--gold); margin:26px 0; }

  /* ===== About ===== */
  .about{ border-top:1px solid var(--line); }
  .about-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:70px; align-items:center; }
  .about-card{
    border:1px solid var(--line); padding:36px 32px; background:linear-gradient(160deg,var(--navy-soft),var(--navy));
  }
  .about-card h3{ font-family:'Cormorant Garamond',serif; color:var(--gold-light); font-size:1.3rem; margin-bottom:10px; }
  .about-card p{ color:var(--ink-dim); font-size:.94rem; }
  .about-cards{ display:grid; gap:20px; }

  /* ===== Manifest / process timeline (signature element) ===== */
  .manifest{ background: var(--navy); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
  .manifest-wrap{ position:relative; }
  .manifest-header{ display:flex; justify-content:space-between; align-items:flex-end; flex-wrap:wrap; gap:24px; margin-bottom:70px;}
  .stamp{
    border:1px solid var(--gold); color:var(--gold); font-size:.75rem; letter-spacing:.18em;
    padding:10px 18px; transform:rotate(-3deg); white-space:nowrap;
  }
  .ledger{ position:relative; padding-inline-start:0; }
  .ledger::before{
    content:""; position:absolute; inset-inline-start:35px; top:10px; bottom:10px; width:1px;
    background: repeating-linear-gradient(var(--gold-dim), var(--gold-dim) 6px, transparent 6px, transparent 12px);
  }
  .ledger-item{ display:grid; grid-template-columns:72px 1fr; gap:26px; padding:26px 0; border-bottom:1px dashed var(--line); }
  .ledger-item:last-child{ border-bottom:none; }
  .ledger-num{
    width:72px; height:72px; border:1px solid var(--gold-dim); border-radius:50%;
    display:flex; align-items:center; justify-content:center; font-family:'Cormorant Garamond',serif;
    color:var(--gold-light); font-size:1.5rem; position:relative; z-index:2; background:var(--navy);
  }
  .ledger-body h4{ color:var(--white); font-size:1.08rem; margin-bottom:6px; }
  .ledger-body p{ color:var(--ink-dim); font-size:.9rem; max-width:560px; }
  .ledger-body .tag{ display:inline-block; margin-top:8px; font-size:.72rem; color:var(--gold); border:1px solid var(--line); padding:3px 10px; }

  /* ===== Sectors ===== */
  .sectors-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); margin-top:60px; border:1px solid var(--line); }
  .sector-card{ background:var(--navy-deep); padding:40px 32px; transition:.35s; }
  .sector-card:hover{ background:var(--navy-soft); }
  .sector-icon{ width:46px; height:46px; margin-bottom:22px; color:var(--gold); }
  .sector-card h3{ font-size:1.05rem; color:var(--white); margin-bottom:10px; }
  .sector-card p{ font-size:.86rem; color:var(--ink-dim); }

  /* ===== Shop preview ===== */
  .shop{ border-top:1px solid var(--line); }
  .shop-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; margin-top:60px; }
  .product-card{ border:1px solid var(--line); background:var(--navy); overflow:hidden; transition:.35s; }
  .product-card:hover{ border-color:var(--gold-dim); transform:translateY(-6px); }
  .product-media{ height:170px; background:linear-gradient(150deg,var(--navy-soft),var(--navy-deep)); display:flex; align-items:center; justify-content:center; }
  .product-media svg{ width:54px; height:54px; color:var(--gold-dim); }
  .product-body{ padding:20px 22px; }
  .product-cat{ font-size:.68rem; letter-spacing:.14em; color:var(--gold); }
  .product-body h4{ margin:10px 0 8px; font-size:.98rem; color:var(--white); }
  .product-foot{ display:flex; justify-content:space-between; align-items:center; margin-top:16px; }
  .product-price{ color:var(--gold-light); font-family:'Cormorant Garamond',serif; font-size:1.15rem; }
  .product-link{ font-size:.78rem; color:var(--ink-dim); border-bottom:1px solid var(--line); }
  .shop-more{ text-align:center; margin-top:56px; }

  /* ===== Services ===== */
  .services{ background:var(--navy); border-top:1px solid var(--line); }
  .services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:60px; }
  .service-card{ padding:34px 30px; border:1px solid var(--line); position:relative; }
  .service-card b{ color:var(--gold-light); font-family:'Cormorant Garamond',serif; font-size:1.4rem; display:block; margin-bottom:14px; }
  .service-card p{ color:var(--ink-dim); font-size:.88rem; }

  /* ===== CTA band ===== */
  .cta-band{
    background: linear-gradient(120deg, var(--navy-soft), var(--navy-deep) 70%);
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    text-align:center;
  }
  .cta-band h2{ font-family:'Cormorant Garamond',serif; font-size:clamp(1.6rem,3vw,2.4rem); color:var(--white); }
  .cta-band .divider{ margin:24px auto; }
  .cta-band-actions{ display:flex; justify-content:center; gap:18px; margin-top:34px; flex-wrap:wrap; }

  /* ===== Footer ===== */
  footer{ background:var(--black); padding:90px 0 30px; }
  .foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:50px; }
  .foot-brand img{ height:44px; margin-bottom:18px; }
  .foot-brand p{ color:var(--ink-dim); font-size:.85rem; max-width:280px; }
  footer h5{ color:var(--gold-light); font-size:.85rem; letter-spacing:.06em; margin-bottom:20px; }
  footer ul{ list-style:none; display:grid; gap:12px; }
  footer a{ color:var(--ink-dim); font-size:.86rem; transition:.25s; }
  footer a:hover{ color:var(--gold-light); }
  .foot-bottom{ margin-top:80px; padding-top:26px; border-top:1px solid rgba(255,255,255,.08); display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px; color:var(--ink-dim); font-size:.78rem; }

  @media (max-width: 900px){
    nav ul{ display:none; }
    .about-grid{ grid-template-columns:1fr; }
    .sectors-grid, .services-grid{ grid-template-columns:1fr; }
    .shop-grid{ grid-template-columns:repeat(2,1fr); }
    .foot-grid{ grid-template-columns:1fr 1fr; }
    .hero-stats{ grid-template-columns:repeat(2,1fr); }
  }
