/* ── RESET & ROOT ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #080808;
  --dark:   #0f0f0f;
  --card:   #141414;
  --cyan:   #00c8d4;
  --white:  #ffffff;
  --gray:   #777777;
  --border: rgba(255,255,255,0.09);
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ── HELPERS ───────────────────────────────────────── */
.label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.heading-xl {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.heading-xl em { font-style: italic; font-weight: 300; }

.body-text {
  font-size: 0.83rem;
  line-height: 1.85;
  color: var(--gray);
  margin-bottom: 1rem;
}

/* ── BUTTONS ───────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { opacity: 0.82; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--white); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--cyan);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  margin-bottom: 2.5rem;
}
.btn-outline:hover,
.btn-outline:active { background: var(--cyan); border-color: var(--cyan); color: #0a0a0a; }

.btn-submit {
  display: block;
  width: 100%;
  background: var(--cyan);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1.1rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
}
.btn-submit:hover { opacity: 0.82; }

/* ── NAV ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  height: 100px;
  overflow: visible;
  background: transparent;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(14px);
}

.nav__logo img {
  height: 200px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  transition: opacity 0.3s;
}
.nav__logo:hover img {
  opacity: 0.82;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav__menu a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.nav__menu a:hover { opacity: 0.65; }

.nav__cta {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  background: transparent;
  border: 1px solid var(--cyan);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.nav__cta:hover,
.nav__cta:active { background: var(--cyan); border-color: var(--cyan); color: #0a0a0a; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: opacity 0.2s;
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: flex-start;
  padding-top: calc(200px + 3rem);
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(0,0,0,0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 6vw;
  max-width: 900px;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.15rem, 7.7vw, 7.7rem);
  font-weight: 400;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
}
.hero__title em { font-style: italic; font-weight: 300; }

.hero__sub {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 2.2rem;
}

.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero__scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.45);
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: var(--cyan);
  opacity: 0.55;
}

/* ── MARQUEE ───────────────────────────────────────── */
.marquee-wrap {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 1.2rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  padding: 0 1.5rem;
}

.marquee-track .dot {
  color: var(--cyan);
  font-style: normal;
  padding: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ─────────────────────────────────────────── */
.about {
  background: var(--dark);
  padding: 8rem 6vw;
}
.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.stat {
  padding: 1.8rem 2rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.stat:last-child { border-right: none; }

.stat__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--cyan);
  line-height: 1;
}
.stat__num small { font-size: 1.1rem; }
.stat__label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

.about__photo {
  position: relative;
  overflow: hidden;
}
.about__photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  animation: kenburns 18s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}

@keyframes kenburns {
  0%   { transform: scale(1.08) translate(-2%, 1%); }
  25%  { transform: scale(1.12) translate(1%, -2%); }
  50%  { transform: scale(1.06) translate(2%, 2%); }
  75%  { transform: scale(1.1)  translate(-1%, -1%); }
  100% { transform: scale(1.08) translate(0%, 1%); }
}
.about__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.72);
  padding: 1.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.caption-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
}
.caption-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
}

/* ── SERVICES ──────────────────────────────────────── */
.services {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 8rem 6vw;
}
.services__header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.services__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.service-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.service-card__photo {
  height: 210px;
  background-size: 110%;
  background-position: center;
  filter: brightness(0.65);
  transition: filter 0.45s;
  animation: kenburns-svc 20s ease-in-out infinite alternate;
  will-change: transform, background-position;
}
.service-card:hover .service-card__photo { filter: brightness(0.88); }

@keyframes kenburns-svc {
  0%   { transform: scale(1.0)  translate(0%,   0%); }
  25%  { transform: scale(1.06) translate(-2%,  1%); }
  50%  { transform: scale(1.04) translate(1%,  -2%); }
  75%  { transform: scale(1.08) translate(2%,   1%); }
  100% { transform: scale(1.05) translate(-1%, -1%); }
}

.service-card__body { padding: 2rem 2rem 2.5rem; }

.service-num {
  display: block;
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
}
.service-icon {
  color: var(--cyan);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  display: block;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.8rem;
  line-height: 1.75;
  color: var(--gray);
}

/* ── BRANDS ────────────────────────────────────────── */
.brands {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 8rem 6vw;
}
.brands__header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}
.brands__sub {
  font-size: 0.83rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.brands__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 1.5rem;
  border: none;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.brand-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -80%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.12) 50%,
    transparent 100%
  );
  transform: skewX(-15deg);
  transition: left 0s;
  pointer-events: none;
}
.brand-item:hover::after {
  left: 160%;
  transition: left 0.65s ease;
}
.brand-item:hover { background: rgba(255,255,255,0.03); }

.brand-item img {
  height: 125px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s, transform 0.3s;
}
.brand-item:hover img {
  opacity: 1;
  transform: scale(1.08);
}

.brand-item em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
}

