:root {
  /* Premium Adventure HSL Palette */
  --bg-hue: 30;
  /* Warm sand tint */
  --bg: hsl(var(--bg-hue), 16%, 95%);
  /* Warm, soft sand white */
  --paper: #ffffff;
  --ink: hsl(210, 24%, 12%);
  /* Deep charcoal */
  --muted: hsl(210, 10%, 45%);
  /* Slate gray */
  --line: hsl(210, 14%, 88%);
  /* Crisp line border */

  --brand-h: 136;
  --brand-s: 32%;
  --brand-l: 22%;
  --brand: hsl(var(--brand-h), var(--brand-s), var(--brand-l));
  /* Forest Green */
  --brand-2: hsl(var(--brand-h), var(--brand-s), calc(var(--brand-l) - 4%));
  /* Darker forest green */
  --brand-light: hsl(var(--brand-h), var(--brand-s), calc(var(--brand-l) + 12%));
  /* Lighter forest green */

  --accent-h: 38;
  --accent-s: 85%;
  --accent-l: 52%;
  --accent: hsl(var(--accent-h), var(--accent-s), var(--accent-l));
  /* Golden sand */
  --accent-hover: hsl(var(--accent-h), var(--accent-s), calc(var(--accent-l) - 6%));

  --pill: hsl(var(--brand-h), 20%, 94%);
  --pill-line: hsl(var(--brand-h), 20%, 86%);

  --shadow: 0 8px 30px rgba(20, 36, 25, 0.05);
  --shadow-hover: 0 16px 40px rgba(20, 36, 25, 0.12);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;

  --container: 1220px;
  --sa-l: env(safe-area-inset-left, 0px);
  --sa-r: env(safe-area-inset-right, 0px);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Poppins, sans-serif
}

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

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

/* universal container with mobile-safe padding */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: calc(clamp(18px, 5vw, 28px) + var(--sa-l));
  padding-right: calc(clamp(18px, 5vw, 28px) + var(--sa-r));
}

/* Logo */

.logo-header {
  width: 100%;
  max-width: 175px;
  height: auto;
}

.logo-footer {
  width: 100%;
  max-width: 160px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: none;
  border-radius: 12px;
  padding: 10px 20px;
  font: inherit;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 20px rgba(30, 70, 32, 0.15);
}

.btn.primary:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 70, 32, 0.25);
}

.btn.primary:active {
  transform: translateY(0);
}

.btn.ghost {
  background: transparent;
  border: 1.5px solid var(--brand);
  color: var(--brand);
}

.btn.ghost:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 70, 32, 0.1);
}

.btn.ghost:active {
  transform: translateY(0);
}

.booking-mini {
  display: grid;
  gap: 10px;
  margin: 14px 0
}

.booking-mini label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600
}

.booking-mini input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink)
}

.booking-mini input:focus {
  outline: 2px solid rgba(43, 127, 214, .25);
  border-color: #b8d7fb
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(1.2) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 981px) {
  .header {
    top: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: saturate(1.2) blur(20px);
    border-radius: 0;
  }

  .header.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(15, 21, 32, 0.06);
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.header.scrolled .nav {
  min-height: 70px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-word {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: #0f1520;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.footer-mark {
  width: 32px;
  height: 32px;
  margin-right: 10px
}

.footer-brand {
  color: #fff;
  font-size: 26px;
  min-height: 36px
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px
}

.menu a {
  color: var(--muted);
  font-weight: 600;
  font-size: 18px;
  position: relative;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: var(--brand);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.burger {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #1c2742;
  position: relative
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #1c2742
}

.burger span::before {
  top: -6px
}

.burger span::after {
  top: 6px
}

@media (max-width:980px) {
  .menu {
    display: none
  }

  .burger {
    display: block
  }

  .nav {
    flex-wrap: wrap
  }

  .nav.open {
    width: 100%;
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--line);
  }

  .nav.open .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    padding: 12px 0;
  }

  .nav.open .menu a {
    width: 100%;
    padding: 10px 0;
    border-radius: 10px;
  }
}

@media (max-width:520px) {
  .nav {
    min-height: 72px
  }

  .actions .btn {
    display: none;
  }

  .actions {
    gap: 0;
  }

  .burger {
    margin-left: auto;
  }

  .brand {
    gap: 7px
  }

  .brand-mark {
    width: 26px;
    height: 26px
  }

  .brand-word {
    font-size: 24px;
    min-height: 36px
  }

  .actions {
    gap: 4px
  }

  .actions .btn {
    padding: 8px 8px;
    font-size: 12px
  }

  .burger {
    padding: 7px 8px
  }
}

/* Section shell */
.section {
  padding: 30px 0
}

.section h2 {
  font-size: clamp(22px, 3.4vw, 30px);
  margin: 0 0 6px;
  font-weight: 700
}

.section .sub {
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 500
}

/* HERO */
.hero {
  position: relative;
  color: #fff;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 21, 32, 0.08);
}

.search-section {
  position: relative;
  z-index: 10;
  margin-top: -56px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 20, 0.75), rgba(15, 26, 20, 0.35))
}

