/* BUGATTI-inspired luxury landing page */

:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --text: #f5f5f5;
  --text-muted: rgba(245, 245, 245, 0.55);
  --accent: #c41e3a;
  --border: rgba(255, 255, 255, 0.12);
  --header-h: 72px;
  --banner-h: 48px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.7s var(--ease);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.cookie-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hire banner */
.hire-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: var(--banner-h);
  padding: 0.5rem 3rem;
  background: #111;
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition), opacity var(--transition);
}

.hire-banner.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.hire-banner__label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.hire-banner__link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hire-banner__close {
  position: absolute;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
}

.hire-banner__close span {
  position: absolute;
  width: 14px;
  height: 1px;
  background: var(--text);
}

.hire-banner__close span:first-child {
  transform: rotate(45deg);
}

.hire-banner__close span:last-child {
  transform: rotate(-45deg);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-h);
  padding: 0 2rem;
  transition: top var(--transition), background var(--transition);
}

.header.is-scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  justify-self: start;
}

.header__menu-icon {
  width: 18px;
  height: 10px;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  position: relative;
}

.header__menu-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.header__logo {
  justify-self: center;
  width: auto;
  white-space: nowrap;
  color: var(--text);
  opacity: 0.9;
}

.header__logo-img {
  display: block;
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height var(--transition);
}

@media (min-width: 768px) {
  .header__logo-img {
    height: 40px;
  }
}

@media (min-width: 1024px) {
  .header__logo-img {
    height: 48px;
  }
}

.header__store {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;

}

.header__store:hover {
  color: var(--accent);
  transform: translateX(8px);
}

/* Nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: min(420px, 90vw);
  height: 100%;
  background: var(--bg);
  padding: 6rem 2.5rem 2rem;
  transform: translateX(-100%);
  transition: transform var(--transition);
}

.nav-drawer.is-open .nav-drawer__inner {
  transform: translateX(0);
}

.nav-drawer__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 32px;
  height: 32px;
}

.nav-drawer__close::before,
.nav-drawer__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--text);
}

.nav-drawer__close::before {
  transform: rotate(45deg);
}

.nav-drawer__close::after {
  transform: rotate(-45deg);
}

.nav-drawer__links {
  list-style: none;
}

.nav-drawer__links li {
  border-bottom: 1px solid var(--border);
}

.nav-drawer__links a {
  display: block;
  padding: 1.25rem 0;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.nav-drawer__links a:hover {
  opacity: 0.6;
  transform: translateX(8px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--text);
  color: var(--bg);
}

.btn--outline {
  border: 1px solid var(--text);
}

.btn--outline:hover {
  background: var(--text);
  color: var(--bg);
}

.btn--primary {
  width: 100%;
  background: var(--text);
  color: var(--bg);
  font-weight: 500;
}

.btn--primary:hover {
  background: #ddd;
}

.btn--muted {
  background: #1a1a1a;
  color: var(--text);
}

.btn--muted:hover {
  background: #2a2a2a;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + var(--banner-h) + 2rem) 2rem 4rem;
}

body.banner-hidden .hero {
  padding-top: calc(var(--header-h) + 2rem);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.hero__img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1) saturate(1.1);
  z-index: 0;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: brightness(0.7) contrast(1.1) saturate(1.1);
  opacity: 0;
  animation: fadeVideoIn 2s ease-out 1s forwards;
  z-index: 1;
}

@keyframes fadeVideoIn {
  to {
    opacity: 1;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(5, 5, 5, 0.7) 70%),
    linear-gradient(to bottom, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.9));
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.home-hero__title {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: clamp(0.65rem, 1.5vw, 0.85rem);
  letter-spacing: 0.25em;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

/* Promo strip */
.promo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 50vh;
  background: var(--bg-elevated);
}

.promo-strip__media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.promo-strip__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  filter: brightness(0.7);
}

.promo-strip__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
  gap: 2rem;
}

.promo-strip__eyebrow {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.35;
  max-width: 28ch;
}

/* Sections */
.section {
  padding: 6rem 2rem;
}

.section--dark {
  background: var(--bg);
}

.section__title {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

/* Maison grid */
.grid--maison {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1400px;
  margin: 0 auto;
}

.card {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #111;
}

.card--tall {
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.card img {
  width: 100%;
  height: 100%;
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
  filter: brightness(0.65);
}

.card:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 55%);
}

