﻿@font-face {
  font-family: "Gambetta";
  src: url("../fonts/Gambetta-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Gambetta";
  src: url("../fonts/Gambetta-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Gambetta";
  src: url("../fonts/Gambetta-Semibold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Gambetta";
  src: url("../fonts/Gambetta-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../fonts/JetBrainsMono-wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}

:root {
  --font-display: "Gambetta", "Times New Roman", Georgia, serif;
  --font-ui: "JetBrains Mono", "Consolas", "Courier New", monospace;
  --color-black: #0b0b0c;
  --color-navy: #0b1f3b;
  --color-silver: #c0c0c0;
  --color-offwhite: #f6f7f9;
  --color-steel: #8aa6c1;

  --bg-main: radial-gradient(circle at 18% 16%, rgba(138, 166, 193, 0.08) 0%, rgba(11, 11, 12, 0) 44%), linear-gradient(170deg, #0b0b0c 0%, #0b121d 55%, #0b1f3b 100%);

  --space-2xs: clamp(0.35rem, 0.2rem + 0.3vw, 0.5rem);
  --space-xs: clamp(0.5rem, 0.3rem + 0.6vw, 0.85rem);
  --space-sm: clamp(0.8rem, 0.5rem + 0.8vw, 1.2rem);
  --space-md: clamp(1.1rem, 0.8rem + 1vw, 1.7rem);
  --space-lg: clamp(1.7rem, 1.3rem + 1.2vw, 2.5rem);
  --space-xl: clamp(2.3rem, 2rem + 2vw, 4rem);
  --space-2xl: clamp(3.2rem, 2.6rem + 2.8vw, 6rem);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;

  --blur-glass: 14px;
  --shadow-soft: 0 12px 34px rgba(5, 8, 13, 0.35);
  --shadow-strong: 0 20px 48px rgba(4, 6, 10, 0.45);
  --border-soft: 1px solid rgba(192, 192, 192, 0.22);

  --container: min(1200px, 92vw);
  --header-height: 86px;
  --ease-premium: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-ui);
  background: var(--bg-main);
  color: var(--color-offwhite);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.28s ease, color 0.28s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--color-offwhite);
  color: var(--color-black);
  padding: 0.8rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.skip-link:focus-visible {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(var(--blur-glass));
  background: linear-gradient(135deg, rgba(11, 11, 12, 0.88) 0%, rgba(11, 31, 59, 0.72) 100%);
  border-bottom: var(--border-soft);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-md);
}

.brand {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.brand-mark {
  width: 40px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: brightness(0) invert(1) contrast(1.08);
}

.brand-title {
  font-family: var(--font-ui);
  margin: 0;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.4rem);
  letter-spacing: 0.02em;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  border: var(--border-soft);
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  font-size: 0.77rem;
  color: rgba(246, 247, 249, 0.88);
  background: rgba(138, 166, 193, 0.12);
}

.site-nav {
  justify-self: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
}

.nav-link {
  padding: 0.45rem 0;
  position: relative;
  color: rgba(246, 247, 249, 0.9);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-silver) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.32s var(--ease-premium);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: var(--border-soft);
  border-radius: 999px;
  background: rgba(246, 247, 249, 0.05);
  color: var(--color-offwhite);
  cursor: pointer;
  transition: transform 0.22s var(--ease-premium), background-color 0.22s var(--ease-premium), border-color 0.22s var(--ease-premium);
}

.theme-toggle-btn:hover,
.theme-toggle-btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(246, 247, 249, 0.12);
  border-color: rgba(246, 247, 249, 0.7);
}

.theme-icon {
  width: 18px;
  height: 18px;
}

.theme-icon-sun {
  display: none;
}

html[data-theme="light"] .theme-icon-moon {
  display: none;
}

html[data-theme="light"] .theme-icon-sun {
  display: block;
}

.mobile-menu-btn {
  display: none;
  border: var(--border-soft);
  border-radius: var(--radius-sm);
  background: rgba(246, 247, 249, 0.04);
  color: var(--color-offwhite);
  padding: 0.6rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.mobile-menu-btn svg {
  width: 100%;
  height: 100%;
}

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.74rem 1.35rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s var(--ease-premium), box-shadow 0.22s var(--ease-premium), background-color 0.22s var(--ease-premium);
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: -140%;
  left: -22%;
  width: 28%;
  height: 380%;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.48) 50%, transparent 80%);
  transform: rotate(16deg);
  transition: left 0.5s var(--ease-premium);
}

