@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap");

:root {
  --white: #ffffff;
  --paper: #f6f4ef;
  --ink: #111111;
  --graphite: #202226;
  --muted: #6d7178;
  --line: #e7e2d7;
  --steel: #87919d;
  --yellow: #ffd100;
  --yellow-deep: #d9ad00;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
  --header-height: 82px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.62);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes softTextReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
    clip-path: inset(0 0 100% 0);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes statStrongPop {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }

  60% {
    opacity: 1;
    transform: translateY(-1px) scale(1.03);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}

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

.reveal :is(.section-label, h2, p, .about-stats div) {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible :is(.section-label, h2, p, .about-stats div) {
  opacity: 1;
  transform: translateY(0);
}

.reveal.visible p:nth-of-type(2) {
  transition-delay: 0.08s;
}

.reveal.visible .about-stats div:nth-child(1) {
  transition-delay: 0.14s;
}

.reveal.visible .about-stats div:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal.visible .about-stats div:nth-child(3) {
  transition-delay: 0.26s;
}

.reveal .about-stats strong {
  opacity: 0;
  transform: translateY(10px) scale(0.92);
}

.reveal.visible .about-stats strong {
  animation: statStrongPop 0.62s var(--ease) forwards;
}

.reveal.visible .about-stats div:nth-child(1) strong {
  animation-delay: 0.22s;
}

.reveal.visible .about-stats div:nth-child(2) strong {
  animation-delay: 0.28s;
}

.reveal.visible .about-stats div:nth-child(3) strong {
  animation-delay: 0.34s;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

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

.section {
  padding: 112px 0;
  position: relative;
}

.section-soft {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 780px;
  font-family: Outfit, Inter, sans-serif;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 9vw, 7.4rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(20px, 3.2vw, 44px);
  color: var(--white);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(20px);
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.25s var(--ease);
}

.brand:hover {
  opacity: 0.85;
}

.brand img {
  width: 68px;
  height: 68px;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.24));
}

.header-michelin {
  display: grid;
  place-items: center;
  width: 126px;
  height: 32px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), filter 0.35s var(--ease);
}

.header-michelin:hover {
  transform: translateY(-1px);
  opacity: 1;
}

.header-michelin img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.78;
  transition: filter 0.35s var(--ease), opacity 0.35s var(--ease);
}

.header-hours {
  display: grid;
  gap: 2px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 680;
  line-height: 1.18;
  white-space: nowrap;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.14));
}

.site-header.is-scrolled .header-michelin,
.site-header.is-open .header-michelin {
  opacity: 1;
}

.site-header.is-scrolled .header-michelin img,
.site-header.is-open .header-michelin img {
  filter: none;
  opacity: 1;
}

.site-header.is-scrolled .header-hours,
.site-header.is-open .header-hours {
  border-left-color: rgba(17, 17, 17, 0.12);
  color: rgba(17, 17, 17, 0.62);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
  font-size: 0.84rem;
  font-weight: 650;
}

.nav-links a {
  opacity: 0.82;
  position: relative;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 760;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-social {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.site-header.is-scrolled .header-social,
.site-header.is-open .header-social {
  border-color: rgba(17, 17, 17, 0.1);
  background: rgba(17, 17, 17, 0.04);
  color: var(--ink);
}

.header-social:hover {
  transform: translateY(-2px);
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

.header-cta svg,
.btn svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.header-cta,
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
}

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

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

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

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}

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

.nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  position: relative;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

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

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}

.nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 0 0;
  background: #0d0d0f;
  isolation: isolate;
}

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

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.08);
  opacity: 0.7;
}

.hero-media video {
  pointer-events: none;
}

.hero-overlay {
  z-index: 1;
  background: linear-gradient(135deg, rgba(13, 13, 15, 0.82) 0%, rgba(13, 13, 15, 0.64) 50%, rgba(13, 13, 15, 0.44) 100%);
}

