/**
 * Typisch Thuis B2B Website
 * Main Stylesheet
 * High-end digital showroom for design/living brands
 * Production quality custom CSS
 */

/* ============================================================================
   IMPORTS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,400;1,500&display=swap');

/* ============================================================================
   CSS CUSTOM PROPERTIES / DESIGN TOKENS — Typisch Thuis huisstijl 2026
   - Primair oranje/goud uit logo (#F5A300)
   - Donker blauwgrijs uit logo (#2F474B)
   - Lichtgrijs (#F2F2F2) als zachte achtergrond
   - Montserrat als enige fontfamilie
   ========================================================================== */

:root {
  /* Colors */
  --color-bg: #FFFFFF;
  --color-bg-warm: #F2F2F2;        /* lichtgrijze achtergrond uit huisstijl */
  --color-bg-soft: #FBF8F2;        /* hele warme tint voor accentstukken */
  --color-bg-dark: #2F474B;        /* donker blauwgrijs uit logo */
  --color-text: #2F474B;
  --color-text-light: #4A6065;
  --color-text-muted: #8A9CA0;
  --color-primary: #F5A300;        /* GOUD — primair accent uit logo */
  --color-primary-dark: #D89A1D;   /* chiquer/rustiger goud uit huisstijl */
  --color-primary-soft: #FFF6E2;   /* zachte goud-tint voor backgrounds */
  --color-accent: #D89A1D;
  --color-border: #E8E8E8;
  --color-border-warm: #E4DCC9;
  --color-white: #FFFFFF;
  --color-success: #5A8C6B;
  --color-error: #C45B5B;

  /* Typography — Montserrat (uit huisstijl) */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44, 40, 37, 0.06);
  --shadow-md: 0 4px 16px rgba(44, 40, 37, 0.08);
  --shadow-lg: 0 8px 32px rgba(44, 40, 37, 0.12);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
}

main {
  display: block;
}

img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

/* ============================================================================
   TYPOGRAPHY
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 1rem;
  font-weight: 500;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

h5 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

h6 {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-text-light);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

/* ============================================================================
   LAYOUT
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-warm {
  background-color: var(--color-bg-warm);
}

.section-dark {
  background-color: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.85);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-white);
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.section-white {
  background-color: var(--color-white);
}

/* ============================================================================
   NAVIGATION
   ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.nav-logo:hover {
  color: var(--color-primary-dark);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--color-text-light);
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: background-color var(--transition);
}

.nav-mobile-toggle:hover span {
  background-color: var(--color-primary);
}

/* ============================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 40, 37, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 700px;
}

.hero.hero-left .hero-content {
  text-align: left;
}

.hero.hero-compact {
  min-height: 40vh;
}

/* ============================================================================
   CARDS
   ========================================================================== */

.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.card-text {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.card-link {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 0.75rem;
}

.card-glass {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.brand-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44, 40, 37, 0.06);
  border: 1px solid rgba(44, 40, 37, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.brand-card:hover {
  box-shadow: 0 16px 40px rgba(44, 40, 37, 0.14);
  transform: translateY(-6px);
}

.brand-card:hover .brand-card-image img {
  transform: scale(1.08);
}

.brand-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.brand-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-heading);
}

.brand-card-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-light);
}

/* ============================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  border-radius: 100px;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all var(--transition);
  letter-spacing: 0.04em;
  gap: 0.5rem;
  white-space: nowrap;
  border: 1.5px solid transparent;
  text-transform: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 12px 28px -12px rgba(245, 163, 0, 0.5);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(216, 154, 29, 0.55);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-outline {
  border-color: var(--color-text);
  color: var(--color-text);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--color-text);
  color: var(--color-white);
}

.btn-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.btn-dark:hover {
  background-color: var(--color-text);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================================================
   FORMS
   ========================================================================== */

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.form-label.required::after {
  content: ' *';
  color: var(--color-error);
}

.form-control,
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--color-white);
  color: var(--color-text);
  transition: all var(--transition);
}

.form-control:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-control::placeholder,
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B7355' d='M1 4l5 4 5-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
  font-family: var(--font-body);
}

.form-error {
  color: var(--color-error);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.form-success {
  background-color: rgba(90, 140, 107, 0.1);
  color: var(--color-success);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-success);
  margin-bottom: 1.5rem;
}

.form-success p {
  margin-bottom: 0;
}

/* ============================================================================
   BADGES & TAGS
   ========================================================================== */

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.badge-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.badge-warm {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
}

.badge-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.badge-success {
  background-color: var(--color-success);
  color: var(--color-white);
}

.badge-error {
  background-color: var(--color-error);
  color: var(--color-white);
}

/* ============================================================================
   TEAM / CONTACT BLOCKS
   ========================================================================== */

.team-card {
  text-align: center;
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.team-role {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-contact {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-bg-warm);
  color: var(--color-primary);
  transition: all var(--transition);
}

.team-contact a:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* USP SECTION — see extended section below for full styles */

.usp-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

/* ============================================================================
   FOOTER
   ========================================================================== */

.footer {
  background-color: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
  margin-top: 0;
}

.footer-brand {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-white);
  font-weight: 600;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h3,
.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  display: inline-block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-icon {
  font-size: 1.1rem;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-contact-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.15rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links .footer-link {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links .footer-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-accent);
  transition: all var(--transition);
}

.footer-social-link:hover {
  background-color: var(--color-accent);
  color: var(--color-bg-dark);
}

/* ============================================================================
   DEALER LOCATOR
   ========================================================================== */

.dealer-list {
  list-style: none;
}

.dealer-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.dealer-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.dealer-info {
  flex: 1;
}

.dealer-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.dealer-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.dealer-detail {
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.dealer-detail strong {
  display: block;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.dealer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dealer-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}

.dealer-action-link:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* ============================================================================
   DOWNLOADS
   ========================================================================== */

.download-list {
  list-style: none;
}

.download-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  transition: all var(--transition);
}

.download-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.download-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--color-bg-warm);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.download-info h4 {
  margin-bottom: 0.25rem;
}

.download-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.download-button:hover {
  background-color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
}

/* ============================================================================
   UTILITIES
   ========================================================================== */

/* Text Alignment */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* Text Colors */
.text-primary {
  color: var(--color-primary);
}

.text-light {
  color: var(--color-text-light);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-white {
  color: var(--color-white);
}

.text-dark {
  color: var(--color-bg-dark);
}

.text-success {
  color: var(--color-success);
}

.text-error {
  color: var(--color-error);
}

/* Margins */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mr-1 { margin-right: 0.5rem; }
.mr-2 { margin-right: 1rem; }
.mr-3 { margin-right: 1.5rem; }

.ml-1 { margin-left: 0.5rem; }
.ml-2 { margin-left: 1rem; }
.ml-3 { margin-left: 1.5rem; }

/* Padding Y-axis */
.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* Padding X-axis */
.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }

/* Display Utilities */
.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Image Utilities */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Border Radius Utilities */
.rounded {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-full {
  border-radius: 9999px;
}

/* Flex Utilities */
.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-col {
  flex-direction: column;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ============================================================================
   ANIMATIONS & TRANSITIONS
   ========================================================================== */

/* Scroll Reveal */
@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside reveal-group */
.reveal-group .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal-group .reveal:nth-child(6) { transition-delay: 0.3s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-home {
    min-height: 85vh;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  :root {
    font-size: 15px;
  }

  .lead {
    font-size: 1rem;
  }

  /* Layout */
  .container {
    padding: 0 1rem;
  }

  .grid {
    gap: 1.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  /* Navigation */
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
    z-index: 99;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    background-color: var(--color-bg-warm);
  }

  .nav-mobile-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 50vh;
  }

  .hero-home {
    min-height: 75vh;
  }

  .hero-compact {
    min-height: 30vh;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-content-overlay {
    padding: 0 0 3rem;
  }

  /* Cards */
  .card-body {
    padding: 1.25rem;
  }

  /* Buttons */
  .btn {
    width: 100%;
    justify-content: center;
  }

  .btn-sm {
    width: auto;
  }

  .btn-primary-outline,
  .btn-outline {
    width: auto;
  }

  /* Forms */
  .form-control,
  .form-select,
  .form-textarea {
    padding: 0.875rem;
  }

  /* USP Section */
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .usp-item {
    padding: 1.5rem 1rem;
  }

  /* Team */
  .team-grid-centered {
    grid-template-columns: 1fr;
  }

  .team-photo {
    width: 110px;
    height: 110px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* Dealer Locator */
  .dealer-item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .dealer-details {
    grid-template-columns: 1fr;
  }

  .dealer-actions {
    flex-direction: row;
    gap: 0.5rem;
  }

  .dealer-action-link {
    flex: 1;
  }

  /* Touch targets */
  .btn,
  .nav-link,
  .dealer-action-link {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Extra small screens (less than 480px) */
@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }

  .hero-home {
    min-height: 65vh;
  }

  .card-body {
    padding: 1rem;
  }

  .download-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .download-icon {
    width: 40px;
    height: 40px;
    font-size: 0.7rem;
  }
}

/* ============================================================================
   NAVBAR EXTENDED — mobile toggle, desktop/mobile links, logo
   ========================================================================== */

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.navbar-logo a {
  text-decoration: none;
  color: var(--color-text);
}

.logo-image {
  max-height: 64px;
  width: auto;
  display: block;
  transition: max-height var(--transition);
}
.navbar.scrolled .logo-image { max-height: 52px; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0;
}

.navbar-links-desktop {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: var(--transition);
}

.navbar-links-mobile {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 100;
  z-index: 100;
  flex-direction: column;
  gap: 0;
}

/* Alpine x-show handles display toggling — no CSS override needed */

.nav-link-mobile {
  display: block;
  padding: 0.75rem 0;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}

.nav-link-mobile:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .navbar-links-desktop { display: none; }
  .navbar-toggle { display: flex; }
  .navbar { position: relative; }
}

/* ============================================================================
   UTILITY CLASSES
   ========================================================================== */

.bg-white { background-color: var(--color-white); }

/* ============================================================================
   PAGE HEADERS
   ========================================================================== */

.page-header {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2rem);
  border-bottom: none;
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, #EAEAEA 100%);
  text-align: center;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
}

.page-content,
.page-body-content {
  padding: 2rem 0;
  line-height: 1.8;
}

/* ============================================================================
   SECTION HEADERS & VARIANTS
   ========================================================================== */

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-text);
  margin-bottom: 0.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.section-light {
  background-color: var(--color-bg-warm);
}

.section-cta-center {
  text-align: center;
  margin-top: 2.5rem;
}

/* ============================================================================
   HERO EXTENDED
   ========================================================================== */

.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.03);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.5s ease, transform 8s ease-out;
}

.hero-slide-fallback {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #1F353A 100%);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44, 40, 37, 0.85) 0%,
    rgba(44, 40, 37, 0.3) 40%,
    rgba(44, 40, 37, 0.15) 100%
  );
}

.hero-content-overlay {
  position: relative;
  z-index: 1;
  padding: 0 0 clamp(4rem, 8vw, 7rem);
  text-align: left;
  max-width: 800px;
}

.hero-content-overlay .hero-headline {
  color: var(--color-white);
}

.hero-content-overlay .hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 540px;
  line-height: 1.7;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-content-overlay .btn-primary {
  background-color: var(--color-white);
  color: var(--color-bg-dark);
  border-color: var(--color-white);
}

.hero-content-overlay .btn-primary:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

.btn-outline-light:hover {
  background-color: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-white);
}

