/* Rotoflowers — modern redesign 2026 */

:root {
  --primary: #f97316;
  --primary-dark: #ea580c;
  --primary-light: #ffedd5;
  --secondary: #1a3d2e;
  --secondary-mid: #355541;
  --accent: #ffc216;
  --bg: #fafaf9;
  --bg-warm: #f5f0eb;
  --surface: #ffffff;
  --text: #1c1917;
  --text-muted: #57534e;
  --text-inverse: #fafaf9;
  --border: rgba(28, 25, 23, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --container: 1280px;
  --nav-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 52ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.eyebrow--pill {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 194, 22, 0.45);
  border-radius: var(--radius-full);
  color: var(--accent);
  backdrop-filter: blur(8px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.125rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

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

.btn-secondary:hover {
  background: var(--secondary-mid);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding-inline: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.btn-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  width: 100%;
  max-width: 40rem;
}

.btn-group .btn {
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 4.75rem;
  white-space: normal;
  text-align: center;
  padding-inline: 1rem;
  line-height: 1.3;
}

.btn-group:has(> .btn:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 28rem;
}

.section-header.center .btn-group {
  margin-inline: auto;
}

/* Five-button honeycomb only when Buppie is visible. Hidden Buppie still counts as a child. */
html.buppie-on .btn-group:has(> .btn:nth-child(5):last-child) {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

html.buppie-on .btn-group:has(> .btn:nth-child(5):last-child) > .btn:nth-child(-n+3) {
  grid-column: span 2;
}

html.buppie-on .btn-group:has(> .btn:nth-child(5):last-child) > .btn:nth-child(4) {
  grid-column: 2 / span 2;
}

html.buppie-on .btn-group:has(> .btn:nth-child(5):last-child) > .btn:nth-child(5) {
  grid-column: 4 / span 2;
}

html:not(.buppie-on) .btn-group:has(> .btn:nth-child(5):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  grid-auto-rows: 1fr;
}

html:not(.buppie-on) .btn-group:has(> .btn:nth-child(5):last-child) > .btn {
  grid-column: auto;
}

html:not(.buppie-on) .hero-text .btn-group {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-2--feature .lead {
  margin-top: 1rem;
}

.grid-2--feature .btn-group {
  width: 100%;
  max-width: 34rem;
  margin-top: 1.75rem;
  gap: 0.85rem;
}

.grid-2--feature .btn-group .btn {
  min-height: 3.75rem;
}

p:has(> .btn + .btn) {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 28rem;
}

p:has(> .btn + .btn) .btn {
  width: 100%;
  min-height: 4.75rem;
  white-space: normal;
  text-align: center;
  padding-inline: 1rem;
  line-height: 1.3;
}

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

.hero-text .btn-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  max-width: 38rem;
}

.hero-text .btn-group .btn {
  width: 100%;
  min-height: 4.75rem;
  white-space: normal;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.3;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header.scrolled .nav-link { color: var(--text); }
.header.scrolled .nav-logo__roto,
.page-article .nav-logo__roto {
  filter: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.nav-logo__home {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.nav-logo__roto {
  height: 42px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.nav-logo__divider {
  width: 1px;
  height: 2rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.45);
  transition: background var(--transition);
}

.header.scrolled .nav-logo__divider,
.page-article .nav-logo__divider {
  background: rgba(15, 23, 42, 0.22);
}

.nav-logo__partner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.18rem;
  flex-shrink: 0;
  text-decoration: none;
  transition: var(--transition);
}

.nav-logo__partner:hover {
  opacity: 0.92;
}

.header.scrolled .nav-logo__partner:hover,
.page-article .nav-logo__partner:hover {
  opacity: 0.85;
}

.nav-logo__powered {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.4375rem, 0.65vw, 0.5rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  transition: color var(--transition);
}

.header.scrolled .nav-logo__powered,
.page-article .nav-logo__powered {
  color: #9CA3AF;
}

.nav-logo__sf {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.875rem, 1.3vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-logo__summer,
.nav-logo__flora {
  color: rgba(255, 255, 255, 0.95);
  transition: color var(--transition);
}

.header.scrolled .nav-logo__summer,
.page-article .nav-logo__summer {
  color: #00B4DE;
}

.header.scrolled .nav-logo__flora,
.page-article .nav-logo__flora {
  color: #F7941D;
}

.nav-menu {
  display: none;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 0.15rem;
}

@media (min-width: 1024px) {
  .nav-menu { display: flex; }
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.lang-switch span {
  opacity: 0.35;
  font-weight: 400;
}

.lang-switch a {
  padding: 0.3rem 0.45rem;
  border-radius: var(--radius-sm);
  color: inherit;
  opacity: 0.65;
  transition: var(--transition);
}

.header:not(.scrolled) .lang-switch a {
  color: rgba(255, 255, 255, 0.85);
}

.lang-switch a:hover,
.lang-switch a.active {
  opacity: 1;
  color: var(--primary);
}

.header:not(.scrolled) .lang-switch a:hover,
.header:not(.scrolled) .lang-switch a.active {
  color: #fff;
}

.mobile-menu .lang-switch {
  justify-content: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.9375rem;
}

.mobile-menu .lang-switch a {
  padding: 0.5rem 0.75rem;
}

.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: white;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.15);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.625rem 1.25rem !important;
  background: var(--primary) !important;
  color: white !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

@media (min-width: 1024px) and (max-width: 1280px) {
  .nav-link {
    padding: 0.45rem 0.6rem;
    font-size: 0.8125rem;
  }

  .nav-cta {
    margin-left: 0.25rem;
    padding: 0.5rem 0.9rem !important;
  }

  .lang-switch {
    font-size: 0.75rem;
    gap: 0.2rem;
    margin-right: 0;
  }

  .nav-logo__roto {
    height: 38px;
  }

  .nav-logo__divider {
    height: 1.65rem;
  }
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

.header.scrolled .nav-toggle {
  background: var(--bg);
}

.header.scrolled .nav-toggle span {
  background: var(--text);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--secondary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.mobile-menu a:hover { background: rgba(255, 255, 255, 0.1); }

.mobile-menu .btn-primary {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img,
.hero-bg__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-bg__video {
  transition: opacity 0.2s linear;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      rgba(26, 61, 46, 0.97) 0%,
      rgba(26, 61, 46, 0.82) 38%,
      rgba(26, 61, 46, 0.35) 62%,
      rgba(26, 61, 46, 0.1) 100%
    ),
    linear-gradient(
      to top,
      rgba(26, 61, 46, 0.85) 0%,
      transparent 55%
    );
}

.hero-text {
  max-width: none;
}

.hero-text .eyebrow {
  margin-bottom: 1.5rem;
}

.hero-text .eyebrow--pill {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-text h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 5.5vw, 4rem);
  line-height: 1.08;
  color: #fff;
}

.hero-text h1 .hero-brand {
  color: #fff;
}

.hero-text h1 em {
  font-style: normal;
  color: #fff;
}

@media (min-width: 1024px) {
  .hero-text h1 {
    white-space: nowrap;
    font-size: clamp(2rem, 2.55vw, 3.25rem);
  }
}

.hero-text .lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: clamp(1.0625rem, 1.7vw, 1.25rem);
  line-height: 1.7;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.25);
  max-width: 38rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding-top: calc(var(--nav-height) + clamp(6.5rem, 28vh, 14rem));
  min-width: 0;
  margin-inline: auto;
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stats-bar .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
}

.stats-bar .stat span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-dark {
  background: var(--secondary);
  color: var(--text-inverse);
}

.section-dark .lead { color: rgba(255, 255, 255, 0.75); }

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

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

.section-header.center {
  text-align: center;
}

.section > .container.section-header.center:only-child {
  margin-bottom: 0;
}

.section-header.center .lead { margin-inline: auto; }

/* Grid layouts */
.grid-2 {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.grid-2--start {
  align-items: start;
}

.grid-2--stretch {
  align-items: stretch;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }

  .grid-2--feature {
    align-items: center;
    column-gap: clamp(1.5rem, 4vw, 3.5rem);
  }

  .grid-2--feature > .reveal:first-child {
    max-width: 38rem;
    min-width: 0;
  }

  .grid-2--feature .order-feature-image {
    width: 100%;
    margin-inline: 0;
    align-self: center;
    display: flex;
    min-height: 0;
  }

  .grid-2--feature .order-feature-image--cutout,
  .grid-2--feature .order-feature-image--hand {
    justify-self: end;
    width: auto;
    min-width: 15rem;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    background: var(--secondary);
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    align-self: stretch;
  }

  .grid-2--feature .order-feature-image--hand {
    justify-self: center;
    align-self: center;
    width: 100%;
    max-width: 100%;
    min-width: 11rem;
    justify-content: center;
    align-items: center;
  }

  .grid-2--feature .order-feature-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: none;
    aspect-ratio: unset;
    object-fit: cover;
    object-position: center 28%;
  }

  .grid-2--feature .order-feature-image--cutout img,
  .grid-2--feature .order-feature-image--hand img {
    width: auto;
    height: 100%;
    min-height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: right center;
    display: block;
  }

  .grid-2--feature .order-feature-image--hand img {
    height: auto;
    min-height: 0;
    max-height: clamp(19rem, 46vh, 30rem);
    object-position: center center;
  }
}

.grid-2.reverse .grid-image { order: -1; }

@media (min-width: 768px) {
  .grid-2.reverse .grid-image { order: 1; }
}

.grid-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
  aspect-ratio: 4 / 3;
}

.grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.grid-image img.img-veld {
  object-position: center 42%;
  transform: scale(1.14);
  transform-origin: center center;
}

.grid-image:hover img { transform: scale(1.03); }

.grid-image:hover img.img-veld { transform: scale(1.18); }

.klant-intro__image {
  margin-top: 2rem;
}

.klant-intro__image img {
  object-position: 74% 58%;
  transform: scale(1.2);
  transform-origin: 74% 58%;
}

.klant-intro__image:hover img {
  transform: scale(1.24);
}

.klant-form-col .form-card {
  margin-top: 1.5rem;
}

/* Product slider */
.products-section {
  overflow-x: clip;
  overflow-y: visible;
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.products-header h2 { font-size: clamp(3rem, 8vw, 6rem); opacity: 0.12; line-height: 1; }

.products-slider-wrap {
  position: relative;
  padding: 0.75rem 0.25rem 0.25rem;
}

.products-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  /* "mandatory" forces the browser to always rest on a snap point, which on
     load/reflow re-snaps the first card flush against the track's edge and
     scrolls right past any left/right padding meant to hold its shadow.
     "proximity" keeps the snap-while-scrolling feel without that forced
     correction, so the padding actually stays put at rest. */
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* overflow-x:auto forces overflow-y to auto too, clipping the box-shadow
     top/bottom against the track's own padding box unless the padding fully
     contains it; the extra is cancelled with a negative margin since the
     section allows vertical overflow (it doesn't allow horizontal, so the
     padding stays visible as extra inset around the first/last card instead). */
  padding: 2.5rem 2rem 4.5rem;
  margin: -1.5rem 0 -3.25rem;
}

.products-track::-webkit-scrollbar { display: none; }

.product-card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: var(--shadow-md);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  z-index: 0;
}

/* scroll-snap-align pulls the resting scroll position flush against the
   track's own edges, ignoring the track's padding — so the shadow gutter
   for the first/last card has to be given via scroll-margin instead, which
   the snap algorithm actually honors. */
.product-card:first-child { scroll-margin-left: 2rem; }
.product-card:last-child { scroll-margin-right: 2rem; }

.product-card:hover {
  z-index: 1;
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  line-height: 0;
  background: var(--surface);
}

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

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-body h3 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.product-card-body p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Nieuws */
.news-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.news-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--text);
}

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

.btn-outline--dark:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-2px);
}

