:root {
  --gold: #c8932f;
  --gold-soft: #e0b35b;
  --charcoal: #151513;
  --ink: #22201c;
  --forest: #1e3c2b;
  --forest-soft: #315a40;
  --sand: #f2eadc;
  --offwhite: #fbf7ef;
  --wood: #8b5a31;
  --muted: #70685c;
  --line: rgba(23, 23, 21, 0.14);
  --shadow: 0 24px 70px rgba(15, 14, 12, 0.16);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--offwhite);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(251, 247, 239, 0.92), rgba(251, 247, 239, 0.92)),
    repeating-linear-gradient(90deg, rgba(139, 90, 49, 0.07) 0 1px, transparent 1px 20px);
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 12px 22px;
  background: rgba(251, 247, 239, 0.95);
  border-bottom: 1px solid rgba(200, 147, 47, 0.28);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 154px;
  height: 58px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 0.86rem;
  font-weight: 800;
}

.main-nav a {
  padding: 10px 0;
  color: #403a32;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 180ms ease, border-color 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--charcoal);
  border-color: var(--gold);
}

.header-actions,
.hero-actions,
.cta-actions,
.card-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.header-actions .btn {
  padding-inline: 13px;
  font-size: 0.84rem;
  white-space: nowrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.18);
}

.btn-primary {
  color: #14130f;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -20% auto -20% -45%;
  width: 36%;
  background: rgba(255, 255, 255, 0.22);
  transform: skewX(-18deg);
  animation: ctaGlow 4.8s ease-in-out infinite;
}

.btn-light {
  color: var(--charcoal);
  background: var(--offwhite);
}

.btn-ghost {
  color: var(--forest);
  background: transparent;
  border-color: rgba(31, 61, 43, 0.24);
}

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

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--charcoal);
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: var(--charcoal);
}

.hero-media,
.page-hero::before,
.photo-panel,
.gallery-item {
  background-size: cover;
  background-position: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/photo-hero-bivoukit.jpg");
  transform: scale(1.03);
  animation: heroImage 1200ms var(--ease) both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 21, 19, 0.9) 0%, rgba(21, 21, 19, 0.68) 42%, rgba(21, 21, 19, 0.18) 100%),
    linear-gradient(180deg, rgba(21, 21, 19, 0.1), rgba(21, 21, 19, 0.34));
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  padding: 76px 0 92px;
}

.hero-content {
  position: relative;
}

.hero-content > * {
  animation: fadeUp 700ms var(--ease) both;
}

.hero-content h1 {
  animation-delay: 120ms;
}

.hero-lead {
  animation-delay: 220ms;
}

.hero-actions {
  animation-delay: 320ms;
}

.contact-line {
  animation-delay: 420ms;
}

.hero-3d {
  min-height: 420px;
  perspective: 1000px;
  animation: fadeUp 780ms var(--ease) 260ms both;
}

.van-stage {
  position: relative;
  height: 440px;
  transform-style: preserve-3d;
  animation: sceneFloat 7s ease-in-out infinite;
}

.van-stage::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 4%;
  bottom: 34px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.38), transparent 70%);
  transform: rotateX(72deg);
}

.van-body {
  position: absolute;
  left: 5%;
  right: 2%;
  bottom: 76px;
  height: 210px;
  border: 5px solid rgba(200, 147, 47, 0.72);
  border-radius: 28px 46px 18px 18px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.9), rgba(198, 190, 174, 0.96) 52%, rgba(245, 239, 226, 0.88)),
    linear-gradient(90deg, transparent 0 55%, rgba(31, 60, 43, 0.18) 55% 100%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.44);
  transform: rotateY(-13deg) rotateX(3deg);
  transform-style: preserve-3d;
}