.hero-dots {
  display: flex;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.hero-dot {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}

.hero-dot.active {
  background-color: var(--color-white);
  width: 48px;
}

/* ============================================================================
   BUTTON VARIANTS
   ========================================================================== */

.btn-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.btn-link:hover {
  color: var(--color-primary-dark);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-primary-outline,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  border: 1.5px solid var(--color-bg-dark);
  color: var(--color-bg-dark);
  border-radius: 100px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  background: transparent;
}

.btn-primary-outline:hover,
.btn-outline:hover {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

/* ============================================================================
   BRANDS GRID & CARDS
   ========================================================================== */

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.brand-card-image {
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-warm);
  border-bottom: 1px solid rgba(44, 40, 37, 0.06);
  min-height: 160px;
  overflow: hidden;
}

.brand-card-image img {
  max-height: 80px;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-card-text {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.brand-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--color-bg-warm);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brand-logo {
  max-height: 60px;
  object-fit: contain;
}

/* ============================================================================
   UPDATE / NEWS CARDS
   ========================================================================== */

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.update-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.update-card:hover {
  box-shadow: 0 12px 32px rgba(44, 40, 37, 0.12);
  transform: translateY(-4px);
}

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

.update-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.update-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.updates-grid-home .update-card-featured {
  grid-column: 1 / -1;
}

.updates-grid-home .update-card-featured .update-card-image {
  height: 280px;
}

@media (min-width: 769px) {
  .updates-grid-home {
    grid-template-columns: repeat(3, 1fr);
  }
  .updates-grid-home .update-card-featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
  }
  .updates-grid-home .update-card-featured .update-card-image {
    height: 240px;
  }
}

.update-card-content {
  padding: 1.5rem;
}

.update-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.update-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.update-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.update-card-summary {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.update-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.update-card-link .update-card-title,
.update-card-link .update-card-summary,
.update-card-link .update-card-meta {
  color: inherit;
}

.update-card-link .update-card-title {
  color: var(--color-text);
}

.update-card-link .update-card-summary {
  color: var(--color-text-light);
}

.update-card-link:hover .btn-link {
  color: var(--color-primary-dark);
}

/* ============================================================================
   USP SECTION
   ========================================================================== */

.section-usp {
  background-color: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.8);
}

.section-usp .section-title {
  color: var(--color-white);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.usp-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.usp-icon {
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.2;
}

.usp-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
  font-weight: 400;
}

.usp-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================================
   CTA BLOCK
   ========================================================================== */

.cta-block {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
  font-weight: 400;
}

.cta-text {
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================================
   TEAM SECTION
   ========================================================================== */

.section-team {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background-color: var(--color-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.team-grid-centered {
  grid-template-columns: repeat(2, minmax(280px, 380px));
  justify-content: center;
}

.team-card {
  background: var(--color-bg);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(44, 40, 37, 0.06);
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--color-white);
  box-shadow: 0 4px 20px rgba(44, 40, 37, 0.1);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.team-role {
  color: var(--color-primary);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

.team-bio {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* ============================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-column {
  padding: 2rem 0;
}

.contact-form-column {
  padding: 2rem 0;
}

.info-block-large {
  margin-bottom: 2.5rem;
}

.block-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.company-info p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.team-contacts-block {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

.contact-person {
  margin-bottom: 1.5rem;
}

.person-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.person-role {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-block {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.form-group-submit {
  margin-top: 1.5rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.info-box-centered {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
}

.info-box-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.info-box-text {
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================================================
   FOOTER EXTENDED
   ========================================================================== */

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.brand-logos-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.brand-logo-small {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
}

/* ============================================================================
   ABOUT / PARTNER PAGES
   ========================================================================== */

.about-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-text-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.about-service-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.about-service-icon {
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.about-service-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Partner Steps */
.partner-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.partner-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.partner-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.partner-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.partner-step p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Partner Benefits */
.partner-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.partner-benefit {
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(44, 40, 37, 0.06);
}

.partner-benefit h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.partner-benefit p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
  gap: 1rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-toggle.open {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.25rem;
}

.faq-answer p {
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .partner-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .partner-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================================================
   STICKY PARTNER CTA
   ========================================================================== */

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(44, 40, 37, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.02em;
}

.sticky-cta:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(44, 40, 37, 0.35);
}

.sticky-cta svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sticky-cta span {
    display: none;
  }
  .sticky-cta {
    padding: 0.85rem;
    right: 1rem;
    bottom: 1rem;
  }
}

/* ============================================================================
   404 PAGE
   ========================================================================== */

.error-page {
  text-align: center;
  padding: 6rem 2rem;
}

.error-code {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-border);
  margin-bottom: 1rem;
}

.error-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-text {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================================
   ALERT / FLASH MESSAGES
   ========================================================================== */

.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.alert-success {
  background-color: rgba(90, 140, 107, 0.1);
  color: var(--color-success);
  border-left: 4px solid var(--color-success);
}

.alert-error {
  background-color: rgba(196, 91, 91, 0.1);
  color: var(--color-error);
  border-left: 4px solid var(--color-error);
}

/* ============================================================================
   DEALERS PAGE
   ========================================================================== */

.dealer-search-form,
.search-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.search-input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
}

.search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.filter-select {
  padding: 0.65rem 2.5rem 0.65rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  appearance: none;
  background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B7355' d='M1 4l5 4 5-4'/%3E%3C/svg%3E") no-repeat right 1rem center;
}

.dealers-grid,
.dealers-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.dealer-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(44, 40, 37, 0.08);
  border: 1px solid rgba(44, 40, 37, 0.06);
  transition: all var(--transition);
  padding: 1.5rem;
}

.dealer-card:hover {
  box-shadow: 0 4px 16px rgba(44, 40, 37, 0.14);
  transform: translateY(-2px);
}

.dealer-card .dealer-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(44, 40, 37, 0.08);
}

.dealer-card .dealer-address {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.dealer-card .dealer-contact {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.dealer-card .dealer-contact a {
  color: var(--color-primary);
  font-weight: 500;
}

.dealer-card-header {
  padding: 1.5rem 1.5rem 0;
}

.dealer-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.dealer-card-body {
  padding: 0.75rem 1.5rem;
}

.dealer-card-footer {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dealer-address,
.dealer-phone,
.dealer-email {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.dealer-brand-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background-color: var(--color-bg-warm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-primary);
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--color-text-muted);
}

.empty-state-text {
  font-size: 1.1rem;
}

/* ============================================================================
   BRANDS INDEX / OVERVIEW PAGE
   ========================================================================== */

.section-brands-full {
  padding: 3rem 0 4rem;
}

.brands-grid-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.brand-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44, 40, 37, 0.10);
  border: 1px solid rgba(44, 40, 37, 0.06);
  transition: all var(--transition);
}

.brand-showcase-card:hover {
  box-shadow: 0 6px 24px rgba(44, 40, 37, 0.16);
  transform: translateY(-2px);
}

.brand-showcase-card:nth-child(even) {
  direction: rtl;
}

.brand-showcase-card:nth-child(even) > * {
  direction: ltr;
}

.brand-hero-image {
  position: relative;
  min-height: 300px;
  background: var(--color-bg-warm);
  overflow: hidden;
}

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

.brand-showcase-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-logo-container {
  margin-bottom: 1.25rem;
}

.brand-logo-large {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.brand-showcase-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.brand-positioning {
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.brand-description {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.section-info .info-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.section-info .info-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.section-info .info-text {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .brand-showcase-card {
    grid-template-columns: 1fr;
  }
  .brand-showcase-card:nth-child(even) {
    direction: ltr;
  }
  .brand-hero-image {
    min-height: 200px;
  }
  .brand-showcase-content {
    padding: 1.75rem;
  }
  .brand-showcase-title {
    font-size: 1.4rem;
  }
}

/* ============================================================================
   BRAND DETAIL PAGE
   ========================================================================== */

.brand-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
  overflow: hidden;
}

.brand-hero-image-large {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.brand-hero-image-large .brand-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 4rem 0;
}

.brand-hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.brand-hero-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.brand-hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.brand-hero-subtitle {
  color: var(--color-white);
  font-size: 1.1rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Fallback when no hero image */
.brand-hero:not(:has(.brand-hero-image-large)) {
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-warm) 100%);
}

.brand-hero:not(:has(.brand-hero-image-large)) .brand-hero-overlay {
  background: none;
}

.brand-hero:not(:has(.brand-hero-image-large)) .brand-hero-title {
  color: var(--color-heading);
}

.brand-hero:not(:has(.brand-hero-image-large)) .brand-hero-subtitle {
  color: var(--color-text-light);
}

.brand-hero:not(:has(.brand-hero-image-large)) .brand-hero-logo {
  background: none;
  padding: 0;
}

.brand-intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.brand-intro-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.brand-description-full {
  line-height: 1.8;
  color: var(--color-text-light);
}

@media (max-width: 768px) {
  .brand-hero { min-height: 260px; }
  .brand-hero-content { flex-direction: column; text-align: center; }
  .brand-hero-title { font-size: 1.8rem; }
  .brand-hero-overlay {
    background: none;
  }
  .brand-intro-grid { grid-template-columns: 1fr; }
}

/* --- Info Box (brand sidebar) --- */

.info-box-logo {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(44, 40, 37, 0.10);
  text-align: center;
}

.info-box-logo img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.info-box {
  background: var(--color-bg-warm);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.info-box-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(44, 40, 37, 0.10);
}

.info-box p {
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Update cards compact (brand detail page) --- */

.updates-grid-minimal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.update-card-compact {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(44, 40, 37, 0.08);
  border: 1px solid rgba(44, 40, 37, 0.06);
  transition: all var(--transition);
}

.update-card-compact:hover {
  box-shadow: 0 4px 16px rgba(44, 40, 37, 0.14);
  transform: translateY(-2px);
}

.update-card-image-compact {
  height: 180px;
  overflow: hidden;
  background: var(--color-bg-warm);
}

.update-card-image-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.update-card-content-compact {
  padding: 1.5rem;
}

.update-date-small {
  font-size: 0.8rem;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 0.5rem;
}

.update-title-compact {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.update-summary-compact {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* --- Downloads grid (brand detail page) --- */

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.download-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(44, 40, 37, 0.08);
  border: 1px solid rgba(44, 40, 37, 0.06);
  text-align: center;
}

.download-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.download-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}

.download-description {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* --- CTA interest block (brand detail page) --- */

.section-cta-interest {
  padding: 3rem 0;
}

.cta-interest-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-interest-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.cta-interest-text {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* --- Contact persons (brand detail page) --- */

.section-contact-brand {
  padding: 3rem 0 4rem;
}

.contact-persons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-person-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(44, 40, 37, 0.08);
  border: 1px solid rgba(44, 40, 37, 0.06);
  text-align: center;
}

.contact-person-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.25rem;
}

.contact-person-title {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.contact-person-phone,
.contact-person-email {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.contact-person-phone a,
.contact-person-email a {
  color: var(--color-primary);
  font-weight: 500;
}

/* ============================================================================
   UPDATE DETAIL / ARTICLE PAGE
   ========================================================================== */

.update-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.article-header {
  margin-bottom: 2rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.3;
}

.article-body {
  line-height: 1.8;
  color: var(--color-text);
}

.article-body p {
  margin-bottom: 1rem;
}

.article-body img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.update-sidebar {
  position: sticky;
  top: 2rem;
}

.related-updates-box {
  background: var(--color-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* --- Update hero image (full-width) --- */

.update-hero {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  background: var(--color-bg-warm);
}

.update-hero-image {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

/* --- Article meta badges --- */

.brand-badge-article {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.brand-badge-article a {
  color: var(--color-white);
  text-decoration: none;
}

.article-date {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* --- Article footer --- */

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44, 40, 37, 0.10);
}

.article-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Sidebar styles --- */

.related-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(44, 40, 37, 0.10);
}

.related-updates-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.related-update-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(44, 40, 37, 0.06);
}

.related-update-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-date {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.related-title-item {
  font-size: 0.95rem;
  line-height: 1.4;
}

.related-title-item a {
  color: var(--color-heading);
  text-decoration: none;
  font-weight: 600;
}

.related-title-item a:hover {
  color: var(--color-primary);
}

.sidebar-cta-box {
  margin-top: 2rem;
  background: var(--color-bg-warm);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
}

.sidebar-cta-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sidebar-cta-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* --- Related updates full-width grid --- */

.related-updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}

.update-card-related {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(44, 40, 37, 0.08);
  border: 1px solid rgba(44, 40, 37, 0.06);
  transition: all var(--transition);
}

.update-card-related:hover {
  box-shadow: 0 4px 16px rgba(44, 40, 37, 0.14);
  transform: translateY(-2px);
}

.update-card-image-related {
  height: 160px;
  overflow: hidden;
  background: var(--color-bg-warm);
}

.update-card-image-related img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.update-card-content-related {
  padding: 1.25rem;
}

.brand-badge-small {
  display: inline-block;
  background: var(--color-bg-warm);
  color: var(--color-primary);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-right: 0.5rem;
}

.date-small {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.title-related {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0.5rem 0;
  line-height: 1.4;
}

.summary-related {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .update-container { grid-template-columns: 1fr; }
  .update-hero { max-height: 250px; }
  .update-hero-image { max-height: 250px; }
  .article-title { font-size: 1.5rem; }
  .article-actions { flex-direction: column; }
}

/* ============================================================================
   FILTER BUTTONS (Updates / Dealers)
   ========================================================================== */

.filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.filter-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* ============================================================================
   HOMEPAGE UPDATE CARDS — FEATURED VARIATION
   ========================================================================== */

.updates-grid-home {
  grid-template-columns: 1fr 1fr;
}

.updates-grid-home .update-card-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex-direction: unset;
}

.updates-grid-home .update-card-featured .update-card-image {
  height: 100%;
  min-height: 280px;
}

.updates-grid-home .update-card-featured .update-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.updates-grid-home .update-card-featured .update-card-title {
  font-size: 1.5rem;
}

.updates-grid-home .update-card-featured .update-card-summary {
  font-size: 1rem;
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 768px) {
  .hero-home { min-height: 400px; }
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .page-title { font-size: 2rem; }
  .section-title { font-size: 1.5rem; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .updates-grid { grid-template-columns: 1fr; }
  .updates-grid-home { grid-template-columns: 1fr; }
  .updates-grid-home .update-card-featured { grid-template-columns: 1fr; }
  .updates-grid-home .update-card-featured .update-card-image { min-height: 200px; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-grid-centered { grid-template-columns: 1fr; }
  .dealers-grid { grid-template-columns: 1fr; }
  .dealer-search-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .brands-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   PAGE HEADER — ENHANCED (alle subpagina's)
   ========================================================================== */

.page-header {
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(1.5rem, 3vw, 2rem);
  border-bottom: none;
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, #EAEAEA 100%);
  text-align: center;
}

.page-header .page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.page-header .page-subtitle {
  margin: 0 auto;
  max-width: 540px;
  font-size: 1.05rem;
}

/* ============================================================================
   ACTUALITEITEN PAGE — VOLLEDIG RESTYLED
   ========================================================================== */

.section.section-filters {
  background: var(--color-bg-warm);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(44, 40, 37, 0.08);
}

.filters-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  white-space: nowrap;
}

.filter-btn {
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.filter-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.filter-btn-active,
.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.section.section-updates {
  background: var(--color-bg);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.updates-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

/* Update card in the full updates listing — must override homepage grid styles */
.section-updates .update-card-featured {
  display: flex !important;
  flex-direction: column !important;
  grid-column: auto !important;
  grid-template-columns: unset !important;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44, 40, 37, 0.08);
  border: 1px solid rgba(44, 40, 37, 0.06);
  transition: all var(--transition);
}

.section-updates .update-card-featured:hover {
  box-shadow: 0 8px 28px rgba(44, 40, 37, 0.14);
  transform: translateY(-3px);
}

.update-card-image-featured {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.update-card-image-featured img,
.update-image-featured {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.section-updates .update-card-featured:hover .update-image-featured,
.section-updates .update-card-featured:hover .update-card-image-featured img {
  transform: scale(1.05);
}

.update-card-content-featured {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.update-meta-featured {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.brand-badge-featured {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--color-bg-warm);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

.update-date-featured {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.update-title-featured {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-heading);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.update-excerpt {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

.btn-primary-small {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  align-self: flex-start;
}

.btn-primary-small:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

/* Subscribe block */
.section-subscribe {
  background: var(--color-bg-warm);
}

.subscribe-block {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.subscribe-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.subscribe-text {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.form-group-inline {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}

.form-group-inline .form-input {
  flex: 1;
}

@media (max-width: 768px) {
  .updates-grid-full {
    grid-template-columns: 1fr;
  }
  .filters-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-group-inline {
    flex-direction: column;
  }
}

/* ============================================================================
   DEALERS PAGE — RESTYLED
   ========================================================================== */

.section.section-search {
  background: var(--color-bg-warm);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(44, 40, 37, 0.08);
}

.search-filter-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.section-search .search-form,
.section-search .dealer-search-form {
  display: flex;
  gap: 0.75rem;
  flex: 1;
  min-width: 280px;
  margin-bottom: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
  flex-wrap: nowrap;
}

.section-search .search-input {
  flex: 1;
  min-width: 200px;
  padding: 0.65rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-white);
}

.filter-select-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter-form {
  margin: 0;
}

.section.section-dealers {
  background: var(--color-bg);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.dealers-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.dealer-list-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44, 40, 37, 0.08);
  border: 1px solid rgba(44, 40, 37, 0.06);
  transition: all var(--transition);
}

.dealer-list-card:hover {
  box-shadow: 0 6px 24px rgba(44, 40, 37, 0.14);
  transform: translateY(-2px);
}

.dealer-list-card .dealer-card-header {
  padding: 1.25rem 1.5rem 0;
  border-bottom: none;
}

.dealer-list-card .dealer-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-heading);
  margin-bottom: 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(44, 40, 37, 0.08);
}

.dealer-list-card .dealer-card-body {
  padding: 1rem 1.5rem 1.25rem;
}

.dealer-info-item {
  margin-bottom: 0.6rem;
}

.dealer-info-item:last-child {
  margin-bottom: 0;
}

.dealer-info-item .info-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
}

.dealer-info-item .info-value {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}

.dealer-info-item .info-value a {
  color: var(--color-primary);
  font-weight: 500;
}

.section-dealers-cta {
  background: var(--color-bg-warm);
}

@media (max-width: 768px) {
  .search-filter-container {
    flex-direction: column;
    align-items: stretch;
  }
  .search-form {
    min-width: unset;
  }
  .dealers-list-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   CONTACT PAGE — RESTYLED
   ========================================================================== */

.section.section-contact {
  background: var(--color-bg);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-column {
  padding: 0;
}

.contact-form-column {
  padding: 0;
}

.info-block-large {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(44, 40, 37, 0.08);
  margin-bottom: 1.5rem;
}

.block-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--color-heading);
}

.company-info p {
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.company-info p strong {
  color: var(--color-heading);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-contacts-block {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(44, 40, 37, 0.08);
  border-top: none;
  padding-top: 2rem;
}

.contact-person {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(44, 40, 37, 0.06);
}

.contact-person:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.person-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
  color: var(--color-heading);
}

.person-role {
  color: var(--color-text-light);
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.form-block {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(44, 40, 37, 0.10);
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--color-heading);
}

/* Response time info */
.info-box-centered {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(44, 40, 37, 0.06);
}

@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .form-block {
    padding: 1.5rem;
  }
  .info-block-large {
    padding: 1.5rem;
  }
}

/* ============================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
  .navbar,
  .nav-mobile-toggle,
  .footer,
  .btn,
  form,
  .download-button,
  .dealer-action-link {
    display: none !important;
  }

  body {
    background-color: var(--color-white);
  }

  .section {
    page-break-inside: avoid;
    padding: 2rem 0;
  }

  .card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--color-border);
  }

  a[href]::after {
    content: '';
  }

  img {
    max-width: 100%;
  }
}

/* ============================================================================
   TYPEWRITER (hero) — Typisch Thuis huisstijl
   ========================================================================== */

.hero-typewriter {
  display: block;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  min-height: 1.05em;
}

.hero-typewriter .tw-text { display: inline-block; }

.hero-typewriter .tw-caret {
  display: inline-block;
  width: 4px;
  height: 0.85em;
  margin-left: 6px;
  background: var(--color-primary);
  vertical-align: -2px;
  border-radius: 1px;
  animation: tw-blink 1s steps(1) infinite;
}

@keyframes tw-blink {
  50% { opacity: 0; }
}

/* Hero met typewriter — laat het 3-regelig blok ademen */
.hero-title-stack > span {
  display: block;
  line-height: 1.05;
}
.hero-title-stack .tw-light { font-weight: 300; }
.hero-title-stack .tw-accent { color: var(--color-primary); font-weight: 600; }

/* Open huis decoratief silhouet, optioneel in de hero */
.hero-house-silhouette {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: min(620px, 50vw);
  height: auto;
  z-index: 0;
  opacity: 0.30;
  pointer-events: none;
}
.hero-house-silhouette path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 900px) {
  .hero-house-silhouette { width: 70vw; right: -120px; opacity: 0.22; }
}
@media (max-width: 600px) {
  .hero-house-silhouette { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-typewriter .tw-caret { animation: none; opacity: 1; }
}


/* ============================================================================
   NIEUW DESIGN SYSTEEM 2026 — uit _preview-site/shared.css
   Toegevoegd onderaan style.css zodat nieuwe component-classes voorrang krijgen
   (cascade-volgorde). Bestaande oude classes blijven werken.
   ============================================================================ */

/* Ontbrekende tokens die het nieuwe design gebruikt
   (deze :root merget met de bovenstaande — extra variabelen, geen overrides) */
:root {
  --gold:       #F5A300;
  --gold-soft:  #D89A1D;
  --gold-50:    #FFF6E2;
  --gold-100:   #FCE6B3;
  --gold-200:   #F8CE7A;
  --gold-700:   #6F2A0C;

  --ink:        #2F474B;
  --ink-2:      #4A6065;
  --ink-3:      #6F8388;
  --mute:       #9AABAE;

  --grey-50:    #FAFAFA;
  --grey-100:   #F2F2F2;
  --grey-200:   #E8E8E8;
  --grey-300:   #D6D6D6;
  --warm:       #FBF8F2;
  --white:      #FFFFFF;
  --success:    #5A8C6B;
  --error:      #C45B5B;

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-pill: 999px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --shadow-gold: 0 16px 36px -16px rgba(245,163,0,.45);
}


/* ---- Reset ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  letter-spacing: -.005em;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---- Container ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 32px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font); color: var(--ink); letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 600; line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); font-weight: 600; line-height: 1.15; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 600; line-height: 1.3; }
.light { font-weight: 300; }
.accent { color: var(--gold); }

.section-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: ""; width: 32px; height: 2px;
  background: var(--gold); border-radius: 1px;
}
.section-eyebrow-light { color: var(--gold-200); }

.section-title {
  max-width: 22ch;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: 14px; font-weight: 600;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .25s var(--ease),
              border-color .25s var(--ease);
}
.btn-primary {
  background: var(--gold); color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-soft); transform: translateY(-2px);
  box-shadow: 0 22px 42px -16px rgba(216,154,29,.6);
}
.btn-outline {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink); color: var(--white); transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-200); }
.btn-on-dark { background: var(--gold); color: var(--white); }
.btn-on-dark:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-ghost { color: var(--gold-soft); padding: 12px 0; }
.btn-ghost:hover { color: var(--gold); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 8px 0;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 var(--grey-200);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 110px; width: auto; display: block;
  transition: height .35s var(--ease);
}
.nav.scrolled .nav-logo img { height: 76px; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  transition: color .25s var(--ease);
  position: relative; padding: 8px 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease); border-radius: 1px;
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 11px 22px; background: var(--gold); color: var(--white) !important;
  border-radius: var(--r-pill); font-size: 13px; font-weight: 600;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta:hover {
  background: var(--gold-soft); transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--ink);
  transition: all .25s var(--ease);
}

/* Mobile drawer */
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 320px; max-width: 100vw;
  background: var(--white);
  padding: 90px 32px 32px;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  z-index: 49;
  box-shadow: var(--shadow-lg);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  display: block; padding: 14px 0;
  font-size: 18px; font-weight: 500; color: var(--ink);
  border-bottom: 1px solid var(--grey-200);
}

/* ---- HERO variations ---- */
.hero {
  position: relative; min-height: 100vh;
  overflow: hidden; isolation: isolate;
  display: flex; align-items: center;
  background: var(--white);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(900px 600px at 92% 12%, rgba(245,163,0,.10), transparent 60%),
    radial-gradient(700px 500px at 5% 90%, rgba(216,154,29,.07), transparent 60%),
    linear-gradient(180deg, var(--warm) 0%, var(--white) 70%);
}
.hero-house {
  position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: min(560px, 48vw); aspect-ratio: 1;
  z-index: -1; pointer-events: none;
}
.hero-house-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.32;
}
.hero-house-svg path {
  fill: none; stroke: var(--gold); stroke-width: 8;
  stroke-linecap: round; stroke-linejoin: round;
}
.hero-house-logos {
  position: absolute;
  inset: 30% 26% 20% 26%;
  display: grid;
  place-items: center;
}
.hh-logo {
  grid-area: 1/1;
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(.94);
  transition: opacity .9s var(--ease), transform 1.2s var(--ease);
  filter: drop-shadow(0 8px 24px rgba(47,71,75,.12));
}
.hh-logo.active {
  opacity: 1;
  transform: scale(1);
}
.hero-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 140px 32px 100px; position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-soft);
  opacity: 0; transform: translateY(8px);
  animation: rise .9s var(--ease) .15s forwards;
}
.hero-eyebrow::before {
  content: ""; width: 32px; height: 2px;
  background: var(--gold); border-radius: 1px;
}
.hero-title {
  font-weight: 600;
  font-size: clamp(2.4rem, 6.6vw, 5.6rem);
  line-height: 1.05; letter-spacing: -.025em;
  color: var(--ink); max-width: 14ch;
  margin-top: 28px;
  opacity: 0; transform: translateY(14px);
  animation: rise 1s var(--ease) .35s forwards;
}
.hero-title > span { display: block; line-height: 1.05; }
.hero-title .light { font-weight: 300; letter-spacing: -.015em; }
.hero-title .accent { color: var(--gold); font-weight: 600; }

/* Typewriter */
.typewriter {
  display: block; color: var(--gold);
  font-weight: 600; line-height: 1.05;
  white-space: nowrap;
}
.tw-caret {
  display: inline-block; width: 4px; height: .85em;
  background: var(--gold); margin-left: 6px;
  vertical-align: -2px; border-radius: 1px;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-lede {
  margin-top: 32px; max-width: 52ch;
  color: var(--ink-2); font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.15rem); line-height: 1.75;
  opacity: 0; transform: translateY(10px);
  animation: rise 1s var(--ease) .55s forwards;
}
.hero-cta {
  margin-top: 44px; display: flex; flex-wrap: wrap; gap: 14px;
  opacity: 0; transform: translateY(10px);
  animation: rise 1s var(--ease) .75s forwards;
}
.hero-trust {
  margin-top: 96px; padding-top: 36px;
  border-top: 1px solid var(--grey-200);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  opacity: 0; animation: rise 1s var(--ease) 1s forwards;
}
.hero-trust-label {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--mute); font-weight: 500;
}
.hero-trust-brands { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.hero-trust-brand {
  font-size: 13px; font-weight: 500;
  letter-spacing: .05em; text-transform: lowercase;
  color: var(--ink-2);
  transition: color .25s var(--ease);
  position: relative;
}
.hero-trust-brand::after {
  content: "|"; color: var(--gold); margin-left: 40px;
  font-weight: 300; opacity: .6;
}
.hero-trust-brand:last-child::after { content: ""; }
.hero-trust-brand:hover { color: var(--gold); }

/* Page hero (smaller — voor sub-pagina's) */
.page-hero {
  position: relative; padding: 160px 0 100px;
  background: var(--white); overflow: hidden;
  border-bottom: 1px solid var(--grey-200);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(800px 500px at 90% 10%, rgba(245,163,0,.10), transparent 60%),
    linear-gradient(180deg, var(--warm) 0%, var(--white) 70%);
}
.page-hero-inner { position: relative; }
.page-hero-title {
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05; letter-spacing: -.025em;
  color: var(--ink); max-width: 18ch;
  margin-top: 14px;
}
.page-hero-title .light { font-weight: 300; }
.page-hero-lede {
  margin-top: 24px; max-width: 60ch;
  color: var(--ink-2); font-size: 1.05rem; line-height: 1.75;
}

/* Brand hero (op merk-detail) */
.brand-hero {
  position: relative; padding: 160px 0 100px;
  overflow: hidden; isolation: isolate;
}
.brand-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(135deg, var(--ink) 0%, #1F353A 100%);
}
.brand-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(800px 500px at 10% 100%, rgba(245,163,0,.20), transparent 60%);
}
.brand-hero, .brand-hero h1, .brand-hero p { color: var(--white); }
.brand-hero .section-eyebrow { color: var(--gold-200); }
.brand-hero .section-eyebrow::before { background: var(--gold); }
.brand-hero-name {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.05; letter-spacing: -.03em;
  font-weight: 600; margin: 16px 0;
}
.brand-hero-tag {
  font-size: 1.1rem; color: rgba(255,255,255,.78);
  max-width: 60ch; line-height: 1.75;
}

@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ---- Scroll hint ---- */
.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  color: var(--mute); font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: rise 1s var(--ease) 1.2s forwards; opacity: 0;
}
.scroll-hint .line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- USP / 3-column section ---- */
.section-usp { background: var(--grey-100); padding: 110px 0; }
.usp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.usp-card {
  background: var(--white); padding: 40px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--grey-200);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.usp-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--gold-100);
}
.usp-icon {
  width: 52px; height: 52px;
  background: var(--gold-50); border-radius: var(--r-md);
  display: grid; place-items: center;
  color: var(--gold); margin-bottom: 24px;
}
.usp-num {
  font-size: 11px; font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 12px;
}
.usp-card h3 { margin-bottom: 14px; }
.usp-card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.7; }

/* ---- Brand grid (cards met overlay) ---- */
.section-showcase { background: var(--white); padding: 120px 0 110px; }
.showcase-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap; margin-bottom: 56px;
}
.section-link {
  font-size: 14px; font-weight: 600;
  color: var(--gold-soft);
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.section-link:hover { color: var(--gold); gap: 12px; }

.brand-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.brand-card {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.brand-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--gold-200);
}
.brand-card-bg {
  position: absolute; inset: 0;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.brand-card:hover .brand-card-bg { transform: scale(1.05); }
.brand-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(47,71,75,.78) 100%);
  transition: background .4s var(--ease);
}
.brand-card:hover .brand-card-overlay {
  background: linear-gradient(180deg, rgba(245,163,0,.08) 0%, rgba(47,71,75,.85) 100%);
}
.brand-card-meta {
  position: absolute; left: 26px; right: 26px; bottom: 24px;
  color: var(--white); z-index: 2;
}
.brand-card-name {
  font-weight: 600; font-size: 22px;
  letter-spacing: -.01em; margin-bottom: 6px;
}
.brand-card-tag {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-100); font-weight: 500;
}
.brand-card-arrow {
  position: absolute; right: 0; top: 8px;
  width: 36px; height: 36px;
  background: var(--gold); border-radius: 50%;
  display: grid; place-items: center;
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.brand-card:hover .brand-card-arrow { opacity: 1; transform: translateY(0); }

/* Brand gradients (placeholders) */
.bg-leonardo  { background: linear-gradient(135deg, #F8CE7A 0%, #B57700 100%); }
.bg-montana   { background: linear-gradient(135deg, #C7D3D4 0%, #2F474B 100%); }
.bg-kook      { background: linear-gradient(135deg, #FFE0AE 0%, #D89A1D 100%); }
.bg-stelton   { background: linear-gradient(135deg, #B9C7CA 0%, #4A6065 100%); }
.bg-rigtig    { background: linear-gradient(135deg, #E8DBC1 0%, #957431 100%); }
.bg-klud      { background: linear-gradient(135deg, #D5DDC8 0%, #7A8862 100%); }
.bg-warm-1    { background: linear-gradient(135deg, #FBDCC2 0%, #D89A1D 100%); }
.bg-warm-2    { background: linear-gradient(135deg, #FCE6B3 0%, #C5852C 100%); }

/* Brand grid — large variant (op merken-overzicht) */
.brand-grid-large { grid-template-columns: repeat(2, 1fr); gap: 32px; }
.brand-grid-large .brand-card { aspect-ratio: 5/4; }
.brand-grid-large .brand-card-name { font-size: 28px; }

/* ---- Warmth / quote section ---- */
.section-warmth { background: var(--grey-100); padding: 110px 0; text-align: center; }
.warmth-mark {
  font-size: 96px; line-height: 1; color: var(--gold);
  font-weight: 700; margin-bottom: -32px; font-family: Georgia, serif;
  opacity: .85;
}
.warmth-quote {
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.4; color: var(--ink);
  letter-spacing: -.015em; max-width: 24ch; margin: 0 auto;
}
.warmth-quote em { font-weight: 600; font-style: normal; color: var(--gold-soft); }
.warmth-meta {
  margin-top: 28px;
  font-size: 13px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500;
}

/* ---- CTA Band ---- */
.section-cta {
  background: var(--ink); color: var(--white);
  padding: 110px 32px; text-align: center;
  position: relative; overflow: hidden;
}
.section-cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 20% 30%, rgba(245,163,0,.22), transparent 60%),
    radial-gradient(600px 400px at 85% 85%, rgba(245,163,0,.10), transparent 65%);
}
.cta-inner { max-width: 760px; margin: 0 auto; position: relative; }
.cta-inner h2 { color: var(--white); margin: 14px 0 18px; }
.cta-inner h2 .light { font-weight: 300; }
.cta-inner p {
  color: rgba(255,255,255,.82);
  max-width: 50ch; margin: 0 auto 36px;
}
.cta-buttons { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---- News / articles cards ---- */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  display: flex; flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-md);
  border-color: var(--gold-200);
}
.news-card-image {
  aspect-ratio: 5/3; background-size: cover; background-position: center;
}
.news-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.news-card-meta {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600;
  margin-bottom: 12px;
}
.news-card h3 { font-size: 1.2rem; line-height: 1.3; margin-bottom: 10px; }
.news-card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.65; flex: 1; }
.news-card-link {
  margin-top: 16px; font-size: 13px; font-weight: 600;
  color: var(--gold-soft);
  display: inline-flex; align-items: center; gap: 6px;
}
.news-card-link:hover { color: var(--gold); }
.news-card-link::after {
  content: "→"; transition: transform .25s var(--ease);
}
.news-card:hover .news-card-link::after { transform: translateX(4px); }

.news-card-featured {
  grid-column: span 3;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 0;
}
.news-card-featured .news-card-image { aspect-ratio: auto; }
.news-card-featured .news-card-body { padding: 48px; justify-content: center; }
.news-card-featured h3 { font-size: 1.8rem; }

/* ---- Dealers ---- */
.dealer-filter {
  background: var(--grey-100); padding: 32px;
  border-radius: var(--r-lg);
  display: grid; grid-template-columns: 1fr 1fr auto; gap: 16px;
  margin-bottom: 48px;
}
.dealer-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.dealer-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.dealer-card:hover { border-color: var(--gold-200); box-shadow: var(--shadow-sm); }
.dealer-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.dealer-card-meta { color: var(--ink-3); font-size: 13px; margin-bottom: 14px; }
.dealer-card-address { color: var(--ink-2); font-size: 14px; line-height: 1.6; }
.dealer-card-brands {
  margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap;
}
.dealer-brand-chip {
  font-size: 11px; padding: 4px 10px;
  background: var(--gold-50); color: var(--gold-soft);
  border-radius: var(--r-pill); font-weight: 600;
  letter-spacing: .04em;
}

/* ---- Forms ---- */
.form-grid { display: grid; gap: 18px; max-width: 720px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-2);
}
.form-input, .form-select, .form-textarea {
  font: inherit; font-size: 15px;
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--r-sm);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245,163,0,.12);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-help { font-size: 12px; color: var(--ink-3); }

/* ---- Text + image alternating ---- */
.text-image {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.text-image-reverse { direction: rtl; }
.text-image-reverse > * { direction: ltr; }
.text-image-img {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  border: 1px solid var(--grey-200);
}
.text-image-body h2 { margin-bottom: 18px; }
.text-image-body p { color: var(--ink-2); font-size: 15.5px; line-height: 1.75; }
.text-image-body p + p { margin-top: 14px; }

/* ---- Team grid ---- */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.team-card { text-align: left; }
.team-photo {
  aspect-ratio: 1; border-radius: var(--r-lg);
  background: var(--grey-100);
  background-size: cover; background-position: center;
  margin-bottom: 16px;
  border: 1px solid var(--grey-200);
}
.team-name { font-weight: 600; font-size: 17px; color: var(--ink); }
.team-role {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600; margin-top: 4px;
}
.team-contact { margin-top: 10px; font-size: 13px; color: var(--ink-2); }
.team-contact a:hover { color: var(--gold); }

/* ---- Timeline ---- */
.timeline {
  position: relative; padding-left: 32px;
  border-left: 2px solid var(--grey-200);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item::before {
  content: ""; position: absolute; left: -41px; top: 6px;
  width: 18px; height: 18px;
  background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--gold-100);
}
.timeline-year {
  font-weight: 700; font-size: 22px; color: var(--gold); letter-spacing: -.01em;
}
.timeline-title { font-weight: 600; font-size: 17px; margin: 4px 0 8px; }
.timeline-body { color: var(--ink-2); font-size: 14.5px; line-height: 1.7; }

/* ---- Process steps ---- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step { position: relative; padding-top: 50px; }
.process-num {
  position: absolute; top: 0; left: 0;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 17px;
  box-shadow: var(--shadow-gold);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: var(--ink-2); font-size: 14px; line-height: 1.65; }

/* ---- Testimonials ---- */
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.testimonial {
  background: var(--white); padding: 36px;
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  position: relative;
}
.testimonial::before {
  content: """; position: absolute; top: 20px; right: 28px;
  font-size: 80px; line-height: 1; color: var(--gold-100);
  font-family: Georgia, serif;
}
.testimonial-quote {
  font-size: 15.5px; line-height: 1.7; color: var(--ink); margin-bottom: 20px;
}
.testimonial-author { display: flex; gap: 14px; align-items: center; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--gold-50); border-radius: 50%;
  background-size: cover; background-position: center;
}
.testimonial-name { font-weight: 600; font-size: 14.5px; }
.testimonial-role {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-3); margin-top: 2px;
}

/* ---- Filter chips ---- */
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  font-size: 13px; font-weight: 500;
  padding: 8px 16px;
  background: var(--grey-100); color: var(--ink-2);
  border-radius: var(--r-pill);
  border: 1px solid var(--grey-200);
  transition: all .25s var(--ease);
  cursor: pointer;
}
.chip:hover, .chip.active {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}

/* ---- Section spacing ---- */
.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.section-loose { padding: 130px 0; }
.section-white { background: var(--white); }
.section-grey { background: var(--grey-100); }
.section-warm-bg { background: var(--warm); }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.78); }
.section-dark .section-eyebrow { color: var(--gold-200); }

.section-head {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.section-head .section-eyebrow { justify-content: center; }
.section-head-left { text-align: left; margin: 0 0 56px; max-width: none; }

/* ---- Footer ---- */
footer {
  background: var(--white);
  color: var(--ink-2);
  padding: 70px 32px 40px;
  font-size: 14px;
  border-top: 1px solid var(--grey-200);
}
.foot-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; gap: 40px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.foot-logo img { height: 180px; width: auto; display: block; margin-bottom: 4px; }
.foot-tagline { font-size: 13px; color: var(--ink-3); max-width: 36ch; margin-top: 12px; }
.foot-col h4 {
  font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 16px;
}
.foot-col a {
  display: block; font-size: 14px; font-weight: 400;
  color: var(--ink-2); padding: 4px 0;
  transition: color .25s var(--ease);
}
.foot-col a:hover { color: var(--gold); }
.foot-bottom {
  max-width: 1280px; margin: 50px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--ink-3);
}

/* ---- Utilities ---- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-house { width: 70vw; right: -120px; opacity: .22; }
  .hero-inner, .page-hero, .brand-hero { padding-left: 24px; padding-right: 24px; }
  .usp-grid, .brand-grid, .news-grid, .testimonials { grid-template-columns: 1fr 1fr; }
  .news-card-featured { grid-column: span 2; grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .dealer-grid { grid-template-columns: 1fr; }
  .dealer-filter { grid-template-columns: 1fr; }
  .text-image { grid-template-columns: 1fr; gap: 32px; }
  .foot-inner { grid-template-columns: 1fr 1fr; }
  .brand-grid-large { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-inner { padding: 130px 20px 80px; }
  .typewriter { white-space: normal; line-height: 1.15; }
  .scroll-hint { display: none; }
  .usp-grid, .brand-grid, .news-grid, .testimonials, .team-grid, .process { grid-template-columns: 1fr; }
  .news-card-featured { grid-column: span 1; }
  .form-row-2 { grid-template-columns: 1fr; }
  .foot-inner { grid-template-columns: 1fr; }
  .nav-logo img, .nav.scrolled .nav-logo img { height: 44px; }
  .container, .container-narrow { padding: 0 20px; }
  .hero-trust-brand::after { margin-left: 24px; }
  .hero-trust-brands { gap: 24px; }
  .testimonial::before { display: none; }
  .timeline { padding-left: 24px; }
  .timeline-item::before { left: -33px; width: 14px; height: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .tw-caret { animation: none; opacity: 1; }
}

/* ============================================================================
   NIEUW DESIGN — OVERRIDES voor oude conflicterende regels
   ============================================================================ */

/* USP-sectie: in oude design was achtergrond donker en titel wit.
   In nieuw design is achtergrond licht grijs (--grey-100) en titel donker. */
.section-usp { background: var(--grey-100); color: var(--ink); }
.section-usp .section-title,
.section-usp h1, .section-usp h2, .section-usp h3 { color: var(--ink); }
.section-usp .section-subtitle, .section-usp p { color: var(--ink-2); }

/* Brand-card-tekst overlay moet altijd wit zijn — gradient is donker onderaan */
.brand-card-meta { color: #FFFFFF !important; }
.brand-card-name { color: #FFFFFF; }
.brand-card-tag { color: var(--gold-100); }

/* News-card: zekere correcte kleuren */
.news-card { color: var(--ink); }
.news-card h3 { color: var(--ink); }
.news-card p { color: var(--ink-2); }
.news-card-meta { color: var(--gold-soft); }

/* Section-head titels in onze nieuwe pagina-sectie altijd ink */
.section-head .section-title { color: var(--ink); }
.section-head-left .section-title { color: var(--ink); }

/* CTA-band specifiek wit */
.section-cta h1, .section-cta h2, .section-cta h3 { color: #FFFFFF !important; }
.section-cta p { color: rgba(255,255,255,.82) !important; }

/* Footer moet altijd licht zijn (oude footer was donker via .footer class) */
body > footer { background: var(--white); color: var(--ink-2); }
body > footer h4 { color: var(--ink); }
body > footer a { color: var(--ink-2); }
body > footer a:hover { color: var(--gold); }

/* ============================================================================
   HERO MARQUEE — Doorlopende logo-rij van merken
   ============================================================================ */
.hero-marquee {
  margin-top: 88px;
  padding-top: 36px;
  border-top: 1px solid var(--grey-200);
  opacity: 0;
  animation: rise 1s var(--ease) 1s forwards;
}
.hero-marquee-label {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--mute); font-weight: 500;
  margin-bottom: 22px;
}
.hero-marquee-track-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.hero-marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.hero-marquee-track:hover { animation-play-state: paused; }
.hero-marquee-item {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  height: 64px;
  padding: 0 12px;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter .35s var(--ease), opacity .35s var(--ease), transform .35s var(--ease);
  text-decoration: none;
}
.hero-marquee-item:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}
.hero-marquee-item img {
  max-height: 100%;
  max-width: 180px;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
}
.hero-marquee-item .fallback {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-2);
  text-transform: lowercase;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .hero-marquee { margin-top: 56px; padding-top: 28px; }
  .hero-marquee-track { gap: 48px; animation-duration: 24s; }
  .hero-marquee-item { height: 48px; }
  .hero-marquee-item img { max-width: 130px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-marquee-track { animation: none; }
}

/* ============================================================================
   HERO MET ACHTERGROND-AFBEELDING
   Geactiveerd wanneer site_settings.hero_background_image gevuld is.
   De afbeelding wordt full-bleed getoond met een sterke fade naar wit
   zodat de hero-tekst leesbaar blijft.
   ============================================================================ */
.hero.has-bg {
  background-image:
    /* Bovenlaag: zachte fade naar wit (sterker onderaan voor leesbare CTA's) */
    linear-gradient(180deg,
      rgba(255,255,255,0.45) 0%,
      rgba(255,255,255,0.72) 45%,
      rgba(255,255,255,0.92) 85%,
      rgba(255,255,255,0.98) 100%),
    /* De afbeelding zelf */
    var(--hero-bg);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
/* Subtiele warme oranje wash blijft voor brand-warmth */
.hero.has-bg::before {
  background:
    radial-gradient(900px 600px at 90% 12%, rgba(245,163,0,.16), transparent 60%),
    radial-gradient(700px 500px at 8% 92%, rgba(216,154,29,.10), transparent 60%) !important;
}

/* Op kleinere schermen: nog sterkere fade om tekst leesbaar te houden */
@media (max-width: 900px) {
  .hero.has-bg {
    background-image:
      linear-gradient(180deg,
        rgba(255,255,255,0.62) 0%,
        rgba(255,255,255,0.85) 50%,
        rgba(255,255,255,0.96) 100%),
      var(--hero-bg);
  }
}

/* ============================================================================
   WARM + MODERN POLISH (jan 2026)
   ============================================================================ */

/* Verfijnde, zachtere shadows als tokens */
:root {
  --shadow-soft:  0 2px 6px rgba(47,71,75,.04), 0 8px 24px -12px rgba(47,71,75,.10);
  --shadow-hover: 0 4px 12px rgba(47,71,75,.06), 0 24px 48px -20px rgba(47,71,75,.16);
  --shadow-gold-lift: 0 4px 16px rgba(245,163,0,.18), 0 20px 40px -16px rgba(245,163,0,.40);
}

/* ---- Knoppen: sterkere lift + glow ---- */
.btn-primary {
  box-shadow: var(--shadow-gold);
  transition: transform .35s var(--ease), background .25s var(--ease), box-shadow .35s var(--ease);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-lift);
}
.btn-primary:active { transform: translateY(-1px); transition-duration: .1s; }

.btn-outline:hover { transform: translateY(-3px); }
.btn-on-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold-lift); }

/* Subtle shimmer-stripe op gouden CTA bij hover */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left .6s ease;
}
.btn-primary:hover::after { left: 100%; }

/* ---- Cards: zachtere shadow + smoother lift ---- */
.brand-card, .news-card, .usp-card, .testimonial, .dealer-card {
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.brand-card:hover, .news-card:hover, .dealer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.usp-card:hover { transform: translateY(-4px); }

/* ---- Section-deep variant — donker blauwgrijs voor visueel ritme ---- */
.section-deep {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 110px 32px;
}
.section-deep::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 85% 15%, rgba(245,163,0,.18), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(216,154,29,.10), transparent 60%);
  pointer-events: none;
}
.section-deep > .container, .section-deep > .container-narrow { position: relative; z-index: 1; }
.section-deep h1, .section-deep h2, .section-deep h3 { color: var(--white); }
.section-deep p { color: rgba(255,255,255,.82); }
.section-deep .section-eyebrow { color: var(--gold-200); }
.section-deep .section-eyebrow::before { background: var(--gold); }

/* ---- Category-label badges op cards ---- */
.brand-card .card-label, .news-card .card-label {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 99px;
  box-shadow: 0 4px 12px rgba(245,163,0,.35);
}
.brand-card .card-label--blue { background: rgba(47,71,75,.92); color: var(--white); box-shadow: 0 4px 12px rgba(47,71,75,.35); }
.brand-card .card-label--ghost { background: rgba(255,255,255,.92); color: var(--ink); box-shadow: 0 4px 12px rgba(47,71,75,.15); }

/* ---- Accent-word in titles (italic gold) ---- */
.section-title .accent-word,
.hero-title .accent-word,
.page-hero-title .accent-word,
h2 .accent-word, h1 .accent-word {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
  position: relative;
  white-space: nowrap;
}
/* Subtiele underline-curve via SVG mask om de italic accent te benadrukken */
.section-title .accent-word::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -.15em;
  height: 6px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 6' preserveAspectRatio='none'><path d='M0 4 Q 25 1 50 3 T 100 2' stroke='%23F5A300' stroke-width='1.5' fill='none' stroke-linecap='round' opacity='0.6'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* ---- Stats-row sectie ---- */
.section-stats {
  background: var(--warm);
  padding: 90px 32px;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.stats-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-block { padding: 16px 8px; }
.stat-number {
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number sup { font-size: 0.5em; font-weight: 600; margin-left: 4px; vertical-align: super; color: var(--gold-soft); }
.stat-label {
  font-size: 13px; font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.stat-sublabel {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-3);
}

/* ---- Hero immersive — donker filmisch ---- */
.hero-immersive {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 120px 32px 90px;
  background: var(--ink);
  color: var(--white);
}
.hero-immersive .hi-bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  transition: transform 8s ease-out;
  transform: scale(1.05);
}
.hero-immersive:hover .hi-bg { transform: scale(1.0); }
.hero-immersive .hi-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(31,53,58,.85) 0%, rgba(47,71,75,.65) 50%, rgba(47,71,75,.45) 100%);
}
.hero-immersive-inner {
  max-width: 1280px; margin: 0 auto;
  width: 100%; position: relative;
}
.hero-immersive .hi-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold-200);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.hero-immersive .hi-eyebrow::before {
  content: ""; width: 32px; height: 2px;
  background: var(--gold); border-radius: 1px;
}
.hero-immersive .hi-title {
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--white);
  max-width: 16ch;
  text-transform: uppercase;
}
.hero-immersive .hi-title .accent-word {
  color: var(--gold);
  font-style: italic;
  font-weight: 700;
}
.hero-immersive .hi-lede {
  margin-top: 24px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,.85);
  max-width: 56ch;
  line-height: 1.75;
}
.hero-immersive .hi-cta {
  margin-top: 36px;
  display: inline-flex; gap: 14px; flex-wrap: wrap;
}
.hero-immersive .hi-cta .btn-primary { box-shadow: var(--shadow-gold-lift); }

/* ---- Stagger reveal animatie ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-group .reveal { transition-delay: 0s; }
.reveal-group .reveal:nth-child(2) { transition-delay: .1s; }
.reveal-group .reveal:nth-child(3) { transition-delay: .2s; }
.reveal-group .reveal:nth-child(4) { transition-delay: .3s; }
.reveal-group .reveal:nth-child(5) { transition-delay: .4s; }
.reveal-group .reveal:nth-child(6) { transition-delay: .5s; }

/* ---- Testimonial slider ---- */
.testimonial-slider {
  position: relative;
  max-width: 920px; margin: 0 auto;
}
.testimonial-track {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--grey-200);
  padding: 64px 80px 56px;
  box-shadow: var(--shadow-soft);
  min-height: 280px;
  display: flex; align-items: center;
}
.testimonial-slide {
  position: absolute; inset: 64px 80px 56px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  pointer-events: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
  inset: auto;
}
.testimonial-slide .testimonial-quote {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 24px;
}
.testimonial-slide .testimonial-quote::before {
  content: """;
  display: block;
  font-family: Georgia, serif;
  font-size: 72px;
  color: var(--gold);
  line-height: 0;
  margin: 24px 0 18px;
  opacity: .6;
}
.testimonial-author { display: flex; gap: 16px; align-items: center; }
.testimonial-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.testimonial-role { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-3); margin-top: 2px; }

.slider-nav {
  display: flex; gap: 12px; justify-content: center; margin-top: 32px;
  align-items: center;
}
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--grey-200);
  background: var(--white);
  cursor: pointer;
  display: grid; place-items: center;
  color: var(--ink);
  transition: all .25s var(--ease);
}
.slider-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: scale(1.05); }
.slider-btn--primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.slider-dots { display: flex; gap: 8px; margin: 0 12px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grey-300);
  cursor: pointer; transition: background .25s var(--ease), transform .25s var(--ease);
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* ---- Multi-step formulier ---- */
.wizard {
  max-width: 720px; margin: 0 auto;
}
.wizard-progress {
  display: flex; align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}
.wizard-step-pill {
  flex: 1;
  height: 4px;
  background: var(--grey-200);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.wizard-step-pill.done, .wizard-step-pill.current {
  background: var(--gold);
}
.wizard-step-pill.current::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: wizardShimmer 1.6s ease-in-out infinite;
}
@keyframes wizardShimmer {
  0% { transform: translateX(-100%); } 100% { transform: translateX(100%); }
}
.wizard-step {
  display: none;
  animation: wizardFade .4s var(--ease);
}
.wizard-step.active { display: block; }
@keyframes wizardFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.wizard-step h3 {
  font-size: 1.6rem; font-weight: 600;
  color: var(--ink); margin-bottom: 8px;
  letter-spacing: -.02em;
}
.wizard-step .wizard-hint {
  color: var(--ink-2); font-size: 15px; margin-bottom: 28px;
}
.wizard-options {
  display: grid; gap: 12px;
}
.wizard-option {
  display: block;
  padding: 18px 24px;
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .25s var(--ease);
  position: relative;
  font-weight: 500;
}
.wizard-option:hover {
  border-color: var(--gold-200);
  background: var(--gold-50);
  transform: translateY(-2px);
}
.wizard-option input[type="radio"], .wizard-option input[type="checkbox"] {
  display: none;
}
.wizard-option input:checked + .wizard-option-content,
.wizard-option:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-50);
  box-shadow: 0 8px 24px -8px rgba(245,163,0,.25);
}
.wizard-option .wo-title { font-size: 16px; color: var(--ink); font-weight: 600; }
.wizard-option .wo-desc { font-size: 13px; color: var(--ink-2); margin-top: 2px; }
.wizard-option .wo-check {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px;
  border: 2px solid var(--grey-200);
  border-radius: 50%;
  background: white;
  display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.wizard-option:has(input:checked) .wo-check {
  background: var(--gold); border-color: var(--gold);
}
.wizard-option:has(input:checked) .wo-check::after {
  content: "✓"; color: white; font-weight: 700;
}
.wizard-buttons {
  margin-top: 32px;
  display: flex; gap: 12px; justify-content: space-between;
}
.wizard-prev { background: var(--grey-100); color: var(--ink); }
.wizard-prev:hover { background: var(--grey-200); }

/* Override: accent-word zonder italic, alleen kleur (en behoud underline-curve) */
.section-title .accent-word,
.hero-title .accent-word,
.page-hero-title .accent-word,
h2 .accent-word, h1 .accent-word,
.hero-immersive .accent-word {
  font-style: normal !important;
}

/* ============================================================================
   LOGO CROP — verwijder de whitespace rond het logo-PNG
   De PNG heeft ~15% padding aan elke kant; we croppen visueel via een
   overflow-hidden container + scale-up zodat het wordmark beter leesbaar wordt.
   ============================================================================ */

.nav-logo {
  display: inline-flex !important;
  align-items: center; justify-content: flex-start;
  overflow: hidden;
  position: relative;
  width: 220px; height: 70px;
  transition: width .35s var(--ease), height .35s var(--ease);
}
.nav-logo img {
  position: absolute !important;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1.45);
  height: 100% !important;
  width: auto !important;
  max-height: none !important;
}
.nav.scrolled .nav-logo { width: 170px; height: 56px; }
.nav.scrolled .nav-logo img { transform: translate(-50%, -50%) scale(1.45); }

/* Footer logo: groter, dus minder agressieve zoom maar wel cropped */
.foot-logo {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 240px; height: 160px;
  margin-bottom: 8px;
}
.foot-logo img {
  position: absolute !important;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1.40);
  height: 100% !important;
  width: auto !important;
  max-height: none !important;
}

/* Logo in andere plekken (admin, login, bedankt) krijgt geen crop — daar geen issue */
.foot-logo p { position: static; overflow: visible; }

/* Mobile: iets compacter */
@media (max-width: 600px) {
  .nav-logo, .nav.scrolled .nav-logo { width: 150px; height: 50px; }
}

/* FIX: footer-logo crop op aparte wrapper zodat tagline-paragraaf niet wordt afgekapt */
.foot-logo {
  /* Reset eerdere overflow:hidden + height die de tagline zouden afkappen */
  position: static;
  overflow: visible;
  display: block;
  width: auto; height: auto;
  margin-bottom: 12px;
}
.foot-logo-img {
  display: block;
  position: relative;
  overflow: hidden;
  width: 240px;
  height: 160px;
  margin-bottom: 16px;
}
.foot-logo-img img {
  position: absolute !important;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1.40);
  height: 100% !important;
  width: auto !important;
  max-height: none !important;
}

/* OVERRIDE: exacte logo-positionering per gebruikersvoorkeur (top:86%, left:45%, scale 1.40) */
.nav-logo img,
.foot-logo-img img {
  position: absolute !important;
  top: 86% !important;
  left: 45% !important;
  transform: translate(-50%, -50%) scale(1.40) !important;
  height: 100% !important;
  width: auto !important;
  max-height: none !important;
}
.nav.scrolled .nav-logo img {
  transform: translate(-50%, -50%) scale(1.40) !important;
}

/* OVERRIDE: nav-logo container fors vergroten zodat logo prominent staat */
.nav-logo {
  width: 320px !important;
  height: 100px !important;
}
.nav.scrolled .nav-logo {
  width: 240px !important;
  height: 80px !important;
}

/* RESET: schone, simpele nav-logo zonder crop-trucs.
   De whitespace om het logo accepteren we — netter dan layout-issues. */
.nav-logo {
  display: inline-flex !important;
  align-items: center !important;
  overflow: visible !important;
  width: auto !important;
  height: auto !important;
  position: static !important;
}
.nav-logo img {
  position: static !important;
  top: auto !important; left: auto !important;
  transform: none !important;
  height: 92px !important;
  width: auto !important;
  max-height: 92px !important;
  display: block !important;
}
.nav.scrolled .nav-logo img {
  height: 68px !important;
  max-height: 68px !important;
  transform: none !important;
}

/* Nav-bar moet niet meegroeien — vast 100px hoog max (80 bij scroll) */
.nav { padding: 6px 0 !important; }
.nav.scrolled { padding: 4px 0 !important; }
.nav-inner { align-items: center !important; }

/* ============================================================================
   FINAL: bijgesneden logo + menu-typografie aansluitend op logo
   ============================================================================ */

/* Footer logo — reset crop trucs, simpel zoals nav */
.foot-logo {
  position: static !important;
  overflow: visible !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin-bottom: 16px !important;
}
.foot-logo-img {
  display: inline-block !important;
  position: static !important;
  overflow: visible !important;
  width: auto !important;
  height: auto !important;
  margin-bottom: 16px !important;
}
.foot-logo-img img,
.foot-logo > img {
  position: static !important;
  top: auto !important; left: auto !important;
  transform: none !important;
  height: 110px !important;
  width: auto !important;
  max-height: 110px !important;
  display: block !important;
}

/* Menu-links: aansluiten op logo wordmark (uppercase, semibold, letter-spaced) */
.nav-links .nav-link {
  font-family: 'Montserrat', sans-serif !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: .12em !important;
  color: var(--ink) !important;
}
.nav-links .nav-link:hover,
.nav-links .nav-link.active {
  color: var(--gold) !important;
}
.nav-links .nav-link::after {
  bottom: -4px !important; /* compenseer voor uppercase tracking */
}

/* "Word partner" CTA: zelfde uppercase styling als de rest van het menu */
.nav-links .nav-cta {
  font-family: 'Montserrat', sans-serif !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  letter-spacing: .15em !important;
  padding: 12px 22px !important;
}

/* Centrering: nav-inner uitlijnen op center over hele rij */
.nav-inner {
  align-items: center !important;
}
.nav-links {
  align-items: center !important;
  gap: 36px !important;
}

/* ============================================================================
   NAV LAYOUT C — TWEE-RIJ MET INFO-BALK (2026-05-19)
   ========================================================================== */

/* Site header wraps info bar + main nav */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: transform .35s var(--ease);
}

/* Top info bar */
.nav-info {
  background: var(--ink);
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .01em;
  line-height: 1;
  overflow: hidden;
  max-height: 44px;
  transition: max-height .35s var(--ease), padding .35s var(--ease), opacity .35s var(--ease);
}
.site-header.scrolled .nav-info {
  max-height: 0;
  opacity: 0;
}
.nav-info-inner {
  max-width: 1280px; margin: 0 auto; padding: 12px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-info-contact {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap;
}
.nav-info-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  transition: color .25s var(--ease);
  white-space: nowrap;
}
.nav-info-link:hover { color: var(--gold); }
.nav-info-link svg { opacity: .7; transition: opacity .25s var(--ease); flex-shrink: 0; }
.nav-info-link:hover svg { opacity: 1; color: var(--gold); }

.nav-info-social { display: flex; align-items: center; gap: 14px; }
.nav-info-social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .82);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.nav-info-social-icon:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

/* Main nav (override prior fixed positioning since wrapper handles it) */
.site-header .nav {
  position: static;
  top: auto; left: auto; right: auto;
  z-index: auto;
}

/* Mobile: hide email + show only essential info */
@media (max-width: 768px) {
  .nav-info-inner { padding: 9px 20px; gap: 12px; }
  .nav-info-contact { gap: 16px; }
  .nav-info-link span { display: none; }
  .nav-info-link svg { width: 16px; height: 16px; opacity: 1; }
  .nav-info-social-icon { width: 26px; height: 26px; }
}


/* Bump top padding so hero/page-hero content sits below info-bar + nav */
.hero-inner { padding-top: 180px; }
.page-hero { padding-top: 200px; }
.brand-hero { padding-top: 200px; }
@media (max-width: 768px) {
  .hero-inner { padding-top: 150px; }
  .page-hero { padding-top: 170px; }
  .brand-hero { padding-top: 170px; }
}


/* ============================================================================
   NAV LOGO RIGHTSIZE (2026-05-19)
   Logo is handmatig bijgesneden tot puur wordmark — 92px was te groot
   en trok het hele menu uit verhouding. Terugbrengen naar nette B2B-maat.
   ========================================================================== */
.nav-logo img {
  height: 52px !important;
  max-height: 52px !important;
}
.nav.scrolled .nav-logo img,
.site-header.scrolled .nav-logo img {
  height: 40px !important;
  max-height: 40px !important;
}

/* Nav-inner kan nu compacter — minder padding, hogere ademruimte rondom de menu-items */
.nav { padding: 12px 0 !important; }
.nav.scrolled, .site-header.scrolled .nav { padding: 8px 0 !important; }

/* Footer-logo iets kleiner dan voorheen, maar nog ruim aanwezig */
.foot-logo-img img,
.foot-logo > img {
  height: 72px !important;
  max-height: 72px !important;
}

/* Hero/page-hero padding-top corrigeren nu het hoofdmenu compacter is.
   Info-bar (~38px) + nav (~80px) = ~118px header-hoogte */
.hero-inner { padding-top: 150px; }
.page-hero { padding-top: 165px; }
.brand-hero { padding-top: 165px; }
@media (max-width: 768px) {
  .hero-inner { padding-top: 130px; }
  .page-hero { padding-top: 145px; }
  .brand-hero { padding-top: 145px; }
}


/* ============================================================================
   SFEER-SECTIES — 7 nieuwe section types (mei 2026)
   Rituelen · Editorial spread · Sfeerwand · Kleurverhaal
   Sticky story · In de winkel · Marquee
   Alle in lijn met huisstijl tokens (--gold, --ink, --warm) + Cormorant serif accent
   ========================================================================== */


:root {
  --serif: 'Cormorant Garamond', Georgia, serif;
}

/* Placeholder voor elk type — grijs hatched canvas voor lege beelden */
.ritu-img-placeholder, .ed-img-placeholder, .moodwall-placeholder,
.cs-product-placeholder, .sticky-image-placeholder, .inde-placeholder,
.marquee-placeholder {
  width: 100%; height: 100%; min-height: 120px;
  background:
    repeating-linear-gradient(45deg, var(--grey-100) 0 10px, var(--grey-200) 10px 20px);
  display: block;
}

/* ---- 1. RITUELEN ---- */
.ritu {
  position: relative;
  background: var(--warm);
  padding: 80px 0;
  overflow: hidden;
}
.ritu::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 90% 10%, rgba(245,163,0,.10), transparent 60%),
    radial-gradient(600px 400px at 10% 90%, rgba(47,71,75,.04), transparent 60%);
  pointer-events: none;
}
.ritu-head {
  max-width: 1280px; margin: 0 auto 60px;
  padding: 0 40px; position: relative;
}
.ritu-eyebrow {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-soft); margin-bottom: 18px;
}
.ritu-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400; letter-spacing: -.01em;
  line-height: 1.05; max-width: 18ch;
  color: var(--ink);
}
.ritu-title em { font-style: italic; color: var(--gold); font-weight: 500; }
.ritu-lede {
  margin-top: 18px; max-width: 52ch;
  color: var(--ink-2); font-size: 1rem; line-height: 1.7;
}
.ritu-scroll {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ritu-scroll::-webkit-scrollbar { display: none; }
.ritu-track {
  display: flex; gap: 28px;
  padding: 0 40px 30px;
  max-width: max-content;
}
.ritu-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(47,71,75,.06), 0 14px 40px rgba(47,71,75,.08);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.ritu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 8px rgba(47,71,75,.08), 0 22px 56px rgba(47,71,75,.12);
}
.ritu-img { aspect-ratio: 4/5; overflow: hidden; position: relative; }
.ritu-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.ritu-card:hover .ritu-img img { transform: scale(1.04); }
.ritu-time {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink); z-index: 2;
}
.ritu-body { padding: 28px 30px 32px; }
.ritu-card-title {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 500; letter-spacing: -.01em;
  margin-bottom: 12px; color: var(--ink);
}
.ritu-card-text { font-size: 14px; line-height: 1.7; color: var(--ink-2); margin-bottom: 20px; }
.ritu-brands {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 18px; border-top: 1px solid var(--grey-200);
}
.ritu-brand-chip {
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-2);
  padding: 5px 10px; background: var(--grey-100);
  border-radius: var(--r-sm);
}
.ritu-progress {
  max-width: 1280px; margin: 30px auto 0;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: flex-end; gap: 16px;
  color: var(--mute); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
}

/* ---- 2. EDITORIAL SPREAD ---- */
.ed-spread { background: var(--white); padding: 100px 0; }
.ed-grid {
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
  align-items: center;
}
.ed-img-stack { position: relative; }
.ed-img-main {
  aspect-ratio: 4/5; overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 70px rgba(47,71,75,.18);
}
.ed-img-main img { width: 100%; height: 100%; object-fit: cover; }
.ed-img-overlay {
  position: absolute; bottom: -40px; right: -40px;
  width: 50%; aspect-ratio: 3/4;
  overflow: hidden; border-radius: 2px;
  box-shadow: 0 20px 50px rgba(47,71,75,.22);
  border: 8px solid var(--white);
}
.ed-img-overlay img { width: 100%; height: 100%; object-fit: cover; }
.ed-text { padding-right: 20px; }
.ed-brand-mark {
  font-family: var(--serif); font-style: italic;
  font-size: 2.4rem; color: var(--gold);
  font-weight: 400; margin-bottom: 30px;
  letter-spacing: -.01em; line-height: 1;
}
.ed-quote {
  font-family: var(--serif);
  font-size: 1.6rem; line-height: 1.4;
  font-weight: 400; letter-spacing: -.005em;
  color: var(--ink); margin-bottom: 30px;
}
.ed-meta {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-soft); margin-bottom: 24px;
}
.ed-body { font-size: 15px; line-height: 1.8; color: var(--ink-2); margin-bottom: 32px; }
.ed-callouts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding: 24px; background: var(--warm);
  border-radius: var(--r-md);
}
.ed-callout-item { font-size: 13px; }
.ed-callout-item strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 4px; }
.ed-callout-item span { color: var(--ink-2); font-size: 12px; }
.ed-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 32px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; color: var(--ink);
  padding-bottom: 4px; border-bottom: 1px solid var(--gold);
  transition: color .25s var(--ease);
}
.ed-link:hover { color: var(--gold); }
@media (max-width: 900px) {
  .ed-grid { grid-template-columns: 1fr; gap: 40px; }
  .ed-img-overlay { display: none; }
  .ed-text { padding-right: 0; }
}