.news-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

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

.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.news-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-warm);
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.04);
}

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

.news-card-cats {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.news-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.3125rem);
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.news-card time {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.news-card-excerpt {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.65;
  margin-top: auto;
}

.news-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
}

.news-card:hover .news-card-more {
  color: var(--primary-dark);
}

.article-source {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.article-meta .news-card-cats {
  margin-bottom: 0;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.article-back:hover {
  color: var(--primary-dark);
}

.article-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.article-hero-image img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
}

.slider-controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

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

/* Order methods */
.order-grid {
  display: grid;
  gap: 0;
}

.order-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.order-item:first-child { padding-top: 0; }

.order-item--action {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.order-item--action:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.order-item--action:hover .order-icon,
.order-item--action:focus-visible .order-icon {
  background: var(--primary);
}

.order-item--action:hover .order-icon svg,
.order-item--action:focus-visible .order-icon svg {
  color: white;
}

.order-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.order-icon img { width: 28px; height: 28px; }

.order-icon--svg {
  color: var(--primary);
}

.order-icon--svg svg {
  width: 28px;
  height: 28px;
}

.order-item h3 { margin-bottom: 0.35rem; }
.order-item p { font-size: 0.9375rem; color: var(--text-muted); }

.order-images {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  align-self: center;
  width: min(100%, 30rem);
  margin-inline: auto;
  aspect-ratio: 3 / 4;
  line-height: 0;
}

.order-images__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 22%;
}

.order-images--devices .device-mockup {
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  line-height: 0;
  background: #000;
}

.order-images--devices .device-mockup img {
  width: 100%;
  display: block;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: -8px;
}

.order-feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
  width: min(100%, 14rem);
  margin-inline: auto;
}