.tread-pattern {
  position: absolute;
  right: -5%;
  bottom: -10%;
  z-index: 2;
  width: 50%;
  height: 80%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255, 209, 0, 0.04) 12px, rgba(255, 209, 0, 0.04) 14px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-bottom: 64px;
}

.hero-copy {
  max-width: 680px;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.8rem, 7vw, 5.1rem);
  font-weight: 900;
  line-height: 1.05;
  animation: softTextReveal 1s var(--ease) 0.12s backwards;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-text {
  max-width: 560px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  animation: fadeInUp 1s var(--ease) 0.24s backwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
  animation: fadeInUp 1s var(--ease) 0.36s backwards;
}

.hero .btn {
  min-height: 58px;
  padding: 0 34px;
}

.trust-michelin {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 6px 0 6px 10px;
}

.trust-michelin-inline {
  flex: 0 0 auto;
  margin-left: 4px;
}

.trust-michelin > img {
  width: clamp(136px, 10.5vw, 164px);
  height: auto;
  padding: 9px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  object-fit: contain;
}

.trust-michelin span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 760;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-michelin-inline > img {
  width: clamp(116px, 8.8vw, 140px);
}

.trust-michelin-inline span {
  font-size: 0.64rem;
}

.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.about.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 760px;
  padding: clamp(88px, 8vw, 128px) 0;
  background: #f6f4ef;
}

.about.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(246, 244, 239, 0.94) 0%, rgba(246, 244, 239, 0.82) 34%, rgba(246, 244, 239, 0.42) 58%, rgba(246, 244, 239, 0.08) 100%);
  pointer-events: none;
}

.about.section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 160px;
  background: linear-gradient(0deg, var(--paper), rgba(246, 244, 239, 0));
  pointer-events: none;
}

.about-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0d0d0f;
}

.about-carousel-track {
  position: absolute;
  inset: 0;
}

.about-carousel-track picture {
  display: contents;
}

.about-carousel-track img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: normal;
  opacity: 0;
  transform: scale(1.06);
  filter: saturate(0.92) contrast(1.08);
  transition: opacity 0.9s ease, transform 1.2s ease;
}

.about-carousel-track img.is-active {
  opacity: 0.86;
  transform: scale(1);
}

.about-dots {
  display: none;
}

.about-dots button {
  width: 30px;
  height: 3px;
  padding: 0;
  border-radius: 99px;
  background: rgba(17, 17, 17, 0.22);
  transition: width 0.25s ease, background 0.25s ease;
}

.about-dots button.is-active {
  width: 54px;
  background: var(--yellow-deep);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--yellow-deep);
  font-family: Outfit, Inter, sans-serif;
  font-size: 0.84rem;
  font-weight: 760;
  text-transform: uppercase;
}

.section-label span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.about-layout {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 80px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.82fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}

.about-heading {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.about-heading h2 {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(3.4rem, 5.2vw, 6.25rem);
  font-weight: 900;
  line-height: 0.98;
  text-wrap: balance;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 590px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.about-content p {
  max-width: 620px;
  margin-bottom: 0;
  color: #555b63;
  font-size: 1rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
  padding-top: 4px;
}

.about-stats div {
  display: flex;
  min-height: 116px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 18px 14px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.about-stats div:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 173, 0, 0.28);
  background: rgba(255, 255, 255, 0.78);
}

.about-stats strong,
.about-stats em,
.about-stats span {
  display: block;
}

.about-stats strong {
  margin-bottom: 0;
  color: var(--ink);
  font-family: Outfit, Inter, sans-serif;
  font-size: clamp(1.75rem, 2.2vw, 2rem);
  font-weight: 850;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.about-stats span {
  color: var(--muted);
  max-width: 150px;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.18;
  text-transform: uppercase;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 48px;
}

.section-heading p:not(.eyebrow) {
  max-width: 610px;
  font-size: 1.04rem;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.section-heading.compact h2 {
  margin-bottom: 0;
  white-space: normal;
}

.brands .section-heading.compact {
  max-width: min(100%, 1100px);
  margin-bottom: 36px;
}

.brands .section-heading.compact h2 {
  max-width: min(100%, 20ch);
  font-size: clamp(2.5rem, 5.6vw, 4.85rem);
  line-height: 0.98;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

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

.service-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 173, 0, 0.5);
  box-shadow: var(--shadow);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--yellow);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card p {
  margin-bottom: 0;
}

.feature-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--graphite);
  box-shadow: var(--shadow);
  position: relative;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  opacity: 0.94;
}