.btn:hover::before,
.btn:focus-visible::before {
  left: 122%;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) scale(1.015);
}

.btn-primary {
  color: var(--color-black);
  background: linear-gradient(130deg, #f0f2f6 0%, #c0c0c0 46%, #e2e6ed 100%);
  box-shadow: 0 12px 26px rgba(138, 166, 193, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 16px 30px rgba(138, 166, 193, 0.4);
}

.btn-secondary {
  border-color: rgba(192, 192, 192, 0.48);
  color: var(--color-offwhite);
  background: rgba(246, 247, 249, 0.05);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(246, 247, 249, 0.65);
  background: rgba(246, 247, 249, 0.1);
}

.btn-tertiary {
  border-color: rgba(138, 166, 193, 0.5);
  background: rgba(11, 31, 59, 0.46);
  color: var(--color-offwhite);
}

main {
  display: block;
}

.hero {
  position: relative;
  min-height: clamp(520px, 78vh, 760px);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: clip;
  border-bottom: var(--border-soft);
}

.hero-bg {
  position: absolute;
  inset: -6% -2%;
  background-size: cover;
  background-position: center;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
}

.hero-home .hero-bg {
  background-image: url("../images/hero-accueil-sl.jpg");
}

.hero-garage .hero-bg {
  background-image: url("../images/garage-exterieur-sl.jpg");
}

.hero-services .hero-bg {
  background-image: url("../images/mecanique-diagnostic-sl.jpg");
}

.hero-prestige .hero-bg {
  background-image: url("../images/service-voiturier-sl.jpg");
}

.hero-contact .hero-bg {
  background-image: url("../images/depannage-sl.jpg");
}

.hero-home {
  align-items: center;
}

.hero-home .hero-content {
  padding: clamp(2.2rem, 3.8vh, 3.4rem) 0;
  text-align: center;
  margin: 0 auto;
}

.hero-home .hero-content p,
.hero-home .hero-mini {
  margin-left: auto;
  margin-right: auto;
}

.hero-home .hero-cta-row {
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 8, 12, 0.87) 10%, rgba(6, 10, 17, 0.6) 50%, rgba(11, 31, 59, 0.28) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--space-2xl) + 2rem) 0 var(--space-2xl);
  max-width: min(860px, 95%);
  text-align: center;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: rgba(246, 247, 249, 0.74);
  margin-bottom: var(--space-xs);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.16;
  letter-spacing: 0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(2.05rem, 1.6rem + 2.2vw, 4rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.6rem, 1.3rem + 1.5vw, 2.7rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.2rem, 1rem + 0.85vw, 1.9rem);
  font-weight: 500;
}


.hero p {
  max-width: 72ch;
  margin: var(--space-sm) 0 0;
  color: rgba(246, 247, 249, 0.88);
  font-size: clamp(1rem, 0.95rem + 0.55vw, 1.2rem);
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-row {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.hero-mini {
  margin-top: var(--space-md);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  color: rgba(192, 192, 192, 0.88);
  margin-left: auto;
  margin-right: auto;
}

.stats-strip {
  border-bottom: var(--border-soft);
  border-top: var(--border-soft);
  background: linear-gradient(100deg, rgba(246, 247, 249, 0.04) 0%, rgba(11, 31, 59, 0.34) 70%, rgba(246, 247, 249, 0.04) 100%);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-sm);
  padding: var(--space-md) 0;
}

.stat-item {
  border: var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  background: rgba(246, 247, 249, 0.04);
  box-shadow: var(--shadow-soft);
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 0.95rem + 1vw, 1.85rem);
  color: var(--color-offwhite);
  letter-spacing: 0.01em;
}

.stat-item span {
  font-family: var(--font-ui);
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(246, 247, 249, 0.77);
  font-size: 0.88rem;
}

.section {
  padding: var(--space-2xl) 0;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: 0 auto var(--space-lg);
  max-width: min(760px, 100%);
}

.section + .section .section-divider {
  margin-top: calc(var(--space-2xl) * -0.5);
}