/* ---- 3. SFEERWAND ---- */
.moodwall { background: var(--paper, var(--warm)); padding: 100px 0; }
.moodwall-head {
  max-width: 1280px; margin: 0 auto 50px; padding: 0 40px;
  display: flex; align-items: end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.moodwall-head-left { max-width: 60ch; }
.moodwall-eyebrow {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-soft); margin-bottom: 16px;
}
.moodwall-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 400; line-height: 1.1; color: var(--ink);
}
.moodwall-title em { font-style: italic; color: var(--gold); }
.moodwall-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.moodwall-filter {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; color: var(--ink-2);
  padding: 9px 16px; border: 1px solid var(--grey-200);
  border-radius: var(--r-pill);
  background: transparent; cursor: pointer;
  transition: all .25s var(--ease);
}
.moodwall-filter.active, .moodwall-filter:hover {
  background: var(--ink); color: var(--white); border-color: var(--ink);
}
.moodwall-grid {
  max-width: 1400px; margin: 0 auto;
  padding: 0 40px;
  columns: 4; column-gap: 20px;
}
@media (max-width: 1000px) { .moodwall-grid { columns: 3; } }
@media (max-width: 700px)  { .moodwall-grid { columns: 2; column-gap: 12px; } }
.moodwall-item {
  break-inside: avoid; margin-bottom: 20px;
  position: relative; overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--grey-100);
}
.moodwall-item img { width: 100%; height: auto; display: block; transition: transform .6s var(--ease); }
.moodwall-item:hover img { transform: scale(1.04); }
.moodwall-tag {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 10px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink);
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.moodwall-item:hover .moodwall-tag { opacity: 1; transform: translateY(0); }

