/* ============================================================
   SOCIAL WHEELS — your fun, their future, our passion
   Shared stylesheet for all pages
   Logo-inspired palette: orange-red, leaf-green, sun-yellow
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background-color: #fffaed;
  color: #2a2118;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== VARIABLES (Social Wheels logo palette) ===== */
:root {
  --sw-red:     #e8442d;   /* dominant orange-red from logo */
  --sw-orange:  #f08233;   /* warm secondary orange */
  --sw-yellow:  #f5c517;   /* sun yellow from logo */
  --sw-green:   #5ec734;   /* leaf green from logo */
  --sw-dark:    #2a2118;   /* the hands / charcoal */
  --sw-cream:   #fffaed;   /* warm cream background */
  --sw-paper:   #fdf0d8;   /* aged paper accent */
  --sw-tan:     #c9a96e;   /* leather tan */
  --sw-brown:   #3b2a1a;   /* deep nostalgic brown */
  --sw-soft:    #7a6045;   /* muted brown body text */
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, .display {
  font-family: 'Permanent Marker', cursive;
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.serif { font-family: 'Playfair Display', serif; font-style: italic; }

/* ===== NAV ===== */
nav.sw-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(42,33,24,0.95);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2rem;
  border-bottom: 3px solid var(--sw-yellow);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--sw-yellow);
  font-family: 'Permanent Marker', cursive;
  font-size: 1.4rem;
  letter-spacing: 1px;
  /* lift the logo's left padding so it visually anchors the corner */
  padding: 0.1rem 0;
}
.nav-logo img { height: 64px; width: auto; display: block; }
.nav-logo .nav-logo-fallback {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--sw-cream);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--sw-yellow); }
.nav-links a.active { color: var(--sw-yellow); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--sw-green);
}

/* Language toggle */
.lang-toggle { display: flex; gap: 0.3rem; align-items: center; }
.lang-btn {
  background: transparent;
  border: 1px solid var(--sw-tan);
  color: var(--sw-tan);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  transition: all 0.2s;
}
.lang-btn.active, .lang-btn:hover {
  background: var(--sw-yellow);
  color: var(--sw-dark);
  border-color: var(--sw-yellow);
}