.order-feature-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 683 / 1024;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}

.order-feature-image--cutout,
.order-feature-image--hand {
  border-radius: 0;
  box-shadow: none;
  background: var(--secondary);
  overflow: hidden;
  width: min(100%, 16rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-feature-image--cutout img,
.order-feature-image--hand img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 18rem;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.grid-image img.img-team {
  object-position: center 28%;
}

/* Feature banner */
.feature-banner {
  display: grid;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: -4rem;
  position: relative;
  z-index: 2;
  align-items: stretch;
}

@media (min-width: 768px) {
  .feature-banner { grid-template-columns: 1fr 1fr; }
}

.feature-banner-image {
  position: relative;
  line-height: 0;
  overflow: hidden;
  min-height: 0;
  background: var(--surface);
  aspect-ratio: 16 / 10;
}

.feature-banner-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  display: block;
}

@media (min-width: 768px) {
  .feature-banner-image {
    aspect-ratio: auto;
    align-self: stretch;
    height: 100%;
    min-height: 12rem;
  }

  .feature-banner-image img {
    object-position: center 55%;
  }
}

@media (orientation: portrait) and (max-width: 1024px) {
  .feature-banner {
    grid-template-columns: 1fr !important;
  }

  .feature-banner-image {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
    max-height: none;
  }
}

.feature-banner-content {
  background: var(--surface);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Paint section */
.paint-section {
  position: relative;
  overflow: hidden;
}

.paint-section .grid-image {
  margin-top: 0;
  background: #000;
  padding-inline: clamp(0.5rem, 1.6vw, 0.85rem);
  line-height: 0;
}

.paint-section .grid-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  object-fit: contain;
  object-position: center bottom;
}

.paint-section .grid-image:hover img {
  transform: none;
}

@media (min-width: 768px) {
  .paint-section .grid-image { margin-top: -5rem; }
}

/* Team grid */
.team-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.team-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}

