:root {
  --sun: #f7a600;
  --sun-dark: #e08e00;
  --deep: #0e2a3a;
  --deep-2: #164055;
  --ink: #1c2b33;
  --muted: #5b6b73;
  --bg: #ffffff;
  --bg-alt: #f4f7f5;
  --line: #e3e9e6;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(14, 42, 58, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }

.container { width: min(1080px, 92%); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--deep);
  font-weight: 800;
  font-size: 1.05rem;
}
.brand-icon { font-size: 1.4rem; }
.nav { display: flex; gap: 18px; flex-wrap: wrap; }
.nav a {
  text-decoration: none;
  color: var(--deep);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--sun-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--deep);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 42, 58, 0.85), rgba(14, 42, 58, 0.35));
}
.hero-content { position: relative; padding: 40px 0; max-width: 640px; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero p { font-size: 1.15rem; margin-bottom: 28px; opacity: 0.95; }

.btn {
  display: inline-block;
  background: var(--sun);
  color: var(--deep);
  font-weight: 800;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { background: #ffc233; transform: translateY(-2px); }

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--deep);
  margin-bottom: 40px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.card h3 { color: var(--deep); margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.gallery figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--line);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(14, 42, 58, 0.8));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}
.gallery-loader, .logos-loader {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 30px;
}

/* Logos */
.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}
.logo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.logo img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

/* Shipping */
.shipping {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.shipping-icon { font-size: 3rem; margin-bottom: 12px; }
.shipping h3 { color: var(--deep); margin-bottom: 10px; }
.shipping p { color: var(--muted); margin-bottom: 18px; }
.shipping-list {
  list-style: none;
  display: inline-block;
  text-align: left;
  color: var(--deep);
  font-weight: 600;
}
.shipping-list li { padding: 4px 0; }
.shipping-list li::before { content: "✔  "; color: var(--sun-dark); font-weight: 800; }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.contact-item:hover { transform: translateY(-3px); border-color: var(--sun); }
.contact-icon { font-size: 1.8rem; }
.contact-item strong { display: block; color: var(--deep); }
.contact-item span { color: var(--muted); }

/* Footer */
.site-footer {
  background: var(--deep);
  color: #dbe7ee;
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-inner .brand-name { color: #fff; font-weight: 800; }
.socials { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.socials a { color: #dbe7ee; text-decoration: none; font-weight: 600; }
.socials a:hover { color: var(--sun); }
.footer-note { font-size: 0.85rem; opacity: 0.7; }

@media (max-width: 640px) {
  .header-inner { justify-content: center; }
  .nav { justify-content: center; }
  .section { padding: 50px 0; }
}