.van-body::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 76px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.van-window {
  position: absolute;
  top: 30px;
  height: 72px;
  border-radius: 14px;
  background: linear-gradient(135deg, #183327, #0e1511);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.van-window.front {
  right: 28px;
  width: 158px;
  border-radius: 14px 34px 14px 14px;
}

.van-window.side {
  left: 34px;
  width: 245px;
}

.wood-module {
  position: absolute;
  bottom: 24px;
  height: 48px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 46%),
    linear-gradient(90deg, #69401f, #a66b35);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.12);
}

.module-one {
  left: 44px;
  width: 190px;
}

.module-two {
  left: 260px;
  width: 220px;
}

.wheel {
  position: absolute;
  bottom: -52px;
  width: 90px;
  height: 90px;
  border: 12px solid #9d771f;
  border-radius: 50%;
  background: #0d0d0c;
  box-shadow: inset 0 0 0 22px #b8b1a5;
}

.wheel-one {
  left: 92px;
}

.wheel-two {
  right: 88px;
}

.floating-module {
  position: absolute;
  width: 112px;
  height: 84px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 44%),
    linear-gradient(90deg, #704521, #b87a3b);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
  transform-style: preserve-3d;
}

.floating-module::after {
  content: "";
  position: absolute;
  inset: 18px 20px;
  border-radius: 6px;
  border: 3px solid rgba(21, 21, 19, 0.28);
}

.module-a {
  top: 42px;
  left: 14%;
  transform: rotateY(-22deg) rotateX(12deg);
  animation: moduleFloat 5.5s ease-in-out infinite;
}

.module-b {
  top: 80px;
  right: 16%;
  transform: rotateY(24deg) rotateX(8deg);
  animation: moduleFloat 6.2s ease-in-out 500ms infinite;
}

.module-c {
  top: 184px;
  left: 43%;
  width: 142px;
  transform: rotateY(-10deg) rotateX(12deg);
  animation: moduleFloat 5.8s ease-in-out 900ms infinite;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.eyebrow.dark {
  color: var(--wood);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  font-size: clamp(2.55rem, 6vw, 5.9rem);
  font-weight: 900;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  font-weight: 900;
}

h3 {
  font-size: 1.3rem;
  font-weight: 900;
}

.hero-lead,
.page-hero p,
.section-heading p,
.split p,
.final-cta p {
  max-width: 760px;
  font-size: 1.1rem;
}

.hero-lead {
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-line {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.section {
  padding: 96px 0;
}

.section-sand {
  background:
    linear-gradient(rgba(242, 234, 220, 0.92), rgba(242, 234, 220, 0.92)),
    repeating-linear-gradient(90deg, rgba(139, 90, 49, 0.08) 0 1px, transparent 1px 18px);
}

.section-charcoal {
  color: white;
  background:
    radial-gradient(circle at 15% 10%, rgba(200, 147, 47, 0.18), transparent 28%),
    linear-gradient(135deg, #151513, #1d261d 62%, #10100f);
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading p,
.feature-card p,
.catalogue-card p,
.contact-card p,
.process-step p,
.product-card p {
  color: var(--muted);
}

.invert p,
.section-charcoal .product-card p {
  color: rgba(255, 255, 255, 0.74);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
}

.feature-grid,
.card-grid,
.product-grid,
.catalogue-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

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

.feature-card,
.catalogue-card,
.contact-card,
.process-step {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.84);
  box-shadow: 0 14px 34px rgba(23, 23, 21, 0.06);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.feature-card:hover,
.catalogue-card:hover,
.contact-card:hover,
.process-step:hover,
.image-card:hover,
.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(200, 147, 47, 0.48);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 8px;
  color: #15140f;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}

.card-icon::before {
  content: "";
  width: 23px;
  height: 23px;
  background: #15140f;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon-shield {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l8 3v6c0 5-3.4 9.7-8 11-4.6-1.3-8-6-8-11V5l8-3zm0 4L7 7.8V11c0 3.4 2 6.6 5 7.8 3-1.2 5-4.4 5-7.8V7.8L12 6z'/%3E%3C/svg%3E");
}

.icon-van {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 7h11c2.6 0 4.4 1.1 5.6 3.4L21 13v4h-2a3 3 0 0 1-6 0H9a3 3 0 0 1-6 0H2V9c0-1.1.9-2 1-2zm2 2v4h7V9H5zm9 .1V13h4.5l-.7-1.4c-.8-1.6-1.8-2.4-3.8-2.5zM6 16a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm10 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E");
}

.icon-tool {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 6.5a6.5 6.5 0 0 1-8.7 6.1L6.4 18.5a2.1 2.1 0 0 1-3-3l5.9-5.9A6.5 6.5 0 0 1 15.5 1l-3.1 3.1 3.5 3.5L19 4.5c1.2-.1 2 .8 2 2z'/%3E%3C/svg%3E");
}

.icon-map {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 1 7 7c0 5-7 13-7 13S5 14 5 9a7 7 0 0 1 7-7zm0 4a3 3 0 1 0 0 6 3 3 0 0 0 0-6z'/%3E%3C/svg%3E");
}

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

.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 42px rgba(23, 23, 21, 0.1);
  transform-style: preserve-3d;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease);
}

.image-card img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.image-card:hover img,
.gallery-item:hover::before,
.photo-panel:hover {
  transform: scale(1.055);
}

.image-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
}

.image-card-body {
  padding: 22px;
}

.price-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  color: #15140f;
  background: rgba(200, 147, 47, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--forest);
  font-weight: 900;
}

.card-actions {
  margin-top: 18px;
}

.image-card .card-actions,
.catalogue-card .card-actions,
.product-card .card-actions,
.model-card .card-actions {
  align-items: stretch;
  width: 100%;
}

.image-card .card-actions {
  flex-direction: column;
  gap: 6px;
}

.image-card .card-actions .text-link:first-child {
  color: var(--wood);
}

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

.product-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 0 34px 34px;
  border: 1px solid rgba(224, 179, 91, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.product-photo {
  width: calc(100% + 68px);
  height: 190px;
  margin: 0 -34px 26px;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.product-card:hover .product-photo {
  transform: scale(1.055);
}

.product-card.highlighted {
  background: linear-gradient(180deg, rgba(200, 147, 47, 0.22), rgba(255, 255, 255, 0.06));
}

.product-card .price-tag {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
}

.product-card p {
  flex: 1;
}

.photo-panel {
  min-height: 520px;
  border-radius: 8px;
  background-image: url("assets/photo-sur-mesure.jpg");
  box-shadow: var(--shadow);
  transition: transform 650ms var(--ease);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
}

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

.gallery-item {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 650ms var(--ease);
}

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 9px 12px;
  border-radius: 8px;
  color: white;
  background: rgba(21, 21, 19, 0.76);
  font-weight: 900;
}

.van-photo {
  background-image: url("assets/photo-kits-complets.jpg");
}

.page-hero-kits::before {
  background-image: url("assets/photo-kits-complets.jpg");
}

.wood-photo {
  background-image: url("assets/photo-rangements-meubles.jpg");
}

.workshop-photo,
.page-hero-custom::before {
  background-image: url("assets/photo-sur-mesure.jpg");
}

.page-hero-devis::before {
  background-image: url("assets/photo-custom.jpg");
}

.page-hero-contact::before {
  background-image: url("assets/photo-hero-bivoukit.jpg");
}

.camp-photo {
  background-image: url("assets/photo-accessoires-vanlife.jpg");
}

.page-hero-projects::before {
  background-image: url("assets/photo-realisations-before-after.jpg");
}

.page-hero-models::before {
  background-image: url("assets/photo-pro.jpg");
}

.solar-photo {
  background-image: url("assets/photo-electricite-autonomie.jpg");
}

.gallery-item.before-after-photo {
  background-image: url("assets/photo-realisations-before-after.jpg");
}

.final-cta {
  padding: 84px 0;
  color: white;
  background:
    linear-gradient(90deg, rgba(21, 21, 19, 0.94), rgba(30, 60, 43, 0.88)),
    url("assets/photo-hero-bivoukit.jpg") center/cover;
}

.final-cta.compact {
  padding: 72px 0;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--charcoal);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 21, 19, 0.9), rgba(21, 21, 19, 0.36));
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 96px 0 72px;
}

