
:root {
  --green: #1b6b3a;
  --green-dark: #124a28;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --line: #e4e4e4;
  --bg: #f7f7f5;
  --white: #ffffff;
  --radius: 14px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1140px, calc(100% - 28px)); margin: 0 auto; }

.topbar { background: var(--green-dark); color: #d9f0e1; font-size: 13px; padding: 8px 0; }
.topbar .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

header.site {
  position: sticky; top: 0; z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid #dce8e0;
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 8px 0; min-height: 76px;
}
.brand { display: flex; align-items: center; min-width: 0; }
.brand img {
  height: 58px;
  width: auto;
  max-width: min(300px, 55vw);
  object-fit: contain;
  object-position: left center;
}
.menu-toggle {
  display: none !important;
  width: 44px; height: 44px; border: 1px solid #cfe0d4; background: #f3faf5;
  border-radius: 10px; color: #124a28; font-size: 22px; cursor: pointer;
}
nav.menu { display: flex; gap: 4px; flex-wrap: nowrap; align-items: center; }
nav.menu a {
  color: #1a1a1a; font-size: 14px; font-weight: 700;
  padding: 8px 12px; border-radius: 999px; white-space: nowrap;
}
nav.menu a:hover, nav.menu a.active { background: #e8f5ec; color: #124a28; }
nav.menu a.btn { color: #fff !important; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: #fff !important; font-weight: 700;
  padding: 12px 18px; border-radius: 999px; border: 0; cursor: pointer;
}
.btn:hover { background: var(--green-dark); }
.btn.ghost { background: transparent; color: #fff !important; border: 2px solid #fff; }
.btn.dark { background: #111; }
.btn.lg { padding: 14px 22px; font-size: 16px; }

.hero {
  position: relative;
  color: #fff;
  padding: 88px 0 96px;
  min-height: 520px;
  display: flex; align-items: center;
  background:
    linear-gradient(105deg, rgba(10,28,16,.92) 0%, rgba(18,74,40,.88) 55%, rgba(10,28,16,.82) 100%),
    url("../assets/hero-tortuga.jpg") center 42% / cover no-repeat;
}
.hero h1 { font-size: clamp(30px, 5.2vw, 56px); line-height: 1.08; max-width: 16ch; }
.hero h1 em { font-style: normal; color: #9ee0b4; }
.hero p.lead { margin: 18px 0 28px; max-width: 58ch; color: #e6eee8; font-size: 18px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }
.pill {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  padding: 6px 12px; border-radius: 999px; font-size: 13px;
}

section { padding: 64px 0; }
.section-kicker {
  color: var(--green); font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; font-size: 12px; margin-bottom: 8px;
}
h2 { font-size: clamp(24px, 3.4vw, 40px); line-height: 1.15; }
.muted { color: var(--muted); }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
}
.card h3 { margin: 8px 0 8px; font-size: 20px; }
.card .meta { font-size: 13px; color: var(--green-dark); font-weight: 700; }
.card p { color: var(--muted); font-size: 15px; }
.card-photo {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #f0f2f1;
  border-radius: 10px;
  margin-bottom: 12px;
}

.why { background: var(--bg); }
.stat { background: var(--green-dark); color: #fff; border-radius: var(--radius); padding: 24px; }
.stat b { display: block; font-size: 32px; }

.catalog-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; border-radius: 24px; padding: 32px;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
}
.catalog-cta p { color: #e4f6ea; max-width: 52ch; margin: 10px 0 0; }

.clients { background: var(--green); }
.clients .section-kicker { color: #d8f5e3; }
.clients h2 { color: #fff; }
.client-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  align-items: stretch;
}
.client-slot.dark { background: #111; }
.hero-exhibit {
  background:
    linear-gradient(105deg, rgba(10,20,16,.78) 0%, rgba(18,40,28,.62) 55%, rgba(10,20,16,.45) 100%),
    url("../assets/hero-portapendones.jpg") center 45% / cover no-repeat !important;
}
.client-slot {
  height: 92px;
  background: #e8f5ec;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
}
.client-slot img {
  width: auto !important;
  height: auto !important;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.about-band { background: #0f1a13; color: #fff; }
.about-band p { color: #d5e4d9; }

footer { background: #0b0b0b; color: #cfcfcf; padding: 40px 0 24px; }
footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
footer h4 { color: #fff; margin-bottom: 10px; }
footer a { color: #d7d7d7; display: block; margin: 6px 0; }
.copy { margin-top: 28px; border-top: 1px solid #222; padding-top: 16px; font-size: 13px; }

.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 50;
  width: 64px; height: 64px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.wa-float svg { width: 34px; height: 34px; }
.wa-float span {
  position: absolute; right: 74px; background: #111; color: #fff;
  padding: 6px 10px; border-radius: 8px; font-size: 12px; white-space: nowrap;
}

.page-hero { padding: 48px 0 20px; background: var(--bg); }
.page-hero h1 { max-width: 18ch; }

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .client-row { overflow-x: auto; grid-template-columns: repeat(6, 160px); }
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex !important; align-items: center; justify-content: center; }
  nav.menu {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #ffffff; border-bottom: 1px solid #dce8e0;
    flex-direction: column; align-items: stretch; padding: 12px 16px 18px;
    gap: 6px; flex-wrap: wrap;
  }
  header.site { position: sticky; }
  header.site .wrap { position: relative; }
  header.site.open nav.menu { display: flex; }
  nav.menu a { border-radius: 10px; }
  .grid-2, .grid-3, footer .cols { grid-template-columns: 1fr; }
  .catalog-cta { flex-direction: column; align-items: flex-start; }
  .hero { padding: 56px 0 64px; min-height: 460px; }
  .hero p.lead { font-size: 16px; }
  .brand img { height: 46px; max-width: 210px; }
  .wa-float span { display: none; }
  .topbar { display: none; }
  section { padding: 48px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .btn.lg { width: 100%; }
  .card-photo { height: 180px; }
}

.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); min-height: 320px; }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; }
.faq details p { margin-top: 8px; color: var(--muted); }
.legal p { margin: 0 0 14px; max-width: 78ch; }

.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.split .media { background: #f3f6f4; display: flex; align-items: center; justify-content: center; padding: 28px; }
.split .media img { max-height: 380px; width: auto; max-width: 100%; object-fit: contain; }
.split .copy { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.split .copy ul { margin: 16px 0 22px; padding-left: 18px; }
.split.green { background: #7ed321; color: #143016; }
.split.green h2, .split.forest h2 { color: #fff; }
.split.forest { background: #146b3a; color: #eaf6ee; }
.split.forest p, .split.green p { color: inherit; }
.split.light { background: #fff; }
.split .copy .btn { align-self: flex-start; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split .copy { padding: 28px 20px 36px; }
}