.section-divider::before,
.section-divider::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(192, 192, 192, 0.74) 50%, transparent 100%);
  flex: 1;
}

.section-divider span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 247, 249, 0.92) 0%, rgba(138, 166, 193, 0.65) 46%, rgba(138, 166, 193, 0) 100%);
  box-shadow: 0 0 11px rgba(138, 166, 193, 0.45);
}

.section-intro {
  max-width: 80ch;
  color: rgba(246, 247, 249, 0.88);
  margin: var(--space-sm) 0 var(--space-lg);
}

.section h2 + .grid {
  margin-top: var(--space-lg);
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.glass-card,
.tilt-card {
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  background: linear-gradient(142deg, rgba(246, 247, 249, 0.085) 0%, rgba(246, 247, 249, 0.03) 100%);
  backdrop-filter: blur(calc(var(--blur-glass) - 4px));
  box-shadow: var(--shadow-soft);
  padding: var(--space-lg);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.24s var(--ease-premium), box-shadow 0.24s var(--ease-premium);
  will-change: transform;
  animation: floatCard 5.5s ease-in-out infinite;
}

.tilt-card h3,
.tilt-card p,
.tilt-card ul,
.tilt-card a,
.tilt-card strong,
.tilt-card span {
  transform: translateZ(18px);
}

.card-title {
  margin-bottom: var(--space-xs);
}

.card-text {
  margin: 0;
  color: rgba(246, 247, 249, 0.86);
}

.concierge-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

.concierge-step {
  text-align: center;
  border: 1px solid rgba(192, 192, 192, 0.3);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(148deg, rgba(246, 247, 249, 0.12) 0%, rgba(246, 247, 249, 0.035) 100%),
    radial-gradient(circle at 0% 0%, rgba(138, 166, 193, 0.14), transparent 50%);
  backdrop-filter: blur(calc(var(--blur-glass) - 5px));
  box-shadow:
    0 18px 40px rgba(4, 7, 12, 0.4),
    inset 0 1px 0 rgba(246, 247, 249, 0.16);
  padding: clamp(1.4rem, 1.1rem + 1.1vw, 2rem);
  transition:
    transform 0.38s var(--ease-premium),
    box-shadow 0.38s var(--ease-premium),
    border-color 0.38s var(--ease-premium);
}

.concierge-step:hover,
.concierge-step:focus-within {
  transform: translateY(-6px);
  border-color: rgba(192, 192, 192, 0.5);
  box-shadow:
    0 24px 46px rgba(3, 6, 10, 0.52),
    0 0 28px rgba(138, 166, 193, 0.24),
    inset 0 1px 0 rgba(246, 247, 249, 0.2);
}

.concierge-step .card-title {
  margin-bottom: 0.6rem;
}

.concierge-step .card-text {
  color: rgba(246, 247, 249, 0.9);
  max-width: 30ch;
  margin-inline: auto;
}

.concierge-icon-shell {
  width: 4.2rem;
  height: 4.2rem;
  margin: 0 auto 0.95rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(192, 192, 192, 0.42);
  background: linear-gradient(145deg, #0b1f3b 0%, #0b0b0c 100%);
  box-shadow:
    0 16px 28px rgba(4, 7, 13, 0.52),
    inset 0 1px 0 rgba(246, 247, 249, 0.16);
}

.concierge-icon {
  width: 2.5rem;
  height: 2.5rem;
  fill: none;
  stroke: #f0f3f8;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal-ready .concierge-step[data-reveal] {
  transform: translate3d(0, 22px, 0);
  transition-duration: 0.85s;
}

.reveal-ready .concierge-step[data-reveal].is-visible {
  transform: translate3d(0, 0, 0);
}

.reveal-ready .concierge-steps .concierge-step[data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal-ready .concierge-steps .concierge-step[data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal-ready .concierge-step[data-reveal]:hover,
.reveal-ready .concierge-step[data-reveal]:focus-within {
  transform: translate3d(0, -6px, 0);
}

.card-icon {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin: 0 auto var(--space-sm);
  transform: translateZ(18px);
}

.card-icon svg {
  width: 2.05rem;
  height: 2.05rem;
  fill: none;
  stroke: #f6f7f9;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-icon .ph {
  display: inline-block;
  width: 2.05rem;
  height: 2.05rem;
  background-color: #f6f7f9;
}

.card-icon .ph-map-pin {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path d="M128 24C88.3 24 56 56.3 56 96c0 54.8 61.2 126.5 63.8 129.5a10 10 0 0 0 15.1 0C137.5 222.5 200 150.8 200 96c0-39.7-32.3-72-72-72Zm0 96a24 24 0 1 1 24-24a24 24 0 0 1-24 24Z" fill="black"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path d="M128 24C88.3 24 56 56.3 56 96c0 54.8 61.2 126.5 63.8 129.5a10 10 0 0 0 15.1 0C137.5 222.5 200 150.8 200 96c0-39.7-32.3-72-72-72Zm0 96a24 24 0 1 1 24-24a24 24 0 0 1-24 24Z" fill="black"/></svg>') center / contain no-repeat;
}

.card-icon .ph-wrench {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path d="M217.5 38.5a56 56 0 0 0-76.4 73.7L68.7 184.7a16 16 0 1 0 22.6 22.6l72.5-72.4a56 56 0 0 0 53.7-96.4ZM80 208a8 8 0 1 1 8-8a8 8 0 0 1-8 8Z" fill="black"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path d="M217.5 38.5a56 56 0 0 0-76.4 73.7L68.7 184.7a16 16 0 1 0 22.6 22.6l72.5-72.4a56 56 0 0 0 53.7-96.4ZM80 208a8 8 0 1 1 8-8a8 8 0 0 1-8 8Z" fill="black"/></svg>') center / contain no-repeat;
}

.card-icon .ph-car-profile {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path d="m243.7 112.9-14.4-35.9A15.9 15.9 0 0 0 214.5 64H150L127.1 41.1A16 16 0 0 0 115.8 36H64A16 16 0 0 0 48.9 46.4L21.5 112.2A16 16 0 0 0 12 126.8V184a20 20 0 0 0 20 20h12a28 28 0 0 0 56 0h56a28 28 0 0 0 56 0h12a20 20 0 0 0 20-20v-65.2a16 16 0 0 0-.3-5.9ZM72 216a12 12 0 1 1 12-12a12 12 0 0 1-12 12Zm112 0a12 12 0 1 1 12-12a12 12 0 0 1-12 12Zm44-32a4 4 0 0 1-4 4h-12a28 28 0 0 0-56 0h-56a28 28 0 0 0-56 0H32a4 4 0 0 1-4-4v-57.2L55.3 60H112l22.9 22.9A16 16 0 0 0 146.2 88h65.8L228 128.1Z" fill="black"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path d="m243.7 112.9-14.4-35.9A15.9 15.9 0 0 0 214.5 64H150L127.1 41.1A16 16 0 0 0 115.8 36H64A16 16 0 0 0 48.9 46.4L21.5 112.2A16 16 0 0 0 12 126.8V184a20 20 0 0 0 20 20h12a28 28 0 0 0 56 0h56a28 28 0 0 0 56 0h12a20 20 0 0 0 20-20v-65.2a16 16 0 0 0-.3-5.9ZM72 216a12 12 0 1 1 12-12a12 12 0 0 1-12 12Zm112 0a12 12 0 1 1 12-12a12 12 0 0 1-12 12Zm44-32a4 4 0 0 1-4 4h-12a28 28 0 0 0-56 0h-56a28 28 0 0 0-56 0H32a4 4 0 0 1-4-4v-57.2L55.3 60H112l22.9 22.9A16 16 0 0 0 146.2 88h65.8L228 128.1Z" fill="black"/></svg>') center / contain no-repeat;
}

.card-icon .ph-car {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path d="M240 112h-13.8L201.9 61.4A16 16 0 0 0 187.5 52H68.5a16 16 0 0 0-14.4 9.4L29.8 112H16a8 8 0 0 0-8 8v52a20 20 0 0 0 20 20h8a28 28 0 0 0 56 0h72a28 28 0 0 0 56 0h8a20 20 0 0 0 20-20v-52a8 8 0 0 0-8-8ZM68.5 68h119l20.5 44h-160ZM64 208a12 12 0 1 1 12-12a12 12 0 0 1-12 12Zm128 0a12 12 0 1 1 12-12a12 12 0 0 1-12 12Z" fill="black"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256"><path d="M240 112h-13.8L201.9 61.4A16 16 0 0 0 187.5 52H68.5a16 16 0 0 0-14.4 9.4L29.8 112H16a8 8 0 0 0-8 8v52a20 20 0 0 0 20 20h8a28 28 0 0 0 56 0h72a28 28 0 0 0 56 0h8a20 20 0 0 0 20-20v-52a8 8 0 0 0-8-8ZM68.5 68h119l20.5 44h-160ZM64 208a12 12 0 1 1 12-12a12 12 0 0 1-12 12Zm128 0a12 12 0 1 1 12-12a12 12 0 0 1-12 12Z" fill="black"/></svg>') center / contain no-repeat;
}

.cta-block {
  margin-top: 1rem;
}

.cta-block-lg {
  margin-top: 1.2rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-sm);
}

.service-list li {
  position: relative;
  padding-left: 1.2rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--color-silver), var(--color-steel));
}

.img-frame {
  border-radius: var(--radius-md);
  border: 1px solid rgba(192, 192, 192, 0.4);
  box-shadow: 0 0 0 1px rgba(246, 247, 249, 0.06) inset, 0 12px 30px rgba(6, 8, 13, 0.42), 0 0 24px rgba(138, 166, 193, 0.2);
  overflow: hidden;
}

.service-tile {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: var(--border-soft);
  background: rgba(246, 247, 249, 0.03);
  box-shadow: var(--shadow-soft);
}

.service-tile img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.4s var(--ease-premium);
}