/* ---- 4. KLEURVERHAAL ---- */
.colorstory {
  background: linear-gradient(180deg, #E9E2D4 0%, #F0EADC 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cs-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.cs-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 60px;
}
.cs-eyebrow {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-soft); margin-bottom: 18px;
}
.cs-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -.01em; color: var(--ink);
}
.cs-title em { font-style: italic; color: #8B6E3D; }
.cs-meta { color: var(--ink-2); font-size: 14px; line-height: 1.7; }
.cs-meta strong { color: var(--ink); display: block; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .1em; font-size: 11px; font-weight: 700; }
.cs-swatches { display: flex; gap: 14px; margin-bottom: 50px; }
.cs-swatch {
  flex: 1; aspect-ratio: 1;
  border-radius: var(--r-md);
  position: relative;
  box-shadow: 0 8px 24px rgba(47,71,75,.08);
}
.cs-swatch::after {
  content: attr(data-hex);
  position: absolute; bottom: -28px; left: 0;
  font-size: 10px; letter-spacing: .1em; font-weight: 600;
  color: var(--ink-2);
}
.cs-products {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 30px;
}
@media (max-width: 800px) {
  .cs-head { grid-template-columns: 1fr; gap: 30px; }
  .cs-products { grid-template-columns: 1fr 1fr; }
  .cs-swatches { flex-wrap: wrap; }
  .cs-swatch { min-width: 80px; }
}
.cs-product {
  background: var(--white); border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(47,71,75,.06);
  transition: transform .4s var(--ease);
}
.cs-product:hover { transform: translateY(-4px); }
.cs-product-img { aspect-ratio: 1; overflow: hidden; background: var(--grey-100); }
.cs-product-img img { width: 100%; height: 100%; object-fit: cover; }
.cs-product-body { padding: 16px 18px 18px; }
.cs-product-brand {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600; margin-bottom: 4px;
}
.cs-product-name { font-size: 14px; font-weight: 500; color: var(--ink); }

/* ---- 5. STICKY STORY ---- */
.sticky-story { background: var(--ink); color: var(--white); padding: 0; }
.sticky-container {
  display: grid; grid-template-columns: 1fr 1fr;
}
.sticky-text-pane {
  position: sticky; top: 100px;
  height: calc(100vh - 100px);
  display: flex; align-items: center;
  padding: 60px 60px 60px 80px;
}
.sticky-text-inner { max-width: 460px; }
.sticky-text-eyebrow {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 600; color: var(--gold); margin-bottom: 24px;
}
.sticky-text-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -.01em; margin-bottom: 28px; color: var(--white);
}
.sticky-text-title em { font-style: italic; color: var(--gold); }
.sticky-text-body {
  font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,.78);
  margin-bottom: 36px;
}
.sticky-indicator {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.sticky-indicator-bar {
  flex: 1; max-width: 60px; height: 1px; background: rgba(255,255,255,.2);
  position: relative;
}
.sticky-indicator-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--gold);
  transition: width .3s var(--ease);
  width: 0;
}
.sticky-image-pane { display: flex; flex-direction: column; }
.sticky-image {
  height: 100vh; position: relative; overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.08);
}
.sticky-image img { width: 100%; height: 100%; object-fit: cover; }
.sticky-image-caption {
  position: absolute; bottom: 32px; left: 32px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  padding: 14px 20px; border-radius: var(--r-sm);
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--white); font-weight: 600;
}
@media (max-width: 900px) {
  .sticky-container { grid-template-columns: 1fr; }
  .sticky-text-pane { position: static; height: auto; padding: 60px 40px; }
  .sticky-image { height: 70vh; border-left: none; }
}