.model-filtered-page .page-hero-models {
  display: none;
}

.draft-preview-notice {
  position: sticky;
  top: 84px;
  z-index: 29;
  padding: 10px 18px;
  color: #14130f;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  font-weight: 900;
  text-align: center;
}

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

.catalogue-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}

.catalogue-card img {
  width: calc(100% + 52px);
  height: 160px;
  margin: -26px -26px 22px;
  object-fit: cover;
}

.catalogue-card h2,
.contact-card h2,
.process-step h2 {
  font-size: 1.42rem;
}

.catalogue-card p {
  flex: 1;
}

.models-section {
  background:
    radial-gradient(circle at 10% 5%, rgba(200, 147, 47, 0.12), transparent 28%),
    linear-gradient(180deg, var(--offwhite), var(--sand));
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.model-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(31, 60, 43, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.9);
  box-shadow: 0 18px 46px rgba(23, 23, 21, 0.1);
  transform-style: preserve-3d;
  transition: transform 340ms var(--ease), box-shadow 340ms var(--ease), border-color 340ms var(--ease);
}

.model-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(224, 179, 91, 0.16), transparent);
  opacity: 0;
  transform: translateX(-60%);
  transition: opacity 300ms var(--ease), transform 700ms var(--ease);
}

.model-card:hover {
  border-color: rgba(200, 147, 47, 0.5);
  box-shadow: 0 30px 78px rgba(23, 23, 21, 0.18);
  transform: translateY(-8px) rotateX(1.4deg) rotateY(-1.4deg);
}

.model-card:hover::after {
  opacity: 1;
  transform: translateX(60%);
}

.model-media {
  position: relative;
  overflow: hidden;
}

.model-media > img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.model-card:hover .model-media > img {
  transform: scale(1.055);
}

.model-thumbs {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 252, 245, 0.32);
  border-radius: 999px;
  background: rgba(21, 21, 19, 0.62);
  backdrop-filter: blur(10px);
}

.model-thumbs img {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(224, 179, 91, 0.8);
  border-radius: 50%;
  object-fit: cover;
}

.model-card.featured {
  background: linear-gradient(180deg, rgba(200, 147, 47, 0.13), rgba(255, 252, 245, 0.94));
}

