/* ================================================================
   Vanformation — soft sunset palette drawn from the logo
   ================================================================ */
:root {
  --cream:      #FFF8EC;
  --peach:      #E2F4F6;
  --peach-deep: #CDEBEF;
  --orange:     #F09422;
  --orange-deep:#D4740C;
  --amber:      #F5C445;
  --amber-soft: #FBDB8C;
  --teal:       #55C4D6;
  --teal-deep:  #2F8A9C;
  --teal-ink:   #1F5F6D;
  --ink:        #2E3A45;
  --ink-soft:   #5A6672;
  --brown:      #8C5B3F;
  --white:      #FFFFFF;
  --radius:     24px;
  --shadow:     0 10px 30px rgba(140, 91, 63, 0.14);
  --shadow-big: 0 18px 50px rgba(140, 91, 63, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', 'Avenir Next', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Fredoka', 'Nunito', sans-serif;
  font-weight: 600;
  line-height: 1.15;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: rgba(240, 148, 34, 0.14);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow--light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.22);
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 14px 30px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(212, 116, 12, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 14px 28px rgba(212, 116, 12, 0.42);
}
.btn--ghost {
  background: var(--white);
  color: var(--orange-deep);
  box-shadow: inset 0 0 0 2.5px var(--orange);
}
.btn--small { padding: 10px 22px; font-size: 0.95rem; }
.btn--full { width: 100%; }

/* ---------------- Nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(140, 91, 63, 0.12);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.nav__logo {
  height: 112px;
  width: auto;
  transition: transform 0.2s ease;
}
.nav__brand:hover .nav__logo { transform: scale(1.05) rotate(-1deg); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__links a:not(.btn) {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  position: relative;
}
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 3px;
  border-radius: 3px;
  background: var(--orange);
  transition: width 0.25s ease;
}
.nav__links a:not(.btn):hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__burger span {
  width: 26px; height: 3px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #FFF4E2 0%, var(--peach-deep) 100%);
  padding: 70px 0 130px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.hero__sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin: 18px 0 26px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.hero__ticks {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-weight: 700;
  color: var(--teal-ink);
}
.hero__img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-big);
}
.float { animation: float 6s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ---------------- Waves ---------------- */
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  bottom: -1px;
  pointer-events: none;
}
.wave svg { width: 100%; height: 72px; display: block; }
.wave--flip {
  top: -1px;
  bottom: auto;
  transform: scaleY(-1);
}
.wave--cream,
.wave--cream-top { color: var(--cream); }
.wave--peach-top { color: var(--peach); }
.wave--teal-top  { color: var(--teal-ink); }

/* ---------------- Sections ---------------- */
.section {
  position: relative;
  padding: 130px 0 100px;
}
.section--cream  { background: var(--cream); }
.section--peach  { background: var(--peach); }
.section--teal   { background: linear-gradient(180deg, var(--teal-deep) 0%, var(--teal-ink) 100%); }
.section--sunset {
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-deep) 55%, var(--brown) 130%);
}

.section__head {
  max-width: 640px;
  margin: 0 auto 54px;
  text-align: center;
}
.section__head p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.section__head--light h2 { color: var(--white); }
.section__head--light p:not(.eyebrow) { color: rgba(255, 255, 255, 0.85); }

/* ---------------- Van cards ---------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: var(--shadow-big);
}
.card__art { padding: 18px 18px 0; }
.card__art--photo {
  padding: 0;
  height: 240px;
}
.card__art--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__art--peach { background: linear-gradient(180deg, #E2F4F6, #FFF8EC); }
.card__art--teal  { background: linear-gradient(180deg, #D8F3F6, #FFF8EC); }
.card__art--amber { background: linear-gradient(180deg, #FFF0C9, #FFF8EC); }
.card__body { padding: 22px 26px 28px; }
.card__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.card__tag--orange { background: rgba(240,148,34,0.16);  color: var(--orange-deep); }
.card__tag--teal   { background: rgba(85,196,214,0.25); color: var(--teal-ink); }
.card__tag--amber  { background: rgba(245,196,69,0.3);  color: #A8721B; }
.card__body p { color: var(--ink-soft); margin: 8px 0 16px; }
.card__perks {
  list-style: none;
  display: grid;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
}
.card__perks li::before {
  content: '✓';
  color: var(--teal-deep);
  font-weight: 800;
  margin-right: 10px;
}

/* ---------------- Features ---------------- */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.feature {
  background: var(--white);
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.feature:hover { transform: translateY(-6px); }
.feature__icon {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--peach);
  margin-bottom: 14px;
}
.feature__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--orange-deep);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature h3 { font-size: 1.08rem; margin-bottom: 6px; }
.feature p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------------- Process steps ---------------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 24px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.step__num {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  color: var(--white);
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(212, 116, 12, 0.3);
}
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------------- Gallery ---------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.gallery__item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-big);
  transition: transform 0.25s ease;
}
.gallery__item:hover { transform: translateY(-8px) rotate(0.6deg); }
.gallery__item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.gallery__item figcaption {
  padding: 16px 20px 20px;
  font-weight: 700;
  font-size: 0.98rem;
}