.service-tile:hover img,
.service-tile:focus-within img {
  transform: scale(1.08);
}

.service-tile .content {
  padding: var(--space-md);
}

.premium-push {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.premium-push .glass-card {
  max-width: min(820px, 100%);
  margin: 0 auto;
}

.premium-push p {
  margin: var(--space-sm) auto;
  max-width: 68ch;
}

.footer {
  border-top: var(--border-soft);
  background: linear-gradient(140deg, rgba(3, 13, 32, 0.96) 0%, rgba(4, 18, 43, 0.96) 100%);
  padding: var(--space-xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-lg);
  color: rgba(246, 247, 249, 0.84);
}

.footer-col p {
  margin: 0;
  line-height: 1.6;
}

.footer-col p + p {
  margin-top: 0.65rem;
}

.footer-title {
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 1rem;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  border-radius: 999px;
  background: #e84557;
  margin-top: 0.45rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  color: rgba(246, 247, 249, 0.84);
}

.footer-links a::before {
  content: "→ ";
  color: rgba(246, 247, 249, 0.72);
}

.footer-phone {
  font-size: 1.35rem;
  font-weight: 700;
  color: #f6f7f9;
}

.footer-bottom {
  margin-top: var(--space-lg);
  border-top: 1px solid rgba(192, 192, 192, 0.2);
  padding: var(--space-sm) 0;
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: rgba(246, 247, 249, 0.66);
  font-size: 0.9rem;
}

.mobile-call-item {
  display: none;
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  filter: blur(3px);
  transition: opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium), filter 0.7s var(--ease-premium);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.stepper {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
}

.stepper li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-sm);
  align-items: start;
  border: var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  background: rgba(246, 247, 249, 0.03);
}