.card__overlay h3 {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.card__cta {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.card:hover .card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Models carousel */
.models-carousel {
  max-width: 1400px;
  margin: 0 auto;
}

.model-slide {
  display: none;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 70vh;
}

.model-slide.is-active {
  display: grid;
  animation: fadeIn 1s var(--ease) forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.model-slide__media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #111;
}

.model-slide__media img {
  width: 100%;
  height: 100%;
  filter: brightness(0.85);
}

.model-slide__name {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.model-slide__tagline {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.models-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.models-carousel__arrow {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}

.models-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.models-carousel__dots {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

.models-carousel__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  padding: 0;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}

.models-carousel__dots button.is-active {
  background: var(--text);
  transform: scale(1.2);
}

.models-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.models-list button {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.models-list button.is-active,
.models-list button:hover {
  color: var(--text);
  border-color: var(--text);
}

/* Showcase grid */
.showcase {
  padding: 0 0 6rem;
}

.showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.showcase__item {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  display: block;
}

.showcase__item--wide {
  grid-column: span 2;
  aspect-ratio: 21/9;
}

.showcase__item img {
  width: 100%;
  height: 100%;
  filter: brightness(0.55);
  transition: transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.showcase__item:hover img {
  transform: scale(1.04);
  filter: brightness(0.7);
}

.showcase__item h3 {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}

.showcase__item span {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  z-index: 2;
}

.showcase__item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.showcase__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 50%);
  pointer-events: none;
}

/* Feature blocks */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  align-items: stretch;
}

.feature__media {
  overflow: hidden;
  min-height: 400px;
}

.feature__media img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  filter: brightness(0.7);
}

.feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
  background: var(--bg-elevated);
}

.feature__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.feature__content p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.feature--heritage .feature__content {
  order: -1;
}

/* Live section */
.live {
  padding: 6rem 2rem;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.live h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
}

.live__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.live__item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  background: #111;
}

.live__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.live__item:hover img {
  transform: scale(1.05);
}

.live__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.live__stats {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
}

.live__stats span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.live__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  color: white;
  pointer-events: none;
}

.live__play-icon svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

