:root {
  --bg: #f5f6f7;
  --surface: #ffffff;
  --surface-2: #edf1f3;
  --ink: #1d2123;
  --muted: #5b6165;
  --line: #d9e0e4;
  --brand: #fb5409;
  --brand-dark: #d64808;
  --brand-soft: #ffe0d2;
  --charcoal: #2d3133;
  --charcoal-2: #1f2427;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 22, 25, .14);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }
.section { padding: 96px 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;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 9999;
  background: var(--brand);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 246, 247, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(222, 214, 202, .75);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { width: 260px; height: auto; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 750;
  font-size: 14px;
}
.nav-menu a { position: relative; padding: 8px 0; }
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav-menu a:hover,
.nav-menu a.is-active { color: var(--ink); }
.nav-menu a:hover::after,
.nav-menu a.is-active::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 10px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 13px 30px rgba(251, 84, 9, .22);
}
.btn-primary:hover { background: #ff6b28; color: var(--white); box-shadow: 0 18px 36px rgba(251, 84, 9, .28); }
.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: rgba(255,255,255,.12);
  padding: 14px 20px;
}
.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.07);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.12); }
.btn-header { padding: 12px 18px; font-size: 13px; white-space: nowrap; }
.btn-large { padding: 17px 24px; min-height: 54px; }
.btn-full { width: 100%; padding: 17px 24px; border: 0; }
.whatsapp-icon {
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  display: inline-block;
}
.btn .whatsapp-icon,
.floating-whatsapp .whatsapp-icon {
  color: currentColor;
}

/* Typography */
.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
}
.eyebrow.dark { color: var(--brand-dark); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: .95;
  letter-spacing: -.055em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin-bottom: 18px;
}
h3 {
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: -.025em;
  margin-bottom: 10px;
}
p { line-height: 1.65; }
.muted { color: rgba(255,255,255,.72); }
.problem .muted, .faq .muted, .models .muted { color: var(--muted); }

/* Hero */
.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  padding: 80px 0;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img,
.hero-media picture {
  width: 100%;
  height: 100%;
}
.hero-media img { object-fit: cover; object-position: center; }
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17,20,24,.95), rgba(17,20,24,.82) 38%, rgba(17,20,24,.28) 100%),
    radial-gradient(circle at 15% 70%, rgba(255, 142, 0, .18), transparent 34%);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .55fr);
  gap: 56px;
  align-items: end;
}
.hero-copy { max-width: 760px; }
.hero-text {
  max-width: 640px;
  font-size: clamp(19px, 2.2vw, 26px);
  line-height: 1.45;
  color: rgba(255,255,255,.86);
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.trust-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-strip span {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.82);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.quote-card {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.quote-card-label {
  display: inline-flex;
  background: var(--brand-soft);
  color: var(--brand-dark);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.quote-card h2 { font-size: 27px; letter-spacing: -.02em; }
.quote-card ul {
  padding-left: 18px;
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}
.quote-card li + li { margin-top: 10px; }

/* Problem + benefits */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 64px;
  align-items: center;
}
.align-start { align-items: start; }
.lead-copy p { color: var(--muted); font-size: 18px; }
.inline-link {
  color: var(--brand-dark);
  font-weight: 900;
  border-bottom: 2px solid var(--brand);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 24px rgba(20,20,20,.04);
}
.benefit-card .icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand-dark);
  border-radius: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}
.benefit-card p { color: var(--muted); font-size: 15px; }

/* Campers */
.campers { background: var(--surface); }
.section-heading {
  text-align: center;
  max-width: 780px;
  margin-bottom: 44px;
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.use-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 18px;
}
.use-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 220px;
}
.use-card.large {
  grid-row: span 2;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
}
.use-card.large picture { min-height: 440px; }
.use-card.large img { width: 100%; height: 100%; object-fit: cover; }
.use-card.large div { padding: 26px; }
.use-card p { color: var(--muted); }

/* Gallery */
.gallery { background: var(--charcoal); color: var(--white); }
.gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.gallery-head h2 { max-width: 740px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.05fr .78fr 1.05fr;
  grid-auto-rows: 260px;
  gap: 16px;
}
.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: var(--charcoal-2);
}
.gallery-grid figure:first-child { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid img,
.gallery-grid picture { width: 100%; height: 100%; }
.gallery-grid img { object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(0,0,0,.52);
  color: white;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

/* Equipment */
.equipment {
  background: var(--charcoal-2);
  color: var(--white);
}
.equipment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.equipment-list article {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
}
.equipment-list p { color: rgba(255,255,255,.72); }

/* Models */
.models { background: var(--bg); }
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.model-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 10px 28px rgba(20,20,20,.05);
}
.model-card.featured {
  border-color: var(--brand);
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(255, 142, 0, .16);
}
.badge {
  display: inline-flex;
  margin-bottom: 18px;
  background: var(--brand);
  color: var(--white);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.model-card p { color: var(--muted); }
.model-card ul { padding-left: 20px; margin-bottom: 0; color: var(--muted); line-height: 1.85; }

/* Process */
.process { background: var(--charcoal); color: var(--white); }
.section-heading.light p:not(.eyebrow) { color: rgba(255,255,255,.74); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process-grid article {
  border-top: 3px solid var(--brand);
  background: rgba(255,255,255,.06);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 24px;
  min-height: 250px;
}
.process-grid span {
  display: block;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -.06em;
  color: rgba(255,142,0,.92);
  margin-bottom: 34px;
}
.process-grid p { color: rgba(255,255,255,.72); }

/* FAQ */
.faq { background: var(--surface); }
.faq-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.faq-list { display: grid; gap: 12px; }
details {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  color: var(--brand-dark);
  font-size: 22px;
}
details[open] summary::after { content: "−"; }
details p { color: var(--muted); margin: 14px 0 0; }

/* CTA */
.cta-band { padding-top: 0; background: var(--surface); }
.cta-card {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,142,0,.22), transparent 28%),
    linear-gradient(135deg, var(--charcoal), #2c3338);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  box-shadow: var(--shadow);
}
.cta-card p:not(.eyebrow) { color: rgba(255,255,255,.76); margin-bottom: 0; }
.cta-card h2 { max-width: 720px; }

/* Parallax CTA */
.parallax-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 0;
  background:
    linear-gradient(115deg, rgba(31, 36, 39, .96) 0%, rgba(45, 49, 51, .86) 42%, rgba(251, 84, 9, .22) 100%),
    url("../img/camper-exterior-lateral.webp") center / cover fixed no-repeat;
}

.parallax-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 28%, rgba(251, 84, 9, .32), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  pointer-events: none;
}

