:root {
  --navy: #0e2a47;
  --deep-blue: #123b63;
  --orange: #f97316;
  --warm: #f8f5f2;
  --gray: #f3f4f6;
  --text: #111827;
  --muted: #5b6573;
  --line: #dfe3e8;
  --steel: #7b8794;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(14, 42, 71, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(14, 42, 71, 0.1);
  backdrop-filter: blur(16px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px clamp(18px, 5vw, 72px);
  color: #dce8f2;
  background: var(--navy);
  font-size: 13px;
}

.compact-header .topbar { display: none; }

.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 clamp(18px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
  border-bottom: 4px solid var(--orange);
  font-weight: 900;
  font-size: 24px;
}

.brand-logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: white;
  border: 1px solid rgba(14, 42, 71, 0.12);
  box-shadow: 0 8px 18px rgba(14, 42, 71, 0.08);
}

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  color: var(--steel);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  color: #253449;
}

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

.nav-actions { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { color: white; background: var(--orange); box-shadow: 0 10px 22px rgba(249, 115, 22, 0.24); }
.btn-ghost { color: var(--navy); border-color: rgba(14, 42, 71, 0.22); background: white; }
.btn-light { color: var(--navy); background: white; }
.btn-large { min-height: 52px; padding-inline: 24px; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media,
.page-hero::before,
.image-panel {
  background-size: cover;
  background-position: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1606185540834-d6e7483ee1a4?auto=format&fit=crop&w=2400&q=82");
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 24, 42, 0.9) 0%, rgba(5, 24, 42, 0.64) 45%, rgba(5, 24, 42, 0.16) 100%),
              linear-gradient(0deg, rgba(5, 24, 42, 0.78), rgba(5, 24, 42, 0.08) 42%);
}

.hero-content {
  position: relative;
  max-width: 920px;
  padding: 100px clamp(18px, 6vw, 88px) 54px;
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; line-height: 1.08; color: inherit; letter-spacing: 0; }
h1 { font-size: clamp(42px, 6vw, 82px); max-width: 870px; }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 20px; }
p { margin: 0; color: var(--muted); }

.hero-copy {
  max-width: 760px;
  margin: 24px 0 30px;
  color: #e5eef6;
  font-size: 18px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1050px;
}

.trust-strip span,
.why-list span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  background: rgba(255, 255, 255, 0.09);
  font-size: 13px;
  font-weight: 800;
}

.section {
  padding: 92px clamp(18px, 5vw, 72px);
}

.section-warm { background: var(--warm); }

.section-heading {
  max-width: 830px;
  margin-bottom: 36px;
}

.section-heading p { font-size: 17px; margin-top: 14px; }
.section-heading.light { color: white; }
.section-heading.light p:not(.eyebrow) { color: #c7d5e2; }

.intro-split,
.story-grid,
.contact-layout,
.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: start;
}

.intro-split > div:first-child p { margin-top: 18px; font-size: 17px; }

.check-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  color: #253449;
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  background: var(--orange);
}

.feature-grid,
.category-grid,
.product-grid,
.industry-grid,
.testimonial-grid,
.insight-grid,
.packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.feature-grid article,
.category-card,
.product-card,
.industry-grid article,
.testimonial-grid blockquote,
.insight-grid article,
.packaging-grid article,
.contact-card,
.shop-sidebar,
.category-detail,
.enquiry-box {
  background: white;
  border: 1px solid rgba(14, 42, 71, 0.1);
  box-shadow: 0 12px 34px rgba(14, 42, 71, 0.06);
}

.feature-grid article,
.industry-grid article,
.testimonial-grid blockquote,
.insight-grid article,
.contact-card,
.shop-sidebar,
.category-detail,
.enquiry-box {
  padding: 26px;
}

.feature-grid .icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.feature-grid p,
.industry-grid p,
.insight-grid p { margin-top: 12px; }

.category-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.category-card,
.product-card,
.packaging-grid article {
  overflow: hidden;
}

.category-card img,
.product-card img,
.packaging-grid img {
  height: 190px;
  object-fit: cover;
}

.category-card-body,
.product-card-body {
  padding: 20px;
}

.category-card p,
.product-card p { margin-top: 10px; font-size: 14px; }

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.card-actions .btn { flex: 1; min-width: 130px; padding-inline: 12px; }

.packaging-grid h3 { padding: 20px 20px 0; }
.packaging-grid p { padding: 10px 20px 22px; }

.navy-band {
  background: linear-gradient(135deg, var(--navy), #07192b);
  color: white;
}

.navy-band .industry-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.navy-band .industry-grid p { color: #c9d7e4; }

.why-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.why-list { display: flex; flex-wrap: wrap; gap: 12px; }
.why-list span { color: var(--navy); background: var(--gray); border-color: var(--line); }

.product-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.pill {
  padding: 5px 8px;
  color: var(--navy);
  background: var(--gray);
  font-size: 12px;
  font-weight: 800;
}

.testimonial-grid blockquote { margin: 0; }
.testimonial-grid p { color: #26364b; font-size: 17px; }
.testimonial-grid cite { display: block; margin-top: 18px; color: var(--navy); font-style: normal; font-weight: 900; }

.insight-grid article span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--orange);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
}

.faq-item {
  border: 1px solid var(--line);
  background: white;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border: 0;
  color: var(--navy);
  background: white;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.open .faq-answer { display: block; }

.cta-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 40px;
  align-items: start;
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--deep-blue));
}

