:root {
  --yellow: #f5c518;
  --yellow-bright: #ffd426;
  --ink: #1a1a1a;
  --black: #1a1a1a;
  --black-soft: #f5f5f5;
  --black-card: #ffffff;
  --white: #ffffff;
  --gray: #5c5c5c;
  --border: #e5e5e5;
  --font: "Barlow", system-ui, sans-serif;
  --font-display: "Barlow Condensed", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.topbar-info {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.topbar-info__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 36px;
  font-size: 0.72rem;
  color: var(--gray);
}

.topbar-info__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.topbar-info__item:hover {
  color: var(--yellow);
}

.topbar-info__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  opacity: 0.85;
  transition: opacity 0.2s;
}

.topbar-info__social:hover {
  opacity: 1;
}

.header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--yellow);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0.5rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}

.logo__img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  align-self: center;
}

.logo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: center;
  gap: 0.05rem;
}

.logo__garage {
  font-family: "Kaushan Script", cursive;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--yellow);
  line-height: 1;
  margin: 0;
  padding: 0;
  display: block;
}

.logo__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
  background: linear-gradient(
    180deg,
    #d8d8d8 0%,
    #a0a0a0 20%,
    #3a3a3a 46%,
    #141414 54%,
    #6a6a6a 80%,
    #2a2a2a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.topbar__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.topbar__links a:hover,
.topbar__links a.is-active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.header-account {
  position: relative;
}

.header-account__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid rgba(255, 214, 0, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--yellow);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.header-account__toggle:hover {
  background: rgba(255, 214, 0, 0.12);
  border-color: var(--yellow);
  transform: scale(1.04);
}

.header-account__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 11.5rem;
  padding: 0.35rem;
  border-radius: 10px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 214, 0, 0.25);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  z-index: 200;
}

.header-account__menu a {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 7px;
  color: #f5f5f5;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.header-account__menu a:hover {
  background: rgba(255, 214, 0, 0.14);
  color: var(--yellow);
}

.header-account__menu a + a {
  margin-top: 0.15rem;
}

/* Facebook */
.social-facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s;
  flex-shrink: 0;
}

.social-facebook:hover {
  background: #166fe5;
  transform: scale(1.06);
}

.social-facebook--contact {
  width: auto;
  height: auto;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  gap: 0.5rem;
  margin: 1rem 0;
  font-weight: 700;
  font-size: 0.9rem;
}

.social-facebook--contact span {
  color: #fff;
}

.contact__actions .social-facebook--contact {
  margin: 0;
}

.nav--mobile {
  display: none;
}

.nav a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--yellow);
}

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

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--call {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 0 #c9a010;
}

.btn--call:hover {
  background: var(--yellow-bright);
  box-shadow: 0 4px 0 #c9a010, 0 6px 20px rgba(245, 197, 24, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
  margin-top: 1rem;
}

.btn--outline:hover {
  background: rgba(245, 197, 24, 0.1);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn--xl {
  padding: 1rem 1.75rem;
  font-size: 1.15rem;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

/* Hero accueil — diaporama plein écran (style garagemthon) + bandeau urgent */
.hero-home {
  padding-top: 7rem;
  background: var(--ink);
}

.hero-carousel.hero {
  position: relative;
  width: 100%;
  min-height: clamp(420px, calc(100vh - 7rem), 720px);
  overflow: hidden;
}

.hero-carousel.hero--static .hero__controls {
  display: none;
}

.hero__slide--split h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  z-index: 1;
}

.hero__controls {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.hero__controls .hero__arrow,
.hero__controls .hero__dot,
.hero__controls .hero__dots {
  pointer-events: auto;
}

.hero__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

.hero__slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero__slide--split {
  justify-content: center;
  align-items: stretch;
  padding: 0;
}

.hero__split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 400px);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  flex: 1 1 auto;
  align-self: center;
  width: min(1100px, 92vw);
  max-width: min(1100px, 92vw);
  min-width: 0;
  margin-inline: auto;
  box-sizing: border-box;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2rem) 3rem;
  pointer-events: none;
}