.michelin-showcase {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  min-height: 520px;
  padding: clamp(28px, 3.5vw, 40px);
  isolation: isolate;
  border-radius: 14px;
  background:
    url("assets/michelin-premium-bg.png") center right / cover no-repeat,
    #141518;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.michelin-showcase .michelin-showcase-logo {
  aspect-ratio: auto;
  opacity: 1;
}

.michelin-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 14px;
  background:
    linear-gradient(106deg, rgba(14, 15, 18, 0.97) 0%, rgba(14, 15, 18, 0.85) 40%, rgba(14, 15, 18, 0) 65%, rgba(14, 15, 18, 0) 100%),
    radial-gradient(circle at 85% 35%, rgba(38, 96, 206, 0.30), transparent 36%),
    radial-gradient(circle at 78% 80%, rgba(255, 209, 0, 0.10), transparent 26%);
}

.michelin-showcase::after {
  display: none;
}

.michelin-showcase-logo,
.michelin-showcase-copy {
  position: relative;
  z-index: 1;
}

.michelin-showcase-logo {
  display: block;
  width: min(52%, 220px);
  max-width: 100%;
  height: auto;
  padding: 12px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.michelin-showcase-copy {
  max-width: 100%;
  margin-top: clamp(28px, 4vw, 44px);
  padding-bottom: 0;
}

.michelin-showcase span {
  display: block;
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.michelin-showcase strong {
  display: block;
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 2.6vw, 2.45rem);
  line-height: 1.06;
  text-wrap: pretty;
}

.michelin-showcase-copy p {
  max-width: 28ch;
  margin-top: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.42;
}

.feature-copy p:not(.eyebrow) {
  max-width: 590px;
  font-size: 1.05rem;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.btn-catalog {
  margin-top: 26px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.btn-catalog svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-catalog:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
}

.category-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--graphite);
  font-size: 0.85rem;
  font-weight: 760;
}

.brand-marquee {
  position: relative;
  display: flex;
  gap: 22px;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  display: flex;
  flex: 0 0 auto;
  gap: 22px;
  min-width: max-content;
  animation: marquee 36s linear infinite;
}

.brand-marquee:hover .brand-track {
  animation-play-state: paused;
}

.brand-track span {
  display: grid;
  place-items: center;
  width: 196px;
  min-height: 116px;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
}

.brand-track img {
  max-width: 146px;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.brand-track span:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.locations {
  overflow: hidden;
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(229, 226, 218, 0.9) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(0deg, rgba(209, 214, 211, 0.9) 1px, transparent 1px) 0 0 / 96px 96px,
    #d9ddd8;
}

.map-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(33deg, transparent 0 45%, rgba(255, 255, 255, 0.7) 45.3% 47.5%, transparent 47.8%),
    linear-gradient(118deg, transparent 0 36%, rgba(255, 255, 255, 0.55) 36.3% 38%, transparent 38.4%),
    linear-gradient(8deg, transparent 0 62%, rgba(255, 255, 255, 0.55) 62.3% 63.7%, transparent 64%),
    #d9ddd8;
}

.map-bg iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.86;
  filter: grayscale(1) contrast(1.02) brightness(1.08);
  transform: scale(1.08);
}

.locations::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 15, 0.78) 0%, rgba(13, 13, 15, 0.44) 42%, rgba(13, 13, 15, 0.22) 100%),
    linear-gradient(0deg, rgba(13, 13, 15, 0.54), rgba(13, 13, 15, 0.06));
  pointer-events: none;
}