.team-card-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-warm);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-photo img {
  transform: scale(1.04);
}

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

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

.team-card-body h3 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-card-body .role {
  font-size: 0.875rem;
  line-height: 1.4;
  min-height: 2.8em;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-card-body > a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  transition: var(--transition);
}

.team-card-body > a:hover { color: var(--primary); }

.team-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.team-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.team-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.team-btn--mail {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
}

.team-btn--mail:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.team-btn--whatsapp {
  background: #25d366;
  color: white;
  border: 1px solid #25d366;
}

.team-btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: white;
}

/* Forms */
.form-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-card--on-dark {
  background: white;
  color: var(--text);
}

.form-card label {
  color: var(--text);
}

.label-optional {
  font-weight: 400;
  color: var(--text-muted);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-group input[type="file"] {
  padding: 0.7rem 0.85rem;
  background: var(--surface);
  cursor: pointer;
}

.form-hint {
  margin-top: 0.4rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.form-honey {
  display: none !important;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
}

.form-status--ok { color: var(--secondary); }
.form-status--error { color: #b42318; }

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* Page hero (subpages) */
.page-hero {
  background: var(--secondary);
  color: white;
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 { max-width: 20ch; }

/* News article pages */
.page-article main > .section {
  background: var(--bg-warm);
  padding-top: calc(var(--nav-height) + clamp(2rem, 5vw, 3.5rem));
}

.page-article .header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.page-article .nav-link {
  color: var(--text);
}

.page-article .nav-link:hover,
.page-article .nav-link.active {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.page-article .nav-toggle {
  background: var(--bg);
}

.page-article .nav-toggle span {
  background: var(--text);
}

.page-article .lang-switch a {
  color: var(--text-muted);
}

/* Legal / privacy content */
.legal-content {
  max-width: 42rem;
  margin-inline: auto;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-content p {
  margin-top: 1rem;
}

.legal-intro {
  font-size: 1.0625rem;
  color: var(--text) !important;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.legal-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.legal-content ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.legal-content li + li {
  margin-top: 0.35rem;
}

.legal-content a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--primary);
}

.legal-contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.legal-contact p {
  font-style: italic;
  color: var(--text) !important;
}

/* Benefits list */
.benefits {
  display: grid;
  gap: 1rem;
}

.benefits--2col {
  gap: 1.25rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .benefits--2col {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits--2col .benefit-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - 1.25rem) / 2);
    justify-self: center;
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.vacancy-empty {
  max-width: 42rem;
  margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.vacancy-empty__label {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.vacancy-empty h2 {
  margin-bottom: 1rem;
}

.vacancy-empty p {
  color: var(--text-muted);
  max-width: 36ch;
  margin-inline: auto;
}

.vacancy-empty .btn-group {
  margin-inline: auto;
  margin-top: 2rem;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-dark);
  font-weight: 700;
  transition: var(--transition);
}

.check-list {
  display: grid;
  gap: 0.875rem;
  margin-top: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-top: 0.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 50%;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8125rem;
}

/* Contact info */
.contact-cards {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

.contact-card {
  background: var(--surface);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.contact-card h3 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card a:not(.btn) {
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-card a:not(.btn):hover { color: var(--primary); }

.contact-card__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-card .btn {
  width: 100%;
  min-height: 3.125rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: normal;
}

.contact-card .btn-outline--dark {
  background: #fff;
}

.contact-card .btn-outline--dark:hover {
  background: var(--secondary);
  color: #fff;
}

.contact-card .btn svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.contact-card > .btn {
  margin-top: 1rem;
}

@media (max-width: 639px) {
  .contact-card__actions,
  .contact-card > .btn {
    margin-top: 1rem;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 20, 0.85);
}

.video-modal__dialog {
  position: relative;
  width: min(100%, 56rem);
  z-index: 1;
}

.video-modal__dialog video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  background: #000;
  box-shadow: var(--shadow-lg);
}

.video-modal__close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  transition: background var(--transition);
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.video-modal__close svg {
  width: 1.125rem;
  height: 1.125rem;
}

body.video-modal-open {
  overflow: hidden;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  aspect-ratio: 21 / 9;
  min-height: 280px;
  background: #e8e4df;
  line-height: 0;
}

.map-embed--inline {
  margin-bottom: 1.25rem;
  aspect-ratio: 16 / 9;
  min-height: 200px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 640px) {
  .map-embed--inline {
    aspect-ratio: 4 / 3;
    min-height: 180px;
  }
}

/* Footer */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
}

.footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: 0.625rem; }

.footer-links a {
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--primary); }

.certifications {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.certifications a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.35rem 0.65rem;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.14);
  transition: var(--transition);
  line-height: 0;
}

.certifications a:hover,
.certifications a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.certifications a:active {
  transform: translateY(-1px);
}

.certifications img {
  height: 48px;
  width: auto;
  display: block;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.app-badges a {
  display: block;
  line-height: 0;
  border-radius: 6px;
  transition: var(--transition);
}

.app-badges a:hover,
.app-badges a:focus-visible {
  transform: translateY(-2px);
}

.app-badges a:active {
  transform: translateY(-1px);
}

.app-badges img {
  display: block;
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "legal social .";
  align-items: center;
  gap: 1rem 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  grid-area: legal;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  justify-self: start;
}

.footer-legal p {
  margin: 0;
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal a:hover {
  color: white;
}

.footer-bottom > a {
  justify-self: end;
}

.footer-bottom a:hover { color: white; }

.footer-social {
  grid-area: social;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-self: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition), background var(--transition);
}

.footer-social a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-social svg {
  width: 1.125rem;
  height: 1.125rem;
  max-width: 1.125rem;
  max-height: 1.125rem;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 7rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover { background: var(--primary-dark); }
.scroll-top svg { width: 20px; height: 20px; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  z-index: 950;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: min(calc(100% - 2rem), 42rem);
  padding: 0.875rem 1rem 0.875rem 1.125rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  color: var(--text-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
  transform: translate(-50%, 120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease, visibility 0.45s;
}

.cookie-banner.visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner a:hover {
  color: var(--primary);
}

.cookie-banner__btn {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: var(--radius-full);
  background: var(--secondary);
  color: white;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-banner__btn:hover {
  background: var(--secondary-mid);
}

/* Buppie remains hidden until whatsapp-chat.js sets html.buppie-on */
html:not(.buppie-on) [data-open-buppie-chat],
html:not(.buppie-on) .wa-widget,
html:not(.buppie-on) .buppie-copy {
  display: none !important;
}

html:not(.buppie-on) .scroll-top {
  bottom: max(1.5rem, env(safe-area-inset-bottom));
  right: max(1.5rem, env(safe-area-inset-right));
}

/* WhatsApp chatbot */
.wa-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
}

.wa-launcher-btn {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: right;
}

.wa-hint {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.125rem;
  padding: 0.875rem 1.125rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  width: max-content;
  max-width: calc(100vw - 7rem);
  transition: var(--transition);
}

.wa-hint-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.3;
  white-space: nowrap;
}

.wa-hint-text {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #075e54;
  line-height: 1.3;
  white-space: nowrap;
}

.wa-launcher-btn:hover .wa-hint {
  border-color: #25d366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.2);
}

.wa-widget.open .wa-hint {
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  pointer-events: none;
  position: absolute;
}

.wa-btn {
  position: relative;
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  animation: wa-btn-orange-glow 10s ease-in-out infinite;
}

.wa-launcher-btn:hover .wa-btn {
  transform: scale(1.05);
  background: #1ebe57;
}

.wa-btn::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: wa-pulse 2.5s ease-out infinite;
  pointer-events: none;
}

.wa-btn::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid transparent;
  pointer-events: none;
  animation: wa-orange-ring 10s ease-in-out infinite;
}

.wa-launcher-btn.open .wa-btn {
  animation: none;
}

.wa-launcher-btn.open .wa-btn::before,
.wa-launcher-btn.open .wa-btn::after {
  display: none;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}

@keyframes wa-btn-orange-glow {
  0%, 72%, 100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  }
  78% {
    box-shadow:
      0 6px 24px rgba(37, 211, 102, 0.5),
      0 0 0 4px rgba(249, 115, 22, 0.45),
      0 0 22px rgba(249, 115, 22, 0.65);
  }
  84% {
    box-shadow:
      0 6px 24px rgba(37, 211, 102, 0.5),
      0 0 0 8px rgba(249, 115, 22, 0.2),
      0 0 32px rgba(249, 115, 22, 0.45);
  }
  90% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  }
}

@keyframes wa-orange-ring {
  0%, 72%, 100% {
    border-color: transparent;
    transform: scale(1);
    opacity: 0;
  }
  78% {
    border-color: rgba(249, 115, 22, 0.85);
    transform: scale(1);
    opacity: 1;
  }
  86% {
    border-color: rgba(249, 115, 22, 0.35);
    transform: scale(1.18);
    opacity: 0.7;
  }
  94% {
    border-color: transparent;
    transform: scale(1.35);
    opacity: 0;
  }
}

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

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

.wa-btn-icon--close { display: none; }
.wa-launcher-btn.open .wa-btn-icon--open { display: none; }
.wa-launcher-btn.open .wa-btn-icon--close { display: flex; }
.wa-launcher-btn.open .wa-btn-icon--close svg { width: 30px; height: 30px; }

.wa-chat {
  position: absolute;
  bottom: calc(100% + 1rem);
  right: 0;
  width: min(380px, calc(100vw - 2rem));
  height: min(520px, calc(100dvh - 8rem));
  background: #e5ddd5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  transition: var(--transition);
}

.wa-chat.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10001;
}

.wa-chat-header {
  background: #075e54;
  color: white;
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.wa-chat-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wa-chat-header-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.wa-chat-header strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
}

.wa-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  opacity: 0.85;
}

.wa-status-dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
}