.hero-inner {
  position: relative;
  padding-top: clamp(100px, 16vh, 180px);
  padding-bottom: clamp(100px, 16vh, 180px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.h-title {
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 16px;
  max-width: 20ch;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.h-sub {
  font-size: clamp(15px, 2vw, 19px);
  opacity: .92;
  max-width: 700px;
  margin: 0 0 28px;
  line-height: 1.5;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

.h-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* HERO SEARCH WIDGET */
.search-widget {
  margin: 32px auto 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(15, 21, 32, 0.2);
  max-width: 900px;
  width: 100%;
  text-align: left;
}

.search-form {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 8px;
  align-items: center;
}

.search-field {
  display: flex;
  flex-direction: column;
  padding: 6px 16px;
  border-right: 1px solid rgba(15, 21, 32, 0.12);
}

.search-field:nth-child(3) {
  border-right: none;
}

.search-field label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 4px;
}

.search-field select,
.search-field input {
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  width: 100%;
  padding: 4px 0;
  cursor: pointer;
}

.search-btn-wrapper {
  padding-right: 4px;
}

.search-submit-btn {
  width: 100%;
  height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--brand);
  color: white;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.search-submit-btn:hover {
  background: var(--brand-2);
  box-shadow: 0 6px 20px rgba(30, 70, 32, 0.3);
}

/* select wrapper styling */
.select-wrapper {
  position: relative;
}

@media (max-width: 820px) {
  .search-form {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .search-field {
    border-right: none;
    border-bottom: 1px solid rgba(15, 21, 32, 0.08);
    padding: 8px 10px;
  }

  .search-btn-wrapper {
    padding: 8px 10px 4px;
  }

  .search-submit-btn {
    height: 48px;
  }
}

/* CAMPERS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.card.show {
  transform: translateY(0);
  opacity: 1
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--brand-light);
}

.card .img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover img {
  transform: scale(1.06);
}

.price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  color: var(--brand);
  box-shadow: 0 4px 15px rgba(20, 36, 25, 0.08);
}

.card .body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ttl {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

/* Camper card specs style */
.specs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 8px;
}

.spec-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-light);
  background: var(--pill);
  border: 1px solid var(--pill-line);
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.spec-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.row2 {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.cta-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cta-sm:hover {
  background: rgba(15, 21, 32, 0.04);
  color: var(--ink);
  border-color: var(--muted);
}

@media (max-width:640px) {
  .section {
    padding: 40px 0
  }

  .card .img {
    height: 200px
  }

  .card .body {
    padding: 18px
  }

  .row2 {
    justify-content: flex-start;
    flex-wrap: wrap
  }
}

/* WHY CHOOSE US */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit.show {
  transform: translateY(0);
  opacity: 1
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-light);
}

.benefit-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--pill);
  color: var(--brand);
  margin-bottom: 4px;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.benefit b {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.5;
}

@media (max-width:960px) {
  .benefits {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

@media (max-width:560px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}

/* OUR STORY & EDITORIAL LAYOUT */
.story-editorial {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.story-highlight {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--brand);
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin: 8px 0;
}

.story-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--line);
  position: relative;
  aspect-ratio: 4 / 3;
}

.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-visual:hover img {
  transform: scale(1.04);
}

@media (max-width: 900px) {
  .story-editorial {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.story {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease
}

.story.show {
  transform: translateY(0);
  opacity: 1
}

.story p {
  margin: .4rem 0;
  color: var(--muted);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}

/* CONTACT US */
.contact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form .full {
  grid-column: 1 / -1
}

.inp {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--line);
  padding: 14px;
  border-radius: 12px;
  background: #f9fbfd;
  transition: all 0.3s ease;
}

.inp:focus-within {
  border-color: var(--brand-light);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(30, 70, 32, 0.08);
}

.inp input,
.inp textarea {
  border: none;
  background: transparent;
  outline: none;
  font: inherit;
  width: 100%;
  color: var(--ink);
}

.inp textarea {
  min-height: 120px;
  resize: vertical
}

@media (max-width:780px) {
  .form {
    grid-template-columns: 1fr
  }
}

/* FOOTER */
.footer {
  background: hsl(220, 16%, 10%);
  color: #d9e2ef;
  margin-top: 60px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  position: relative;
  overflow: hidden;
}

.fwrap {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 60px calc(clamp(18px, 5vw, 28px) + var(--sa-r));
  padding-left: calc(clamp(18px, 5vw, 28px) + var(--sa-l));
}

.fwrap h4 {
  margin: 0 0 16px;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fwrap a {
  color: #a3b8cc;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.fwrap a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.copy {
  padding: 24px calc(clamp(18px, 5vw, 28px) + var(--sa-r));
  padding-left: calc(clamp(18px, 5vw, 28px) + var(--sa-l));
  text-align: center;
  color: #b9c6d6;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width:900px) {
  .fwrap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 20px;
    text-align: center;
  }

  .fwrap div[style*="display:grid"] {
    justify-items: center;
  }

  .fwrap div[style*="display:flex"] {
    justify-content: center !important;
  }

  .social-links {
    justify-content: center;
  }
}

.socials {
  margin-top: 16px
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center
}

.social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1b2a3f;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
  vertical-align: middle;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.fwrap .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  background: var(--accent);
  color: #0f1520;
  transform: translateY(-3px)
}

.social-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  margin: 0 auto;
}