@media (max-width: 1024px) {
  .live__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .live__grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  padding: 4rem 2rem 2rem;
  background: #080808;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.footer__brand,
.footer__columns,
.footer__legal,
.footer__social {
  position: relative;
  z-index: 10;
}

/* Footer watermark */
.footer__watermark {
  position: absolute;
  bottom: -2vw;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 12vw;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.footer__watermark-base {
  color: rgba(255, 255, 255, 0.04);
}

.footer__watermark-highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: rgba(255, 255, 255, 0.4);
  mask-image: radial-gradient(350px at var(--mouse-x, -100%) var(--mouse-y, -100%), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: radial-gradient(350px at var(--mouse-x, -100%) var(--mouse-y, -100%), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding-top: 2rem;
}

.footer__columns h4 {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.footer__columns ul {
  list-style: none;
}

.footer__columns li {
  margin-bottom: 0.75rem;
}

.footer__columns a {
  font-size: 0.65rem;
  color: var(--text-muted);
  transition: color 0.4s var(--ease);
}

.footer__columns a:hover {
  color: var(--text);
}

.footer__meta {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 15vw;
  /* Push content above watermark */
  font-size: 0.65rem;
  color: var(--text-muted);
}

.footer__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer__copyright {
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
}

.footer__lang {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer__lang h4 {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--text);
}

.footer__lang-links {
  display: flex;
  gap: 1rem;
}

.footer__lang-links a {
  transition: color 0.4s var(--ease);
}

.footer__lang-links a:hover {
  color: var(--text);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer__legal a {
  transition: color 0.4s var(--ease);
}

.footer__legal a:hover {
  color: var(--text);
}

.footer__social {
  display: flex;
  gap: 1.5rem;
}

.footer__social a {
  font-weight: 600;
  transition: color 0.4s var(--ease);
}

.footer__social a:hover {
  color: var(--text);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 2rem 2.5rem;
  background: #fff;
  color: #111;
  transform: translateY(0);
  transition: transform var(--transition);
}

.cookie-banner.is-hidden {
  transform: translateY(100%);
}

.cookie-banner__logo {
  width: auto;
  white-space: nowrap;
  color: #111;
}

.cookie-banner__body h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cookie-banner__body p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #444;
  max-width: 52ch;
  margin-bottom: 0.75rem;
}

.cookie-banner__body a {
  text-decoration: underline;
}

.cookie-banner__links {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
}

.cookie-banner__links a {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 200px;
}

.cookie-banner__actions .btn--primary {
  color: #fff;
  background: #111;
}

.cookie-banner__actions .btn--muted {
  background: #e8e8e8;
  color: #111;
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .grid--maison {
    grid-template-columns: 1fr;
  }

  .card--tall {
    grid-row: auto;
    aspect-ratio: 16/10;
  }

  .promo-strip,
  .feature {
    grid-template-columns: 1fr;
  }

  .model-slide {
    grid-template-columns: 1fr;
  }

  .footer__columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 0 1rem;
  }

  .showcase__grid {
    grid-template-columns: 1fr;
  }

  .showcase__item--wide {
    grid-column: auto;
    aspect-ratio: 16/11;
  }

  .feature__content {
    padding: 2.5rem 1.5rem;
  }

  .footer__columns {
    grid-template-columns: 1fr;
  }
}
/* bugatti.store Concept theme â€” motion tokens & effects */

:root {
  --animation-nav: 0.5s cubic-bezier(0.6, 0, 0.4, 1);
  --animation-primary: 0.5s cubic-bezier(0.3, 1, 0.3, 1);
  --animation-smooth: 0.7s cubic-bezier(0.7, 0, 0.3, 1);
  --animation-fast: 0.3s cubic-bezier(0.7, 0, 0.3, 1);
  --animation-short: 0.2s cubic-bezier(0.7, 0, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --animation-nav: 0.01ms;
    --animation-primary: 0.01ms;
    --animation-smooth: 0.01ms;
    --animation-fast: 0.01ms;
    --animation-short: 0.01ms;
  }

  .split-words .animate-word,
  .motion-list .product-card,
  .motion-list .look-card,
  .motion-list .cat-tile,
  .hero__slide img,
  .announcement__text {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Split-word titles (fade-up-large) */
.split-words {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28em;
}

.section__heading--center .split-words {
  justify-content: center;
}

.split-words .word {
  display: inline-block;
  overflow: hidden;
}

.split-words .animate-word {
  display: inline-block;
  will-change: transform, opacity;
}

.split-words.is-pending .animate-word {
  opacity: 0;
  transform: translateY(90%);
}

.split-words.is-visible .animate-word {
  animation: fade-up-large 1s var(--ease-out-expo) forwards;
  animation-delay: calc(var(--word-delay, 0ms) + var(--base-delay, 0ms));
}

@keyframes fade-up-large {
  from {
    opacity: 0;
    transform: translateY(90%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal blocks */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(min(2rem, 90%));
  transition: opacity 1.5s var(--ease-out-expo), transform 1.5s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-animate="fade-in"] {
  opacity: 0;
  transition: opacity 1.5s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-animate="fade-up"].is-visible,
[data-animate="fade-in"].is-visible {
  opacity: 1;
  transform: none;
}

/* Hero Ken Burns zoom-out */
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.3);
  will-change: transform;
}

.hero__slide.is-active img {
  animation: hero-zoom-out 1.3s var(--ease-out-expo) forwards;
}

.hero__slide:not(.is-active) img {
  animation: none;
  transform: scale(1.3);
}

@keyframes hero-zoom-out {
  from {
    transform: scale(1.3);
  }
  to {
    transform: scale(1);
  }
}

.hero__slide {
  transition: opacity var(--animation-smooth);
}

.hero__content .hero__title.split-words.is-pending .animate-word,
.hero__content .hero__cta-wrap.is-pending {
  opacity: 0;
}

.hero__content .hero__cta-wrap.is-pending {
  transform: translateY(1rem);
}

.hero__content .hero__cta-wrap.is-visible {
  animation: fade-up 1.5s var(--ease-out-expo) forwards;
  animation-delay: 350ms;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(min(2rem, 90%));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Flickity-style dots */
.hero__dot {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: transparent;
  transition: box-shadow var(--animation-primary);
}

.hero__dot::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--text);
  border-radius: 50%;
  transition: var(--animation-primary);
  transition-property: background-color, box-shadow;
}

.hero__dot.is-active::before {
  background-color: transparent;
  box-shadow: 0 0 0 2px var(--text);
}

/* Announcement carousel */
.announcement__track {
  position: relative;
  overflow: hidden;
  min-height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement__text {
  margin: 0;
  text-align: center;
  transition: opacity var(--animation-fast), transform var(--animation-fast);
}

.announcement__text.is-leaving {
  opacity: 0;
  transform: translateY(-0.75rem);
}

.announcement__text.is-entering {
  opacity: 0;
  transform: translateY(0.75rem);
}

.announcement__text.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Hover button fill (Concept theme) */
.hover-button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hover-button .btn-text {
  position: relative;
  z-index: 1;
  color: inherit;
}

.hover-button .btn-fill {
  display: block;
  border-radius: 50%;
  width: 150%;
  height: 200%;
  position: absolute;
  top: 0;
  left: -25%;
  transform: translate3d(0, -76%, 0);
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.6s var(--ease-out-expo);
}

.hover-button--primary .btn-fill {
  background-color: var(--color-cta-text);
}

.hover-button--secondary .btn-fill {
  background: var(--color-cta-bg);
}

.hover-button--accent .btn-fill {
  background-color: #000;
}

.hover-button:hover .btn-fill,
.hover-button:focus-visible .btn-fill {
  transform: translate3d(0, 0, 0);
}

/* Hero blur CTA */
.hero__cta.hover-button {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.hero__cta.hover-button .btn-fill {
  background-color: rgba(255, 255, 255, 0.55);
}

.hero__cta.hover-button:hover .btn-text {
  color: var(--color-cta-text);
}

/* Motion list stagger */
.motion-list .product-card,
.motion-list .look-card,
.motion-list .cat-tile {
  opacity: 0;
  transform: translateY(50px);
  visibility: hidden;
}

.motion-list.is-visible .product-card,
.motion-list.is-visible .look-card,
.motion-list.is-visible .cat-tile {
  animation: motion-item-in 0.5s var(--ease-out-expo) forwards;
  animation-delay: calc(var(--motion-index, 0) * 100ms);
  visibility: visible;
}

@media (max-width: 767px) {
  .motion-list .product-card,
  .motion-list .look-card,
  .motion-list .cat-tile {
    transform: translateY(30px);
  }

  .motion-list.is-visible .product-card,
  .motion-list.is-visible .look-card,
  .motion-list.is-visible .cat-tile {
    animation-duration: 0.3s;
    animation-delay: calc(var(--motion-index, 0) * 50ms);
  }
}

@keyframes motion-item-in {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reversed link underline */
.reversed-link {
  background: linear-gradient(to right, currentColor, currentColor) 100% calc(100% - 2px) / 0 1px no-repeat;
  transition: background-size var(--animation-primary);
  text-decoration: none;
}

.reversed-link:hover {
  background-size: 100% 1px;
  text-decoration: none;
}

/* Product card interactions */
.product-card__media img,
.look-card__media img,
.cat-tile img {
  transition: transform var(--animation-smooth);
}

.product-card:hover .product-card__media img,
.look-card:hover .look-card__media img,
.cat-tile:hover img {
  transform: scale(1.06);
}

.product-card__qv {
  transition: opacity var(--animation-fast), transform var(--animation-fast);
}

/* Drawer slide */
.mobile-drawer {
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--animation-fast), visibility var(--animation-fast);
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer__inner {
  transform: translateX(-105%);
  transition: transform var(--animation-nav);
}

.mobile-drawer.is-open .mobile-drawer__inner {
  transform: translateX(0);
}

.mobile-drawer[hidden] {
  display: block;
  pointer-events: none;
}

.mobile-drawer[hidden]:not(.is-open) {
  opacity: 0;
  visibility: hidden;
}

/* Tab hover fill */
.tabs__btn.hover-button .btn-fill {
  background: rgba(0, 75, 250, 0.15);
}

.tabs__btn.is-active.hover-button .btn-text {
  color: var(--color-accent);
}

/* Contact Page Specific Styles */

.contact-hero {
  padding: 160px 5vw 80px;
  background-color: #050505;
  color: var(--text-light, #fff);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% -20%, rgba(211, 47, 47, 0.15), transparent 60%);
  pointer-events: none;
}

.contact-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.contact-hero__subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 80px 5vw;
  background-color: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info__block h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.contact-info__block h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24px;
  height: 1px;
  background-color: var(--accent);
}

.contact-info__block p, 
.contact-info__block a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  opacity: 0.8;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.contact-info__block a:hover {
  color: var(--accent);
  opacity: 1;
}

.contact-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.contact-socials a {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}

.contact-socials a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.contact-socials a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Premium Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.section--dark .form-input {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.form-input:focus {
  border-bottom-color: var(--accent);
  box-shadow: 0 4px 10px -8px var(--accent);
}

.form-label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--text);
  opacity: 0.6;
  pointer-events: none;
  transition: transform 0.3s ease, font-size 0.3s ease, opacity 0.3s ease, color 0.3s ease;
  transform-origin: left top;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-1.5rem) scale(0.8);
  opacity: 1;
  color: var(--accent);
}

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

.form-submit {
  margin-top: 1rem;
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--text);
  color: var(--text);
  padding: 1rem 3rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.section--dark .form-submit {
  border-color: #fff;
  color: #fff;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.form-submit:hover {
  border-color: var(--accent);
  color: #fff;
}

.form-submit:hover::before {
  transform: translateY(0);
}

.promo-strip__logo { max-width: 100%; width: 250px; height: auto; object-fit: contain; margin-bottom: 1rem; filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.5)); }
