/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  background:
    linear-gradient(90deg, rgba(7, 5, 6, 0.78) 0%, rgba(7, 5, 6, 0.44) 36%, rgba(7, 5, 6, 0.12) 58%, rgba(7, 5, 6, 0.32) 100%),
    url("/images/PinkandblackHeroBG.png") center center / cover no-repeat,
    linear-gradient(135deg, #070506 0%, #14090d 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 32%, rgba(242, 196, 205, 0.18), transparent 22%),
    radial-gradient(circle at 85% 74%, rgba(217, 148, 166, 0.18), transparent 18%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 5, 6, 0.18) 0%, rgba(7, 5, 6, 0.08) 24%, rgba(7, 5, 6, 0.18) 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.18;
  pointer-events: none;
}

.hero-glow-left {
  width: 320px;
  height: 320px;
  left: -60px;
  top: 120px;
  background: rgba(242, 196, 205, 0.65);
}

.hero-glow-right {
  width: 280px;
  height: 280px;
  right: -40px;
  bottom: 40px;
  background: rgba(221, 176, 107, 0.45);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 120px 0 72px;
  overflow: hidden;
}

.hero-copy {
  max-width: 700px;
  min-width: 0;
}

.hero-logo {
  width: clamp(280px, 34vw, 460px);
  height: auto;
  margin-bottom: 20px;
}

.hero-copy h1 {
  margin: 0;
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(52px, 7vw, 98px);
  line-height: 0.9;
  color: var(--gold-soft);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.hero-line {
  display: block;
}

.hero-line + .hero-line {
  margin-top: 4px;
}

.hero-line-detailing {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.hero-script-tag {
  position: absolute;
  right: -0.02em;
  bottom: -0.50em;
  left: auto;
  font-size: clamp(58px, 7vw, 118px);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
}

.hero-text {
  max-width: 580px;
  margin: 40px 0 0;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.72;
  color: var(--text-muted);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* PHOTO SHOWCASE */
.prestige-showcase {
  position: relative;
  overflow: hidden;
  background: url("/images/mercedesinterior.png") center center / cover no-repeat;
}

.prestige-showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 5, 6, 0.88) 0%, rgba(7, 5, 6, 0.58) 42%, rgba(7, 5, 6, 0.78) 100%);
}

.prestige-showcase-inner {
  position: relative;
  z-index: 2;
  min-height: 460px;
  display: grid;
  align-items: center;
}

.prestige-showcase-copy {
  max-width: 720px;
}

.prestige-showcase-copy h2,
.about-copy h2,
.why-copy h2,
.cta-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 0.96;
  color: var(--gold-soft);
}

.prestige-showcase-copy p,
.about-copy p,
.why-copy > p,
.cta-copy p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 16px;
}

.prestige-showcase-copy p + p,
.about-copy p + p,
.why-copy > p + p,
.cta-copy p + p {
  margin-top: 14px;
}

/* ABOUT / WHY */
.about-grid,
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
}

.about-card,
.cta-panel,
.service-card,
.feature-card,
.review-card {
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 7, 10, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-card-inner {
  padding: 32px;
}

.about-photo-compare {
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 7, 10, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 32px;
  overflow: hidden;
}

.compare-shot {
  margin: 0;
  position: relative;
  overflow: visible;
  border-radius: 22px;
}

.compare-shot img {
  width: 100%;
  display: block;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  object-fit: cover;
}

.compare-shot-single img {
  aspect-ratio: 5 / 4;
}

.compare-tag {
  position: absolute;
  top: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7, 5, 6, 0.82);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(243, 214, 167, 0.22);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  z-index: 2;
}

.compare-tag-left {
  left: -12px;
}

.compare-tag-right {
  right: -12px;
}

.why-heading {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 110px;
}

.why-heading span {
  display: block;
}

.why-script-tag {
  position: absolute;
  right: 80px;
  bottom: 0.02em;
  left: auto;
  font-size: clamp(58px, 6vw, 112px);
  white-space: nowrap;
  line-height: 1;
  z-index: 2;
}

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