/* Mobile menu */
.nav-burger { display: none; }
@media (max-width: 820px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; right: 0; left: 0; background: rgba(42,33,24,0.98); padding: 1.5rem; gap: 1.2rem; border-top: 1px solid var(--sw-tan); }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; background: transparent; border: none; color: var(--sw-yellow); font-size: 1.6rem; cursor: pointer; }
  nav.sw-nav { padding: 0.6rem 1rem; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: 'Lato', sans-serif;
}
.btn-primary { background: var(--sw-red); color: #fff; }
.btn-primary:hover {
  background: var(--sw-orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,68,45,0.4);
}
.btn-yellow { background: var(--sw-yellow); color: var(--sw-dark); }
.btn-yellow:hover { background: #ffdd57; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,23,0.4); }
.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--sw-dark); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; border: 2px solid var(--sw-dark); color: var(--sw-dark); }
.btn-outline-dark:hover { background: var(--sw-dark); color: var(--sw-cream); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 4rem;
  position: relative;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(232,68,45,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 70%, rgba(94,199,52,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 50%, #2a2118 0%, #1a130a 100%);
  overflow: hidden;
}

/* Concentric rings echoing the logo swirl */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  opacity: 0.12;
  pointer-events: none;
  animation: pulse 5s ease-in-out infinite alternate;
}
.hero-ring:nth-child(1) { width: 320px; height: 320px; top: 12%; left: -6%; border-color: var(--sw-yellow); animation-delay: 0s; }
.hero-ring:nth-child(2) { width: 520px; height: 520px; top: 6%; left: -14%; border-color: var(--sw-red); animation-delay: 0.5s; }
.hero-ring:nth-child(3) { width: 720px; height: 720px; top: 0%; left: -22%; border-color: var(--sw-green); animation-delay: 1s; }
.hero-ring:nth-child(4) { width: 320px; height: 320px; bottom: 5%; right: -5%; border-color: var(--sw-red); animation-delay: 0.3s; }
.hero-ring:nth-child(5) { width: 520px; height: 520px; bottom: 0%; right: -14%; border-color: var(--sw-yellow); animation-delay: 0.8s; }
@keyframes pulse { from { opacity: 0.08; transform: scale(1); } to { opacity: 0.2; transform: scale(1.04); } }

/* Floating petals */
.hero-flowers { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.petal {
  position: absolute;
  font-size: clamp(1.4rem, 3.5vw, 2.8rem);
  opacity: 0.22;
  animation: floatUp 14s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.12; }
  50%  { opacity: 0.28; }
  100% { transform: translateY(-30px) rotate(20deg); opacity: 0.12; }
}

.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-eyebrow {
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-yellow);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(2.8rem, 8vw, 6rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 0 var(--sw-red), 6px 6px 24px rgba(0,0,0,0.6);
}
.hero h1 .accent { color: var(--sw-yellow); }
.hero-slogan {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--sw-tan);
  margin-bottom: 2.5rem;
  letter-spacing: 0.5px;
}
.hero-cars {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-car-badge {
  background: rgba(245,197,23,0.12);
  border: 1px solid var(--sw-yellow);
  color: var(--sw-yellow);
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  font-size: 0.86rem;
  letter-spacing: 0.5px;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-hint {
  margin-top: 3rem;
  color: var(--sw-tan);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ===== SECTIONS ===== */
section { padding: 3.2rem 2rem; position: relative; }
.container { max-width: 1140px; margin: 0 auto; }
#cars .container { max-width: 1280px; }
.section-header { text-align: center; margin-bottom: 2rem; }
.section-badge {
  display: inline-block;
  background: var(--sw-yellow);
  color: var(--sw-dark);
  font-family: 'Permanent Marker', cursive;
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-badge.green { background: var(--sw-green); color: #fff; }
.section-badge.red { background: var(--sw-red); color: #fff; }
.section-title {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--sw-dark);
  line-height: 1.15;
}
.section-subtitle {
  margin-top: 0.4rem;
  color: var(--sw-soft);
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0.9rem auto;
  max-width: 300px;
  justify-content: center;
}
.divider-line { flex: 1; height: 1px; background: var(--sw-tan); opacity: 0.5; }
.divider-symbol { font-size: 1.2rem; }

/* ===== CARS GRID ===== */
#cars { background: var(--sw-paper); }
.cars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
/* on tablet: 2 columns */
@media (max-width: 1024px) {
  .cars-grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
}
/* on phone: 1 column */
@media (max-width: 560px) {
  .cars-grid { grid-template-columns: 1fr; gap: 1.4rem; }
}
.car-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(42,33,24,0.1);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(42,33,24,0.18);
  border-color: var(--sw-yellow);
}
.car-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media (max-width: 1024px) { .car-img-wrap { height: 240px; } }
.car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.car-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-family: 'Permanent Marker', cursive;
  text-align: center;
  padding: 1rem;
}
.car-placeholder .ph-icon { font-size: 3.5rem; line-height: 1; opacity: 0.7; }
.car-placeholder .ph-label { font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; }
.car-ph-porsche911 { background: linear-gradient(135deg, #f08233 0%, #b03a18 100%); }
.car-ph-apal       { background: linear-gradient(135deg, #f5c517 0%, #c97e07 100%); }
.car-ph-t2         { background: linear-gradient(135deg, #5ec734 0%, #2d7a18 100%); }
.car-ph-defender   { background: linear-gradient(135deg, #5a6f3a 0%, #2f4019 100%); }
.car-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--sw-yellow);
  color: var(--sw-dark);
  font-family: 'Permanent Marker', cursive;
  font-size: 0.85rem;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 1px;
}
.car-body { padding: 1.2rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
@media (max-width: 1024px) { .car-body { padding: 1.6rem 1.8rem 1.8rem; } }
.car-year {
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-red);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.car-name {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.25rem;
  color: var(--sw-dark);
  margin-bottom: 0.7rem;
  line-height: 1.2;
}
@media (max-width: 1024px) { .car-name { font-size: 1.5rem; } }
.car-desc { color: var(--sw-soft); line-height: 1.55; font-size: 0.88rem; margin-bottom: 1rem; flex: 1; }
@media (max-width: 1024px) { .car-desc { font-size: 0.97rem; line-height: 1.65; } }
.car-specs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.spec-tag {
  background: var(--sw-cream);
  border: 1px solid var(--sw-tan);
  color: var(--sw-brown);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}
.car-cta {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: stretch;
  border-top: 1px dashed var(--sw-tan);
  padding-top: 0.9rem;
}
@media (min-width: 1025px) {
  .car-cta { flex-direction: column; }
}
.car-price {
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-red);
  font-size: 0.95rem;
  line-height: 1.3;
}
.car-price-sub { display: block; font-family: 'Lato', sans-serif; color: var(--sw-soft); font-size: 0.75rem; font-weight: 400; }
.car-link {
  text-decoration: none;
  color: var(--sw-dark);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--sw-yellow);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.car-link:hover { color: var(--sw-red); }

/* ===== CAR DETAIL PAGE ===== */
.car-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.car-hero-porsche911 {
  background:
    linear-gradient(135deg, rgba(248,160,90,0.72) 0%, rgba(190,80,42,0.80) 100%),
    url('../images/porsche911/hero.jpg') center/cover no-repeat;
  background-blend-mode: multiply, normal;
}
.car-hero-apal {
  background:
    linear-gradient(135deg, rgba(250,210,80,0.70) 0%, rgba(190,130,30,0.80) 100%),
    url('../images/apal/hero.jpg') center/cover no-repeat;
  background-blend-mode: multiply, normal;
}
.car-hero-t2 {
  background:
    linear-gradient(135deg, rgba(140,210,90,0.72) 0%, rgba(60,130,40,0.82) 100%),
    url('../images/vw/hero.jpg') center/cover no-repeat;
  background-blend-mode: multiply, normal;
}
.car-hero-defender {
  background:
    linear-gradient(135deg, rgba(140,150,110,0.70) 0%, rgba(70,90,50,0.85) 100%),
    url('../images/defender/hero.jpg') center/cover no-repeat;
  background-blend-mode: multiply, normal;
}
.car-hero-inner { text-shadow: 0 2px 14px rgba(0,0,0,0.45); }
.car-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.car-hero-year {
  font-family: 'Permanent Marker', cursive;
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}
.car-hero-name {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.25);
}
.car-hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.3vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
}
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; letter-spacing: 1px; text-transform: uppercase; }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

.car-detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
@media (max-width: 800px) { .car-detail-grid { grid-template-columns: 1fr; gap: 2rem; } }
.car-story p { color: var(--sw-soft); font-size: 1.02rem; line-height: 1.8; margin-bottom: 1.1rem; }
.car-story strong { color: var(--sw-red); }
.car-story h3 {
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-dark);
  font-size: 1.5rem;
  margin: 1.5rem 0 0.7rem;
}
.car-specs-box {
  background: var(--sw-cream);
  border: 2px solid var(--sw-tan);
  border-radius: 18px;
  padding: 1.8rem;
  position: sticky;
  top: 100px;
}
.car-specs-box h3 {
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--sw-tan);
  font-size: 0.92rem;
}
.spec-row:last-of-type { border-bottom: none; }
.spec-row .spec-key { color: var(--sw-soft); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; font-size: 0.8rem; }
.spec-row .spec-val { color: var(--sw-dark); }

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.8rem;
  margin-top: 2rem;
}
.image-grid .ph {
  aspect-ratio: 4/3;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sw-tan), var(--sw-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-family: 'Permanent Marker', cursive;
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== STORY / INITIATIVE SECTION ===== */
#initiative {
  background: linear-gradient(135deg, #2d4a18 0%, #1a2e08 50%, var(--sw-brown) 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
#initiative::before {
  content: '☮';
  position: absolute;
  font-size: 42vw;
  color: rgba(255,255,255,0.02);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
#initiative .section-title { color: var(--sw-cream); }
#initiative .section-subtitle { color: #b8d088; }

.initiative-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 800px) { .initiative-content { grid-template-columns: 1fr; gap: 2rem; } }
.initiative-text p {
  color: #d4e6b0;
  line-height: 1.85;
  font-size: 1.04rem;
  margin-bottom: 1.1rem;
}
.initiative-text strong { color: var(--sw-green); }
.initiative-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(94,199,52,0.3);
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.stat-icon { font-size: 1.8rem; margin-bottom: 0.4rem; }
.stat-value {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.5rem;
  color: var(--sw-yellow);
  line-height: 1;
}
.stat-label { color: #b8d088; font-size: 0.78rem; margin-top: 0.3rem; }

/* ===== PRICING ===== */
#pricing { background: #fff8ec; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 4px 20px rgba(42,33,24,0.08);
  border: 2px solid var(--sw-tan);
  text-align: center;
  position: relative;
  transition: transform 0.3s;
  /* Keep all 4 cards consistent: items stack, the features list grows so the
     button ends up at the same vertical position across cards. */
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card .pricing-features { flex: 1 1 auto; }
.pricing-card > a.btn { margin-top: auto; }
.pricing-card .accent-bar {
  height: 4px;
  border-radius: 2px;
  margin: 0 auto 1rem;
  width: 60px;
}
.bar-red    { background: var(--sw-red); }
.bar-yellow { background: var(--sw-yellow); }
.bar-green  { background: var(--sw-green); }
.bar-brown  { background: var(--sw-brown); }
.pricing-car-name {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.2rem;
  color: var(--sw-dark);
  margin-bottom: 0.2rem;
}
.pricing-car-year { color: var(--sw-red); font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; }
.pricing-amount {
  font-family: 'Permanent Marker', cursive;
  font-size: 2.4rem;
  color: var(--sw-red);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.pricing-per { color: var(--sw-soft); font-size: 0.85rem; margin-bottom: 0.4rem; }
/* Reserve consistent space for the "Nu (seizoen): € X p.d." line so all
   pricing cards line up even if one car is unavailable in the active season. */
.pricing-card .sw-now-line { min-height: 1.2rem; margin-bottom: 0.7rem; }
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.4rem;
}
.pricing-features li {
  padding: 0.45rem 0;
  border-bottom: 1px dashed #e8d8b8;
  color: var(--sw-soft);
  font-size: 0.88rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.pricing-features li::before { content: '✿'; color: var(--sw-green); }
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--sw-soft);
  font-style: italic;
  font-size: 0.9rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== AVAILABILITY / CALENDAR ===== */
#availability { background: var(--sw-cream); }
.availability-table {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(42,33,24,0.08);
  border-collapse: collapse;
}
.availability-table th,
.availability-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #f3e6c8;
  font-size: 0.92rem;
}
.availability-table th {
  background: var(--sw-dark);
  color: var(--sw-yellow);
  font-family: 'Permanent Marker', cursive;
  font-size: 1rem;
  letter-spacing: 1px;
}
.availability-table td:first-child {
  text-align: left;
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-dark);
  font-size: 1rem;
}
.av-pill { display: inline-block; padding: 0.25rem 0.8rem; border-radius: 14px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.av-free { background: rgba(94,199,52,0.18); color: #2d7a18; }
.av-busy { background: rgba(232,68,45,0.15); color: var(--sw-red); }
.av-soon { background: rgba(245,197,23,0.22); color: #8a6b07; }
.availability-legend { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; font-size: 0.85rem; color: var(--sw-soft); }
.availability-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.availability-legend i { display: inline-block; width: 14px; height: 14px; border-radius: 4px; }

/* ===== CONTACT / FORM ===== */
#contact { background: var(--sw-cream); }
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) { .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; } }
.contact-info h3 { font-family: 'Permanent Marker', cursive; font-size: 1.5rem; color: var(--sw-dark); margin-bottom: 1rem; }
.contact-info p { color: var(--sw-soft); line-height: 1.7; margin-bottom: 1.4rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--sw-soft);
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}
.contact-detail-icon { font-size: 1.2rem; width: 1.8rem; text-align: center; color: var(--sw-red); }
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 2.2rem;
  box-shadow: 0 4px 30px rgba(42,33,24,0.1);
  border: 2px solid var(--sw-tan);
}
.form-row { margin-bottom: 1.1rem; }
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row.two-col .form-row { margin-bottom: 0; }
@media (max-width: 540px) { .form-row.two-col { grid-template-columns: 1fr; gap: 1.1rem; } }
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sw-dark);
  margin-bottom: 0.35rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e8d8b0;
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--sw-dark);
  background: var(--sw-cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--sw-red); background: #fff; }