.hero__split-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  pointer-events: none;
}

.hero__split-left a {
  pointer-events: auto;
}

.hero__split-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  pointer-events: auto;
}

.hero__split-actions--center {
  justify-content: center;
}

.hero__content--center .hero__lead {
  margin-left: auto;
  margin-right: auto;
}

.hero__split-left .hero__lead {
  margin-left: 0;
  margin-right: 0;
  max-width: 34rem;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.38) 45%, rgba(0, 0, 0, 0.58) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__slide--hours .hero__overlay--hours,
.hero__slide--hours .hero__overlay--light {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.hero__overlay--light {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.28) 100%);
}

.hero__slide--photo {
  padding: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 3.5rem;
  text-align: center;
  pointer-events: none;
}

.hero__content a,
.hero__content button,
.hero__hours-panel a {
  pointer-events: auto;
}

.hero__content--center {
  max-width: 52rem;
}

.hero__slide--intro {
  justify-content: center;
  align-items: center;
  padding: 0;
}

.hero__content--left {
  align-items: flex-start;
  text-align: left;
  width: min(1100px, 92vw);
  max-width: min(1100px, 92vw);
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1rem, 4vw, 2rem);
}

.hero__content--left .hero__lead {
  margin-left: 0;
  margin-right: 0;
  max-width: 34rem;
}

.hero__slide--hours {
  justify-content: center;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem) 1rem;
}

.hero__slide--hours .hero__hours-panel {
  max-width: min(100%, 360px);
  width: min(92vw, 360px);
}

.hero__slide h1,
.hero__slide h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero__hours-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.97);
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 0 0 1.15rem;
  color: var(--ink);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
  overflow: hidden;
  pointer-events: auto;
  backdrop-filter: blur(6px);
}

.hero__hours-panel .hero__hours-title {
  margin: 0;
  padding: 0.85rem 1rem;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: none;
  text-align: center;
  letter-spacing: 0.1em;
  border-bottom: 3px solid var(--yellow);
}

.hero__hours-panel .hours__hint {
  padding: 0.65rem 1rem 0;
  font-size: 0.82rem;
  color: var(--gray);
}

.hero__hours-panel .hours__list {
  padding: 0 1rem;
}

.hero__hours-panel .hours__list--split {
  text-align: left;
}

.hero__hours-panel .hours__list--split .hours__list-header {
  color: var(--gray);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 0.5rem;
  margin-bottom: 0.15rem;
}

.hero__hours-panel .hours__list--split .hours__list-header span:nth-child(2),
.hero__hours-panel .hours__list--split .hours__list-header span:nth-child(3) {
  background: transparent;
  color: var(--ink);
  text-align: center;
  padding: 0;
  border-radius: 0;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.hero__hours-panel .hours__list--split .hours__day {
  background: transparent;
  color: var(--ink);
  text-align: left;
  padding: 0;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero__hours-panel .hours__list--split li {
  border-bottom: 1px solid var(--border);
  padding: 0.42rem 0;
}

.hero__hours-panel .hours__list--split li > span:not(.hours__day) {
  text-align: center;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ink);
}

.hero__hours-panel .hours__list--split li > span.muted {
  color: var(--gray);
  font-weight: 500;
}

.hero__hours-panel .hours__list li {
  padding: 0.45rem 0;
  font-size: 0.95rem;
  border-bottom-color: var(--border);
}

.hero__hours-panel .btn {
  margin: 1rem 1rem 0;
  width: calc(100% - 2rem);
  text-align: center;
}

.hero__hours-panel .btn--outline {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.hero__hours-panel .btn--outline:hover {
  background: var(--yellow-bright);
  border-color: var(--yellow-bright);
  color: var(--ink);
}

.hero__lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 38rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.btn--hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.75rem;
  border: 2px solid #fff;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--hero-outline:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.hero__viewport.is-dragging {
  cursor: grabbing;
}

.hero__track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
}

.hero__track.is-dragging {
  transition: none;
}

