/* =============================================================
   MetalBond Ghana — Design System
   style.css  |  Mobile-first, no framework dependencies
   ============================================================= */

/* ── 1. Design Tokens ─────────────────────────────────────── */
:root {
  /* Colors */
  --clr-dark:        #141414;
  --clr-dark-2:      #1e1e1e;
  --clr-dark-3:      #2c2c2c;
  --clr-accent:      #e8380c;   /* brand red-orange */
  --clr-accent-dk:   #c22d08;   /* accent hover */
  --clr-gold:        #f5a200;   /* used very sparingly */
  --clr-wa:          #25d366;   /* WhatsApp — ONLY for WA elements */
  --clr-wa-dk:       #1ca84e;
  --clr-bg:          #ffffff;
  --clr-bg-2:        #f5f6f8;
  --clr-border:      #e4e6eb;
  --clr-text:        #111111;
  --clr-text-2:      #444444;
  --clr-text-3:      #888888;
  --clr-on-dark:     #f2f2f2;
  --clr-on-dark-2:   #aaaaaa;

  /* Typography */
  --ff-display: 'Barlow', system-ui, sans-serif;
  --ff-body:    system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;

  /* Fluid type */
  --text-xs:   .75rem;
  --text-sm:   .875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  clamp(1.5rem, 3vw, 2rem);
  --text-4xl:  clamp(1.875rem, 4vw, 2.5rem);
  --text-hero: clamp(2.4rem, 7vw, 4.5rem);

  /* Spacing */
  --sp-1: .25rem;  --sp-2: .5rem;   --sp-3: .75rem;
  --sp-4: 1rem;    --sp-5: 1.25rem; --sp-6: 1.5rem;
  --sp-8: 2rem;    --sp-10: 2.5rem; --sp-12: 3rem;
  --sp-16: 4rem;   --sp-20: 5rem;   --sp-24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 5vw, 2.5rem);
  --nav-h:         70px;

  /* Misc */
  --radius:    6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 36px rgba(0,0,0,.14);
  --ease:      cubic-bezier(.4,0,.2,1);
  --dur:       240ms;
}

/* ── 2. Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
input, textarea, select {
  font: inherit;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  width: 100%;
  color: var(--clr-text);
  background: var(--clr-bg);
  transition: border-color var(--dur) var(--ease);
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(232,56,12,.12);
}
:focus-visible {
  outline: 2px solid var(--clr-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── 3. Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--clr-text);
}
h1 { font-size: var(--text-hero); font-weight: 800; }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
p  { color: var(--clr-text-2); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-3);
}
.section-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--sp-4);
}
.section-sub {
  font-size: var(--text-lg);
  color: var(--clr-text-2);
  max-width: 600px;
  line-height: 1.7;
}

/* ── 4. Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section {
  padding-block: var(--sp-20);
}
.section--sm {
  padding-block: var(--sp-12);
}
.section--dark {
  background: var(--clr-dark);
}
.section--tinted {
  background: var(--clr-bg-2);
}

/* ── 5. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: .01em;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--clr-accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--clr-accent-dk);
  box-shadow: 0 4px 18px rgba(232,56,12,.35);
}

.btn--wa {
  background: var(--clr-wa);
  color: #fff;
}
.btn--wa:hover {
  background: var(--clr-wa-dk);
  box-shadow: 0 4px 18px rgba(37,211,102,.35);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--clr-accent);
  border: 2px solid var(--clr-accent);
}
.btn--outline:hover {
  background: var(--clr-accent);
  color: #fff;
}

.btn--lg {
  padding: .9rem 2.25rem;
  font-size: var(--text-lg);
}
.btn--sm {
  padding: .55rem 1.25rem;
  font-size: var(--text-sm);
}

/* ── 6. Navigation ─────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--clr-bg);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-sm);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--sp-8);
}

.nav__logo img {
  height: 46px;
  width: auto;
}

/* Desktop menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex: 1;
  justify-content: flex-end;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.nav__link {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--clr-text-2);
  padding: var(--sp-1) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--clr-accent);
  border-bottom-color: var(--clr-accent);
}

/* Dropdown */
.nav__dd-wrap {
  position: relative;
}

.nav__dd-btn {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--clr-text-2);
  padding: var(--sp-1) 0;
  border-bottom: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav__dd-btn:hover,
.nav__dd-btn[aria-expanded="true"] {
  color: var(--clr-accent);
  border-bottom-color: var(--clr-accent);
}