.form-row textarea { min-height: 110px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 1rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 0.5rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  color: var(--sw-green);
  font-weight: 700;
  font-size: 1.1rem;
}
.form-success.show { display: block; }

/* ===== FOOTER ===== */
footer {
  background: #1a130a;
  color: var(--sw-tan);
  text-align: center;
  padding: 3rem 2rem 2rem;
  border-top: 3px solid var(--sw-yellow);
}
.footer-logo {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.8rem;
  color: var(--sw-yellow);
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.footer-logo img { height: 72px; width: auto; display: block; margin: 0 auto 0.6rem; }
.footer-slogan { font-style: italic; color: var(--sw-tan); font-size: 0.95rem; margin-bottom: 1.5rem; }
.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.footer-links a {
  color: var(--sw-tan);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sw-yellow); }
.footer-copy { font-size: 0.8rem; color: #6b4f30; line-height: 1.6; }
.footer-trio {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
}
.footer-trio span { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.footer-trio .r { background: var(--sw-red); }
.footer-trio .y { background: var(--sw-yellow); }
.footer-trio .g { background: var(--sw-green); }

/* ===== WAVY DIVIDER ===== */
.wave-divider { display: block; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }

/* ===== LANGUAGE SWITCHING ===== */
.lang-nl .en { display: none; }
.lang-en .nl { display: none; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}


/* ===== UTIL ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

/* ===== CLICKABLE CAR PHOTO (homepage) ===== */
.car-img-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
/* the photo wrapper hides overflow so the scaled image stays inside the card */
.car-img-link .car-img-wrap {
  overflow: hidden;
  transition: filter 0.25s ease;
}
/* the image itself scales smoothly on hover */
.car-img-link .car-img {
  transition: transform 0.5s ease;
  will-change: transform;
}
.car-img-link:hover .car-img,
.car-card:hover .car-img {
  transform: scale(1.07);
}
.car-img-link:hover .car-img-wrap {
  filter: brightness(1.05) saturate(1.1);
}


/* ===== HERO H1 — logo-style (both words red-orange like the logo) ===== */
.hero h1.hero-logo-style {
  font-family: 'Permanent Marker', cursive;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 0 rgba(255,255,255,0.06), 6px 6px 28px rgba(0,0,0,0.55);
}
.hero h1.hero-logo-style span {
  color: var(--sw-red);
  background: linear-gradient(180deg, #ff6a3d 0%, var(--sw-red) 55%, #c92e1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.35);
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.4));
}

/* ===== HERO CAR THUMBNAILS (replacing the text badges) ===== */
.hero-thumbs {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--sw-yellow);
  transition: transform 0.25s ease;
  cursor: pointer;
  width: 140px;
}
.hero-thumb:hover { transform: translateY(-4px); }
.hero-thumb-img {
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--sw-yellow);
  box-shadow: 0 6px 22px rgba(0,0,0,0.45);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  background: var(--sw-dark);
}
.hero-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero-thumb:hover .hero-thumb-img {
  border-color: var(--sw-red);
  box-shadow: 0 10px 30px rgba(232,68,45,0.45);
}
.hero-thumb:hover .hero-thumb-img img { transform: scale(1.08); }
.hero-thumb-name {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.05rem;
  color: var(--sw-yellow);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.hero-thumb-model {
  font-size: 0.75rem;
  color: var(--sw-tan);
  letter-spacing: 0.3px;
  text-align: center;
}
@media (max-width: 560px) {
  .hero-thumb { width: 110px; }
  .hero-thumb-img { width: 88px; height: 88px; }
  .hero-thumb-name { font-size: 0.95rem; }
  .hero-thumb-model { font-size: 0.7rem; }
}


/* ===== SLOGAN — logo-style coloured tagline ===== */
.sw-slogan {
  font-family: 'Permanent Marker', cursive;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
}
.sw-slogan .sw-red    { color: var(--sw-red); }
.sw-slogan .sw-orange { color: var(--sw-orange); }
.sw-slogan .sw-green  { color: var(--sw-green); }
.sw-slogan .sw-yellow { color: var(--sw-yellow); }

/* override the default italic serif look on hero/footer slogan when our colourful span is inside */
.hero-slogan:has(.sw-slogan), .footer-slogan:has(.sw-slogan) {
  font-style: normal;
  font-family: inherit;
  color: inherit;
}
.hero-slogan .sw-slogan { font-size: clamp(1rem, 2.4vw, 1.4rem); }
.footer-slogan .sw-slogan { font-size: 0.95rem; letter-spacing: 1.5px; }


/* ===== LIGHTBOX NAVIGATION ARROWS ===== */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(255,255,255,0.65);
  color: #fff;
  font-size: 2.4rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  line-height: 1;
  padding: 0 0 4px 0;
  font-family: 'Lato', sans-serif;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.lightbox-arrow:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.lightbox-arrow-prev { left: 1.5rem; }
.lightbox-arrow-next { right: 1.5rem; }
@media (max-width: 600px) {
  .lightbox-arrow { width: 44px; height: 44px; font-size: 1.8rem; }
  .lightbox-arrow-prev { left: 0.6rem; }
  .lightbox-arrow-next { right: 0.6rem; }
}


/* ===== AVAILABILITY DAY-GRID CALENDAR ===== */


.cal-month-block {
  background: #fff;
  border-radius: 16px;
  padding: 1.2rem 1.2rem 1rem;
  box-shadow: 0 2px 14px rgba(42,33,24,0.08);
  border: 1px solid #f1e3c0;
  overflow-x: auto;
}
.cal-month-title {
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-dark);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
}
.cal-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: max-content;
}
.cal-row + .cal-row { margin-top: 0.35rem; }
.cal-car-label {
  flex: 0 0 130px;
  display: flex;
  flex-direction: column;
  text-align: right;
  padding-right: 0.4rem;
}
.cal-car-label .nick {
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-dark);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.cal-car-label .model {
  font-family: 'Lato', sans-serif;
  color: var(--sw-soft);
  font-size: 0.72rem;
}