.map-pin {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.18);
}

.map-pin span {
  width: 14px;
  height: 14px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
}

.map-pin-michelin {
  right: 24%;
  top: 38%;
}

.map-pin-multimarcas {
  right: 14%;
  top: 53%;
}

.locations-content {
  position: relative;
  z-index: 1;
}

.locations .section-heading h2 {
  color: var(--white);
}

.locations .section-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.locations .section-label {
  color: var(--yellow);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.location-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.location-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-family: Outfit, Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.location-card h3 {
  color: var(--ink);
  font-family: Outfit, Inter, sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 850;
}

address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 56px;
  color: var(--muted);
  font-style: normal;
}

address svg {
  min-width: 16px;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  fill: none;
  stroke: var(--yellow-deep);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.phone {
  display: inline-block;
  margin: 18px 0 8px;
  font-size: 1.15rem;
  font-weight: 850;
}

.hours {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact {
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 209, 0, 0.3), transparent 24%),
    repeating-linear-gradient(116deg, transparent 0 18px, rgba(255, 255, 255, 0.22) 19px 20px, transparent 21px 42px);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
  align-items: center;
}

.whatsapp-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--yellow);
  font-weight: 850;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 760;
}

.quote-form input,
.quote-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 0 14px;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.18);
}

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 52px;
}

