.voyqa-page-pad-top { padding-top: clamp(130px, 13vw, 190px); }

.voyqa-page-hero {
  display: grid;
  grid-template-columns: 76px minmax(0, 760px);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  padding-top: clamp(145px, 15vw, 210px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.voyqa-page-hero__number {
  display: grid;
  grid-template-rows: auto 82px auto;
  justify-items: center;
  gap: 9px;
  color: var(--voyqa-blue);
  font-size: .63rem;
  font-weight: 600;
  letter-spacing: .09em;
}

.voyqa-page-hero__number span {
  width: 1px;
  height: 100%;
  background: linear-gradient(var(--voyqa-gold), rgba(201,154,69,.15));
}

.voyqa-page-hero__title {
  max-width: 12ch;
  margin: 14px 0 20px;
  font-size: clamp(3.5rem, 7.1vw, 7.8rem);
  line-height: .82;
  text-transform: uppercase;
}

.voyqa-page-hero__title em {
  color: var(--voyqa-gold);
  font-style: normal;
}

.voyqa-page-hero__desc {
  max-width: 58ch;
  color: var(--voyqa-blue-soft);
  font-size: clamp(.9rem, 1.15vw, 1.05rem);
}

.voyqa-grid-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2vw, 28px);
  padding-bottom: clamp(84px, 10vw, 150px);
}

.voyqa-content-card {
  grid-column: span 4;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(201,154,69,.46);
  border-radius: 18px;
  background: rgba(255,250,241,.72);
  box-shadow: 0 24px 58px -38px rgba(15,45,77,.52);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}

.voyqa-content-card:nth-child(5n + 1),
.voyqa-content-card:nth-child(5n + 2) { grid-column: span 6; }
.voyqa-content-card:hover { transform: translateY(-7px); box-shadow: 0 34px 72px -34px rgba(15,45,77,.48); }

.voyqa-content-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--voyqa-cloud);
}

.voyqa-content-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 -35px 45px -45px rgba(15,45,77,.55);
  pointer-events: none;
}

.voyqa-content-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s cubic-bezier(.22,1,.36,1);
}

.voyqa-content-card:hover .voyqa-content-card__media img { transform: scale(1.035); }

.voyqa-content-card__body {
  position: relative;
  min-height: 152px;
  padding: 22px 58px 25px 24px;
}

.voyqa-content-card__index {
  display: block;
  margin-bottom: 11px;
  color: var(--voyqa-gold);
  font-size: .59rem;
  font-weight: 600;
  letter-spacing: .12em;
}

.voyqa-content-card__title {
  margin-bottom: 7px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  text-transform: uppercase;
}

.voyqa-content-card__desc {
  max-width: 38ch;
  color: var(--voyqa-muted);
  font-size: .79rem;
}

.voyqa-content-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 25px;
  color: var(--voyqa-gold);
  font-size: 1.3rem;
  transition: transform .3s ease;
}
.voyqa-content-card:hover .voyqa-content-card__arrow { transform: translateX(4px); }

.voyqa-detail-page { padding-top: clamp(145px, 14vw, 200px); padding-bottom: clamp(80px, 10vw, 140px); }

.voyqa-detail-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 74px);
}

.voyqa-detail-heading h1 {
  max-width: 10ch;
  margin-top: 14px;
  font-size: clamp(3.7rem, 7.6vw, 8rem);
  line-height: .82;
  text-transform: uppercase;
}
.voyqa-detail-heading > p { max-width: 42ch; padding-bottom: 8px; color: var(--voyqa-blue-soft); }

.voyqa-detail-hero {
  --voyqa-detail-focal-x: 50%;
  --voyqa-detail-focal-y: 50%;
  margin: 0 0 clamp(55px, 7vw, 92px);
}

.voyqa-detail-hero__media {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  border: 1px solid rgba(201,154,69,.5);
  border-radius: 22px;
  background: var(--voyqa-cloud);
  box-shadow: 0 28px 70px -45px rgba(15,45,77,.68);
}

.voyqa-detail-hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.voyqa-detail-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--voyqa-detail-focal-x) var(--voyqa-detail-focal-y);
}