.cal-cells { display: flex; gap: 2px; }
.cal-cell {
  width: 18px;
  height: 22px;
  border-radius: 4px;
  background: var(--sw-green);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: help;
}
.cal-cell.red    { background: var(--sw-red); }
.cal-cell.orange { background: var(--sw-yellow); }
.cal-cell.green  { background: rgba(94,199,52,0.35); border: 1px solid rgba(94,199,52,0.55); }
.cal-cell:hover  { transform: scale(1.25); box-shadow: 0 2px 8px rgba(42,33,24,0.25); }

.cal-row-header .cal-cells { gap: 2px; }
.cal-num {
  width: 18px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--sw-soft);
  font-weight: 700;
}

/* Legend pills */
.availability-legend {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  margin-top: 1.4rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--sw-soft);
}
.availability-legend span { display: inline-flex; align-items: center; gap: 0.4rem; }
.availability-legend i.lg { width: 16px; height: 16px; border-radius: 4px; display: inline-block; }
.lg-green  { background: rgba(94,199,52,0.35); border: 1px solid rgba(94,199,52,0.55); }
.lg-orange { background: var(--sw-yellow); }
.lg-red    { background: var(--sw-red); }

@media (max-width: 720px) {
  .cal-car-label { flex-basis: 100px; }
  .cal-cell { width: 14px; height: 18px; }
  .cal-num  { width: 14px; height: 14px; font-size: 0.6rem; }
}