.feature-card {
  padding: 24px;
  position: relative;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 148, 166, 0.3);
  box-shadow:
    0 26px 50px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(217, 148, 166, 0.12);
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(242, 196, 205, 0.16), rgba(221, 176, 107, 0.12));
  border: 1px solid rgba(243, 214, 167, 0.18);
  color: var(--gold-soft);
  font-size: 22px;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 0 18px rgba(217, 148, 166, 0.2);
}

.feature-card h3,
.service-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
  color: var(--text-main);
}

.feature-card p,
.service-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.68;
  font-size: 16px;
}

/* HOMEPAGE SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  min-width: 0;
}

.service-card-media {
  margin: 0 0 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  display: block;
}

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

.service-card p + p {
  margin-top: 12px;
}

.service-card-cta {
  margin-top: auto;
  align-self: flex-start;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-card.featured {
  background:
    radial-gradient(circle at top left, rgba(242, 196, 205, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 7, 10, 0.96);
}

/* GALLERY */
.home-gallery-carousel {
  position: relative;
}

.home-gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

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

.gallery-arrow {
  appearance: none;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(243, 214, 167, 0.22);
  background: rgba(12, 6, 9, 0.82);
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.gallery-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 148, 166, 0.5);
  background:
    linear-gradient(135deg, rgba(242, 196, 205, 0.12), rgba(221, 176, 107, 0.08)),
    rgba(14, 7, 10, 0.95);
}

.gallery-arrow:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.gallery-arrow span {
  font-size: 20px;
  line-height: 1;
}

.gallery-more-link {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(243, 214, 167, 0.32);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-more-link.is-visible {
  display: inline-flex;
}

.home-gallery-viewport {
  overflow: hidden;
}

.home-gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.home-gallery-track::-webkit-scrollbar {
  display: none;
}

.home-gallery-slide {
  flex: 0 0 calc(25% - 13.5px);
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(13, 7, 10, 0.9);
}

.home-gallery-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.home-gallery-slide:hover img {
  transform: scale(1.04);
}

/* REVIEWS */
.reviews-section {
  overflow: hidden;
}

.reviews-section .section-heading {
  max-width: 1040px;
}

.reviews-section .section-heading h2 {
  font-size: clamp(40px, 5.8vw, 92px);
  line-height: 0.9;
}

.reviews-carousel-wrap {
  position: relative;
}

.reviews-carousel-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.reviews-carousel-controls {
  display: flex;
  gap: 10px;
}

.reviews-arrow {
  appearance: none;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(243, 214, 167, 0.22);
  background: rgba(12, 6, 9, 0.82);
  color: var(--gold-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.reviews-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 148, 166, 0.5);
  background:
    linear-gradient(135deg, rgba(242, 196, 205, 0.12), rgba(221, 176, 107, 0.08)),
    rgba(14, 7, 10, 0.95);
  box-shadow:
    0 16px 32px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(217, 148, 166, 0.12);
}

.reviews-arrow:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.reviews-arrow:active {
  transform: scale(0.94);
}

.reviews-arrow span {
  font-size: 20px;
  line-height: 1;
}

.reviews-carousel {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
}

.reviews-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.55s ease;
}

.review-card {
  flex: 0 0 calc(33.333% - 13.4px);
  min-width: 0;
  padding: 30px 28px;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(242, 196, 205, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 7, 10, 0.92);
}

.review-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.82;
  color: var(--text-main);
}

.review-card strong {
  display: block;
  margin-top: 18px;
  font-family: "LoveSeed", cursive;
  font-size: 50px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--blush);
}

/* CTA / LOCATION */
.cta-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.location-panel {
  margin-top: 100px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(13, 7, 10, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
  overflow: hidden;
}

.location-copy {
  min-width: 0;
}

.location-title-wrap {
  position: relative;
  display: inline-block;
  margin: 0 0 22px;
  padding-bottom: 34px;
  max-width: 980px;
}

.location-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  color: var(--gold-soft);
}