.hero--static .hero__arrow,
.hero--static .hero__dots,
.hero--static .hero__swipe-hint {
  display: none !important;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.5rem 0.65rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  transition: opacity 0.2s, color 0.2s;
  pointer-events: auto;
}

.hero__arrow:hover {
  opacity: 1;
  color: var(--yellow);
}

.hero__arrow--prev { left: 0.75rem; }
.hero__arrow--next { right: 0.75rem; }

.hero__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  gap: 0.45rem;
}

.hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.hero__dot.is-active {
  background: var(--yellow);
  transform: scale(1.15);
}

.hero__swipe-hint {
  display: none;
  position: absolute;
  bottom: 0.65rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.hero-urgent {
  margin-top: 1.25rem;
  background: var(--ink);
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
}

.hero-urgent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  flex-wrap: wrap;
}

.hero-urgent__badge {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--yellow);
  margin-bottom: 0.35rem;
}

.hero-urgent__pitch {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
  line-height: 1.5;
}

.hero-urgent__call {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Scroll offset (header fixe) */
section[id] {
  scroll-margin-top: 108px;
}

/* Services */
.services {
  padding: 5rem 0;
  background: var(--black-soft);
}

.services h2,
.hours h2,
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.section-sub {
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.svc {
  background: var(--black-card);
  border: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.svc:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.svc__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.svc__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.svc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.svc:hover .svc__img {
  transform: scale(1.05);
}

.svc__body {
  padding: 1.15rem 1rem 1.35rem;
}

.svc h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.svc p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

/* Véhicules */
.vehicules {
  padding: 5rem 0;
  background: var(--white);
}

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

.vehicule-card {
  background: var(--black-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.vehicule-card__img {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vehicule-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.5rem;
}

.vehicule-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.vehicule-card--empty {
  max-width: 400px;
  margin-inline: auto;
}

.vehicule-card__photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: var(--black-soft);
}

.vehicule-card__photo--garage {
  object-position: center 40%;
}

.vehicule-card__photo--placeholder {
  display: grid;
  place-items: center;
  font-size: 3rem;
}

.vehicule-card__meta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.vehicule-card__price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--yellow) !important;
  margin-bottom: 0.5rem !important;
}

.vehicule-card__desc {
  font-size: 0.9rem !important;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Calaminage */
.calaminage {
  padding: 5rem 0;
  background: var(--black-soft);
  border-block: 2px solid var(--border);
}

.calaminage__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.calaminage__text p {
  color: var(--gray);
  margin-bottom: 1rem;
}

.calaminage__list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
}

.calaminage__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-weight: 500;
}

.calaminage__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 800;
}

.calaminage__badge {
  background: linear-gradient(145deg, var(--yellow) 0%, #e6b800 100%);
  color: var(--black);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.calaminage__badge span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.calaminage__badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0.25rem 0 0.75rem;
}

.calaminage__badge p {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Hours */
.hours {
  padding: 4rem 0;
}

.hours__box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  background: var(--black-card);
  border: 2px solid var(--yellow);
  border-radius: 12px;
  padding: 2.5rem;
}

.hours__hint {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.hours__list {
  list-style: none;
}

.hours__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.hours__list--split li {
  display: grid;
  grid-template-columns: minmax(4.5rem, 1.1fr) 1fr 1fr;
  gap: 0.35rem 0.5rem;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.88rem;
}

.hours__list--split .hours__list-header {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray);
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.45rem;
}

.hours__list--split .hours__day {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.hours__list .muted {
  color: var(--gray);
}

.hours__phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--black-soft);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
}

.hours__phone p {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.hours__phone a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--yellow);
  text-decoration: none;
}

.hours__phone a:hover {
  color: var(--yellow-bright);
}