/* The fallback SUV photograph places the vehicle low in the frame. Keeping
   a lower focal point avoids showing mostly sky/trees on narrow screens. */
.voyqa-detail-hero--auto-di-lusso {
  --voyqa-detail-focal-y: 72%;
}

.voyqa-detail-hero figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 8px 0;
  color: var(--voyqa-muted);
  font-size: .61rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.voyqa-detail-hero figcaption strong { color: var(--voyqa-gold); font-weight: 600; }

.voyqa-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: clamp(40px, 9vw, 140px);
  align-items: start;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.voyqa-detail-body {
  max-width: 68ch;
  color: var(--voyqa-blue-soft);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.8;
}
.voyqa-detail-body p + p { margin-top: 1em; }

.voyqa-detail-aside {
  padding: 24px;
  border-top: 1px solid var(--voyqa-gold);
  border-bottom: 1px solid rgba(201,154,69,.35);
  background: rgba(255,255,255,.2);
}
.voyqa-detail-aside__label {
  display: block;
  margin-bottom: 17px;
  color: var(--voyqa-muted);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.voyqa-detail-aside .voyqa-btn { width: 100%; }

.voyqa-feature-list { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.voyqa-feature-chip {
  padding: 7px 10px;
  border: 1px solid rgba(201,154,69,.32);
  border-radius: 5px;
  background: rgba(255,250,241,.58);
  color: var(--voyqa-blue-soft);
  font-size: .68rem;
}

.voyqa-detail-gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 16px;
}
.voyqa-detail-gallery img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 1px solid rgba(201,154,69,.4);
  border-radius: 16px;
  object-fit: cover;
}

.voyqa-editorial-page { padding-top: clamp(145px, 14vw, 205px); padding-bottom: clamp(80px, 10vw, 150px); }
.voyqa-editorial-heading {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(64px, 8vw, 110px);
}
.voyqa-editorial-heading h1 {
  max-width: 12ch;
  margin-top: 14px;
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: .82;
  text-transform: uppercase;
}
.voyqa-editorial-sections { display: grid; gap: clamp(80px, 11vw, 155px); }
.voyqa-editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(38px, 8vw, 120px);
  align-items: center;
}
.voyqa-editorial-section:nth-child(even) .voyqa-editorial-section__media { order: 2; }
.voyqa-editorial-section__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(201,154,69,.45);
  border-radius: 20px;
  object-fit: cover;
}
.voyqa-editorial-section__copy h2 {
  max-width: 12ch;
  margin: 13px 0 16px;
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
  text-transform: uppercase;
}
.voyqa-editorial-section__subtitle {
  margin-bottom: 14px;
  color: var(--voyqa-gold);
  font-family: var(--voyqa-font-heading);
  font-size: 1.35rem;
}

.voyqa-contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
  padding-top: clamp(145px, 14vw, 205px);
  padding-bottom: clamp(85px, 10vw, 145px);
}
.voyqa-contact-layout__intro h1 {
  max-width: 9ch;
  margin: 14px 0 25px;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  line-height: .82;
  text-transform: uppercase;
}
.voyqa-contact-layout__intro h1 em { color: var(--voyqa-gold); font-style: normal; }
.voyqa-contact-layout__intro > p { max-width: 42ch; color: var(--voyqa-blue-soft); }
.voyqa-contact-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,154,69,.45);
}
.voyqa-contact-proof strong { display: block; color: var(--voyqa-gold); font-family: var(--voyqa-font-heading); font-size: 1.7rem; font-weight: 500; }
.voyqa-contact-proof span { display: block; color: var(--voyqa-muted); font-size: .55rem; letter-spacing: .08em; text-transform: uppercase; }

.voyqa-simple-page {
  display: grid;
  min-height: 75vh;
  place-items: center;
  padding-top: clamp(145px, 14vw, 200px);
  padding-bottom: clamp(80px, 10vw, 130px);
}
.voyqa-simple-page__card { width: min(100%, 720px); }
.voyqa-simple-page__card--centered { text-align: center; }
.voyqa-simple-page__card--centered .voyqa-eyebrow { justify-content: center; }
.voyqa-simple-page__card--centered .voyqa-btn { margin-inline: auto; }
.voyqa-consent-page__title { margin: 15px 0 18px; font-size: clamp(2.7rem, 5vw, 5rem); text-transform: uppercase; }
.voyqa-consent-page__intro { margin-bottom: 26px; color: var(--voyqa-blue-soft); }