/* ---- 6. IN DE WINKEL ---- */
.inde {
  background: var(--paper, var(--white)); padding: 100px 0;
  position: relative; overflow: hidden;
}
.inde-head { max-width: 1280px; margin: 0 auto 70px; padding: 0 40px; text-align: center; }
.inde-eyebrow {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-soft); margin-bottom: 18px;
}
.inde-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; max-width: 22ch; margin: 0 auto;
  line-height: 1.1; color: var(--ink);
}
.inde-title em { font-style: italic; color: var(--gold); }
.inde-lede {
  margin-top: 18px; color: var(--ink-2);
  max-width: 56ch; margin-left: auto; margin-right: auto;
  line-height: 1.7; font-size: 1rem;
}
.inde-gallery {
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 60px;
  gap: 16px;
}
.inde-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--grey-100);
  transition: transform .4s var(--ease);
  box-shadow: 0 4px 14px rgba(47,71,75,.06);
}
.inde-card:hover { transform: translateY(-3px); }
.inde-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.inde-card:hover img { transform: scale(1.05); }
.inde-card-label {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; color: var(--ink);
}
.inde-card.s-1 { grid-column: span 5; grid-row: span 6; }
.inde-card.s-2 { grid-column: span 4; grid-row: span 4; }
.inde-card.s-3 { grid-column: span 3; grid-row: span 5; }
.inde-card.s-4 { grid-column: span 4; grid-row: span 5; }
.inde-card.s-5 { grid-column: span 5; grid-row: span 5; }
.inde-card.s-6 { grid-column: span 3; grid-row: span 4; }
@media (max-width: 900px) {
  .inde-gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 80px; }
  .inde-card.s-1 { grid-column: span 4; grid-row: span 4; }
  .inde-card.s-2, .inde-card.s-3, .inde-card.s-4, .inde-card.s-5, .inde-card.s-6 {
    grid-column: span 2; grid-row: span 3;
  }
}