.wa-close {
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.wa-close:hover { background: rgba(255, 255, 255, 0.22); }
.wa-close svg { width: 18px; height: 18px; }

.wa-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8c0b8' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    #e5ddd5;
}

.wa-msg {
  display: flex;
  max-width: 88%;
  animation: wa-msg-in 0.3s ease;
}

@keyframes wa-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wa-msg--bot { align-self: flex-start; }
.wa-msg--user { align-self: flex-end; }

.wa-bubble {
  padding: 0.625rem 0.875rem;
  border-radius: 0 12px 12px 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.wa-msg--bot .wa-bubble {
  background: white;
  color: var(--text);
}

.wa-msg--user .wa-bubble {
  background: #dcf8c6;
  color: var(--text);
  border-radius: 12px 0 12px 12px;
}

.wa-inline-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: #075e54 !important;
  font-size: 0.875rem;
}

.wa-inline-link--wa { color: #25d366 !important; }

.wa-typing .wa-bubble {
  display: flex;
  gap: 4px;
  padding: 0.75rem 1rem;
}

.wa-typing span {
  width: 8px;
  height: 8px;
  background: #999;
  border-radius: 50%;
  animation: wa-dot 1.2s ease-in-out infinite;
}

.wa-typing span:nth-child(2) { animation-delay: 0.15s; }
.wa-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes wa-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.wa-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem 0.75rem;
  background: #e5ddd5;
  flex-shrink: 0;
}