/* Per-active-car coloring */
.ocal-wrap[data-active-car="willie"]  .ocal-day[data-willie="red"],
.ocal-wrap[data-active-car="wanda"]   .ocal-day[data-wanda="red"],
.ocal-wrap[data-active-car="wickie"]  .ocal-day[data-wickie="red"],
.ocal-wrap[data-active-car="waldo"]   .ocal-day[data-waldo="red"] {
  background: rgba(232,68,45,0.78);
  border-color: var(--sw-red);
  color: #fff;
}
.ocal-wrap[data-active-car="willie"]  .ocal-day[data-willie="orange"],
.ocal-wrap[data-active-car="wanda"]   .ocal-day[data-wanda="orange"],
.ocal-wrap[data-active-car="wickie"]  .ocal-day[data-wickie="orange"],
.ocal-wrap[data-active-car="waldo"]   .ocal-day[data-waldo="orange"] {
  background: rgba(245,197,23,0.85);
  border-color: var(--sw-yellow);
  color: var(--sw-dark);
}

@media (max-width: 540px) {
  .ocal-month { padding: 0.6rem; }
  .ocal-day { font-size: 0.7rem; padding: 2px 4px; }
  .ocal-week { grid-template-columns: 22px repeat(7, 1fr); gap: 1px; }
}

#availability .container { max-width: 1380px; }


/* ===== AVAILABILITY — COMPACT MATRIX (4 cars × 6 months) ===== */
#availability .container { max-width: 1380px; }

.cmx-wrap {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #f1e3c0;
  padding: 0.8rem;
  box-shadow: 0 2px 14px rgba(42,33,24,0.08);
  overflow-x: auto;
}

.cmx-header, .cmx-weekrow, .cmx-row { display: grid; grid-template-columns: 130px repeat(6, 1fr); gap: 6px; align-items: center; }
.cmx-row + .cmx-row, .cmx-weekrow + .cmx-row { margin-top: 4px; border-top: 1px solid #f3e6c8; padding-top: 4px; }
.cmx-weekrow { margin-top: 2px; }
.cmx-weeklabels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  padding: 0 2px;
}
.cmx-weeklabels span {
  text-align: center;
  font-family: 'Permanent Marker', cursive;
  font-size: 0.55rem;
  color: var(--sw-soft);
  letter-spacing: 0.3px;
}

.cmx-corner { }
.cmx-month-head {
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-dark);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.2rem 0;
  letter-spacing: 0.5px;
  background: var(--sw-paper);
  border-radius: 6px;
}

.cmx-car-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  padding-right: 0.4rem;
}
.cmx-nick {
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-dark);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.cmx-model {
  color: var(--sw-soft);
  font-size: 0.65rem;
}