/* ---- 7. MARQUEE ---- */
.marquee {
  background: var(--white); padding: 80px 0 100px;
  position: relative; overflow: hidden;
  --marquee-speed: 60s;
}
.marquee-head { max-width: 1280px; margin: 0 auto 50px; padding: 0 40px; }
.marquee-eyebrow {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-soft); margin-bottom: 14px;
}
.marquee-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400; max-width: 26ch; color: var(--ink);
}
.marquee-title em { font-style: italic; color: var(--gold); }
.marquee-track-wrapper {
  width: 100%; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 20px;
  animation: marquee-scroll var(--marquee-speed) linear infinite;
  width: max-content;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  flex: 0 0 auto;
  width: 280px; aspect-ratio: 3/4;
  overflow: hidden; border-radius: var(--r-sm);
  position: relative;
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; }
.marquee-item-label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  padding: 5px 11px; border-radius: var(--r-pill);
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; color: var(--ink);
}
.marquee-track:hover { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; transform: translateX(0); }
}


/* ============================================================================
   DOCUMENTATIE-SECTIES — concept_intro + concept_notes
   Voor showcase/gids-pagina's met editoriale uitleg
   ========================================================================== */

/* ---- concept_intro: chip-pills + serif title met italic accent + omschrijving ---- */
.concept-intro-sec {
  background: var(--paper, var(--white));
  padding: 80px 0 40px;
  border-top: 1px solid var(--grey-200);
}
.ci-inner {
  max-width: 920px; margin: 0 auto;
  padding: 0 40px;
}
.ci-chip {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 18px;
}
.ci-chip-pill {
  background: var(--gold); color: var(--white);
  padding: 5px 10px; border-radius: var(--r-sm);
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
}
.ci-chip-text {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-soft);
}
.ci-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 500; line-height: 1.1;
  letter-spacing: -.01em; color: var(--ink);
  margin-bottom: 16px;
}
.ci-title em { font-style: italic; color: var(--gold-soft); font-weight: 500; }
.ci-desc {
  font-size: 1rem; line-height: 1.7; color: var(--ink-2);
  max-width: 60ch;
}