@media (max-width: 980px) {
  .voyqa-grid-list { grid-template-columns: repeat(2, 1fr); }
  .voyqa-content-card,
  .voyqa-content-card:nth-child(5n + 1),
  .voyqa-content-card:nth-child(5n + 2) { grid-column: auto; }
  .voyqa-detail-heading,
  .voyqa-detail-layout,
  .voyqa-contact-layout { grid-template-columns: 1fr; }
  .voyqa-detail-heading { gap: 22px; }
  .voyqa-detail-heading > p { max-width: 58ch; }
  .voyqa-detail-aside { max-width: 520px; }
  .voyqa-detail-hero__media { aspect-ratio: 16 / 10; }
  .voyqa-editorial-section { grid-template-columns: 1fr; }
  .voyqa-editorial-section:nth-child(even) .voyqa-editorial-section__media { order: 0; }
}

@media (max-width: 680px) {
  .voyqa-page-hero,
  .voyqa-editorial-heading { grid-template-columns: 40px 1fr; gap: 16px; }
  .voyqa-page-hero__number { grid-template-rows: auto 54px auto; }
  .voyqa-page-hero__title { font-size: clamp(2.8rem, 14vw, 4.3rem); }
  .voyqa-grid-list { grid-template-columns: 1fr; }
  .voyqa-content-card__media { aspect-ratio: 3 / 2; }
  .voyqa-content-card__body { min-height: 132px; padding: 19px 52px 22px 20px; }
  .voyqa-detail-heading h1,
  .voyqa-contact-layout__intro h1 { font-size: clamp(3.1rem, 16vw, 4.8rem); }
  .voyqa-detail-page { padding-top: clamp(112px, 28vw, 145px); padding-bottom: 72px; }
  .voyqa-detail-heading { margin-bottom: 32px; }
  .voyqa-detail-heading h1 {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .voyqa-detail-hero { margin-bottom: 48px; }
  .voyqa-detail-hero__media {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
  .voyqa-detail-hero figcaption {
    flex-wrap: wrap;
    gap: 5px 16px;
    padding-inline: 2px;
    letter-spacing: .09em;
  }
  .voyqa-detail-layout { gap: 34px; margin-bottom: 58px; }
  .voyqa-detail-aside { width: 100%; max-width: none; padding: 20px 16px; }
  .voyqa-detail-gallery { grid-template-columns: 1fr; }
  .voyqa-detail-gallery img { min-height: 0; aspect-ratio: 4 / 3; }
  .voyqa-editorial-heading h1 { font-size: clamp(3.1rem, 15vw, 5rem); }
  .voyqa-editorial-section__media img { aspect-ratio: 1 / .82; }
  .voyqa-contact-proof { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 420px) {
  .voyqa-detail-heading h1,
  .voyqa-contact-layout__intro h1 {
    font-size: clamp(2.65rem, 14.5vw, 3.8rem);
    line-height: .86;
  }
  .voyqa-detail-heading > p { font-size: .92rem; }
  .voyqa-detail-hero__media { aspect-ratio: 5 / 4; }
  .voyqa-detail-hero figcaption { font-size: .56rem; }
  .voyqa-content-card__title { font-size: clamp(1.35rem, 8vw, 1.75rem); }
}

@media (max-width: 350px) {
  .voyqa-detail-hero__media { aspect-ratio: 1 / 1; }
  .voyqa-detail-hero figcaption { display: grid; }
  .voyqa-detail-aside .voyqa-btn {
    gap: .65rem;
    padding-inline: .85rem;
    font-size: .61rem;
    white-space: normal;
  }
}

/* Short landscape phones need a shallower visual so the service content is
   reachable without the hero consuming several full viewports. */
@media (max-height: 520px) and (orientation: landscape) {
  .voyqa-detail-page { padding-top: 96px; }
  .voyqa-detail-heading { margin-bottom: 28px; }
  .voyqa-detail-hero__media { aspect-ratio: 16 / 7; }
}
