:root {
  --ink: #111715;
  --ink-soft: #1d2825;
  --paper: #f8f3e8;
  --paper-strong: #fffaf0;
  --mist: #e5f1ec;
  --teal: #009b8f;
  --teal-dark: #006c65;
  --orange: #ef7934;
  --gold: #d9a441;
  --white: #ffffff;
  --muted: #6f756f;
  --line: rgba(17, 23, 21, 0.14);
  --line-light: rgba(255, 255, 255, 0.24);
  --shadow: 0 22px 55px rgba(17, 23, 21, 0.18);
  --container: min(1180px, calc(100% - 40px));
  --radius: 8px;
  --header-height: 75px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 23, 21, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 23, 21, 0.02) 1px, transparent 1px);
  background-size: 34px 34px;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(239, 121, 52, 0.65);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.header-inner,
.hero-inner {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(17, 23, 21, 0.92);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.14);
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.site-footer strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
  font-weight: 600;
  min-width: 0;
  white-space: nowrap;
}

.main-nav a {
  padding: 0.45rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
  border-color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.lang-current {
  display: none;
}

.lang-options {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.lang-switch button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  min-width: 2.85rem;
  min-height: 2rem;
  padding: 0 0.35rem;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch button:hover,
.lang-switch button.is-active {
  background: var(--orange);
  color: var(--white);
}

.lang-switch .lang-current {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(239, 121, 52, 0.28);
}

.btn-primary:hover {
  background: #d96424;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.section .btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.9rem;
  color: var(--teal-dark);
  font-weight: 700;
  border-bottom: 2px solid currentColor;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("generated/nosy-biker/hero-alternatives/hero-alt-06.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background: linear-gradient(0deg, rgba(8, 12, 11, 0.2), transparent 34%);
}

.hero-inner {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  justify-items: end;
  padding: clamp(1.2rem, 3vh, 2rem) 0;
}

.hero-panel {
  height: clamp(28rem, 64svh, 32rem);
  width: auto;
  aspect-ratio: 4 / 5;
  margin-right: clamp(0.45rem, 1.3vw, 1.2rem);
  padding: clamp(1.35rem, 2.6vw, 2.1rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8, 12, 11, 0.42), rgba(8, 12, 11, 0.18));
  backdrop-filter: blur(10px);
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vh, 2rem);
  text-align: right;
}

.eyebrow,
.section-kicker,
.board-label,
.service-label {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  font-size: clamp(0.86rem, 3.65cqw, 1.05rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: left;
  white-space: nowrap;
}

.hero-copy {
  flex: 1 1 auto;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
}

.hero-copy .eyebrow {
  color: var(--white);
  text-align: center;
  white-space: normal;
}

.hero h1 {
  display: block;
  width: 100%;
  margin: 3rem 0 0;
  margin: clamp(2.65rem, calc(10svh - 1.875rem), 3.9rem) 0 0;
  padding-top: 0;
  font-family: "Oswald", sans-serif;
  font-size: 3.75rem;
  font-size: clamp(3.35rem, 15.05cqw, 3.95rem);
  line-height: 0.92;
  font-weight: 700;
  max-width: none;
  margin-left: 0;
  text-align: center;
  text-shadow: 0 3px 18px rgba(8, 12, 11, 0.36);
}

.hero h1 a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: auto;
}

.hero h1 a + a {
  margin-top: 0.55rem;
  margin-top: clamp(0.35rem, 1.35cqw, 0.65rem);
}

.hero h1 a:nth-child(2) {
  margin-left: 0;
}

.hero h1 a:nth-child(3) {
  margin-left: 0;
}

.hero-tagline {
  max-width: 22rem;
  margin: 0.4rem auto 0;
  color: var(--white);
  font-size: 0.84rem;
  font-size: clamp(0.76rem, 3.05cqw, 0.86rem);
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}

.hero-tagline span {
  display: block;
}

.hero-copy .eyebrow,
.hero-tagline {
  -webkit-text-stroke: 0.12px rgba(239, 121, 52, 0.34);
  text-shadow:
    0 0 0.75px rgba(239, 121, 52, 0.38),
    0 1px 2px rgba(8, 12, 11, 0.24);
}

.hero-actions,
.inline-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-panel .hero-actions {
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 0;
}

.hero-panel .btn {
  width: 100%;
  min-height: 3.05rem;
  padding-inline: 1rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 44rem;
  margin: 2rem 0 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.hero-facts div {
  padding: 1rem 1.2rem 1rem 0;
}

.hero-facts div + div {
  padding-left: 1.2rem;
  border-left: 1px solid var(--line-light);
}

.hero-facts dt {
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.hero-facts dd {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.section {
  padding: 5.5rem 0;
  scroll-margin-top: 92px;
}

.section h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  line-height: 1.02;
}

.section h3 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

.section p {
  color: var(--muted);
  margin: 1rem 0 0;
}

.section-copy {
  max-width: 41rem;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-rental {
  background: var(--paper-strong);
  padding: 4.2rem 0;
  border-top: 1px solid rgba(17, 23, 21, 0.08);
  border-bottom: 1px solid rgba(17, 23, 21, 0.08);
}

.rental-layout,
.workshop-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.rental-checklist {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.rental-checklist ul {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.rental-checklist li {
  padding-left: 1.4rem;
  position: relative;
  color: rgba(255, 255, 255, 0.82);
}

.rental-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.rental-options {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.option-card,
.service-card {
  min-height: 14rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(17, 23, 21, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.option-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 155, 143, 0.45);
  box-shadow: 0 18px 38px rgba(17, 23, 21, 0.14);
}

.option-card.is-featured {
  background: var(--mist);
  border-color: rgba(0, 155, 143, 0.32);
}

.option-number {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--teal-dark);
  font-weight: 900;
}

.reserve-btn {
  align-self: flex-start;
  margin-top: auto;
}

.section-workshop {
  background: #18211f;
  color: var(--white);
}

.section-workshop p {
  color: rgba(255, 255, 255, 0.74);
}

.workshop-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.8rem;
}

.metric-row div {
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
}

.metric-row strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
}

.metric-row span {
  color: rgba(255, 255, 255, 0.72);
}

.section-services {
  background: var(--paper);
}

.section-vehicles,
.section-alacarte {
  background: var(--paper-strong);
}

.section-roadside {
  background: #f0eadf;
}

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

.vehicle-grid,
.compact-grid,
.control-grid,
.depannage-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.depannage-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.4rem;
}

.vehicle-card,
.compact-card,
.control-grid article,
.depannage-grid article {
  padding: 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(17, 23, 21, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.vehicle-card:hover,
.compact-card:hover,
.control-grid article:hover,
.depannage-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 155, 143, 0.45);
  box-shadow: 0 18px 38px rgba(17, 23, 21, 0.14);
}

.vehicle-card span {
  color: var(--teal-dark);
  font-weight: 900;
}

.vehicle-card h3,
.compact-card h3,
.control-grid h3 {
  margin-top: 1rem;
}

.service-price {
  color: var(--orange) !important;
  font-weight: 800;
}

.compact-card .service-price {
  white-space: nowrap;
}

.price-conversion {
  display: inline-block;
  margin-left: 0.25rem;
  color: var(--muted);
  font-size: 0.9em;
  font-weight: 700;
}

.bullet-list,
.method-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.bullet-list li,
.method-list li {
  margin-bottom: 0.55rem;
}

.section-workshop .method-list {
  color: rgba(255, 255, 255, 0.74);
}

.note {
  color: var(--teal-dark) !important;
  font-weight: 800;
}

.footnote {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.container.footnote {
  margin-inline: auto;
  padding-left: clamp(1rem, 2vw, 1.75rem);
}

.roadside-panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--paper-strong);
  border: 1px solid rgba(17, 23, 21, 0.1);
  box-shadow: var(--shadow);
}

.depannage-grid article strong {
  display: block;
  margin-bottom: 0.45rem;
}

.depannage-grid article span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--orange);
  font-weight: 900;
}

