:root {
  --white: #ffffff;
  --paper: #f6f5ef;
  --paper-strong: #efede4;
  --ink: #111318;
  --carbon: #1b1e22;
  --muted: #626b75;
  --line: #dedbd0;
  --yellow: #f5c400;
  --yellow-soft: #fff3a3;
  --steel: #51606d;
  --shadow: 0 18px 45px rgba(17, 19, 24, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.75rem, 3.6vw, 3rem);
}

h3 {
  font-size: 1.14rem;
}

.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: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 245, 239, 0.94);
  border-bottom: 1px solid rgba(17, 19, 24, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.brand-text {
  font-size: 1.05rem;
}

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

.site-nav a {
  padding: 10px 13px;
  border-radius: 6px;
  color: var(--steel);
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(17, 19, 24, 0.06);
}

.site-nav .nav-contact {
  margin-left: 8px;
  color: var(--ink);
  background: var(--yellow);
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact[aria-current="page"] {
  color: var(--ink);
  background: #ffd833;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section,
.page-hero {
  padding: clamp(64px, 10vw, 112px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--carbon);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 24, 0.86), rgba(17, 19, 24, 0.52) 54%, rgba(17, 19, 24, 0.2)),
    linear-gradient(180deg, rgba(17, 19, 24, 0.12), rgba(17, 19, 24, 0.66));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 82px 0;
}

.hero h1 {
  margin-bottom: 22px;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.hero-location {
  display: inline-grid;
  gap: 2px;
  margin: 12px 0 28px;
  padding: 12px 16px;
  border-left: 4px solid var(--yellow);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-location span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-location strong {
  font-size: 1rem;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-actions,
.contact-cta,
.product-request {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary:hover {
  background: #ffd833;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.split-intro,
.two-column,
.product-band,
.contact-layout,
.inquiry-note {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.split-intro p:last-child,
.two-column p,
.product-band p,
.contact-cta p,
.product-request p {
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading h2,
.section-heading p {
  max-width: 720px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.text-link {
  color: var(--ink);
  border-bottom: 2px solid var(--yellow);
  font-weight: 800;
}

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

.service-card,
.feature-grid article,
.trust-grid article,
.product-card,
.service-detail-card,
.contact-panel,
.map-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card,
.product-card,
.feature-grid article,
.trust-grid article {
  padding: 18px;
}

.service-card img,
.product-card img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: 6px;
  background: var(--paper-strong);
}

.service-card p,
.product-card p,
.feature-grid p,
.trust-grid p {
  margin-bottom: 0;
}

.dark-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(245, 196, 0, 0.13), transparent 34%),
    var(--carbon);
}

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

.dark-section p {
  color: rgba(255, 255, 255, 0.72);
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-list span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.92rem;
  font-weight: 800;
}

.category-list.clean span {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.trust-kicker {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--yellow);
  font-weight: 900;
}

.cta-section {
  background: var(--paper-strong);
}

.contact-cta {
  justify-content: space-between;
}

.contact-cta > div {
  max-width: 640px;
}

.contact-methods {
  display: grid;
  gap: 10px;
  min-width: min(100%, 360px);
}

.contact-methods a,
.contact-methods span {
  padding: 12px 14px;
  border-left: 4px solid var(--yellow);
  background: var(--white);
  font-weight: 800;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(245, 196, 0, 0.16), transparent 36%),
    var(--white);
}

.page-hero.slim {
  padding-bottom: clamp(48px, 8vw, 82px);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.page-hero p {
  max-width: 720px;
}

.page-hero img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.light-band {
  background: var(--white);
}

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

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

.service-detail-card {
  overflow: hidden;
}

.service-detail-card div {
  padding: 20px;
}

.service-detail-card h2,
.product-card h2,
.contact-panel h2,
.legal-copy h2 {
  font-size: 1.32rem;
}

.service-detail-card ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
  margin: 18px 0 0;
  color: var(--steel);
}

.service-detail-card li::marker {
  color: var(--yellow);
}

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

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

.brand-grid span {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--steel);
  background: var(--paper);
  font-weight: 900;
  text-align: center;
}

.product-request {
  justify-content: space-between;
}

.product-request > div {
  max-width: 760px;
}

.contact-layout {
  align-items: stretch;
}

.contact-panel,
.map-panel {
  overflow: hidden;
}

.contact-panel {
  padding: 26px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 2px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  font-weight: 800;
}

.contact-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.legal-copy {
  max-width: 840px;
}

.legal-copy a {
  border-bottom: 2px solid var(--yellow);
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #111318;
}

.footer-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  gap: 32px;
  padding: 46px 0 32px;
}

.footer-brand {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.05rem;
}

.footer-inner p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-bottom {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 30px rgba(17, 19, 24, 0.18);
  font-size: 0.86rem;
  font-weight: 900;
}

@media (max-width: 980px) {
  .card-grid,
  .feature-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .split-intro,
  .two-column,
  .product-band,
  .contact-layout,
  .inquiry-note,
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 18px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 8px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-contact {
    margin: 12px 0 0;
    border: 0;
    border-radius: 6px;
    text-align: center;
  }

  .hero {
    min-height: 680px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(17, 19, 24, 0.88), rgba(17, 19, 24, 0.62) 58%, rgba(17, 19, 24, 0.74)),
      linear-gradient(90deg, rgba(245, 196, 0, 0.16), transparent);
  }

  .hero-actions,
  .contact-cta,
  .product-request {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services-grid,
  .card-grid,
  .feature-grid,
  .trust-grid,
  .product-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .map-panel img {
    min-height: 320px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