/* ── GALLERY ───────────────────────────────────────── */
.gallery {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 8rem 6vw;
}
.gallery__header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.gallery__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 280px 300px 280px;
  gap: 6px;
  grid-template-areas:
    "i1 i1 i2"
    "i3 i4 i4"
    "i5 i5 i6"
    "i7 i8 i8";
}
.gallery__item { overflow: hidden; }
.gallery__item:nth-child(1) { grid-area: i1; }
.gallery__item:nth-child(2) { grid-area: i2; }
.gallery__item:nth-child(2) img { object-position: center center; }
.gallery__item:nth-child(3) { grid-area: i3; }
.gallery__item:nth-child(3) video { transform: scale(1.4); }
.gallery__item:nth-child(4) { grid-area: i4; }
.gallery__item:nth-child(5) { grid-area: i5; }
.gallery__item:nth-child(6) { grid-area: i6; }
.gallery__item:nth-child(7) { grid-area: i7; }
.gallery__item:nth-child(8) { grid-area: i8; }
.gallery__item img,
.gallery__item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.gallery__item:hover img,
.gallery__item:hover video { transform: scale(1.06); }

/* ── CONTACT ───────────────────────────────────────── */
.contact {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 8rem 6vw;
}
.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.contact__inner--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.contact__header {
  text-align: center;
  max-width: 640px;
}
.contact__inner--centered .contact__right {
  width: 100%;
  max-width: 780px;
}

.contact__sep {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.6rem;
}
.contact__detail i {
  color: var(--cyan);
  font-size: 0.88rem;
  margin-top: 0.18rem;
  width: 16px;
  flex-shrink: 0;
}
.detail-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.contact__detail a,
.contact__detail span {
  font-size: 0.83rem;
  color: var(--white);
  line-height: 1.65;
}
.contact__detail a:hover { color: var(--cyan); }

/* FORM */
.contact__form {
  background: var(--card);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.83rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--cyan); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.form-group textarea { resize: vertical; }

.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.83rem;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.select-wrap select:focus { border-color: var(--cyan); }
.select-wrap select option { background: var(--card); }
.select-wrap i {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 0.7rem;
  pointer-events: none;
}

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 6vw 3rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__logo {
  height: 112px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  margin-bottom: 1.2rem;
}
.footer__brand p {
  font-size: 0.77rem;
  line-height: 1.85;
  color: var(--gray);
  max-width: 240px;
}

.footer__col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.footer__col a,
.footer__col span {
  display: block;
  font-size: 0.77rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 6vw;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  font-size: 0.72rem;
  color: var(--gray);
}
.footer__social {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.footer__social a {
  color: var(--gray);
  font-size: 1.05rem;
  transition: color 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
}
.footer__social a:hover {
  color: var(--cyan);
  transform: translateY(-2px);
}
.footer__social-col {
  display: flex;
  flex-direction: row;
  gap: 1.4rem;
  align-items: center;
  margin-top: 0.3rem;
}
.footer__social-col a {
  color: var(--cyan);
  font-size: 1.55rem;
  transition: color 0.25s, transform 0.25s;
  display: flex;
  align-items: center;
}
.footer__social-col a:hover {
  color: var(--white);
  transform: translateY(-3px);
}

/* ── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── RESPONSIVE ────────────────────────────────────── */
/* ── TABLET ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about__inner        { grid-template-columns: 1fr; gap: 3rem; }
  .about__photo img    { height: 380px; }
  .services__grid      { grid-template-columns: repeat(2, 1fr); }
  .brands__grid        { grid-template-columns: repeat(4, 1fr); }
  .contact__inner      { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner       { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ── MOBILE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  /* NAV */
  .nav { padding: 0 1.2rem; height: 72px; }
  .nav__logo img { height: 120px; }
  .hero { padding-top: calc(120px + 2rem); }
  .nav__menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    padding: 2rem 1.5rem 3rem;
    gap: 1.6rem;
    border-bottom: 1px solid var(--border);
    z-index: 199;
  }
  .nav__menu.open { display: flex; }
  .nav__toggle    { display: flex; }
  .nav__cta       { display: none; }

  /* HERO */
  .hero__title { font-size: clamp(2.4rem, 10vw, 4.5rem); line-height: 1; }
  .hero__btns  { flex-direction: column; gap: 0.75rem; }
  .hero__btns a { text-align: center; }

  /* SECTIONS padding */
  .about, .services, .brands, .gallery, .contact { padding: 5rem 5vw; }

  /* ABOUT */
  .about__inner        { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__photo img    { height: 280px; }
  .stats-grid          { grid-template-columns: repeat(3, 1fr); }
  .stat                { padding: 1.2rem 1rem; }
  .stat__num           { font-size: 1.8rem; }

  /* SERVICES */
  .services__grid      { grid-template-columns: 1fr; }
  .service-card__photo { height: 180px; }
  .service-card__body  { padding: 1.5rem; }

  /* BRANDS */
  .brands__grid        { grid-template-columns: repeat(3, 1fr); }
  .brand-item          { padding: 2rem 1rem; }
  .brand-item img      { height: 94px; }

  /* GALLERY */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 260px 220px 260px 220px;
    grid-template-areas:
      "i1 i1"
      "i2 i3"
      "i4 i4"
      "i5 i6"
      "i7 i7"
      "i8 i8";
  }

  /* CONTACT FORM */
  .contact__form       { padding: 1.5rem; }
  .form-row            { grid-template-columns: 1fr; }

  /* FOOTER */
  .footer__inner       { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 5vw 2rem; }
  .footer__brand       { grid-column: 1 / -1; }
  .footer__brand p     { max-width: 100%; }
  .footer__bottom      { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem 5vw; }
  .footer__social      { justify-content: center; }
}