/* ---- concept_notes: 2x2 grid met label + body ---- */
.concept-notes-sec {
  padding: 40px 0 80px;
  background: var(--paper, var(--white));
}
.concept-notes-sec.cn-dark {
  background: var(--ink); color: var(--white);
}
.cn-inner {
  max-width: 920px; margin: 0 auto;
  padding: 0 40px;
}
.cn-head { margin-bottom: 30px; }
.cn-eyebrow {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-soft); margin-bottom: 10px;
}
.cn-dark .cn-eyebrow { color: var(--gold); }
.cn-title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 500; line-height: 1.2;
  color: var(--ink);
}
.cn-dark .cn-title { color: var(--white); }
.cn-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
@media (max-width: 700px) { .cn-grid { grid-template-columns: 1fr; gap: 24px; } }
.cn-cell {
  padding: 24px 28px;
  background: rgba(47, 71, 75, .03);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-md);
}
.cn-dark .cn-cell {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .08);
}
.cn-cell-label {
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-soft);
  margin-bottom: 12px;
}
.cn-dark .cn-cell-label { color: var(--gold); }
.cn-cell-body {
  font-size: 14px; line-height: 1.7; color: var(--ink-2);
}
.cn-dark .cn-cell-body { color: rgba(255, 255, 255, .78); }