/* Each month-cell holds a 7-col mini-grid of day numbers */
.cmx-month {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: #faf4e0;
  border-radius: 4px;
  padding: 2px;
}
.cmx-day {
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--sw-dark);
  background: rgba(94,199,52,0.22);
  border: 1px solid rgba(94,199,52,0.30);
  cursor: help;
  transition: transform 0.12s ease;
  line-height: 1;
}
.cmx-day:hover { transform: scale(1.4); z-index: 2; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
.cmx-day.cmx-empty {
  background: transparent;
  border-color: transparent;
  cursor: default;
  pointer-events: none;
}
.cmx-day.cmx-empty:hover { transform: none; box-shadow: none; }
.cmx-day.cmx-red {
  background: rgba(232,68,45,0.85);
  border-color: var(--sw-red);
  color: #fff;
}
.cmx-day.cmx-orange {
  background: rgba(245,197,23,0.9);
  border-color: var(--sw-yellow);
  color: var(--sw-dark);
}

@media (max-width: 1080px) {
  .cmx-header, .cmx-weekrow, .cmx-row { grid-template-columns: 100px repeat(6, 1fr); }
  .cmx-day { font-size: 0.5rem; }
  .cmx-month-head { font-size: 0.7rem; }
  .cmx-nick { font-size: 0.8rem; }
  .cmx-model { font-size: 0.6rem; }
  .cmx-weeklabels span { font-size: 0.48rem; }
}
@media (max-width: 720px) {
  /* allow horizontal scroll on phones */
  .cmx-header, .cmx-weekrow, .cmx-row { grid-template-columns: 90px repeat(6, 110px); min-width: max-content; }
}


/* ===== AVAILABILITY — past dates greyed out ===== */
.cmx-day.cmx-past {
  background: rgba(180,180,180,0.18) !important;
  border-color: rgba(150,150,150,0.30) !important;
  color: rgba(150,150,150,0.85) !important;
  cursor: default;
}
.cmx-day.cmx-past:hover { transform: none; box-shadow: none; }


/* ===== AVAILABILITY MATRIX — circular car photos as row labels ===== */
.cmx-car-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding-right: 0.4rem;
  text-align: center;
}
.cmx-photo {
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--sw-yellow);
  background: var(--sw-dark);
  box-shadow: 0 4px 14px rgba(42,33,24,0.30);
  flex-shrink: 0;
}
.cmx-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cmx-car-label .cmx-nick {
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-yellow);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(42,33,24,0.15);
}
@media (max-width: 1080px) {
  .cmx-photo { width: 64px; height: 64px; border-width: 2px; }
  .cmx-car-label .cmx-nick { font-size: 0.8rem; }
}
@media (max-width: 720px) {
  .cmx-photo { width: 48px; height: 48px; border-width: 2px; }
  .cmx-car-label .cmx-nick { font-size: 0.7rem; }
}


/* ===== RESERVATION MODAL ===== */
.cmx-day[data-date]:not(.cmx-empty):not(.cmx-past):not(.cmx-red):not(.cmx-orange) { cursor: pointer; }
.cmx-day.cmx-red, .cmx-day.cmx-orange { cursor: not-allowed; }
.cmx-day.cmx-red:hover, .cmx-day.cmx-orange:hover { transform: none; box-shadow: none; }