/* ---------------- Reviews ---------------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.review {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.review::before {
  content: '“';
  position: absolute;
  top: -6px; left: 18px;
  font-family: 'Fredoka', sans-serif;
  font-size: 4.4rem;
  color: var(--teal);
  opacity: 0.55;
}
.review p {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.review footer { font-weight: 800; }
.review footer span { color: var(--ink-soft); font-weight: 600; font-size: 0.9rem; }
.reviews__note {
  text-align: center;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* ---------------- Contact ---------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.contact__copy { color: var(--white); }
.contact__copy h2 { color: var(--white); margin-bottom: 14px; }
.contact__copy > p { color: rgba(255, 255, 255, 0.9); font-size: 1.08rem; }
.contact__points {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}
.contact__points li::before {
  content: '✓';
  color: var(--amber-soft);
  font-weight: 800;
  margin-right: 10px;
}
.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-big);
}
.form__row { margin-bottom: 18px; }
.form__row label {
  display: block;
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.form__row input,
.form__row select,
.form__row textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}
.form__row input:focus,
.form__row select:focus,
.form__row textarea:focus { border-color: var(--teal); }
.form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.form__error {
  margin-top: 16px;
  text-align: center;
  font-weight: 800;
  color: #A03030;
  background: rgba(160, 48, 48, 0.1);
  border-radius: 14px;
  padding: 12px;
}
.form__success {
  margin-top: 16px;
  text-align: center;
  font-weight: 800;
  color: var(--teal-ink);
  background: rgba(85, 196, 214, 0.2);
  border-radius: 14px;
  padding: 12px;
}

/* ---------------- WhatsApp ---------------- */
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  background: #25D366;
  box-shadow: 0 8px 20px rgba(18, 140, 66, 0.35);
}
.btn--whatsapp:hover { box-shadow: 0 14px 28px rgba(18, 140, 66, 0.42); }
.btn--whatsapp svg,
.whatsapp-fab svg { fill: #fff; }
.btn--whatsapp svg { width: 22px; height: 22px; }
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(18, 140, 66, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(18, 140, 66, 0.5);
}
.whatsapp-fab svg { width: 34px; height: 34px; }

/* ---------------- Footer ---------------- */
.footer {
  background: #23303B;
  color: rgba(255, 255, 255, 0.85);
  padding: 56px 0 24px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer__logo {
  height: 120px;
  width: auto;
  margin-bottom: 14px;
}
.footer__links {
  display: grid;
  gap: 10px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 700;
}
.footer__links a:hover { color: var(--amber); }
.footer__contact p { margin-bottom: 8px; font-weight: 700; }
.footer__contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer__contact a:hover { color: var(--amber); }
.footer__small { font-size: 0.82rem; opacity: 0.6; font-weight: 400 !important; }
.footer__legal {
  text-align: center;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  opacity: 0.7;
}

/* ---------------- Reveal on scroll ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .float { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__ctas, .hero__ticks { justify-content: center; }
  .cards, .gallery, .reviews { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .features, .steps { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__logo { margin: 0 auto 14px; }

  .nav__burger { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    background: var(--cream);
    padding: 26px 0 30px;
    border-bottom: 1px solid rgba(140, 91, 63, 0.15);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.open { display: flex; }
}

@media (max-width: 560px) {
  .features, .steps { grid-template-columns: 1fr; }
  .section { padding: 110px 0 80px; }
  .contact__form { padding: 26px 20px; }
}