.model-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.model-badge {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(30, 60, 43, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.model-card h2 {
  font-size: 1.44rem;
}

.model-card p {
  color: var(--muted);
}

.model-tools {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid rgba(31, 60, 43, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 46px rgba(23, 23, 21, 0.08);
}

.model-search {
  display: grid;
  gap: 8px;
  color: var(--wood);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.model-search input {
  min-height: 52px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(31, 60, 43, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
  font-size: 1rem;
  text-transform: none;
  outline: none;
  transition: border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.model-search input:focus {
  border-color: rgba(200, 147, 47, 0.7);
  box-shadow: 0 0 0 4px rgba(200, 147, 47, 0.14);
}

.model-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.model-filter {
  min-height: 40px;
  padding: 9px 13px;
  border: 1px solid rgba(31, 60, 43, 0.16);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 252, 245, 0.88);
  cursor: pointer;
  font-weight: 900;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}

.model-filter:hover,
.model-filter.active {
  color: white;
  border-color: var(--forest);
  background: var(--forest);
  transform: translateY(-2px);
}

.model-card.is-hidden,
.model-empty {
  display: none;
}

.model-empty.is-visible {
  display: block;
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(200, 147, 47, 0.28);
  border-radius: 8px;
  background: rgba(255, 252, 245, 0.82);
  color: var(--muted);
  font-weight: 800;
}

.model-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: #4d463c;
}

.model-card li {
  margin-bottom: 6px;
}

.model-price {
  display: block;
  margin-top: auto;
  padding: 14px 0 4px;
  color: var(--charcoal);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.compact-model img {
  height: 210px;
}

.process-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.process-journey::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(200, 147, 47, 0.8), rgba(30, 60, 43, 0.65), transparent);
  transform-origin: left;
  animation: processLine 1100ms var(--ease) both;
}

.process-step {
  position: relative;
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding-top: 30px;
  animation: processFloat 4.8s ease-in-out infinite;
}

.process-step:nth-child(even) {
  margin-top: 42px;
}

.process-step:nth-child(2) { animation-delay: 180ms; }
.process-step:nth-child(3) { animation-delay: 360ms; }
.process-step:nth-child(4) { animation-delay: 540ms; }
.process-step:nth-child(5) { animation-delay: 720ms; }

.process-step span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  box-shadow: 0 16px 34px rgba(200, 147, 47, 0.24);
}

.process-step span::before {
  content: "";
  width: 28px;
  height: 28px;
  background: #15140f;
  -webkit-mask: var(--step-icon) center / contain no-repeat;
  mask: var(--step-icon) center / contain no-repeat;
}

.step-vehicle { --step-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 7h11c2.6 0 4.4 1.1 5.6 3.4L21 13v4h-2a3 3 0 0 1-6 0H9a3 3 0 0 1-6 0H2V9c0-1.1.9-2 1-2zm2 2v4h7V9H5zm9 .1V13h4.5l-.7-1.4c-.8-1.6-1.8-2.4-3.8-2.5zM6 16a1 1 0 1 0 0 2 1 1 0 0 0 0-2zm10 0a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E"); }
.step-needs { --step-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 4h16v4H4V4zm1 6h14l-1.5 10h-11L5 10zm4 2v6h2v-6H9zm4 0v6h2v-6h-2z'/%3E%3C/svg%3E"); }
.step-quote { --step-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 2h9l5 5v15H6V2zm8 1.8V8h4.2L14 3.8zM8 11h8v2H8v-2zm0 4h8v2H8v-2z'/%3E%3C/svg%3E"); }
.step-build { --step-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 6.5a6.5 6.5 0 0 1-8.7 6.1L6.4 18.5a2.1 2.1 0 0 1-3-3l5.9-5.9A6.5 6.5 0 0 1 15.5 1l-3.1 3.1 3.5 3.5L19 4.5c1.2-.1 2 .8 2 2z'/%3E%3C/svg%3E"); }
.step-road { --step-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3l4 7h-3l4 8-5-4-5 4 4-8H8l4-7zM3 20h18v2H3v-2z'/%3E%3C/svg%3E"); }

.form-layout {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 28px;
  align-items: start;
}

.quote-aside,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--offwhite);
  box-shadow: var(--shadow);
}

.quote-aside {
  position: sticky;
  top: 110px;
  padding: 30px;
}

.quote-aside h2 {
  font-size: 2rem;
}

.contact-pill {
  display: block;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--forest);
  background: rgba(30, 60, 43, 0.08);
  font-weight: 900;
}

.quote-form {
  padding: 30px;
}

.field,
.field label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-weight: 800;
}

.field.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 23, 21, 0.22);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font: inherit;
}

textarea {
  resize: vertical;
}

.gdpr {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 12px 0 22px;
  font-weight: 700;
}

.gdpr input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.form-message {
  margin: 18px 0 0;
  color: var(--forest);
  font-weight: 900;
}

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

.contact-card {
  display: flex;
  min-height: 236px;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
}

.contact-card::after {
  content: "";
  position: absolute;
  top: 37px;
  left: 38px;
  width: 25px;
  height: 25px;
  background: #15140f;
  -webkit-mask: var(--contact-icon) center / contain no-repeat;
  mask: var(--contact-icon) center / contain no-repeat;
}

.contact-card:nth-child(1) { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 5h18v14H3V5zm2 3.2V17h14V8.2l-7 5.2-7-5.2zM6.6 7l5.4 4 5.4-4H6.6z'/%3E%3C/svg%3E"); }
.contact-card:nth-child(2) { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 2.8l3.2 3.2-2 3c1.5 3 3.9 5.4 7 7l3-2 3.2 3.2-2 3.8c-8.4-.3-15.2-7.1-15.6-15.5l4.2-2.7z'/%3E%3C/svg%3E"); }
.contact-card:nth-child(3) { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3a9 9 0 0 1 7.6 13.8L20.8 21l-4.4-1.1A9 9 0 1 1 12 3zm-4 5.2c-.4.5-.8 1.3-.8 2.2 0 2.8 3 6.2 6.5 7.1.9.2 1.9.2 2.5-.3.5-.4.9-1.4 1-2l-2.5-1.1-1.1 1.1c-1.7-.8-3-2-3.9-3.8l1-1.1L9.6 7.8c-.6.1-1.2.2-1.6.4z'/%3E%3C/svg%3E"); }
.contact-card:nth-child(4) { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2.5A2.5 2.5 0 0 0 4.5 7v10A2.5 2.5 0 0 0 7 19.5h10a2.5 2.5 0 0 0 2.5-2.5V7A2.5 2.5 0 0 0 17 4.5H7zm5 3a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9zm0 2.3a2.2 2.2 0 1 0 0 4.4 2.2 2.2 0 0 0 0-4.4zm5-2.7a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2z'/%3E%3C/svg%3E"); }
.contact-card:nth-child(5) { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8h3V4h-3c-3.2 0-5 1.9-5 5v2H6v4h3v7h4v-7h3.2l.8-4h-4V9c0-.7.4-1 1-1z'/%3E%3C/svg%3E"); }
.contact-card:nth-child(6) { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 3c.6 3 2.4 4.8 5 5v4c-1.9 0-3.6-.6-5-1.7V16a6 6 0 1 1-6-6c.4 0 .7 0 1 .1v4.2A2 2 0 1 0 10 16V3h4z'/%3E%3C/svg%3E"); }
.contact-card:nth-child(7) { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.6 7.2c.2 1.5.2 3 .2 4.8s0 3.3-.2 4.8a3 3 0 0 1-2.1 2.2c-1.9.5-7.5.5-7.5.5s-5.6 0-7.5-.5a3 3 0 0 1-2.1-2.2C2.2 15.3 2.2 13.8 2.2 12s0-3.3.2-4.8A3 3 0 0 1 4.5 5c1.9-.5 7.5-.5 7.5-.5s5.6 0 7.5.5a3 3 0 0 1 2.1 2.2zM10 15.5l5.2-3.5L10 8.5v7z'/%3E%3C/svg%3E"); }
.contact-card:nth-child(8) { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a8 8 0 0 0-3.1 15.4c-.1-.7-.1-1.5 0-2.1l1.3-5.3s-.3-.6-.3-1.5c0-1.4.8-2.4 1.8-2.4.9 0 1.3.6 1.3 1.4 0 .9-.6 2.2-.9 3.4-.2 1 .5 1.8 1.5 1.8 1.8 0 3.1-2.3 3.1-5 0-2-1.4-3.6-4-3.6-2.9 0-4.6 2.2-4.6 4.6 0 .8.2 1.4.6 1.9.2.2.2.3.1.6l-.2.9c-.1.3-.3.4-.6.3-1.3-.5-2-1.9-2-3.5 0-2.6 2.2-5.8 6.8-5.8 3.7 0 6.1 2.7 6.1 5.6 0 3.8-2.1 6.7-5.2 6.7-1 0-2-.6-2.3-1.2l-.6 2.4c-.2.7-.6 1.5-1 2.1A8 8 0 1 0 12 2z'/%3E%3C/svg%3E"); }
.contact-card.service-card { --contact-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3a8 8 0 0 0-8 8v4a3 3 0 0 0 3 3h1v-7H6a6 6 0 1 1 12 0h-2v7h1c-.6 1.2-1.8 2-3.2 2H12v2h1.8A5.2 5.2 0 0 0 19 18a3 3 0 0 0 1-5.8V11a8 8 0 0 0-8-8z'/%3E%3C/svg%3E"); }

.contact-card span {
  color: var(--wood);
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card p {
  flex: 1;
}

.service-card {
  grid-column: 1 / -1;
  min-height: 0;
}

.contact-section {
  background:
    radial-gradient(circle at 8% 8%, rgba(200, 147, 47, 0.12), transparent 28%),
    linear-gradient(180deg, var(--sand), #fffaf1);
}

.contact-layout {
  display: grid;
  gap: 28px;
}

.contact-intro,
.social-board,
.service-strip {
  animation: fadeUp 700ms var(--ease) both;
}

.contact-intro {
  max-width: 820px;
}

.contact-board {
  display: grid;
  gap: 14px;
}

.contact-lane {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 112px;
  padding: 24px 28px;
  overflow: hidden;
  border: 1px solid rgba(31, 60, 43, 0.14);
  border-radius: 8px;
  color: var(--ink);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.92), rgba(255, 252, 245, 0.72)),
    linear-gradient(90deg, rgba(31, 60, 43, 0.08), transparent 45%);
  box-shadow: 0 18px 46px rgba(23, 23, 21, 0.08);
  text-decoration: none;
  transform: translateY(0);
  animation: fadeUp 620ms var(--ease) both;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease), border-color 280ms var(--ease);
}

.contact-lane::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold), var(--forest));
  transform: scaleY(0.34);
  transform-origin: center;
  transition: transform 280ms var(--ease);
}

.contact-lane::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -85px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(200, 147, 47, 0.2);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 280ms var(--ease), transform 500ms var(--ease);
}

.contact-lane:hover {
  border-color: rgba(200, 147, 47, 0.46);
  box-shadow: 0 28px 70px rgba(23, 23, 21, 0.14);
  transform: translateX(6px);
}

.contact-lane:hover::before {
  transform: scaleY(1);
}

.contact-lane:hover::after {
  opacity: 1;
  transform: scale(1.08);
}

.contact-lane:nth-child(2) {
  animation-delay: 110ms;
}

.contact-lane:nth-child(3) {
  animation-delay: 220ms;
}

.lane-icon,
.social-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.lane-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(200, 147, 47, 0.42);
  border-radius: 50%;
  background: rgba(200, 147, 47, 0.12);
}

.lane-icon::before,
.social-mark::before {
  content: "";
  width: 25px;
  height: 25px;
  background: var(--charcoal);
  -webkit-mask: var(--lane-icon) center / contain no-repeat;
  mask: var(--lane-icon) center / contain no-repeat;
}

.contact-duo-icon::before {
  display: none;
}

.contact-duo-icon svg {
  display: block;
  width: 27px !important;
  height: 27px !important;
  max-width: 27px;
  max-height: 27px;
  fill: var(--charcoal);
}

.contact-lane:hover .lane-icon {
  background: var(--gold);
  animation: iconLift 520ms var(--ease) both;
}

.contact-lane small,
.social-lane small {
  display: block;
  color: var(--wood);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-lane strong {
  display: block;
  margin-top: 2px;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(1.24rem, 2vw, 1.8rem);
  overflow-wrap: anywhere;
}

.contact-lane em {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.contact-lane b {
  position: relative;
  z-index: 1;
  padding: 12px 18px;
  border: 1px solid rgba(31, 60, 43, 0.16);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.68);
  white-space: nowrap;
  transition: color 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.contact-lane:hover b,
.lane-actions a:hover {
  color: white;
  border-color: var(--forest);
  background: var(--forest);
}

.contact-email { --lane-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 5h18v14H3V5zm2 3.2V17h14V8.2l-7 5.2-7-5.2zM6.6 7l5.4 4 5.4-4H6.6z'/%3E%3C/svg%3E"); }
.contact-phone { --lane-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 2.8l3.2 3.2-2 3c1.5 3 3.9 5.4 7 7l3-2 3.2 3.2-2 3.8c-8.4-.3-15.2-7.1-15.6-15.5l4.2-2.7z'/%3E%3C/svg%3E"); }
.contact-whatsapp { --lane-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3a9 9 0 0 1 7.6 13.8L20.8 21l-4.4-1.1A9 9 0 1 1 12 3zm-4 5.2c-.4.5-.8 1.3-.8 2.2 0 2.8 3 6.2 6.5 7.1.9.2 1.9.2 2.5-.3.5-.4.9-1.4 1-2l-2.5-1.1-1.1 1.1c-1.7-.8-3-2-3.9-3.8l1-1.1L9.6 7.8c-.6.1-1.2.2-1.6.4z'/%3E%3C/svg%3E"); }
.contact-call {
  --lane-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 2.8l3.2 3.2-2 3c1.5 3 3.9 5.4 7 7l3-2 3.2 3.2-2 3.8c-8.4-.3-15.2-7.1-15.6-15.5l4.2-2.7zm10.6 1.8A6.4 6.4 0 0 1 19.4 7a6.2 6.2 0 0 1 .8 3h-2.4a4.2 4.2 0 0 0-.5-1.9 4.5 4.5 0 0 0-1.4-1.5l1.3-2z'/%3E%3C/svg%3E");
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.96), rgba(242, 234, 220, 0.76)),
    radial-gradient(circle at 92% 20%, rgba(200, 147, 47, 0.22), transparent 28%);
}

.lane-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.lane-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid rgba(31, 60, 43, 0.16);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  white-space: nowrap;
  transition: transform 220ms var(--ease), color 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.lane-action svg {
  display: block;
  width: 19px !important;
  height: 19px !important;
  max-width: 19px;
  max-height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.call-action {
  border-color: rgba(200, 147, 47, 0.45);
  background: rgba(224, 179, 91, 0.18);
}

.whatsapp-action {
  border-color: rgba(30, 60, 43, 0.24);
  color: #124f2e;
}

.lane-actions a:hover {
  transform: translateY(-2px);
}

.social-board {
  padding: 30px;
  border: 1px solid rgba(31, 60, 43, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 46px rgba(23, 23, 21, 0.08);
}

.social-board-heading {
  display: flex;
  gap: 26px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.social-board-heading h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.social-lanes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.social-lane {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 148px;
  align-content: start;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(31, 60, 43, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 252, 245, 0.86);
  text-decoration: none;
  transition: transform 280ms var(--ease), border-color 280ms var(--ease), box-shadow 280ms var(--ease), background 280ms var(--ease);
}

.social-lane::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms var(--ease);
}

.social-lane:hover {
  border-color: rgba(200, 147, 47, 0.44);
  background: white;
  box-shadow: 0 18px 42px rgba(23, 23, 21, 0.12);
  transform: translateY(-6px);
}

.social-lane:hover::after {
  transform: scaleX(1);
}

.social-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--forest);
  transition: transform 280ms var(--ease), background 280ms var(--ease);
}

.social-mark::before {
  width: 21px;
  height: 21px;
  background: white;
}

.social-lane:hover .social-mark {
  background: var(--gold);
  transform: rotate(-6deg) scale(1.08);
}

.social-lane strong {
  font-size: 1.14rem;
}

.instagram { --lane-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2.5A2.5 2.5 0 0 0 4.5 7v10A2.5 2.5 0 0 0 7 19.5h10a2.5 2.5 0 0 0 2.5-2.5V7A2.5 2.5 0 0 0 17 4.5H7zm5 3a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9zm0 2.3a2.2 2.2 0 1 0 0 4.4 2.2 2.2 0 0 0 0-4.4zm5-2.7a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2z'/%3E%3C/svg%3E"); }
.facebook { --lane-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8h3V4h-3c-3.2 0-5 1.9-5 5v2H6v4h3v7h4v-7h3.2l.8-4h-4V9c0-.7.4-1 1-1z'/%3E%3C/svg%3E"); }
.tiktok { --lane-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 3c.6 3 2.4 4.8 5 5v4c-1.9 0-3.6-.6-5-1.7V16a6 6 0 1 1-6-6c.4 0 .7 0 1 .1v4.2A2 2 0 1 0 10 16V3h4z'/%3E%3C/svg%3E"); }
.youtube { --lane-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.6 7.2c.2 1.5.2 3 .2 4.8s0 3.3-.2 4.8a3 3 0 0 1-2.1 2.2c-1.9.5-7.5.5-7.5.5s-5.6 0-7.5-.5a3 3 0 0 1-2.1-2.2C2.2 15.3 2.2 13.8 2.2 12s0-3.3.2-4.8A3 3 0 0 1 4.5 5c1.9-.5 7.5-.5 7.5-.5s5.6 0 7.5.5a3 3 0 0 1 2.1 2.2zM10 15.5l5.2-3.5L10 8.5v7z'/%3E%3C/svg%3E"); }
.pinterest { --lane-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a8 8 0 0 0-3.1 15.4c-.1-.7-.1-1.5 0-2.1l1.3-5.3s-.3-.6-.3-1.5c0-1.4.8-2.4 1.8-2.4.9 0 1.3.6 1.3 1.4 0 .9-.6 2.2-.9 3.4-.2 1 .5 1.8 1.5 1.8 1.8 0 3.1-2.3 3.1-5 0-2-1.4-3.6-4-3.6-2.9 0-4.6 2.2-4.6 4.6 0 .8.2 1.4.6 1.9.2.2.2.3.1.6l-.2.9c-.1.3-.3.4-.6.3-1.3-.5-2-1.9-2-3.5 0-2.6 2.2-5.8 6.8-5.8 3.7 0 6.1 2.7 6.1 5.6 0 3.8-2.1 6.7-5.2 6.7-1 0-2-.6-2.3-1.2l-.6 2.4c-.2.7-.6 1.5-1 2.1A8 8 0 1 0 12 2z'/%3E%3C/svg%3E"); }

.service-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  background:
    linear-gradient(115deg, rgba(21, 21, 19, 0.96), rgba(31, 60, 43, 0.92)),
    url("assets/photo-sur-mesure.jpg") center/cover;
  box-shadow: var(--shadow);
}

.service-strip h2,
.service-strip p {
  color: white;
}

.service-strip p {
  max-width: 760px;
  opacity: 0.82;
}

.service-strip .cta-actions {
  justify-content: flex-end;
}

.service-strip .btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
}

.social-row,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row {
  margin-top: 26px;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: white;
  background: var(--forest);
  font-size: 0;
  font-weight: 900;
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}

.social-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: #ffffff;
  -webkit-mask: var(--social-icon) center / contain no-repeat;
  mask: var(--social-icon) center / contain no-repeat;
}

.social-icon[href*="instagram"] {
  --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2.5A2.5 2.5 0 0 0 4.5 7v10A2.5 2.5 0 0 0 7 19.5h10a2.5 2.5 0 0 0 2.5-2.5V7A2.5 2.5 0 0 0 17 4.5H7zm5 3a4.5 4.5 0 1 1 0 9 4.5 4.5 0 0 1 0-9zm0 2.3a2.2 2.2 0 1 0 0 4.4 2.2 2.2 0 0 0 0-4.4zm5-2.7a1.1 1.1 0 1 1 0 2.2 1.1 1.1 0 0 1 0-2.2z'/%3E%3C/svg%3E");
}

.social-icon[href*="facebook"] {
  --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 8h3V4h-3c-3.2 0-5 1.9-5 5v2H6v4h3v7h4v-7h3.2l.8-4h-4V9c0-.7.4-1 1-1z'/%3E%3C/svg%3E");
}

.social-icon[href*="tiktok"] {
  --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 3c.6 3 2.4 4.8 5 5v4c-1.9 0-3.6-.6-5-1.7V16a6 6 0 1 1-6-6c.4 0 .7 0 1 .1v4.2A2 2 0 1 0 10 16V3h4z'/%3E%3C/svg%3E");
}

.social-icon[href*="youtube"] {
  --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21.6 7.2c.2 1.5.2 3 .2 4.8s0 3.3-.2 4.8a3 3 0 0 1-2.1 2.2c-1.9.5-7.5.5-7.5.5s-5.6 0-7.5-.5a3 3 0 0 1-2.1-2.2C2.2 15.3 2.2 13.8 2.2 12s0-3.3.2-4.8A3 3 0 0 1 4.5 5c1.9-.5 7.5-.5 7.5-.5s5.6 0 7.5.5a3 3 0 0 1 2.1 2.2zM10 15.5l5.2-3.5L10 8.5v7z'/%3E%3C/svg%3E");
}

.social-icon[href*="pinterest"] {
  --social-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a8 8 0 0 0-3.1 15.4c-.1-.7-.1-1.5 0-2.1l1.3-5.3s-.3-.6-.3-1.5c0-1.4.8-2.4 1.8-2.4.9 0 1.3.6 1.3 1.4 0 .9-.6 2.2-.9 3.4-.2 1 .5 1.8 1.5 1.8 1.8 0 3.1-2.3 3.1-5 0-2-1.4-3.6-4-3.6-2.9 0-4.6 2.2-4.6 4.6 0 .8.2 1.4.6 1.9.2.2.2.3.1.6l-.2.9c-.1.3-.3.4-.6.3-1.3-.5-2-1.9-2-3.5 0-2.6 2.2-5.8 6.8-5.8 3.7 0 6.1 2.7 6.1 5.6 0 3.8-2.1 6.7-5.2 6.7-1 0-2-.6-2.3-1.2l-.6 2.4c-.2.7-.6 1.5-1 2.1A8 8 0 1 0 12 2z'/%3E%3C/svg%3E");
}

.social-icon:hover {
  transform: translateY(-4px) rotate(-2deg);
  background: var(--gold);
}

.center-actions {
  justify-content: center;
  margin-top: 34px;
}

.site-footer {
  padding: 58px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #11110f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.85fr 0.8fr;
  gap: 38px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: white;
  font-size: 1.1rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
}

.site-footer .footer-socials {
  display: flex;
}

.site-footer .social-icon {
  display: inline-grid;
  margin: 0;
  color: #ffffff;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  padding: 13px 16px;
  border-radius: 8px;
  color: white;
  background: var(--forest);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  font-weight: 900;
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  background: var(--forest-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

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

@keyframes heroImage {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes ctaGlow {
  0%, 72%, 100% {
    left: -45%;
  }
  86% {
    left: 115%;
  }
}

@keyframes sceneFloat {
  0%, 100% {
    transform: translateY(0) rotateY(0deg);
  }
  50% {
    transform: translateY(-10px) rotateY(2deg);
  }
}

@keyframes moduleFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -14px;
  }
}

@keyframes processLine {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes processFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@keyframes iconLift {
  0% {
    transform: translateY(0) scale(1);
  }
  45% {
    transform: translateY(-4px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1120px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 4px;
  }

  .header-actions {
    display: none;
  }

  .categories-grid,
  .catalogue-grid,
  .models-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip .cta-actions {
    justify-content: flex-start;
  }

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

  .process-journey::before {
    display: none;
  }

  .process-step:nth-child(even) {
    margin-top: 0;
  }

  .split,
  .split.reverse,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .quote-aside {
    position: static;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 74px;
    padding: 10px 14px;
  }

  .brand img {
    width: 132px;
    height: 50px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(21, 21, 19, 0.7), rgba(21, 21, 19, 0.94));
  }

  .hero-layout {
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    margin: 0 auto;
    padding: 72px 0 86px;
  }

  .hero-3d {
    order: -1;
    min-height: 260px;
  }

  .van-stage {
    height: 280px;
  }

  .van-body {
    left: 0;
    right: 0;
    height: 145px;
    bottom: 54px;
  }

  .van-window {
    top: 24px;
    height: 48px;
  }

  .van-window.side {
    left: 24px;
    width: 150px;
  }

  .van-window.front {
    width: 110px;
  }

  .wood-module {
    bottom: 20px;
    height: 34px;
  }

  .module-one {
    width: 110px;
  }

  .module-two {
    left: 174px;
    width: 132px;
  }

  .wheel {
    width: 64px;
    height: 64px;
    bottom: -38px;
    border-width: 9px;
    box-shadow: inset 0 0 0 15px #b8b1a5;
  }

  .floating-module {
    width: 78px;
    height: 58px;
  }

  .module-c {
    width: 96px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.5vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .hero-lead,
  .page-hero p,
  .section-heading p,
  .split p,
  .final-cta p {
    max-width: 100%;
    font-size: 1rem;
  }

  .contact-line {
    font-size: 0.95rem;
    word-break: break-word;
  }

  .hero-actions,
  .cta-actions,
  .card-actions,
  .center-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .feature-grid,
  .categories-grid,
  .product-grid,
  .catalogue-grid,
  .models-grid,
  .contact-grid,
  .social-lanes,
  .process-journey,
  .gallery-grid,
  .gallery-grid.large,
  .field.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-board {
    gap: 12px;
  }

  .contact-lane {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
  }

  .contact-lane b {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .lane-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .social-board {
    padding: 20px;
  }

  .social-board-heading {
    display: block;
  }

  .social-lane {
    min-height: 0;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .social-lane small {
    grid-column: 2;
  }

  .service-strip {
    padding: 24px;
  }

  .process-journey {
    gap: 16px;
  }

  .process-journey::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 29px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(200, 147, 47, 0.72), rgba(30, 60, 43, 0.55), transparent);
    transform-origin: top;
  }

  .process-step {
    min-height: 0;
    grid-template-columns: auto 1fr;
    align-items: start;
    padding: 22px 22px 22px 18px;
  }

  .process-step span {
    width: 46px;
    height: 46px;
    margin-bottom: 0;
  }

  .process-step span::before {
    width: 22px;
    height: 22px;
  }

  .image-card img,
  .catalogue-card img {
    height: 220px;
  }

  .photo-panel,
  .gallery-item {
    min-height: 260px;
  }

  .page-hero {
    min-height: 430px;
  }

  .quote-form,
  .quote-aside {
    padding: 22px;
  }

  .floating-whatsapp {
    display: none;
  }
}