.cta-section p:not(.eyebrow) { color: #d7e4ef; margin-top: 16px; font-size: 17px; }

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.quote-form.full { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  background: white;
  font: inherit;
}

.quote-form textarea {
  min-height: 120px;
  grid-column: 1 / -1;
  resize: vertical;
}

.quote-form button { grid-column: 1 / -1; justify-self: start; }

.site-footer {
  padding: 66px clamp(18px, 5vw, 72px) 24px;
  color: #d7e4ef;
  background: #061827;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 32px;
}

.footer-brand strong { color: white; }
.footer-brand .brand-logo-img { width: 64px; height: 64px; }
.footer-grid p { color: #aebdca; margin-top: 18px; }
.footer-grid h3 { color: white; margin-bottom: 16px; font-size: 16px; }
.footer-grid a:not(.brand):not(.btn) { display: block; color: #aebdca; margin-top: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); color: #aebdca; font-size: 14px; }

.mini-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #d7e4ef;
  background: #061827;
}

.mini-footer a { color: white; font-weight: 900; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  padding: 13px 16px;
  color: white;
  background: #15803d;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-content: end;
  padding: 130px clamp(18px, 5vw, 72px) 58px;
  color: white;
  overflow: hidden;
  background: var(--navy);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=2200&q=82");
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,24,42,0.9), rgba(5,24,42,0.38));
}

.page-hero > * { position: relative; z-index: 1; max-width: 900px; }
.page-hero p:not(.eyebrow) { color: #dbe7f2; margin-top: 18px; font-size: 18px; }

.about-hero::before { background-image: url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=2200&q=82"); }
.industries-hero::before { background-image: url("https://images.unsplash.com/photo-1581093458791-9f3c3a0f9898?auto=format&fit=crop&w=2200&q=82"); }
.why-hero::before { background-image: url("https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?auto=format&fit=crop&w=2200&q=82"); }
.insights-hero::before { background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=2200&q=82"); }
.faq-hero::before { background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=2200&q=82"); }
.contact-hero::before { background-image: url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?auto=format&fit=crop&w=2200&q=82"); }
.shop-hero::before { background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=2200&q=82"); }

.category-page-list {
  display: grid;
  gap: 22px;
}

.category-detail {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  padding: 0;
  overflow: hidden;
}

.category-detail img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.category-detail-content {
  padding: 30px 30px 30px 0;
}

.category-detail p { margin-top: 12px; }
.category-detail ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 20px; padding-left: 18px; color: var(--muted); }

.story-grid .image-panel {
  min-height: 430px;
  background-image: url("https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?auto=format&fit=crop&w=1200&q=80");
  box-shadow: var(--shadow);
}

.story-grid p { margin-top: 16px; font-size: 17px; }
.three-columns { grid-template-columns: repeat(3, minmax(0, 1fr)); display: grid; gap: 20px; }
.three-columns article { background: white; padding: 30px; border: 1px solid var(--line); }
.three-columns p { margin-top: 14px; }

.cta-slim {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  color: white;
  background: var(--navy);
}

.cta-slim p { color: #d7e4ef; max-width: 620px; margin-top: 10px; }

.light-cards article { background: white; color: var(--text); }
.light-cards p { color: var(--muted); }

.shop-layout { grid-template-columns: 310px minmax(0, 1fr); align-items: start; }
.shop-sidebar { position: sticky; top: 100px; }
.shop-sidebar p { margin: 12px 0 18px; }
.enquiry-box { margin-top: 20px; padding: 18px; }
.shop-toolbar { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 20px; color: var(--navy); font-weight: 900; }
.shop-toolbar a { color: var(--orange); }

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: start;
}

.product-detail img { height: 520px; object-fit: cover; box-shadow: var(--shadow); }
.product-info .category-label { color: var(--orange); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: 1.2px; }
.product-info p { margin-top: 16px; font-size: 17px; }
.product-specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 28px 0; }
.product-specs article { padding: 20px; border: 1px solid var(--line); background: var(--gray); }
.product-specs ul { margin: 12px 0 0; padding-left: 18px; color: var(--muted); }

@media (max-width: 1180px) {
  .nav-actions { display: none; }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .navbar { min-height: 72px; }
  .nav-toggle {
    display: inline-flex;
    padding: 10px 14px;
    border: 1px solid var(--line);
    background: white;
    color: var(--navy);
    font-weight: 900;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 18px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; justify-content: start; }
  .hero { min-height: 720px; }
  .intro-split,
  .story-grid,
  .contact-layout,
  .shop-layout,
  .cta-section,
  .why-strip,
  .product-detail,
  .category-detail {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .feature-grid.compact,
  .category-grid,
  .product-grid,
  .industry-grid,
  .testimonial-grid,
  .insight-grid,
  .packaging-grid,
  .three-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-detail-content { padding: 0 24px 24px; }
  .shop-sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .brand { min-width: 0; }
  .brand small { font-size: 10px; }
  .hero-content { padding-top: 80px; }
  .section { padding-block: 64px; }
  .feature-grid,
  .feature-grid.compact,
  .category-grid,
  .product-grid,
  .industry-grid,
  .testimonial-grid,
  .insight-grid,
  .packaging-grid,
  .three-columns,
  .product-specs,
  .quote-form,
  .quote-form.full {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom,
  .mini-footer,
  .cta-slim {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-hero { min-height: 360px; }
}