.wa-chip {
  padding: 0.4rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.wa-chip:hover {
  background: #dcf8c6;
  border-color: #25d366;
}

.wa-footer {
  background: #f0f0f0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.wa-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
}

.wa-form input {
  flex: 1;
  padding: 0.625rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius-full);
  background: white;
  outline: none;
}

.wa-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #075e54;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.wa-send:hover { background: #128c7e; }
.wa-send svg { width: 18px; height: 18px; }

.wa-handoff {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #25d366;
  color: white !important;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.wa-handoff:hover { background: #1ebe57; }
.wa-handoff svg { width: 20px; height: 20px; }

/* Mobile & tablet */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    bottom: 1rem;
    width: min(calc(100% - 1.5rem), 42rem);
    padding: 1rem;
    font-size: 0.75rem;
  }

  .cookie-banner__btn {
    width: 100%;
    padding: 0.625rem 1rem;
  }

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

  .page-hero {
    padding: calc(var(--nav-height) + 2rem) 0 2.5rem;
  }

  .page-hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 2rem;
  }

  .hero-content {
    padding-top: calc(var(--nav-height) + clamp(4rem, 17vh, 7.5rem));
  }

  .hero-text {
    max-width: none;
  }

  .hero-text h1 {
    font-size: clamp(1.65rem, 6.5vw, 2.35rem);
    line-height: 1.15;
    white-space: normal;
  }

  .hero-text .eyebrow--pill {
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    padding: 0.4rem 0.75rem 0.4rem 0.65rem;
  }

  .hero-text .lead {
    font-size: 0.975rem;
    margin-bottom: 1.5rem;
  }

  .btn-group {
    grid-template-columns: 1fr !important;
    max-width: none;
  }

  .btn-group:has(> .btn:nth-child(5):last-child) > .btn {
    grid-column: auto !important;
  }

  .btn-group .btn {
    width: 100%;
    min-height: 3.5rem;
  }

  .hero-text .btn-group {
    grid-template-columns: 1fr !important;
    max-width: none;
  }

  .hero-text .btn-group .btn {
    width: 100%;
    min-height: 3.5rem;
  }

  p:has(> .btn + .btn) {
    grid-template-columns: 1fr !important;
    max-width: none;
  }

  .stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
  }

  .stats-bar .stat strong {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
  }

  .stats-bar .stat span {
    font-size: 0.6875rem;
    line-height: 1.4;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .products-header h2 {
    font-size: clamp(2rem, 14vw, 3.5rem);
  }

  .order-images {
    position: relative;
    width: 100%;
    max-width: 26rem;
    margin-inline: auto;
    margin-top: 1.5rem;
    aspect-ratio: 3 / 4;
    height: auto;
    align-self: center;
  }

  .order-item {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.25rem 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card-actions {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    grid-template-areas:
      "legal"
      "social";
    gap: 0.85rem;
    text-align: center;
  }

  .footer-legal,
  .footer-social {
    justify-self: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .certifications,
  .app-badges {
    justify-content: flex-start;
  }

  .form-card {
    padding: 1.5rem;
  }

  .map-embed--inline {
    aspect-ratio: 4 / 3;
    min-height: 180px;
  }

  .scroll-top {
    bottom: 6.5rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }

  html:not(.buppie-on) .scroll-top {
    bottom: max(1rem, env(safe-area-inset-bottom));
    right: max(1rem, env(safe-area-inset-right));
  }

  .wa-widget {
    bottom: max(1rem, env(safe-area-inset-bottom));
    right: max(1rem, env(safe-area-inset-right));
  }

  .header {
    padding-top: env(safe-area-inset-top, 0);
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    min-height: unset;
    padding-bottom: 1.25rem;
  }

  .hero-content {
    padding-top: calc(var(--nav-height) + clamp(1rem, 8vh, 2.5rem));
  }

  .hero-text h1 {
    font-size: clamp(1.4rem, 3.5vw, 1.85rem);
    line-height: 1.12;
    white-space: normal;
  }

  .hero-text .lead {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.55;
  }

  .btn-group {
    gap: 0.625rem;
  }

  .btn-group .btn {
    min-height: 3.25rem;
    padding: 0.75rem 1rem;
  }

  .hero-text .btn-group {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.625rem;
  }

  html:not(.buppie-on) .hero-text .btn-group {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .hero-text .btn-group .btn {
    min-height: 3.25rem;
    padding: 0.625rem 0.75rem;
    font-size: 0.8125rem;
  }

  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .stats-bar .stat strong {
    font-size: 1.35rem;
  }

  .stats-bar .stat span {
    font-size: 0.625rem;
  }

  .page-hero {
    padding: calc(var(--nav-height) + 1rem) 0 1.5rem;
  }

  .page-hero h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .page-hero .lead {
    font-size: 0.9rem;
    margin-top: 0.75rem !important;
  }

  .section {
    padding: clamp(2rem, 4vw, 3rem) 0;
  }

  .mobile-menu {
    max-height: 100dvh;
    overflow-y: auto;
    padding-bottom: env(safe-area-inset-bottom, 1rem);
  }

  .wa-widget {
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    right: max(0.75rem, env(safe-area-inset-right));
  }

  .scroll-top {
    bottom: 5.5rem;
  }

  html:not(.buppie-on) .scroll-top {
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    right: max(0.75rem, env(safe-area-inset-right));
  }
}

/* Phone landscape: limited height — stack columns, normalize images */
@media (orientation: landscape) and (max-height: 600px) {
  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
    align-items: stretch;
  }

  .grid-2.reverse .grid-image {
    order: unset;
  }

  .grid-image {
    width: min(100%, 24rem);
    max-width: 100%;
    margin-inline: auto;
    aspect-ratio: 16 / 10;
  }

  .grid-image img {
    width: 100%;
    height: 100%;
    max-height: none;
  }

  .grid-image img.img-veld {
    object-position: center 38%;
    transform: scale(1.18);
  }

  .klant-intro__image img {
    transform: scale(1.05);
    transform-origin: center;
  }

  .feature-banner {
    grid-template-columns: 1fr !important;
    margin-top: 0;
  }

  .order-feature-image {
    width: min(100%, 14rem);
    margin-inline: auto;
  }

  .feature-banner-image {
    aspect-ratio: 21 / 9;
    max-height: 12rem;
    height: auto;
    min-height: 0;
  }

  .feature-banner-content {
    padding: 1.25rem 1.5rem;
  }

  .order-images {
    width: min(100%, 18rem);
    aspect-ratio: 4 / 3;
    margin-top: 1rem;
  }

  .paint-section .grid-image {
    margin-top: 0;
    width: min(100%, 22rem);
    margin-inline: auto;
  }

  .paint-section .grid-image img {
    aspect-ratio: 4 / 3;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .news-header {
    margin-bottom: 1.25rem;
  }

  .news-card-image {
    aspect-ratio: 16 / 10;
  }

  .article-hero-image img {
    max-height: min(34vh, 200px);
    width: 100%;
    object-fit: cover;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .team-card-photo {
    aspect-ratio: 1;
  }

  .products-header {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

@media (max-height: 480px) and (orientation: landscape) {
  .hero-text .eyebrow--pill {
    margin-bottom: 0.5rem;
    font-size: 0.625rem;
  }

  .hero-text .lead {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .news-card-body {
    padding: 0.85rem 1rem 1rem;
  }

  .news-card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }

  .stats-bar .stat {
    flex: 1 1 auto;
  }

  .products-header h2 {
    font-size: clamp(1.5rem, 8vw, 2.25rem);
  }

  .nav-logo__roto {
    height: 34px;
  }

  .nav-logo__divider {
    height: 1.45rem;
  }
}

@media (max-width: 768px) {
  .wa-hint {
    display: none;
  }

  .wa-chat.open {
    inset: 0;
    width: 100%;
    height: 100dvh;
    border-radius: 0;
    bottom: 0;
    right: 0;
  }

  body.wa-chat-open .wa-launcher-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .stats-bar .stat strong {
    margin-inline: auto;
  }

  .nav-logo__roto {
    height: 30px;
  }

  .product-card {
    min-width: min(82vw, 300px);
  }

  .wa-hint {
    display: none;
  }

  .wa-widget { bottom: 1rem; right: 1rem; }
  .scroll-top { bottom: 6.5rem; right: 1rem; }
  html:not(.buppie-on) .scroll-top { bottom: 1rem; right: 1rem; }

  .wa-btn {
    width: 68px;
    height: 68px;
  }

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

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .wa-btn { animation: none; }
  .wa-btn::before,
  .wa-btn::after { animation: none; display: none; }
}
