@font-face {
  font-family: "Maqena";
  src: url("fonts/Maqena-ARynx.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "LoveSeed";
  src: url("fonts/LoveSeed-z8EVX.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --black: #070506;
  --black-soft: #14090d;
  --gold: #ddb06b;
  --gold-soft: #f3d6a7;
  --blush: #f2c4cd;
  --rose: #d994a6;
  --text-main: #f8f3f5;
  --text-muted: rgba(248, 243, 245, 0.82);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --font-heading: "Maqena", serif;
  --font-body: "Inter", sans-serif;
  --container: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at top left, rgba(217, 148, 166, 0.1), transparent 28%),
    radial-gradient(circle at bottom right, rgba(221, 176, 107, 0.12), transparent 24%),
    linear-gradient(180deg, #090607 0%, #0c0609 100%);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: clip;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
}

.section-shell,
.nav-shell,
.hero-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* NAV */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}

.site-header.scrolled {
  background: rgba(8, 5, 7, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
}

.nav-brand span {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 243, 245, 0.78);
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.main-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 243, 245, 0.95);
  transition: color 0.25s ease, opacity 0.25s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--gold-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-link {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-soft);
}

.nav-cta,
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    color 0.28s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-cta,
.btn-primary {
  color: #1a1113;
  background: linear-gradient(135deg, var(--blush) 0%, var(--rose) 42%, var(--gold) 100%);
  box-shadow:
    0 2px 10px #000000,
    0 14px 34px rgba(217, 148, 166, 0.24);
}

.nav-cta:hover,
.btn-primary:hover {
  box-shadow:
    0 4px 16px #000000,
    0 20px 44px rgba(217, 148, 166, 0.32);
}

.btn-outline {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(243, 214, 167, 0.45);
  box-shadow: 0 2px 10px #000000;
}

.btn-outline:hover {
  background: rgba(243, 214, 167, 0.12);
  border-color: rgba(243, 214, 167, 0.82);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* 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;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 120px 0 72px;
}

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

.eyebrow,
.section-kicker,
.mini-label,
.service-tag {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(243, 214, 167, 0.86);
}

.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;
}

.script-accent {
  font-family: "LoveSeed", cursive;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.hero-script-tag {
  position: absolute;
  left: 63%;
  bottom: -0.48em;
  font-size: clamp(70px, 9vw, 150px);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.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;
}

/* GENERAL SECTIONS */
.section {
  position: relative;
  padding: 92px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section h2,
.section-heading h2,
.footer-faq-panel h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 0.96;
  color: var(--gold-soft);
}

.section p,
.section-heading p,
.about-copy p,
.why-copy p,
.review-card p,
.service-card p,
.feature-card p,
.cta-copy p,
.footer-brand p,
.footer-col p,
.service-package-description {
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 16px;
}

/* VALUE STRIP */
.value-strip {
  position: relative;
  z-index: 3;
  margin-top: -18px;
}

.value-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: linear-gradient(135deg, #f5d7dc 0%, #efc1ca 52%, #f1d4ae 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.value-item {
  min-width: 0;
  padding: 42px 28px 40px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.value-item:last-child {
  border-right: none;
}

.value-item h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  color: #1a1113;
}

.value-item p {
  margin: 0 auto;
  max-width: 320px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(26, 17, 19, 0.8);
}

/* PHOTO BACKGROUND SHOWCASE */
.prestige-showcase {
  position: relative;
  overflow: hidden;
  background: url("images/redTRX.jpg") 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;
}

/* 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,
.service-package-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;
}

.check-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  color: var(--text-main);
}

.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

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

.service-card {
  padding: 28px;
}

.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);
}

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

.text-link {
  display: inline-flex;
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
}

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

.feature-card {
  padding: 24px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-areas:
    "tall card1 card2"
    "tall wide wide";
  gap: 18px;
}

.gallery-card {
  min-height: 220px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 30%, rgba(243, 214, 167, 0.12), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(217, 148, 166, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(19, 10, 14, 0.96), rgba(9, 5, 7, 0.96));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 5, 6, 0) 60%, rgba(7, 5, 6, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-card:hover::after {
  opacity: 1;
}

.gallery-card.tall {
  grid-area: tall;
  min-height: 470px;
}

.gallery-card.wide {
  grid-area: wide;
}

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

.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;
}

.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: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;
  line-height: 1.75;
  font-size: 16px;
}

.review-card strong {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* CTA */
.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;
}

/* SERVICES PAGE */
.services-page-intro {
  padding-top: 150px;
  padding-bottom: 36px;
}

.services-page-title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 0.96;
  color: var(--gold-soft);
}

.service-group-section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.service-package-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

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

.service-price {
  margin: 2px 0 0;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-soft);
  line-height: 1.1;
}

.service-meta {
  margin: 4px 0 0;
  font-size: 14px;
  color: rgba(248, 243, 245, 0.64);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-package-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 9px;
  color: rgba(248, 243, 245, 0.9);
  line-height: 1.6;
}

.service-package-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.service-group-section .section-heading {
  max-width: 900px;
}

/* BUTTON ANIMATION */
.btn-primary.animate::before,
.btn-primary.animate::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.btn-primary.animate::before {
  box-shadow: 0 0 0 0 rgba(242, 196, 205, 0.45);
  animation: pulseRing 0.7s ease-out forwards;
}

@keyframes pulseRing {
  from {
    box-shadow: 0 0 0 0 rgba(242, 196, 205, 0.45);
  }
  to {
    box-shadow: 0 0 0 18px rgba(242, 196, 205, 0);
  }
}

