:root {
  --color-navy: #0b2341;
  --color-navy-2: #103765;
  --color-blue: #155a9c;
  --color-yellow: #f6b21a;
  --color-orange: #ef7d1a;
  --color-white: #ffffff;
  --color-surface: #f4f7fb;
  --color-line: #dce4ef;
  --color-text: #1d2939;
  --color-muted: #64748b;
  --shadow-sm: 0 10px 30px rgba(11, 35, 65, 0.08);
  --shadow-md: 0 18px 45px rgba(11, 35, 65, 0.16);
  --radius: 8px;
  --header-height: 78px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-white);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--color-yellow);
  color: var(--color-navy);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 239, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand__logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
  color: var(--color-navy);
  font-weight: 900;
  box-shadow: var(--shadow-sm);
}

.brand__text {
  display: grid;
  min-width: 0;
}

.brand__text strong {
  color: var(--color-navy);
  font-size: 0.98rem;
  line-height: 1.2;
}

.brand__text small {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__menu a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav__menu a:hover,
.nav__menu a:focus-visible,
.nav__menu a.is-active {
  background: rgba(246, 178, 26, 0.18);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  cursor: pointer;
}

.nav__toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-navy);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 35, 65, 0.94) 0%, rgba(11, 35, 65, 0.75) 43%, rgba(11, 35, 65, 0.24) 100%),
    linear-gradient(0deg, rgba(11, 35, 65, 0.55), rgba(11, 35, 65, 0.08));
}

.hero__content {
  padding: 96px 0;
  color: var(--color-white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-orange);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--color-yellow);
}

.hero h1 {
  max-width: 760px;
  margin: 16px 0;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.98;
}

.hero p {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--primary {
  background: var(--color-yellow);
  color: var(--color-navy);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-navy);
}

.btn--outline {
  border-color: var(--color-line);
  color: var(--color-navy);
  background: var(--color-white);
}

.hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero__notes span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.92rem;
}

.section {
  padding: 88px 0;
}

.section--muted {
  background: var(--color-surface);
}

.section--intro {
  background:
    linear-gradient(180deg, rgba(246, 178, 26, 0.1), transparent 42%),
    var(--color-white);
}

.section--dark {
  background: var(--color-navy);
  color: var(--color-white);
}

.section__heading {
  max-width: 760px;
}

.section__heading--center {
  text-align: center;
  margin-inline: auto;
}

.section__heading--center .eyebrow {
  justify-content: center;
}

.section__heading h2 {
  margin: 12px 0 14px;
  color: var(--color-navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.section--dark .section__heading h2,
.section--dark .section__heading p {
  color: var(--color-white);
}

.section__heading p {
  margin: 0;
  color: var(--color-muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 18px;
  color: #344054;
  font-size: 1.05rem;
}

.intro-copy p {
  margin: 0;
}

.values-grid,
.product-grid,
.brand-grid,
.gallery-grid,
.contact-layout {
  margin-top: 42px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.value-card,
.product-card,
.contact-panel,
.map-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.value-card,
.product-card,
.contact-panel {
  padding: 24px;
}

.value-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--color-navy);
  color: var(--color-yellow);
  font-weight: 900;
  font-size: 0.82rem;
}

.value-card h3,
.product-card h3,
.contact-panel h3 {
  margin: 18px 0 8px;
  color: var(--color-navy);
  line-height: 1.2;
}

.value-card p,
.product-card p {
  margin: 0;
  color: var(--color-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-height: 250px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(21, 90, 156, 0.1);
}

.product-card__icon::before,
.product-card__icon::after {
  content: "";
  position: absolute;
  background: var(--color-blue);
}

.tool-icon::before {
  width: 28px;
  height: 8px;
  border-radius: 999px;
  transform: rotate(-35deg);
}

.tool-icon::after {
  width: 10px;
  height: 24px;
  border-radius: 999px;
  transform: translate(10px, 7px) rotate(-35deg);
  background: var(--color-orange);
}

.build-icon::before {
  width: 30px;
  height: 22px;
  border: 3px solid var(--color-blue);
  background: transparent;
}

.build-icon::after {
  width: 30px;
  height: 3px;
  transform: translateY(-1px);
  background: var(--color-orange);
}

.paint-icon::before {
  width: 28px;
  height: 24px;
  border-radius: 0 0 6px 6px;
}

.paint-icon::after {
  width: 34px;
  height: 7px;
  top: 13px;
  border-radius: 999px;
  background: var(--color-orange);
}

.electric-icon::before {
  width: 16px;
  height: 30px;
  clip-path: polygon(50% 0, 100% 0, 64% 42%, 100% 42%, 34% 100%, 48% 52%, 12% 52%);
  background: var(--color-yellow);
}

.plumbing-icon::before {
  width: 30px;
  height: 18px;
  border: 5px solid var(--color-blue);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 0 14px 0 0;
  background: transparent;
}

.plumbing-icon::after {
  width: 8px;
  height: 18px;
  right: 13px;
  bottom: 9px;
  border-radius: 999px;
  background: var(--color-orange);
}

.screw-icon::before {
  width: 32px;
  height: 8px;
  transform: rotate(24deg);
  border-radius: 999px;
}

.screw-icon::after {
  width: 13px;
  height: 13px;
  transform: translateX(-14px) rotate(24deg);
  border-radius: 2px;
  background: var(--color-orange);
}

.safety-icon::before {
  width: 32px;
  height: 24px;
  border-radius: 20px 20px 6px 6px;
  background: var(--color-yellow);
}

.safety-icon::after {
  width: 34px;
  height: 5px;
  bottom: 15px;
  border-radius: 999px;
}

.garden-icon::before {
  width: 28px;
  height: 28px;
  border-radius: 0 24px 24px 24px;
  transform: rotate(-45deg);
  background: #21895b;
}

.garden-icon::after {
  width: 3px;
  height: 30px;
  transform: translate(8px, 5px) rotate(28deg);
  background: var(--color-orange);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.brand-placeholder {
  min-height: 96px;
  display: grid;
  place-items: center;
  border: 1px dashed #9aabc2;
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-navy);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-navy-2);
}

.gallery-card--wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(11, 35, 65, 0.86);
  color: var(--color-white);
  font-weight: 800;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.contact-panel h3 {
  margin-top: 0;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-line);
}

.contact-list strong {
  display: block;
  color: var(--color-navy);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.contact-list a,
.contact-list span {
  color: #344054;
}

.map-card {
  min-height: 440px;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

.site-footer {
  padding: 28px 0;
  background: #061a31;
  color: rgba(255, 255, 255, 0.82);
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-layout p {
  margin: 0;
}

.footer-layout strong {
  color: var(--color-white);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #23c063;
  color: var(--color-white);
  font-weight: 900;
  box-shadow: var(--shadow-md);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .nav__toggle {
    display: block;
  }

  .nav__menu {
    position: absolute;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: var(--shadow-md);
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__menu a {
    padding: 12px;
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 640px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__text small {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(11, 35, 65, 0.96) 0%, rgba(11, 35, 65, 0.78) 58%, rgba(11, 35, 65, 0.55) 100%);
  }

  .hero__content {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .values-grid,
  .product-grid,
  .brand-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card--wide {
    grid-column: auto;
  }

  .footer-layout {
    display: grid;
  }
}