.nav__caret {
  font-size: .65em;
  transition: transform var(--dur) var(--ease);
  display: inline-block;
}
.nav__dd-btn[aria-expanded="true"] .nav__caret {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: -12px;
  min-width: 260px;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2);
  /* hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              visibility 0s var(--dur);
}
.nav__dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav__dropdown li a {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-text-2);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav__dropdown li a:hover {
  background: var(--clr-bg-2);
  color: var(--clr-accent);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--radius);
  transition: background var(--dur) var(--ease);
}
.nav__toggle:hover { background: var(--clr-bg-2); }
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(14,14,14,.82) 0%, rgba(20,20,20,.65) 100%),
    url('../metalroof.jpg') center/cover no-repeat;
  color: var(--clr-on-dark);
  overflow: hidden;
}

.hero__body {
  position: relative;
  z-index: 2;
  padding-block: var(--sp-24);
  max-width: 720px;
  margin-inline: 0;
}

.hero__eyebrow {
  font-family: var(--ff-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-5);
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: var(--sp-6);
  letter-spacing: -.01em;
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: var(--sp-10);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-10);
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.hero__tags li {
  font-family: var(--ff-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: var(--sp-1) var(--sp-3);
}

/* ── 8. Capabilities (What We Do) ─────────────────────────── */
.capabilities__header {
  margin-bottom: var(--sp-12);
}

.capabilities__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--sp-4);
}

.capability-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.capability-card:hover {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md);
}

.capability-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(232,56,12,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  font-size: 1.25rem;
  margin-bottom: var(--sp-4);
}

.capability-card__title {
  font-family: var(--ff-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}

.capability-card__desc {
  font-size: var(--text-sm);
  color: var(--clr-text-3);
  line-height: 1.6;
}

/* ── 9. Product Cards ──────────────────────────────────────── */
.products__header {
  margin-bottom: var(--sp-12);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-6);
}

.product-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--clr-bg-2);
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.product-card:hover .product-card__img img {
  transform: scale(1.04);
}

.product-card__body {
  padding: var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__tag {
  font-family: var(--ff-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-2);
}

.product-card__title {
  font-family: var(--ff-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--sp-3);
  line-height: 1.25;
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--clr-text-2);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-6);
}

.product-card__link {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--clr-accent);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  transition: gap var(--dur) var(--ease);
}
.product-card__link:hover { gap: var(--sp-3); }
.product-card__link::after { content: '→'; }

/* ── 10. Projects / Gallery Preview ───────────────────────── */
.projects__header {
  margin-bottom: var(--sp-10);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-3);
}

.project-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--clr-bg-2);
}
.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}
.project-photo:hover img { transform: scale(1.05); }

.projects__footer {
  margin-top: var(--sp-10);
  text-align: center;
}

/* ── 11. CTA Band ──────────────────────────────────────────── */
.cta-band {
  background: var(--clr-dark);
  padding-block: var(--sp-20);
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  align-items: flex-start;
}

.cta-band__title {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--sp-4);
}

.cta-band__sub {
  font-size: var(--text-lg);
  color: var(--clr-on-dark-2);
  max-width: 480px;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* ── 12. Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  position: relative;
  background:
    linear-gradient(160deg, rgba(10,10,10,.78) 0%, rgba(20,20,20,.60) 100%),
    url('../metalroof.jpg') center/cover no-repeat;
  padding-block: clamp(3rem, 10vw, 6rem);
  color: var(--clr-on-dark);
}

.page-hero__body {
  position: relative;
  z-index: 2;
}

.page-hero__eyebrow {
  font-family: var(--ff-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-3);
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: var(--sp-3);
}

.page-hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.72);
  max-width: 540px;
  line-height: 1.65;
}

/* ── 13. Product Detail Page ───────────────────────────────── */
.product-detail {
  display: grid;
  gap: var(--sp-12);
}

.product-detail__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--clr-bg-2);
}
.product-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 400px;
}

.product-detail__specs h3 {
  font-size: var(--text-xl);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-2);
  border-bottom: 2px solid var(--clr-accent);
  display: inline-block;
}
.product-detail__specs h3:first-child { margin-top: 0; }

.product-detail__specs ul {
  margin-bottom: var(--sp-5);
}
.product-detail__specs li {
  font-size: var(--text-base);
  color: var(--clr-text-2);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.product-detail__specs li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--clr-accent);
  border-radius: 50%;
  margin-top: 9px;
  flex-shrink: 0;
}
.product-detail__specs p {
  color: var(--clr-text-2);
  line-height: 1.75;
}

/* Sub-products on roofing page */
.subproduct {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-left: 4px solid var(--clr-accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: var(--sp-6);
  margin-bottom: var(--sp-5);
}
.subproduct h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}

/* ── 14. About Page ────────────────────────────────────────── */
.about-intro {
  display: grid;
  gap: var(--sp-12);
  align-items: center;
}
.about-intro__text p + p { margin-top: var(--sp-4); }
.about-intro__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-intro__img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-10);
}
.value-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.value-card__num {
  font-family: var(--ff-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--clr-accent);
  margin-bottom: var(--sp-3);
}
.value-card__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--text-lg);
  margin-bottom: var(--sp-2);
}
.value-card p { font-size: var(--text-sm); }