.roadside-band {
  margin-top: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.roadside-band p {
  color: rgba(255, 255, 255, 0.74);
}

.roadside-band .section-kicker {
  margin-bottom: 0.4rem;
}

.section-process {
  background: var(--mist);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: start;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(17, 23, 21, 0.16);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(17, 23, 21, 0.16);
}

.process-list span {
  grid-row: span 2;
  color: var(--teal-dark);
  font-weight: 900;
}

.process-list strong {
  font-size: 1.12rem;
}

.process-list p {
  margin: 0;
}

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

.contact-panel {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
}

.contact-panel p {
  color: var(--muted);
}

.contact-panel .btn-secondary {
  color: var(--ink);
  border-color: var(--line);
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin: 1.8rem 0 0;
}

.contact-details div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.contact-details dt {
  font-weight: 800;
}

.contact-details dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.map-panel {
  min-height: 25rem;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow);
  position: relative;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 25rem;
  border: 0;
  pointer-events: none;
}

.map-link {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  background: rgba(17, 23, 21, 0.9);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(17, 23, 21, 0.24);
  transition: transform 0.2s ease, background 0.2s ease;
}

.map-link:hover {
  transform: translateY(-2px);
  background: var(--teal-dark);
}

.site-footer {
  background: #0f1413;
  color: var(--white);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-inner p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner a {
  color: var(--gold);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid #d96424;
  background: #1d2825;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(0, 108, 101, 0.35);
  transition: bottom 0.24s ease, transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.is-footer-visible .floating-whatsapp {
  bottom: 5.8rem;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #111715;
}

.back-to-top {
  display: none;
}

.landscape-header-toggle {
  display: none;
}

.is-enhanced .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 0.7rem;
  }

  .main-nav {
    gap: 0.62rem;
    font-size: 0.88rem;
  }

  .header-actions {
    gap: 0.5rem;
  }

  .header-cta {
    padding-inline: 0.9rem;
  }

  .lang-switch button {
    min-width: 2.45rem;
    padding-inline: 0.25rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: 1fr;
    padding: 0.8rem 0;
    gap: 0.8rem;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .header-actions {
    justify-content: space-between;
  }

  .lang-switch {
    width: max-content;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    font-size: 3.75rem;
    font-size: clamp(3.35rem, 15.05cqw, 3.95rem);
  }

  .rental-layout,
  .workshop-layout,
  .contact-layout,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .workshop-image {
    order: 2;
  }

  .service-grid,
  .rental-options,
  .vehicle-grid,
  .compact-grid,
  .depannage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  :root {
    --container: min(100% - 2rem, 1180px);
  }

  body {
    background: #050b10;
  }

  .site-header {
    width: 100%;
    margin: 0 auto;
    z-index: 80;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    background: rgba(17, 23, 21, 0.9);
    box-shadow: 0 22px 48px rgba(2, 8, 12, 0.46);
  }

  .header-inner {
    position: relative;
    width: 100%;
    grid-template-columns: 2.75rem minmax(0, 1fr) auto;
    min-height: 62px;
    padding: 0.55rem 0.75rem;
    gap: 0.55rem;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 2.45rem;
    height: 2.45rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-menu-toggle span {
    width: 1.25rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .site-header.is-menu-open .mobile-menu-toggle,
  .lang-switch.is-open .lang-current {
    border-color: rgba(239, 121, 52, 0.72);
    background: rgba(239, 121, 52, 0.18);
    box-shadow: 0 0 0 3px rgba(239, 121, 52, 0.1);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .brand {
    justify-self: start;
    gap: 0.55rem;
    margin-left: 0.12rem;
  }

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

  .brand strong,
  .site-footer strong {
    font-size: 1.1rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .header-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .lang-switch {
    align-self: auto;
    flex: 0 0 auto;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .header-cta {
    display: none;
  }

  .lang-switch .lang-current {
    display: inline-flex;
    min-width: 4rem;
    min-height: 2.45rem;
    padding-inline: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .lang-options {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    z-index: 90;
    display: none;
    min-width: 5.55rem;
    gap: 0.28rem;
    padding: 0.42rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(29, 40, 37, 0.98), rgba(13, 19, 17, 0.98));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px);
  }

  .lang-switch.is-open .lang-options {
    display: grid;
  }

  .lang-switch button[data-lang-btn] {
    width: 100%;
    min-height: 2.25rem;
    justify-content: flex-start;
    padding-inline: 0.52rem;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.06);
  }

  .lang-switch button[data-lang-btn].is-active {
    border-color: rgba(239, 121, 52, 0.62);
    background: rgba(239, 121, 52, 0.18);
    color: var(--white);
  }

  .lang-switch button[data-lang-btn].is-active::after {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    margin-left: auto;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 3px rgba(239, 121, 52, 0.12);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0.75rem;
    right: 0.75rem;
    z-index: 85;
    display: none;
    grid-template-columns: 1fr;
    gap: 0.28rem;
    padding: 0.5rem;
    align-items: stretch;
    justify-content: stretch;
    overflow: visible;
    white-space: normal;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(29, 40, 37, 0.98), rgba(13, 19, 17, 0.98));
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.44);
    font-size: 0.92rem;
    backdrop-filter: blur(18px);
  }

  .site-header.is-menu-open .main-nav {
    display: grid;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 2.75rem;
    padding: 0.78rem 0.88rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius) - 2px);
    background: rgba(255, 255, 255, 0.055);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .main-nav a::after {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    opacity: 0.46;
    transform: rotate(45deg);
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    border-color: rgba(239, 121, 52, 0.62);
    background: rgba(239, 121, 52, 0.16);
    color: var(--white);
  }

  .main-nav a:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    --hero-mobile-red: #d82727;
    width: 100%;
    min-height: calc(100svh - 86px);
    margin: 0 auto 1rem;
    align-items: stretch;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 28px 58px rgba(2, 8, 12, 0.5);
  }

  .hero-media {
    background-image: url("generated/nosy-biker/hero-mobile-scooter-lagoon.jpg");
    background-size: auto 134%;
    background-position: 55% 76%;
    filter: blur(1.4px);
    transform: scale(1.025);
  }

  .hero-inner {
    width: 100%;
    min-height: calc(100svh - 86px);
    justify-items: center;
    padding: 2.35rem 1rem 4.45rem;
  }

  .hero-panel {
    position: relative;
    width: 100%;
    min-height: calc(100svh - 168px);
    height: 100%;
    aspect-ratio: auto;
    margin-inline: auto;
    padding: 0;
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
    text-align: center;
  }

  .hero-copy {
    position: relative;
  }

  .hero-intro {
    width: min(100%, 16.5rem);
    margin-inline: auto;
    padding: 0.72rem 0.86rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(17, 23, 21, 0.68);
    box-shadow: 0 14px 34px rgba(2, 8, 12, 0.32);
    backdrop-filter: blur(6px);
    transform: translateY(0.8rem);
  }

  .hero-overlay {
    background: transparent;
  }

  .hero .eyebrow {
    font-size: 0.76rem;
    line-height: 1.2;
    white-space: normal;
  }

  .hero-intro .hero-tagline {
    margin-top: 0.42rem;
    font-size: 0.72rem;
    line-height: 1.26;
  }

  .hero h1 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    justify-content: stretch;
    gap: 0;
    margin: clamp(3.7rem, 10.8svh, 4.7rem) 0 0;
    font-size: clamp(1.02rem, 5.1vw, 1.24rem);
    line-height: 1.05;
    text-align: center;
    white-space: normal;
    transform: none;
    -webkit-text-stroke: 0.75px rgba(8, 12, 11, 0.92);
    paint-order: stroke fill;
    text-shadow: 0 3px 12px rgba(8, 12, 11, 0.62);
  }

  .hero h1 a {
    position: relative;
    display: flex;
    color: inherit;
    text-decoration: none;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    padding: 0 0.12rem;
  }

  .hero h1 a::before {
    content: "";
    width: 2.45rem;
    height: 2.45rem;
    margin-bottom: 0.58rem;
    background: var(--orange);
    filter:
      drop-shadow(0 0 1px rgba(4, 8, 8, 0.96))
      drop-shadow(0 0 2px rgba(4, 8, 8, 0.78))
      drop-shadow(0 2px 8px rgba(8, 12, 11, 0.36));
    filter:
      hue-rotate(-22deg)
      saturate(1.55)
      contrast(1.06)
      drop-shadow(0 0 1px rgba(4, 8, 8, 0.96))
      drop-shadow(0 0 2px rgba(4, 8, 8, 0.78))
      drop-shadow(0 2px 8px rgba(8, 12, 11, 0.36));
  }

  .hero h1 a + a {
    margin-top: 0;
    border-left: 1px solid rgba(239, 121, 52, 0.58);
  }

  .hero h1 a:nth-child(1)::before {
    width: 3.45rem;
    height: 2.55rem;
    margin-bottom: 0.48rem;
    background: url("assets/icons/repair-motorcycle-orange.png") center / contain no-repeat;
    -webkit-mask: none;
    mask: none;
  }

  .hero h1 a:nth-child(2)::before {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .hero h1 a:nth-child(3)::before {
    width: 2.85rem;
    background: url("assets/icons/location-scooter-orange.png") center / contain no-repeat;
    -webkit-mask: none;
    mask: none;
  }

  .hero h1 a:nth-child(2) {
    margin-left: 0;
  }

  .hero h1 a:nth-child(3) {
    margin-left: 0;
  }

  .hero-actions .btn,
  .inline-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .hero-panel .hero-actions {
    position: absolute;
    right: 0;
    bottom: clamp(4.45rem, 9.2svh, 5.1rem);
    left: 0;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    transform: none;
  }

  .hero-panel .hero-actions .btn {
    width: min(100%, 21.5rem);
    min-height: 2.9rem;
    margin-inline: auto;
  }

  .hero-panel .hero-actions .btn-primary {
    background: var(--hero-mobile-red);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 14px 30px rgba(216, 39, 39, 0.34);
  }

  .hero-panel .hero-actions .btn-primary:hover {
    background: #b91f1f;
  }

  @media (max-height: 740px) {
    .hero-panel .hero-actions {
      transform: none;
    }
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts div,
  .hero-facts div + div {
    padding: 0.85rem 0;
    border-left: 0;
  }

  .hero-facts div + div {
    border-top: 1px solid var(--line-light);
  }

  .section {
    padding: 4rem 0;
  }

  .section h2 {
    font-size: 2.35rem;
  }

  .section-workshop .section-heading {
    max-width: 100%;
  }

  .section-workshop .method-list {
    padding-left: 1.25rem;
  }

  .section-workshop .method-list li {
    padding-left: 0.15rem;
  }

  .section-workshop .metric-row {
    gap: 1.25rem;
  }

  .roadside-band,
  .footer-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-footer .footer-inner > a {
    justify-self: center;
    width: max-content;
  }

  .service-grid,
  .rental-options,
  .vehicle-grid,
  .compact-grid,
  .depannage-grid,
  .control-grid {
    grid-template-columns: 1fr;
  }

  .roadside-band .btn {
    width: 100%;
  }

  .floating-whatsapp {
    left: auto;
    right: 2rem;
    bottom: 1rem;
    width: 3.25rem;
    height: 3.25rem;
    min-height: 3.25rem;
    padding: 0;
    border-radius: 50%;
    border-color: #d82727;
    font-size: 0;
    line-height: 0;
    box-shadow: 0 18px 42px rgba(216, 39, 39, 0.34);
  }

  .is-footer-visible .floating-whatsapp {
    bottom: 1rem;
  }

  .back-to-top {
    position: fixed;
    left: 2rem;
    bottom: 1rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border: 1px solid #d96424;
    border-radius: 50%;
    background: #1d2825;
    color: var(--orange);
    box-shadow: 0 18px 42px rgba(0, 108, 101, 0.35);
    font-size: 0;
    line-height: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0.7rem);
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, background 0.2s ease, border-color 0.2s ease;
  }

  .is-away-from-top .back-to-top {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .back-to-top:hover {
    transform: translateY(-2px);
    background: #111715;
  }

  .back-to-top::before {
    content: "";
    width: 1.08rem;
    height: 1.08rem;
    border-top: 3px solid currentColor;
    border-left: 3px solid currentColor;
    transform: translateY(0.2rem) rotate(45deg);
  }

  .floating-whatsapp::before {
    content: "";
    width: 1.55rem;
    height: 1.55rem;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.03 3C9.42 3 4.03 8.36 4.03 14.96c0 2.11.55 4.17 1.6 5.98L4 27l6.22-1.63a11.93 11.93 0 0 0 5.8 1.48h.01c6.6 0 11.97-5.37 11.97-11.97C28 8.36 22.63 3 16.03 3Zm0 21.83h-.01a9.9 9.9 0 0 1-5.05-1.38l-.36-.21-3.69.97.99-3.6-.23-.37a9.86 9.86 0 0 1-1.51-5.28c0-5.45 4.43-9.88 9.88-9.88 2.64 0 5.12 1.03 6.99 2.9a9.82 9.82 0 0 1 2.89 6.99c-.01 5.44-4.44 9.86-9.9 9.86Zm5.42-7.4c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.95 1.17-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.38-1.47-.88-.78-1.47-1.75-1.64-2.05-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.8.37-.27.3-1.04 1.02-1.04 2.48 0 1.46 1.07 2.87 1.22 3.07.15.2 2.1 3.2 5.08 4.49.71.31 1.26.49 1.7.63.71.23 1.36.2 1.87.12.57-.08 1.76-.72 2.01-1.41.25-.69.25-1.28.17-1.41-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.03 3C9.42 3 4.03 8.36 4.03 14.96c0 2.11.55 4.17 1.6 5.98L4 27l6.22-1.63a11.93 11.93 0 0 0 5.8 1.48h.01c6.6 0 11.97-5.37 11.97-11.97C28 8.36 22.63 3 16.03 3Zm0 21.83h-.01a9.9 9.9 0 0 1-5.05-1.38l-.36-.21-3.69.97.99-3.6-.23-.37a9.86 9.86 0 0 1-1.51-5.28c0-5.45 4.43-9.88 9.88-9.88 2.64 0 5.12 1.03 6.99 2.9a9.82 9.82 0 0 1 2.89 6.99c-.01 5.44-4.44 9.86-9.9 9.86Zm5.42-7.4c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.95 1.17-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.38-1.47-.88-.78-1.47-1.75-1.64-2.05-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.08-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.8.37-.27.3-1.04 1.02-1.04 2.48 0 1.46 1.07 2.87 1.22 3.07.15.2 2.1 3.2 5.08 4.49.71.31 1.26.49 1.7.63.71.23 1.36.2 1.87.12.57-.08 1.76-.72 2.01-1.41.25-.69.25-1.28.17-1.41-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 520px) {
  .landscape-header-toggle {
    position: fixed;
    top: 0.55rem;
    right: 0.6rem;
    z-index: 120;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    padding: 0;
    border: 1px solid #d96424;
    border-radius: 50%;
    background: #1d2825;
    color: var(--orange);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36);
    font-size: 0;
    line-height: 0;
  }

  .landscape-header-toggle::before {
    content: "";
    width: 0.92rem;
    height: 0.92rem;
    border-top: 3px solid currentColor;
    border-left: 3px solid currentColor;
    transform: translateY(0.22rem) rotate(45deg);
  }

  .is-mobile-header-hidden .landscape-header-toggle::before {
    transform: translateY(-0.18rem) rotate(225deg);
  }

  .is-mobile-header-hidden .site-header {
    height: 0;
    min-height: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
  }

  .is-mobile-header-hidden .header-inner {
    min-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }

  .is-mobile-header-hidden .main-nav,
  .is-mobile-header-hidden .lang-options {
    display: none !important;
  }

  .is-mobile-header-hidden .hero,
  .is-mobile-header-hidden .hero-inner {
    min-height: 100svh;
  }

  .is-mobile-header-hidden .hero-inner {
    padding-top: 1.2rem;
  }

  .is-mobile-header-hidden .hero-panel {
    min-height: calc(100svh - 5.6rem);
  }
}