.location-script {
  position: absolute;
  right: 0;
  bottom: -0.02em;
  display: inline-block;
  font-family: "LoveSeed", cursive;
  font-size: clamp(52px, 5.5vw, 98px);
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.location-address {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
}

.location-actions {
  display: flex;
  align-items: flex-start;
}

.location-map {
  grid-column: 1 / -1;
  overflow: hidden;
  border-radius: 24px;
  min-height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card {
    flex: 0 0 calc(50% - 10px);
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .reviews-section .section-heading h2 {
    font-size: clamp(36px, 6vw, 66px);
  }
}

@media (max-width: 980px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(7, 5, 6, 0.12) 0%, rgba(7, 5, 6, 0.16) 20%, rgba(7, 5, 6, 0.46) 64%, rgba(7, 5, 6, 0.9) 100%),
      url("/images/PinkandblackHeroBG.png") center top / cover no-repeat,
      linear-gradient(135deg, #070506 0%, #14090d 100%);
  }

  .hero-inner {
    width: calc(100% - 28px);
    padding: 92px 0 34px;
    align-items: end;
  }

  .hero-copy {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .hero-logo {
    width: min(72vw, 360px);
    margin: 0 auto 18px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 8vw, 64px);
  }

  .hero-line-detailing {
    margin: 0 auto;
  }

  .hero-script-tag {
    right: -0.02em;
    bottom: -0.24em;
    left: auto;
    font-size: clamp(48px, 7vw, 82px);
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .cta-actions {
    justify-content: center;
  }

  .about-grid,
  .why-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .home-gallery-slide {
    flex: 0 0 calc(50% - 9px);
  }

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

  .prestige-showcase-copy h2,
  .about-copy h2,
  .why-copy h2,
  .cta-copy h2 {
    font-size: clamp(32px, 6vw, 52px);
  }
}

@media (max-width: 767px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    padding: 22px;
  }

  .service-card-cta {
    width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    width: calc(100% - 24px);
    padding: 84px 0 28px;
  }

  .hero-logo {
    width: min(82vw, 300px);
  }

  .hero-copy h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 0.96;
  }

  .hero-line-detailing {
    margin: 0 auto;
    padding-right: 0.4em;
  }

  .hero-script-tag {
    right: 0;
    bottom: -0.16em;
    left: auto;
    margin-left: 0;
    font-size: clamp(34px, 6.8vw, 56px);
  }

  .hero-text {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.62;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
  }

  .prestige-showcase-inner {
    min-height: 380px;
  }

  .prestige-showcase-copy h2,
  .about-copy h2,
  .why-copy h2,
  .cta-copy h2 {
    font-size: clamp(28px, 9vw, 42px);
    line-height: 0.98;
  }

  .about-photo-compare {
    padding: 22px;
  }

  .compare-tag {
    top: 12px;
    padding: 7px 11px;
    font-size: 10px;
  }

  .compare-tag-left {
    left: 10px;
  }

  .compare-tag-right {
    right: 10px;
  }

  .why-heading {
    padding-bottom: 18px;
  }

  .why-script-tag {
    position: static;
    display: block;
    margin-top: 10px;
    font-size: 42px;
  }

  .home-gallery-head {
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-right-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .home-gallery-slide {
    flex: 0 0 84%;
  }

  .gallery-arrow {
    width: 46px;
    height: 46px;
  }

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

  .reviews-section .section-heading h2 {
    font-size: clamp(28px, 11vw, 42px);
    line-height: 0.95;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .review-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .review-card strong {
    margin-top: 16px;
    font-size: 28px;
  }

  .location-panel {
    margin-top: 72px;
    padding: 22px;
  }

  .location-title-wrap {
    display: block;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .location-title {
    font-size: clamp(28px, 9vw, 42px);
  }

  .location-script {
    position: static;
    display: block;
    margin-top: 8px;
    font-size: 38px;
  }

  .location-address {
    font-size: 16px;
  }

  .location-map,
  .location-map iframe {
    min-height: 260px;
  }

  .service-card,
  .feature-card,
  .review-card,
  .cta-panel {
    padding: 22px;
  }

  .reviews-carousel-head {
    justify-content: center;
    margin-bottom: 14px;
  }

  .reviews-arrow {
    width: 46px;
    height: 46px;
  }
}