.stepper li::before {
  content: counter(step);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: var(--color-black);
  font-weight: 700;
  background: linear-gradient(140deg, #e2e6ed, #b9bfca);
}

.stepper p {
  margin: 0.2rem 0 0;
}

.faq-item {
  border: var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(246, 247, 249, 0.03);
}

.faq-item summary {
  cursor: pointer;
  padding: var(--space-sm) var(--space-md);
  font-weight: 600;
}

.faq-item p {
  margin: 0;
  padding: 0 var(--space-md) var(--space-md);
  color: rgba(246, 247, 249, 0.85);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-lg);
}

.form-grid {
  display: grid;
  gap: var(--space-sm);
}

label {
  display: grid;
  gap: 0.42rem;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(192, 192, 192, 0.46);
  border-radius: var(--radius-sm);
  background: rgba(11, 11, 12, 0.72);
  color: var(--color-offwhite);
  padding: 0.76rem 0.88rem;
  font: inherit;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.theme-toggle-btn:focus-visible,
.mobile-menu-btn:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid rgba(138, 166, 193, 0.95);
  outline-offset: 2px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.field-note {
  color: rgba(246, 247, 249, 0.72);
  font-size: 0.83rem;
}

.error-msg {
  color: #ffd0d0;
  font-size: 0.79rem;
  min-height: 1em;
}

.input-invalid {
  border-color: #f49f9f;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.toast {
  position: fixed;
  right: var(--space-md);
  bottom: var(--space-md);
  max-width: min(92vw, 390px);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(15, 23, 32, 0.95);
  border: 1px solid rgba(192, 192, 192, 0.45);
  box-shadow: var(--shadow-strong);
  transform: translate3d(0, 26px, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 120;
}

.toast.show {
  transform: none;
  opacity: 1;
}

.floating-whatsapp {
  position: fixed;
  left: clamp(0.9rem, 1.6vw, 1.4rem);
  bottom: clamp(0.9rem, 1.8vw, 1.5rem);
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(140deg, #25d366 0%, #1fab53 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  z-index: 150;
  transition: transform 0.2s var(--ease-premium), box-shadow 0.2s var(--ease-premium), filter 0.2s var(--ease-premium);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.06);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5), 0 0 22px rgba(37, 211, 102, 0.46);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.hide-on-js {
  display: none;
}

.no-js .hide-on-js {
  display: block;
}

.no-js .js-only {
  display: none;
}

html[data-theme="light"] body {
  --bg-main: radial-gradient(circle at 18% 16%, rgba(70, 98, 132, 0.13) 0%, rgba(255, 255, 255, 0) 45%), linear-gradient(170deg, #f5f7fb 0%, #e9eef6 55%, #dde7f5 100%);
  --color-offwhite: #162132;
  --color-black: #f7f9fc;
  --border-soft: 1px solid rgba(22, 33, 50, 0.17);
  --shadow-soft: 0 12px 28px rgba(27, 46, 74, 0.13);
  --shadow-strong: 0 18px 44px rgba(27, 46, 74, 0.18);
}

html[data-theme="light"] .site-header {
  background: linear-gradient(135deg, rgba(245, 248, 252, 0.92) 0%, rgba(225, 233, 246, 0.9) 100%);
}

html[data-theme="light"] .brand-mark {
  filter: none;
}

html[data-theme="light"] .nav-link,
html[data-theme="light"] .eyebrow,
html[data-theme="light"] .hero p,
html[data-theme="light"] .hero-mini,
html[data-theme="light"] .section-intro,
html[data-theme="light"] .card-text,
html[data-theme="light"] .field-note,
html[data-theme="light"] .footer-inner,
html[data-theme="light"] .stat-item span,
html[data-theme="light"] .faq-item p,
html[data-theme="light"] .brand-badge {
  color: rgba(22, 33, 50, 0.85);
}

html[data-theme="light"] .hero::before {
  background: linear-gradient(120deg, rgba(244, 248, 255, 0.86) 10%, rgba(237, 243, 252, 0.72) 50%, rgba(220, 232, 250, 0.58) 100%);
}

html[data-theme="light"] .stats-strip {
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.62) 0%, rgba(224, 234, 247, 0.62) 70%, rgba(255, 255, 255, 0.62) 100%);
}

html[data-theme="light"] .glass-card,
html[data-theme="light"] .tilt-card,
html[data-theme="light"] .stat-item,
html[data-theme="light"] .service-tile,
html[data-theme="light"] .stepper li,
html[data-theme="light"] .faq-item,
html[data-theme="light"] .btn-secondary,
html[data-theme="light"] .btn-tertiary,
html[data-theme="light"] .theme-toggle-btn {
  background: linear-gradient(142deg, rgba(255, 255, 255, 0.86) 0%, rgba(241, 246, 252, 0.82) 100%);
  color: #162132;
}

html[data-theme="light"] .btn-secondary,
html[data-theme="light"] .btn-tertiary {
  border-color: rgba(22, 33, 50, 0.28);
}

html[data-theme="light"] .brand-badge {
  background: rgba(46, 70, 116, 0.12);
  border-color: rgba(22, 33, 50, 0.2);
}

html[data-theme="light"] .btn-primary {
  color: #f5f8fd;
  background: linear-gradient(130deg, #2e4674 0%, #20345b 56%, #2e4674 100%);
  box-shadow: 0 12px 26px rgba(44, 67, 106, 0.35);
}

html[data-theme="light"] .service-list li::before,
html[data-theme="light"] .section-divider::before,
html[data-theme="light"] .section-divider::after,
html[data-theme="light"] .nav-link::after {
  background: linear-gradient(90deg, transparent 0%, rgba(32, 52, 91, 0.6) 50%, transparent 100%);
}

html[data-theme="light"] .concierge-step {
  border-color: rgba(22, 33, 50, 0.19);
  background:
    linear-gradient(148deg, rgba(255, 255, 255, 0.94) 0%, rgba(241, 246, 252, 0.84) 100%),
    radial-gradient(circle at 0% 0%, rgba(46, 70, 116, 0.08), transparent 50%);
  box-shadow:
    0 16px 34px rgba(27, 46, 74, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

html[data-theme="light"] .concierge-step:hover,
html[data-theme="light"] .concierge-step:focus-within {
  border-color: rgba(22, 33, 50, 0.3);
  box-shadow:
    0 22px 40px rgba(27, 46, 74, 0.2),
    0 0 26px rgba(46, 70, 116, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

html[data-theme="light"] .concierge-step .card-text {
  color: rgba(22, 33, 50, 0.88);
}

html[data-theme="light"] .concierge-icon-shell {
  border-color: rgba(22, 33, 50, 0.2);
  box-shadow:
    0 12px 24px rgba(27, 46, 74, 0.2),
    inset 0 1px 0 rgba(246, 247, 249, 0.24);
}

html[data-theme="light"] .card-icon {
  background: transparent;
  border: 0;
  box-shadow: none;
}

html[data-theme="light"] .card-icon svg {
  stroke: #0b1f3b;
}

html[data-theme="light"] .card-icon .ph {
  background-color: #0b1f3b;
}

html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea {
  background: rgba(255, 255, 255, 0.93);
  color: #162132;
  border-color: rgba(22, 33, 50, 0.24);
}

html[data-theme="light"] .footer {
  background: linear-gradient(140deg, rgba(232, 240, 250, 0.96) 0%, rgba(224, 234, 247, 0.96) 100%);
}

html[data-theme="light"] .footer-grid,
html[data-theme="light"] .footer-col p,
html[data-theme="light"] .footer-links a,
html[data-theme="light"] .footer-bottom p,
html[data-theme="light"] .footer-title,
html[data-theme="light"] .footer-phone,
html[data-theme="light"] .footer-links a::before {
  color: rgba(22, 33, 50, 0.94);
}

html[data-theme="light"] .toast {
  background: rgba(247, 251, 255, 0.98);
  color: #162132;
  border-color: rgba(22, 33, 50, 0.22);
}

html[data-theme="light"] .floating-whatsapp {
  box-shadow: 0 12px 28px rgba(27, 46, 74, 0.26), 0 0 0 1px rgba(255, 255, 255, 0.54) inset;
}

html[data-theme="light"] .error-msg {
  color: #9d2f2f;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: none;
    margin: 0;
    background: rgba(6, 10, 16, 0.97);
    border-bottom: var(--border-soft);
    padding: var(--space-md) var(--space-md) var(--space-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .mobile-menu-btn {
    display: inline-flex;
  }

  .header-ctas {
    justify-self: end;
  }

  .header-cta-link {
    display: none;
  }

  .mobile-call-item {
    display: block;
    margin-top: 0.4rem;
  }

  .mobile-call-item .btn {
    width: 100%;
  }

  html[data-theme="light"] .site-nav {
    background: rgba(247, 250, 255, 0.98);
    border-bottom: 1px solid rgba(22, 33, 50, 0.16);
  }

  html[data-theme="light"] .mobile-menu-btn {
    background: rgba(246, 249, 255, 0.92);
    color: rgba(22, 33, 50, 0.9);
    border-color: rgba(22, 33, 50, 0.2);
  }

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

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

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

@media (max-width: 760px) {
  .hero {
    min-height: 500px;
  }

  .concierge-steps {
    grid-template-columns: 1fr;
  }

  .grid.cols-3,
  .grid.cols-2,
  .grid.cols-4,
  .stats-inner {
    grid-template-columns: 1fr;
  }

  .hero-cta-row {
    align-items: stretch;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .tilt-card,
  .hero-bg,
  .btn {
    transform: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