/* ── 15. Gallery Page ──────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-3);
}

.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--clr-bg-2);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease), filter .4s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  color: #fff;
  font-size: 2rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}
.lightbox.is-open { display: flex; }
.lightbox__img-wrap {
  position: relative;
  max-width: min(90vw, 1000px);
  max-height: 85vh;
}
.lightbox__img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background var(--dur) var(--ease);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__counter {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
}

/* ── 16. Contact Page ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  gap: var(--sp-12);
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-4);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.contact-info__item:hover {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md);
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info__icon--wa  { background: rgba(37,211,102,.12); color: var(--clr-wa); }
.contact-info__icon--email { background: rgba(232,56,12,.1); color: var(--clr-accent); }
.contact-info__icon--ig  { background: rgba(225,48,108,.12); color: #e1306c; }
.contact-info__icon--pin { background: rgba(20,20,20,.08); color: var(--clr-text-3); }

.contact-info__label {
  font-family: var(--ff-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-text-3);
  margin-bottom: var(--sp-1);
}
.contact-info__value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.4;
}

.contact-form {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}
.contact-form h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-6);
}
.form-group {
  margin-bottom: var(--sp-5);
}
.form-group label {
  display: block;
  font-family: var(--ff-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: var(--sp-2);
}
textarea {
  resize: vertical;
  min-height: 140px;
}

/* ── 17. Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-dark);
  color: var(--clr-on-dark-2);
  padding-block: var(--sp-16) var(--sp-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer__logo img {
  height: 44px;
  width: auto;
  margin-bottom: var(--sp-4);
  /* invert white logo if needed */
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--clr-on-dark-2);
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--ff-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-on-dark);
  margin-bottom: var(--sp-5);
}

.footer__links li + li { margin-top: var(--sp-3); }
.footer__links a {
  font-size: var(--text-sm);
  color: var(--clr-on-dark-2);
  transition: color var(--dur) var(--ease);
}
.footer__links a:hover { color: var(--clr-accent); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--clr-on-dark-2);
  margin-bottom: var(--sp-3);
}
.footer__contact-item i { color: var(--clr-accent); width: 16px; }
.footer__contact-item a { transition: color var(--dur) var(--ease); }
.footer__contact-item a:hover { color: var(--clr-wa); }

.footer__bottom {
  border-top: 1px solid var(--clr-dark-3);
  padding-top: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  align-items: center;
  text-align: center;
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--clr-on-dark-2);
}

.footer__socials {
  display: flex;
  gap: var(--sp-4);
}
.footer__socials a {
  width: 38px;
  height: 38px;
  background: var(--clr-dark-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--clr-on-dark-2);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer__socials a:hover { background: var(--clr-accent); color: #fff; }
.footer__socials a.is-wa:hover { background: var(--clr-wa); }

/* ── 18. WhatsApp Float ────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  background: var(--clr-wa);
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: .7rem 1.25rem;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: var(--text-sm);
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.wa-float:hover {
  background: var(--clr-wa-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.50);
  color: #fff;
}
.wa-float i { font-size: 1.3rem; }
.wa-float__label { font-size: var(--text-sm); }

/* ── 19. Shared Utilities ──────────────────────────────────── */
.text-accent { color: var(--clr-accent); }
.text-center { text-align: center; }
.text-on-dark { color: var(--clr-on-dark); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* Divider accent line */
.divider {
  width: 48px;
  height: 4px;
  background: var(--clr-accent);
  border-radius: 2px;
  margin-block: var(--sp-4) var(--sp-6);
}

/* ── 20. Responsive — Tablet (640 px+) ────────────────────── */
@media (min-width: 640px) {
  .hero__actions { flex-wrap: nowrap; }
  .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── 21. Responsive — Desktop (1024 px+) ──────────────────── */
@media (min-width: 1024px) {
  .nav__toggle { display: none; }

  .about-intro { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }

  .product-detail {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .cta-band__title { font-size: clamp(2rem, 4vw, 2.5rem); }
}

/* ── 22. Mobile Nav Overlay ────────────────────────────────── */
@media (max-width: 1023px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--sp-4) var(--container-pad) var(--sp-8);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease);
    border-top: 1px solid var(--clr-border);
    z-index: 199;
    /* override desktop flex styles */
    justify-content: flex-start;
    flex: unset;
  }
  .nav__menu.is-open { transform: translateX(0); }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: var(--sp-4) 0;
    font-size: var(--text-base);
    border-bottom: 1px solid var(--clr-border);
    border-radius: 0;
  }

  .nav__dd-wrap { width: 100%; }

  .nav__dd-btn {
    display: flex;
    justify-content: space-between;
    padding: var(--sp-4) 0;
    font-size: var(--text-base);
    border-bottom: 1px solid var(--clr-border);
    width: 100%;
  }

  .nav__dropdown {
    position: static;
    transform: none !important;
    box-shadow: none;
    border: none;
    border-radius: var(--radius);
    padding: var(--sp-2) 0 var(--sp-2) var(--sp-4);
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--dur) var(--ease), opacity var(--dur) var(--ease), visibility 0s var(--dur);
    background: var(--clr-bg-2);
  }
  .nav__dropdown.is-open {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    transition: max-height var(--dur) var(--ease), opacity var(--dur) var(--ease);
  }

  .nav__menu .nav__cta {
    margin-top: var(--sp-6);
    width: 100%;
    justify-content: center;
  }
}

/* ── 23. Print / Reduced motion ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