/* ── SMALL MOBILE ───────────────────────────────────── */
@media (max-width: 480px) {
  /* NAV */
  .nav__logo img { height: 90px; }
  .hero { padding-top: calc(90px + 1.5rem); }

  /* HERO */
  .hero__title { font-size: clamp(2rem, 11vw, 3rem); }
  .hero__sub   { font-size: 0.6rem; letter-spacing: 0.15em; }

  /* SECTIONS padding */
  .about, .services, .brands, .gallery, .contact { padding: 4rem 4vw; }

  /* ABOUT stats */
  .stats-grid   { grid-template-columns: repeat(3, 1fr); }
  .stat         { padding: 1rem 0.6rem; }
  .stat__num    { font-size: 1.5rem; }
  .stat__label  { font-size: 0.52rem; letter-spacing: 0.12em; }

  /* BRANDS */
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .brand-item   { padding: 1.5rem 0.75rem; }
  .brand-item img { height: 78px; }

  /* GALLERY */
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 240px);
    grid-template-areas: "i1" "i2" "i3" "i4" "i5" "i6" "i7" "i8" "i9";
  }

  /* CONTACT FORM */
  .contact__form { padding: 1.2rem; }

  /* FOOTER */
  .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer__social-col { gap: 1.2rem; }
  .footer__social-col a { font-size: 1.3rem; }
}

/* ── INNER PAGES ──────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 0 6vw 5rem;
  overflow: hidden;
  margin-top: 100px;
}
.page-hero__bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  animation: kenburns-hero 22s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}

@keyframes kenburns-hero {
  0%   { transform: scale(1.0)  translate(0%,    0%);   }
  25%  { transform: scale(1.08) translate(-2%,   1%);   }
  50%  { transform: scale(1.05) translate(1.5%, -1.5%); }
  75%  { transform: scale(1.1)  translate(2%,    1%);   }
  100% { transform: scale(1.06) translate(-1%,  -1%);   }
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.3) 60%, transparent 100%);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.page-hero__content .heading-xl { font-size: clamp(2.5rem, 5vw, 5rem); margin-bottom: 1rem; }

/* SERVICE DETAIL SECTIONS */
.svc-section {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 7rem 6vw;
}
.svc-section:nth-child(odd) { background: var(--black); }
.svc-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.svc-section:nth-child(even) .svc-section__inner { direction: rtl; }
.svc-section:nth-child(even) .svc-section__content { direction: ltr; }
.svc-section__img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.4s;
  animation: kenburns-svc 18s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform;
}
.svc-section__img:hover { filter: brightness(1); }
.svc-section__inner > div:first-child,
.svc-section__inner > div:last-child { overflow: hidden; }
.svc-section__content .heading-xl { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.svc-section__content .body-text { margin-bottom: 1rem; }
.svc-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.svc-list li {
  font-size: 0.82rem;
  color: var(--gray);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}
.svc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

/* BRAND SECTIONS (euro-exotic) */
.brand-section {
  padding: 6rem 6vw;
  border-bottom: 1px solid var(--border);
}
.brand-section:nth-child(odd) { background: var(--black); }
.brand-section:nth-child(even) { background: var(--dark); }
.brand-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  align-items: start;
}
.brand-section__logo {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.9;
  mix-blend-mode: screen;
  margin-bottom: 1.5rem;
  transition: opacity 0.3s;
}
.brand-section__logo:hover { opacity: 1; }
.brand-section__models {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.model-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  transition: border-color 0.2s, color 0.2s;
}
.model-tag:hover { border-color: var(--cyan); color: var(--white); }

/* PAGE CTA SECTION */
.page-cta {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 7rem 6vw;
  text-align: center;
}
.page-cta .heading-xl { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.page-cta .body-text { max-width: 540px; margin: 0 auto 2.5rem; }

/* RESPONSIVE INNER PAGES */
@media (max-width: 768px) {
  .page-hero { margin-top: 72px; padding: 0 5vw 3rem; height: 50vh; }
  .svc-section { padding: 4rem 5vw; }
  .svc-section__inner { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr !important; }
  .svc-section__img { height: 260px; }
  .brand-section__inner { grid-template-columns: 1fr; gap: 2rem; }
  .brand-section { padding: 4rem 5vw; }
}
@media (max-width: 480px) {
  .page-hero { height: 45vh; min-height: 320px; }
  .svc-section__img { height: 200px; }
}