.res-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42, 33, 24, 0.55);
  backdrop-filter: blur(3px);
  z-index: 9000;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
}
.res-modal.open { display: flex; }
.res-card {
  background: var(--sw-paper, #fbf5e2);
  border-radius: 18px;
  border: 1px solid #efe0b8;
  max-width: 640px;
  width: 100%;
  padding: 1.8rem 1.8rem 1.4rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  position: relative;
  margin: auto;
  animation: resPop 0.18s ease-out;
}
@keyframes resPop {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
.res-close {
  position: absolute;
  top: 0.6rem;
  right: 0.9rem;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  color: var(--sw-dark, #2a2118);
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.5rem;
}
.res-close:hover { color: var(--sw-red, #e8442d); }
.res-title {
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-red, #e8442d);
  font-size: 1.5rem;
  margin: 0 0 0.3rem;
}
.res-sub {
  margin: 0 0 1rem;
  color: var(--sw-dark, #2a2118);
  font-size: 0.95rem;
}
.res-sub strong { color: var(--sw-orange, #f08233); }

#resForm .form-row { margin-bottom: 0.7rem; }
#resForm label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.25rem;
  color: var(--sw-dark, #2a2118);
  font-weight: 600;
}
#resForm input, #resForm select, #resForm textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid #e0d2a3;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  box-sizing: border-box;
}
#resForm textarea { min-height: 80px; resize: vertical; }
#resForm .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
#resForm .form-submit { margin-top: 0.5rem; width: 100%; }

#resSuccess { display: none; color: var(--sw-green, #5ec734); margin-top: 0.7rem; font-weight: 600; }
#resSuccess.show { display: block; }

@media (max-width: 600px) {
  #resForm .two-col { grid-template-columns: 1fr; }
  .res-card { padding: 1.4rem 1.2rem 1rem; }
  .res-title { font-size: 1.25rem; }
}

/* ===== RESERVATION MODAL — car hero image ===== */
.res-hero {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0.4rem 0 0.9rem;
  background: var(--sw-dark, #2a2118);
  box-shadow: 0 6px 18px rgba(42,33,24,0.18);
  border: 2px solid var(--sw-yellow, #f5c517);
}
.res-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .res-hero { height: 140px; }
}

/* ===== ENTREPRENEUR CARD — real photo avatar (horizontal rounded rectangle) ===== */
.entrepreneur .avatar.avatar-photo {
  padding: 0.7rem;
  font-size: 0;
  display: block;
  height: auto;
  /* keep the warm orange gradient as a frame around the photo */
}
.entrepreneur .avatar.avatar-photo img {
  display: block;
  width: 100%;
  height: 220px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center 12%;
  border: 3px solid var(--sw-yellow);
  background: var(--sw-dark);
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}

.entrepreneur .avatar.avatar-photo-low img { object-position: center 28%; }

@media (max-width: 600px) {
  .entrepreneur .avatar.avatar-photo img { height: 170px; border-width: 2px; }
}

/* ===== Heart accent for "Social Wheels ♥ Wakibi" ===== */
h2 .heart {
  color: var(--sw-red);
  font-family: 'Lato', sans-serif;
  font-size: 0.92em;
  display: inline-block;
  transform: translateY(-0.05em);
  margin: 0 0.05em;
}

/* ===== PRICING CARD — car photo thumbnail ===== */
.pricing-photo {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  margin: 0.6rem 0 0.9rem;
  background: var(--sw-dark);
  border: 2px solid var(--sw-yellow);
  box-shadow: 0 4px 14px rgba(42,33,24,0.16);
}
.pricing-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}
@media (max-width: 720px) {
  .pricing-photo { height: 120px; }
}

/* ===== WAKIBI ENTREPRENEUR TICKER (lichtkrant) ===== */
.wakibi-ticker {
  margin: 1.6rem auto 2.4rem;
  overflow: hidden;
  position: relative;
  /* soft fade on both edges */
  mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.wakibi-ticker-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: wakibi-scroll 60s linear infinite;
}
.wakibi-ticker:hover .wakibi-ticker-track { animation-play-state: paused; }
.wt-item {
  flex: 0 0 auto;
  width: 280px;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid var(--sw-yellow);
  background: var(--sw-dark);
  box-shadow: 0 6px 18px rgba(42,33,24,0.20);
}
.wt-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
@keyframes wakibi-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .wt-item { width: 200px; height: 150px; border-width: 2px; }
  .wakibi-ticker-track { animation-duration: 45s; }
}
@media (prefers-reduced-motion: reduce) {
  .wakibi-ticker-track { animation: none; }
}

/* ===== ONZE KLANTEN — section + ticker ===== */
#klanten {
  background: #fff8ec;
  padding: 4rem 0 3rem;
}
.klanten-ticker {
  margin: 1.6rem auto 1rem;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.klanten-ticker-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: klanten-scroll 90s linear infinite;
}
.klanten-ticker:hover .klanten-ticker-track { animation-play-state: paused; }
.kt-item {
  flex: 0 0 auto;
  width: 280px;
  height: 210px;
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid var(--sw-red);
  background: var(--sw-paper);
  box-shadow: 0 6px 18px rgba(42,33,24,0.20);
}
.kt-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
/* Per-photo overrides for client photos where the car bottom would be cut off */
.kt-item img[src*="k60.jpg"],
.kt-item img[src*="k66.jpg"] {
  object-fit: contain;
  background: var(--sw-paper);
  object-position: center;
}
@keyframes klanten-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .kt-item { width: 200px; height: 150px; border-width: 2px; }
  .klanten-ticker-track { animation-duration: 70s; }
}
@media (prefers-reduced-motion: reduce) {
  .klanten-ticker-track { animation: none; }
}
.klanten-disclaimer {
  max-width: 760px;
  margin: 1.4rem auto 0;
  font-size: 0.75rem;
  color: var(--sw-soft);
  line-height: 1.55;
  text-align: center;
  font-style: italic;
}
.klanten-disclaimer strong { font-style: normal; color: var(--sw-dark); }

/* ===== KLANTEN — sale-disclaimer note above the small consent disclaimer ===== */
.klanten-note {
  max-width: 760px;
  margin: 1.4rem auto 0.3rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--sw-dark);
  line-height: 1.65;
  text-align: center;
}
.klanten-note strong {
  font-family: 'Permanent Marker', cursive;
  font-style: normal;
  color: var(--sw-red);
  letter-spacing: 0.4px;
}

/* ===== PRICING CARD — link wrapper (clickable car → availability) ===== */
.pricing-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.18s ease;
}
.pricing-link:hover { transform: translateY(-3px); }
.pricing-link:hover .pricing-photo {
  box-shadow: 0 8px 22px rgba(232, 68, 45, 0.30);
  border-color: var(--sw-red);
}
.pricing-link:hover .pricing-car-name {
  color: var(--sw-red);
}
.pricing-link .pricing-car-name {
  transition: color 0.18s ease;
}

/* ===== PRICING CARD — nickname pill overlay on photo ===== */
.pricing-photo { position: relative; }
.pricing-photo-tag {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: var(--sw-yellow);
  color: var(--sw-dark);
  font-family: 'Permanent Marker', cursive;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.85rem;
  border-radius: 24px;
  box-shadow: 0 3px 10px rgba(42,33,24,0.25);
  z-index: 2;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .pricing-photo-tag { font-size: 0.82rem; padding: 0.2rem 0.7rem; top: 0.5rem; left: 0.5rem; }
}

/* ===== PRICING CARD — model/make line (Porsche 911 2.7s etc) ===== */
.pricing-car-model {
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-dark);
  font-size: 0.95rem;
  text-align: center;
  margin: 0.6rem 0 0.2rem;
  letter-spacing: 0.3px;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .pricing-car-model { font-size: 0.85rem; }
}

/* ===== AVAILABILITY MATRIX — car-label is clickable → detail page ===== */
.cmx-car-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.cmx-car-link:hover { transform: scale(1.06); }
.cmx-car-link:hover .cmx-photo {
  border-color: var(--sw-red);
  box-shadow: 0 6px 18px rgba(232,68,45,0.35);
}
.cmx-photo { transition: border-color 0.15s ease, box-shadow 0.15s ease; }

/* ===== "NIEUW!" BADGE — for Willie Wortel ===== */
.new-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--sw-red);
  color: #fff;
  font-family: 'Permanent Marker', cursive;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  padding: 0.18rem 0.7rem;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(232,68,45,0.5);
  z-index: 3;
  pointer-events: none;
  transform: rotate(8deg);
  animation: newPulse 2.6s ease-in-out infinite;
  white-space: nowrap;
  border: 2px solid var(--sw-yellow);
}
@keyframes newPulse {
  0%, 100% { transform: rotate(8deg) scale(1); }
  50%      { transform: rotate(8deg) scale(1.08); }
}

/* Make sure parents that get a badge are positioned */
.hero-thumb-img, .pricing-photo, .cmx-photo, .car-card { position: relative; }