/* Contact */
.contact {
  padding: 5rem 0;
  background: var(--black-soft);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.contact__logo-img {
  width: min(200px, 100%);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 1.5rem;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0;
}

.contact__form-wrap {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact__form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.35rem;
}

.contact__form-lead {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-form__success {
  padding: 0.75rem 1rem;
  background: #dcfce7;
  color: #15803d;
  border-radius: 8px;
  font-size: 0.9rem;
  margin: 0;
}

.form-error {
  color: #b91c1c;
  font-size: 0.85rem;
  margin: 0;
}

.form-error.is-hidden,
.contact-form__success.is-hidden {
  display: none;
}

.contact-form .btn--call {
  width: 100%;
  margin-top: 0.25rem;
}

.contact address {
  font-style: normal;
  color: var(--gray);
  line-height: 1.8;
  margin: 1rem 0 1.25rem;
}

.contact address strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.contact__tel {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--yellow);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.contact__hours {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact__hours h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.35rem;
}

.contact__hours .hours__hint {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.contact__hours .hours__list {
  list-style: none;
}

.contact__hours .hours__list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.contact__hours .muted {
  color: var(--gray);
}

.contact__map {
  min-height: 300px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
}

.contact__map iframe {
  min-height: 300px;
  display: block;
}

/* Site footer */
.site-footer {
  --footer-accent: var(--yellow);
  background: #0a0a0a;
  color: #fff;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1.2fr;
  gap: 2.5rem 2rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1rem;
}

.site-footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 1.25rem;
}

.site-footer__logo-img {
  width: min(220px, 100%);
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.site-footer__col { text-align: center; }

.site-footer__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.site-footer__title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--footer-accent);
  margin: 0.5rem auto 1.25rem;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__link {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__link:hover,
.site-footer__link.is-active { color: var(--footer-accent); }

.site-footer__coords {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__coords p { margin: 0 0 0.65rem; }
.site-footer__coords a { color: #fff; text-decoration: none; }
.site-footer__coords a:hover { color: var(--footer-accent); }

.site-footer__social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.site-footer__social a {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.site-footer__social a:hover {
  border-color: var(--footer-accent);
  color: var(--footer-accent);
}

.site-footer__social svg { width: 1rem; height: 1rem; }

.site-footer__copy {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

/* FAB */
.fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.5);
  transition: transform 0.2s;
}

.fab:hover {
  transform: scale(1.08);
}

/* Mobile */
@media (max-width: 900px) {
  .hero-home {
    padding-top: 6.25rem;
  }

  .hero-carousel.hero {
    min-height: clamp(380px, 78vh, 560px);
  }

  .hero__content {
    padding: 1.5rem 2.5rem 3rem;
  }

  .hero__split {
    grid-template-columns: 1fr;
    padding-bottom: 2rem;
  }

  .hero__split-left {
    align-items: center;
    text-align: center;
  }

  .hero__split-left .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__hours-panel {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .hero__swipe-hint {
    display: block;
    position: absolute;
    bottom: 0.65rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    margin: 0;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    white-space: nowrap;
  }

  .hero__dots {
    bottom: 2.15rem;
  }

  .hero__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
  }

  .hero__arrow--prev {
    left: 0.4rem;
  }

  .hero__arrow--next {
    right: 0.4rem;
  }

  .hero-urgent__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.25rem 0;
  }

  .hero-urgent__call {
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .logo__img {
    width: 64px;
    height: 64px;
  }

  .logo__garage {
    font-size: 1.1rem;
  }

  .logo__brand {
    font-size: 1.15rem;
    letter-spacing: 0.04em;
  }

  .contact__logo-img {
    width: min(180px, 85vw);
  }

  .site-footer__logo-img {
    width: min(190px, 75vw);
  }

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

  .hours__box,
  .contact__grid,
  .calaminage__inner {
    grid-template-columns: 1fr;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .site-footer__brand {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .topbar-info__item--hide-sm {
    display: none;
  }

  .topbar-info__inner {
    position: relative;
    justify-content: center;
  }

  .topbar-info__social {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .header__inner {
    position: relative;
    justify-content: center;
    align-items: center;
    min-height: 76px;
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }

  .logo {
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
  }

  .header__actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .topbar__links,
  .header__phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav--mobile {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 108px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--yellow);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: center;
  }

  .nav .btn {
    margin-top: 0.5rem;
    width: 100%;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