.rights {
  margin: 12px 0 0;
  color: #7d8f9f;
  font-weight: 500;
  font-size: 14px
}

/* Hero mobile tweaks */
@media (max-width:720px) {
  .h-title {
    max-width: 100%
  }

  .h-cta .btn {
    padding: 12px 20px
  }
}

/* Floating WhatsApp */
.wa-floating {
  position: fixed;
  right: calc(24px + var(--sa-r));
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #2ddd6c, #1fb75a);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .35);
  z-index: 80;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  animation: wa-bounce 8s ease-in-out infinite;
}

.wa-floating:hover {
  background: linear-gradient(145deg, #1fb75a, #17a84d);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, .42);
  color: #fff;
}

.wa-floating svg {
  width: 28px;
  height: 28px
}

@keyframes wa-bounce {

  0%,
  70%,
  100% {
    transform: translateY(0)
  }

  15% {
    transform: translateY(-8px)
  }

  30% {
    transform: translateY(0)
  }

  45% {
    transform: translateY(-4px)
  }
}

/* No-JS fallback to show cards and sections without JS transition */
.no-js .reveal,
.no-js .card,
.no-js .benefit,
.no-js .story {
  opacity: 1 !important;
  transform: none !important;
}

/* Mobile-only auth links inside the drawer */
.menu-auth {
  display: none;
}

@media (max-width: 980px) {
  .nav.open .menu-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .nav.open .menu-auth .cta-sm,
  .nav.open .menu-auth .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Custom select chevron */
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 22px;
}

.select-chevron {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  pointer-events: none;
}

/* Make native date picker icon match the light widget */
.search-field input[type="date"] {
  color-scheme: light;
}

/* Testimonials */
.testimonials-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0 12px;
}

.testimonials-summary .stars {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
}

.testimonials-summary .summary {
  color: var(--muted);
  font-weight: 600;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.testimonial .quote {
  margin: 0 0 8px 0;
  color: #0f1724;
  line-height: 1.45;
}

.testimonial .meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .testimonials-summary {
    flex-direction: column;
    align-items: flex-start;
  }
}