/* FOOTER */
.site-footer {
  position: relative;
  margin-top: 24px;
  padding: 72px 0 0;
  background:
    radial-gradient(circle at top left, rgba(217, 148, 166, 0.06), transparent 28%),
    linear-gradient(180deg, #070506 0%, #050304 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: clamp(160px, 18vw, 220px);
  height: auto;
  margin-bottom: 16px;
}

.footer-col h3 {
  font-size: 18px;
  letter-spacing: 0.04em;
}

.footer-col a {
  color: inherit;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--gold-soft);
}

.footer-social-col h3 {
  margin-bottom: 16px;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-social-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 5, 8, 0.8);
  border: 1.5px solid rgba(243, 214, 167, 0.25);
  color: var(--text-main);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.footer-social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-social-icon:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 148, 166, 0.6);
  background:
    linear-gradient(135deg, rgba(242, 196, 205, 0.18), rgba(221, 176, 107, 0.12)),
    rgba(12, 6, 9, 0.95);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.4),
    0 0 22px rgba(217, 148, 166, 0.18);
}

.footer-social-icon:active {
  transform: scale(0.94);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

.footer-faq-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-faq-trigger {
  appearance: none;
  border: 1px solid rgba(243, 214, 167, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-soft);
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-faq-trigger:hover {
  background: rgba(243, 214, 167, 0.1);
  border-color: rgba(243, 214, 167, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0 22px;
  margin-top: 40px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(248, 243, 245, 0.52);
  font-size: 13px;
}

/* FOOTER FAQ MODAL */
.footer-faq-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.footer-faq-modal.is-open {
  display: block;
}

.footer-faq-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.footer-faq-panel {
  position: relative;
  width: min(760px, calc(100% - 24px));
  max-height: min(82vh, 900px);
  margin: 6vh auto 0;
  overflow: auto;
  padding: 30px 24px 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(22, 10, 15, 0.97), rgba(10, 5, 8, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.footer-faq-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(243, 214, 167, 0.86);
}

.footer-faq-close {
  appearance: none;
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-faq-close:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.04);
}

.footer-faq-list {
  display: grid;
  gap: 16px;
}

.footer-faq-item {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-faq-item h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--text-main);
}

.footer-faq-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 15px;
}

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

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

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

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

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

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

@media (max-width: 980px) {
  .site-header {
    padding: 16px 0;
  }

  .nav-shell,
  .section-shell,
  .hero-inner {
    width: calc(100% - 28px);
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(10, 8, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
  }

  .main-nav.show {
    display: flex;
  }

  .phone-link,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(7, 5, 6, 0.08) 0%, rgba(7, 5, 6, 0.12) 24%, rgba(7, 5, 6, 0.42) 68%, rgba(7, 5, 6, 0.88) 100%),
      url("images/PinkandblackHeroBG.png") center top / cover no-repeat,
      linear-gradient(135deg, #070506 0%, #14090d 100%);
  }

  .hero-inner {
    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 {
    left: 61%;
    bottom: -0.32em;
    font-size: clamp(40px, 7vw, 70px);
  }

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

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

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "tall tall"
      "card1 card2"
      "wide wide";
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-item {
    padding: 28px 16px;
  }

  .value-item h3 {
    font-size: 17px;
  }

  .value-item p {
    font-size: 12px;
    line-height: 1.35;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section-shell,
  .hero-inner {
    width: calc(100% - 24px);
  }

  .hero-inner {
    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;
  }

  .hero-script-tag {
    left: 58%;
    bottom: -0.32em;
    margin-left: 0;
    font-size: clamp(40px, 7vw, 70px);
  }

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

  .btn {
    width: min(100%, 320px);
    min-height: 52px;
    padding: 0 20px;
    font-size: 13.5px;
  }

  .section {
    padding: 72px 0;
  }

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

  .services-page-intro {
    padding-top: 120px;
    padding-bottom: 24px;
  }

  .services-grid,
  .gallery-grid,
  .footer-grid,
  .service-cards-grid,
  .service-cards-grid-two {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-areas:
      "tall"
      "card1"
      "card2"
      "wide";
  }

  .gallery-card,
  .gallery-card.tall {
    min-height: 220px;
  }

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

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

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

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

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

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

  .footer-grid {
    gap: 20px;
  }

  .value-strip {
    margin-top: -8px;
  }

  .value-item {
    padding: 16px 8px;
  }

  .value-item h3 {
    font-size: 12px;
    margin-bottom: 5px;
    letter-spacing: 0;
  }

  .value-item p {
    font-size: 10px;
    line-height: 1.2;
  }

  .services-page-title {
    font-size: clamp(34px, 10vw, 52px);
  }

  .service-package-card h3 {
    font-size: 22px;
  }

  .service-price {
    font-size: 24px;
  }

  .service-meta {
    font-size: 12px;
  }

  .footer-socials {
    gap: 14px;
  }

  .footer-social-icon {
    width: 56px;
    height: 56px;
  }

  .footer-social-icon svg {
    width: 22px;
    height: 22px;
  }

  .footer-faq-panel {
    margin-top: 4vh;
    padding: 24px 18px 18px;
    border-radius: 22px;
  }

  .footer-faq-item {
    padding: 16px 14px 14px;
  }

  .footer-faq-item h4 {
    font-size: 15px;
  }

  .footer-faq-item p {
    font-size: 14px;
  }
}