.form-submit.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.form-feedback {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.form-feedback.success {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.form-feedback.error {
  background: rgba(255, 80, 80, 0.12);
  color: #ff5050;
}

.form-fallback {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
}

.form-fallback .whatsapp-link {
  color: var(--yellow);
  font-weight: 760;
}

.site-footer {
  padding-top: 96px;
  background: #0d0d0f;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-lockup {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 16px 18px;
  margin-bottom: 18px;
}

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

.footer-brand img {
  width: 64px;
  height: 64px;
  background: transparent;
  filter: none;
}

.trust-michelin-footer {
  gap: 10px;
  min-height: auto;
  padding: 0;
  align-self: center;
}

.trust-michelin-footer > img {
  width: clamp(102px, 9vw, 126px);
  padding: 8px 10px;
  border-radius: 8px;
}

.trust-michelin-footer span {
  max-width: 8ch;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.6rem;
  line-height: 1.08;
}

.footer-brand-block p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: Outfit, Inter, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

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

.site-footer p {
  margin-bottom: 8px;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.68);
}

.socials a:hover {
  background: var(--yellow);
  color: var(--ink);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.socials a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

.whatsapp-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 997;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  animation: pulse 2s infinite;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg {
  display: block;
  width: 29px;
  height: 29px;
  fill: currentColor;
}

@media (max-width: 1260px) {
  .header-hours {
    display: none;
  }

  .brand-cluster {
    gap: 12px;
  }

  .main-nav {
    gap: 20px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: var(--header-height);
  }

  .header-hours {
    display: none;
  }

  .brand img {
    width: 60px;
    height: 60px;
  }

  .header-michelin {
    width: 108px;
    height: 32px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    width: min(82vw, 360px);
    height: 100vh;
    transform: translateX(100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    padding: calc(var(--header-height) + 48px) 28px 28px;
    background: #1a1a1e;
    color: var(--white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.32);
    transition: transform 0.35s var(--ease);
  }

  .site-header.is-open .main-nav {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    font-size: 1.1rem;
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .about-layout,
  .feature-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
  }

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

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

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

  .brands .section-heading.compact h2 {
    max-width: min(100%, 18ch);
    font-size: clamp(2.35rem, 6.6vw, 4rem);
  }

  .michelin-showcase {
    padding: 24px;
  }

  .michelin-showcase-copy {
    max-width: 100%;
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 40px, 1120px);
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3.3rem);
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-cluster {
    gap: 10px;
  }

  .header-michelin {
    width: 96px;
    height: 30px;
  }

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

  .hero-overlay {
    background: linear-gradient(135deg, rgba(13, 13, 15, 0.9) 0%, rgba(13, 13, 15, 0.72) 50%, rgba(13, 13, 15, 0.45) 100%);
  }

  .hero-media video {
    opacity: 0.55;
    object-position: 66% center;
  }

  .hero-actions,
  .card-actions {
    display: grid;
    gap: 14px;
  }

  .hero .btn {
    width: 100%;
    padding: 0 22px;
  }

  .hero-content {
    padding-bottom: 24px;
  }

  .trust-michelin-inline {
    justify-content: flex-start;
    width: auto;
    min-height: auto;
    padding: 2px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .trust-michelin-inline > img {
    width: min(100%, 126px);
    padding: 8px 12px;
    border-radius: 8px;
  }

  .trust-michelin-inline span {
    font-size: 0.64rem;
    line-height: 1.08;
  }

  .about-stats div {
    min-height: 108px;
    padding: 16px 12px;
  }

  .about-stats strong {
    font-size: clamp(1.62rem, 8vw, 1.9rem);
    white-space: nowrap;
  }

  .about-stats span {
    max-width: 140px;
    font-size: 0.72rem;
  }

  .about.section {
    min-height: auto;
    padding: 0 0 86px;
  }

  .about.section::before {
    background: linear-gradient(180deg,
      rgba(246, 244, 239, 0.85) 0%,
      rgba(246, 244, 239, 0.70) 40%,
      rgba(246, 244, 239, 0.45) 100%
    );
  }

  .about.section::after {
    height: 55%;
    background: linear-gradient(
      0deg,
      var(--paper) 0%,
      var(--paper) 28%,
      rgba(246, 244, 239, 0.92) 52%,
      rgba(246, 244, 239, 0.52) 72%,
      rgba(246, 244, 239, 0) 100%
    );
  }

  .about-media {
    position: absolute;
    inset: 0;
    height: auto;
    min-height: unset;
  }

  .about-carousel-track img {
    object-position: center bottom;
  }

  .about-layout {
    gap: 0;
    padding-top: 0;
  }

  .about-heading {
    min-height: auto;
    justify-content: flex-start;
    padding-top: 32px;
  }

  .about-heading h2 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
    text-shadow:
      -1px -1px 0 #fff,
       1px -1px 0 #fff,
      -1px  1px 0 #fff,
       1px  1px 0 #fff,
       0 8px 20px rgba(255, 255, 255, 0.95);
  }

  .about-content {
    padding: 24px;
  }

  .about-dots {
    display: none;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .brands .section-heading.compact {
    margin-bottom: 28px;
  }

  .brands .section-heading.compact h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.02;
  }

  .michelin-showcase {
    padding: 22px;
  }

  .michelin-showcase-logo {
    width: min(60%, 200px);
    padding: 10px 14px;
  }

  .michelin-showcase-copy {
    max-width: 100%;
    margin-top: 22px;
  }

  .michelin-showcase span {
    margin-bottom: 10px;
    font-size: 0.68rem;
    white-space: normal;
  }

  .michelin-showcase strong {
    max-width: 100%;
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 0;
    line-height: 1.08;
  }

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

  .service-card {
    min-height: auto;
    padding: 28px 24px;
    text-align: center;
  }

  .service-card .icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }

  .service-card h3 {
    margin-bottom: 10px;
  }

  .service-card p {
    max-width: 38ch;
    margin-left: auto;
    margin-right: auto;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .location-card {
    padding: 26px;
  }

  .map-bg iframe {
    transform: scale(1.18);
  }

  .map-pin {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand-lockup {
    align-items: center;
    gap: 14px;
  }

  .trust-michelin-footer {
    gap: 8px;
  }

  .trust-michelin-footer > img {
    width: 104px;
    padding: 7px 10px;
  }

  .trust-michelin-footer span {
    max-width: none;
  }

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

  .whatsapp-fab {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }
}
