:root{
  --navy:#003F66;
  --gold:#F5B900;
  --text:#0f172a;
  --muted:#475569;
  --bg:#ffffff;
  --bg2:#f6f8fb;
  --card:#ffffff;
  --border:#e2e8f0;
  --shadow: 0 10px 30px rgba(2, 8, 23, 0.08);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

.container{
  width:min(1120px, 92vw);
  margin-inline:auto;
}

/* Top band */
.topband{
  background:var(--navy);
  color:#fff;
  padding:28px 0;
}
.topband__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  text-align:center;
}
.logo{
  max-width:320px;
  width:min(320px, 70vw);
  height:auto;
}
.tagline{
  margin:0;
  color:var(--gold);
  font-weight:700;
  letter-spacing:0.3px;
}

/* Hero */
.hero{
  padding:56px 0;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:36px;
  align-items:center;
}
.hero h1{
  margin:0 0 12px 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height:1.15;
  color:var(--navy);
}
.hero p{
  margin:0 0 18px 0;
  color:var(--muted);
  font-size: 1.02rem;
}
.hero__media img{
  width:100%;
  height:auto;
  border-radius:18px;
  box-shadow: var(--shadow);
  border:1px solid var(--border);
  display:block;
}

.highlights{
  list-style:none;
  padding:0;
  margin:0 0 18px 0;
  display:grid;
  gap:10px;
}
.highlights li{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 14px;
}

.brand-quote{
  margin:18px 0 22px 0;
  padding:14px 16px;
  border-left:6px solid var(--gold);
  background:#fff8db;
  border-radius:12px;
  color:#1f2937;
  font-weight:700;
}

/* Buttons */
.cta-row{ display:flex; gap:12px; flex-wrap:wrap; }
.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  border:1px solid transparent;
}
.btn--primary{
  background:var(--navy);
  color:#fff;
}
.btn--primary:hover{ filter: brightness(1.05); }
.btn--ghost{
  background:transparent;
  border-color:var(--border);
  color:var(--navy);
}
.btn--ghost:hover{ background:var(--bg2); }

/* Sections */
.section{ padding:64px 0; }
.section--muted{ background:var(--bg2); }
.section__header{
  margin-bottom:18px;
}
.section__header h2{
  margin:0;
  color:var(--navy);
  font-size: clamp(22px, 2.2vw, 30px);
}
.accent-bar{
  width:84px;
  height:4px;
  background:var(--gold);
  border-radius:99px;
  margin-top:10px;
}

/* Product cards */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-top:18px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
  box-shadow: 0 8px 24px rgba(2, 8, 23, 0.05);
}
.card h3{
  margin:12px 0 8px;
  color:var(--navy);
  font-size: 1.05rem;
}
.card p{ margin:0; color:var(--muted); }

.card__media{
  width:100%;
  border-radius:14px;
  border:1px solid var(--border);
  overflow:hidden;
  height:140px;
}

/* Placeholders (swap for real images later) */
.placeholder{
  background:
    linear-gradient(135deg, rgba(0,63,102,0.10), rgba(245,185,0,0.12)),
    repeating-linear-gradient(45deg, rgba(15,23,42,0.06) 0 10px, rgba(15,23,42,0.03) 10px 20px);
  position:relative;
}
.placeholder::after{
  content:"Image placeholder";
  position:absolute;
  inset:auto 12px 12px 12px;
  font-size:12px;
  color:rgba(15,23,42,0.65);
  background:rgba(255,255,255,0.75);
  border:1px solid var(--border);
  border-radius:999px;
  padding:4px 10px;
  width:max-content;
}

/* Logistics block */
.logistics{
  margin-top:22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
  padding:18px;
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  box-shadow: var(--shadow);
}
.logistics__media{
  height:180px;
  border-radius:14px;
  border:1px solid var(--border);
}
.logistics__copy h3{
  margin:0 0 8px 0;
  color:var(--navy);
}
.logistics__copy p{ margin:0; color:var(--muted); }

/* About + Contact */
.grid-2{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:26px;
}
.about-media{
  height:200px;
  border-radius:18px;
  border:1px solid var(--border);
  margin:14px 0 18px 0;
  box-shadow: 0 8px 24px rgba(2, 8, 23, 0.06);
}
.about-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.values{
  margin:10px 0 0 18px;
  color:var(--muted);
}
.values li{ margin-bottom:8px; }

.contact-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}
.contact-card p{ margin:10px 0; color:var(--text); }
.contact-card a{ color:var(--navy); font-weight:700; text-decoration:none; }
.contact-card a:hover{ text-decoration:underline; }
.icon{ display:inline-block; width:22px; }

.small-note{
  margin-top:12px;
  color:var(--muted);
  font-size: 0.95rem;
}

/* Footer band */
.footerband{
  background:var(--navy);
  color:#fff;
  padding:24px 0;
}
.footerband__inner{
  text-align:center;
}
.footerband__inner p{ margin:0; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns:1fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .grid-2{ grid-template-columns:1fr; }
  .logistics{ grid-template-columns:1fr; }
}

@media (max-width: 520px){
  .cards{ grid-template-columns:1fr; }
  .card__media{ height:160px; }
}

.card__media{
  width:100%;
  height:140px;
  border-radius:14px;
  border:1px solid var(--border);
  overflow:hidden;
}

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