:root {
  --ink: #1a1f1c;
  --muted: #5e675f;
  --line: #e3e0d8;
  --paper: #f7f6f3;
  --white: #ffffff;
  --accent: #1c4a3a;
  --accent-dark: #14362b;
  --whatsapp: #1d6b45;
  --shadow: 0 1px 2px rgba(26, 31, 28, 0.04);
  --max: 1120px;
  --header: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header); overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }
h1, h2, h3, p { margin: 0; }

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  z-index: 20;
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
  padding-top: env(safe-area-inset-top);
}
.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  text-decoration: none;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 15px;
}
.brand small {
  display: block;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  text-decoration: none;
  font-size: 15px;
  color: var(--ink);
}
.nav a:hover { color: var(--accent); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #165536; }
.btn-small { min-height: 40px; font-size: 14px; }

.hero {
  padding: 56px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-grid > *,
.grid > *,
.why-grid > *,
.trust-grid > *,
.visit-grid > *,
.stock > * { min-width: 0; }
.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 680;
}
.lede {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  max-width: 38rem;
}
.lede-sm { font-size: 16px; }
.action-row { margin-top: 18px; }
.block-title { font-size: 18px; margin-bottom: 8px; }
.muted-note { margin-top: 16px; color: var(--muted); }
.muted-note-tight { margin-top: 8px; color: var(--muted); }
#visit { padding-top: 0; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
  font-size: 15px;
}
.hero-contacts a { color: var(--ink); text-decoration: none; }
.hero-contacts a:hover { color: var(--accent); }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}
.hero-visual {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 14px;
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 460px;
}
.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.hero-slides img.is-active { opacity: 1; }
.hero-caption {
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.01em;
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}
.hero-dots button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.hero-dots button::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9c6be;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-dots button.is-active::before { background: var(--accent); }
@media (prefers-reduced-motion: reduce) {
  .hero-slides img { transition: none; }
}

.section { padding: 64px 0; }
.section-head { margin-bottom: 28px; max-width: 40rem; }
h2 {
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.section-head p { margin-top: 10px; color: var(--muted); }

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.category-nav a:hover { border-color: var(--accent); background: #fff; }

.group { margin-top: 40px; }
.group > h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
  font-weight: 720;
  margin-bottom: 4px;
}
.group-note {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card:hover { border-color: #cfcabe; }
.card-photo {
  background: var(--paper);
  aspect-ratio: 4 / 3;
  display: grid;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.card h4 {
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-size: 18px;
  font-weight: 680;
  margin: 0;
}
.card p { color: var(--muted); font-size: 14.5px; }
.traits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trait {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  border: 1px solid #c5d4cc;
  background: #e7efe9;
  color: #121614;
  font-size: 13px;
  font-weight: 700;
}
.colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.color-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px 0 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.color-btn[aria-pressed="true"] {
  border-color: var(--accent);
  background: #f3f7f5;
}
.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(26, 31, 28, 0.18);
}
.swatch-white { background: #f4f4f2; }
.swatch-green { background: #2f6b3a; }
.swatch-blue { background: #1d4f9c; }
.swatch-yellow { background: #e2b100; }
.swatch-military { background: #4a5c32; }
.swatch-military-black { background: #2c3324; }
.swatch-black { background: #1a1a1a; }
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.card-actions .btn { align-self: stretch; }

.stock {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-top: 18px;
}
.stock figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}
.stock img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.stock figcaption {
  padding: 12px 14px;
  font-size: 14px;
  color: var(--muted);
}

.why { background: var(--paper); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.why article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.why h3 { font-size: 18px; margin-bottom: 8px; }
.why p { color: var(--muted); font-size: 15px; }

.trust-grid, .visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.facts { list-style: none; padding: 0; margin: 18px 0 0; }
.facts li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.facts span { color: var(--muted); }
.rating {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 16px;
}
.rating strong { font-size: 32px; letter-spacing: -0.03em; }
.stars { color: #b8860b; letter-spacing: 2px; }
.quote {
  margin-top: 16px;
  padding: 16px;
  border-left: 3px solid var(--accent);
  background: var(--paper);
  color: var(--ink);
}
.quote p { font-size: 16px; }
.quote small { display: block; margin-top: 8px; color: var(--muted); }
.hours { margin: 8px 0 0; padding-left: 18px; color: var(--ink); }
.hours li { margin: 4px 0; }
.map {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  min-height: 280px;
  background: var(--paper);
}
.map iframe { width: 100%; height: 320px; border: 0; }

.cta {
  background: var(--accent);
  color: #fff;
}
.cta .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta h2 { color: #fff; }
.cta p { margin-top: 8px; color: rgba(255,255,255,0.82); max-width: 36rem; }
.cta-people { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.cta-people a { color: #fff; text-decoration: none; }
.cta-people a:hover { text-decoration: underline; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.cta .btn-whatsapp { background: #fff; color: var(--accent); }

.site-footer {
  padding: 36px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer address { font-style: normal; }
.site-footer strong {
  display: block;
  color: var(--ink);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.footer-links { display: flex; gap: 16px; align-items: center; }
.footer-links a { color: var(--accent); font-weight: 600; text-decoration: none; }
.copy { margin-top: 22px; }

.mobile-bar {
  display: none;
}

@media (max-width: 900px) {
  .trust-grid, .visit-grid, .stock, .why-grid, .grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-slides { height: auto; aspect-ratio: 4 / 3; }
  .cta .wrap { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; }
}

@media (max-width: 720px) {
  :root { --header: 64px; }
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .menu-toggle { display: block; flex: 0 0 auto; }
  .brand { min-width: 0; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 16px;
    gap: 2px;
    max-height: calc(100dvh - var(--header) - 76px);
    overflow: auto;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 4px; min-height: 44px; }
  .nav .btn { margin-top: 6px; width: 100%; }
  .hero { padding-top: 24px; }
  h1 { font-size: clamp(30px, 9vw, 40px); }
  .lede { font-size: 16px; }
  .hero-grid, .grid, .why-grid, .trust-grid, .visit-grid, .stock {
    grid-template-columns: 1fr;
  }
  .hero-actions, .cta-actions { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 100%; min-width: 0; }
  .hero-meta { gap: 8px 14px; }
  .hero-slides { aspect-ratio: 1 / 1; }
  .stock img { height: 240px; }
  .facts li { grid-template-columns: 1fr; gap: 2px; }
  .map, .map iframe { min-height: 240px; height: 240px; }
  .section { padding: 44px 0; }
  .card-actions .btn { flex: 1 1 calc(50% - 8px); }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .mobile-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--line);
    z-index: 30;
  }
  .mobile-bar .btn {
    flex-direction: column;
    gap: 1px;
    min-height: 52px;
    padding: 6px 4px;
    line-height: 1.15;
  }
  .mobile-bar small {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
  }
}

@media (max-width: 380px) {
  .mobile-bar { grid-template-columns: 1fr 1fr; }
  .mobile-bar .btn-whatsapp { grid-column: 1 / -1; }
  .color-btn { font-size: 12px; }
}