.parallax-cta .cta-card {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(45,49,51,.94), rgba(31,36,39,.88));
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}

@media (max-width: 1020px), (prefers-reduced-motion: reduce) {
  .parallax-cta {
    background-attachment: scroll;
  }
}

/* Contact */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.contact-copy p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.contact-card {
  display: grid;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.contact-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 70px rgba(20,20,20,.08);
}
.form-row { display: grid; gap: 14px; margin-bottom: 14px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
.lead-form label { display: grid; gap: 8px; margin-bottom: 14px; }
.lead-form label span { font-weight: 850; font-size: 14px; }
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lead-form textarea { resize: vertical; min-height: 130px; }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 142, 0, .16);
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
}

.form-note a {
  color: var(--brand-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* Legal pages */
.legal-section { background: var(--bg); }
.legal-wrap { max-width: 980px; }
.legal-wrap > h1 {
  font-size: clamp(38px, 6vw, 68px);
  color: var(--ink);
}
.legal-wrap > .lead-copy {
  color: var(--muted);
  font-size: 18px;
  max-width: 860px;
}
.legal-card {
  margin-top: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 24px 70px rgba(20,20,20,.08);
}
.legal-card h2 {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -.025em;
  margin: 36px 0 12px;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}
.legal-card strong { color: var(--ink); }
.legal-card ul,
.legal-card ol {
  padding-left: 22px;
  margin: 0 0 18px;
}
.legal-card li + li { margin-top: 8px; }
.legal-card a {
  color: var(--brand-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-updated {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.legal-actions { margin-top: 28px; }

/* Footer */
.site-footer {
  background: #101316;
  color: rgba(255,255,255,.78);
  padding: 44px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: start;
}
.site-footer img {
  background: white;
  padding: 10px 12px;
  border-radius: 14px;
  width: 240px;
  margin-bottom: 16px;
}
.site-footer p { margin-bottom: 0; max-width: 520px; }
.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 800;
}
.footer-links a:hover { color: var(--brand); }
.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 22px;
  font-size: 13px;
  color: rgba(255,255,255,.58);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  background: #25d366;
  color: var(--white);
  border-radius: 999px;
  width: 60px;
  height: 60px;
  font-weight: 950;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 18px 40px rgba(37, 211, 102, .28);
}

@media (max-width: 1020px) {
  .btn-header { display: none; }
  .nav-toggle { display: inline-block; }
  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 12px; }
  .hero-grid,
  .two-col,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .quote-card { max-width: 560px; }
  .benefits-grid,
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .use-grid { grid-template-columns: 1fr 1fr; }
  .use-card.large { grid-column: 1 / -1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure:first-child { grid-column: span 1; }
  .models-grid { grid-template-columns: 1fr; }
  .model-card.featured { transform: none; }
  .cta-card { flex-direction: column; align-items: start; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, var(--max)); }
  .section { padding: 72px 0; }
  .brand img { width: 190px; }
  .hero { min-height: auto; padding: 72px 0 42px; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(17,20,24,.92), rgba(17,20,24,.83) 48%, rgba(17,20,24,.9) 100%);
  }
  .hero-actions { flex-direction: column; }
  .btn-large { width: 100%; }
  .trust-strip span { width: 100%; text-align: center; }
  .benefits-grid,
  .use-grid,
  .equipment-list,
  .process-grid,
  .gallery-grid,
  .form-row.two,
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 250px; }
  .gallery-grid .tall { grid-row: span 1; }
  .gallery-head { flex-direction: column; align-items: start; }
  .lead-form { padding: 20px; }
  .cta-card { padding: 28px; }
  .footer-links { justify-content: flex-start; }
  .floating-whatsapp { right: 14px; left: auto; width: 56px; height: 56px; text-align: center; justify-content: center; display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


.floating-whatsapp .whatsapp-icon { width: 30px; height: 30px; }
.floating-whatsapp span:not(.sr-only) { display: none; }