/* Variant tweaks for context */
.new-badge-cmx {
  font-size: 0.62rem;
  padding: 0.1rem 0.5rem;
  top: -4px;
  right: -8px;
  border-width: 1.5px;
  /* op de rand van de cirkel — moet op de link, niet op de cmx-photo zelf */
}
.cmx-car-link { position: relative; }
.new-badge-card {
  /* placed on the big car card */
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.95rem;
  padding: 0.3rem 0.9rem;
}
.new-badge-pricing {
  top: 0.55rem;
  right: 0.55rem;
  font-size: 0.7rem;
  padding: 0.15rem 0.55rem;
}

/* ===== SEASONAL PRICING ===== */
.sw-now-line {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  color: var(--sw-soft, #7a6045);
  font-weight: 400;
}
.sw-now-line .sw-now-label { color: var(--sw-orange, #f08233); font-weight: 700; letter-spacing: 0.2px; }
.sw-now-line strong { color: var(--sw-red, #e8442d); font-weight: 700; }
.sw-now-line .sw-now-unit { color: var(--sw-soft, #7a6045); font-size: 0.78rem; }

.sw-pwrap { overflow-x: auto; margin: 1.2rem auto 0.4rem; max-width: 1100px; }
.sw-ptable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.4rem;
  font-size: 0.95rem;
}
.sw-ptable th, .sw-ptable td {
  padding: 0.7rem 0.9rem;
  text-align: center;
  vertical-align: middle;
}
.sw-ptable thead th.sw-phead {
  font-family: 'Permanent Marker', cursive;
  background: var(--sw-paper, #fbf5e2);
  color: var(--sw-dark, #2a2118);
  border: 1px solid #efe0b8;
  border-bottom-width: 2px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 8px 8px 0 0;
}
.sw-ptable thead th.sw-phead.is-active {
  background: var(--sw-green, #5ec734);
  color: #fff;
  border-color: var(--sw-green, #5ec734);
}
.sw-ptable thead th.sw-phead .sw-phead-name {
  font-family: 'Permanent Marker', cursive;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.sw-ptable thead th.sw-phead .sw-phead-range {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0;
  margin-top: 0.25rem;
  color: var(--sw-soft, #7a6045);
  text-transform: none;
  opacity: 0.95;
}
.sw-ptable thead th.sw-phead.is-active .sw-phead-range {
  color: rgba(255,255,255,0.92);
}
.sw-ptable th.sw-pcar {
  text-align: left;
  background: #fff;
  border: 1px solid #efe0b8;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  min-width: 180px;
}
.sw-ptable th.sw-pcar .sw-pcar-nick {
  display: block;
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-red, #e8442d);
  font-size: 1.05rem;
  letter-spacing: 0.4px;
}
.sw-ptable th.sw-pcar .sw-pcar-model {
  display: block;
  font-size: 0.82rem;
  color: var(--sw-soft, #7a6045);
  margin: 0.1rem 0 0.3rem;
}
.sw-ptable th.sw-pcar .sw-pcar-vanaf {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--sw-dark, #2a2118);
  background: rgba(245,197,23,0.25);
  border: 1px solid rgba(245,197,23,0.65);
  padding: 0.1rem 0.55rem;
  border-radius: 30px;
  font-weight: 700;
}
.sw-ptable td.sw-pcell {
  background: #fff;
  border: 1px solid #efe0b8;
  border-radius: 8px;
  position: relative;
}
.sw-ptable td.sw-pcell strong {
  color: var(--sw-dark, #2a2118);
  font-size: 1.05rem;
  font-weight: 700;
}
.sw-ptable td.sw-pcell.is-active {
  background: rgba(94,199,52,0.10);
  border-color: var(--sw-green, #5ec734);
  box-shadow: 0 0 0 1px var(--sw-green, #5ec734) inset;
}
.sw-ptable td.sw-pcell.is-active strong { color: var(--sw-green, #5ec734); }
.sw-ptable td.sw-pcell .sw-pcell-now {
  font-size: 0.62rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--sw-green, #5ec734);
  font-weight: 700;
  margin-top: 0.1rem;
}
.sw-ptable td.sw-pcell.is-off {
  background: #f7f1e0;
  border-color: #e0d2a3;
}
.sw-ptable td.sw-pcell.is-off .sw-pcell-off {
  color: var(--sw-soft, #7a6045);
  font-size: 0.82rem;
  font-style: italic;
}

.sw-sdef-list {
  list-style: none;
  padding: 0;
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 1100px;
}
@media (max-width: 820px) {
  .sw-sdef-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 460px) {
  .sw-sdef-list { grid-template-columns: 1fr; }
}
.sw-sdef {
  background: #fff;
  border: 1px solid #efe0b8;
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  position: relative;
}
.sw-sdef.is-active {
  border-color: var(--sw-green, #5ec734);
  background: rgba(94,199,52,0.07);
}
.sw-sdef-name {
  font-family: 'Permanent Marker', cursive;
  color: var(--sw-red, #e8442d);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
.sw-sdef-range {
  color: var(--sw-dark, #2a2118);
  font-size: 0.85rem;
}
.sw-sdef-now {
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  background: var(--sw-green, #5ec734);
  color: #fff;
  padding: 0.1rem 0.5rem;
  border-radius: 20px;
  font-weight: 700;
}

@media (max-width: 720px) {
  .sw-ptable th.sw-pcar { min-width: 140px; padding: 0.55rem 0.7rem; }
  .sw-ptable th, .sw-ptable td { padding: 0.55rem 0.55rem; font-size: 0.85rem; }
  .sw-ptable thead th.sw-phead { font-size: 0.78rem; padding: 0.4rem 0.4rem; }
}
