:root {
  --ink: #101513;
  --white: #ffffff;
  --muted: #64706b;
  --line: rgba(16, 21, 19, 0.14);
  --gold: #d9a441;
  --rose: #ce5f7b;
  --blue: #76c4e5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
li,
span {
  overflow-wrap: anywhere;
}

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

.flower-header,
.detail-header,
.auto-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 64px);
}

.flower-header a,
.detail-header a,
.auto-header a {
  font-weight: 900;
  text-decoration: none;
}

.flower-header nav,
.detail-header nav,
.auto-header nav {
  display: flex;
  gap: 20px;
  font-size: 0.92rem;
  font-weight: 800;
}

.flower-header {
  background: #fff8f6;
  border-bottom: 1px solid rgba(206, 95, 123, 0.18);
}

.flower-site {
  background: #fff8f6;
}

.flower-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: 76vh;
  padding: 54px clamp(18px, 6vw, 82px) 72px;
}

.flower-hero-copy {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

.flower-hero-copy p,
.flower-heading p,
.flower-delivery p,
.detail-hero-panel p,
.detail-heading p,
.detail-results-copy p,
.detail-quote p,
.auto-hero-copy p,
.auto-section-heading p,
.auto-concierge p,
.auto-reserve p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flower-hero-copy p,
.flower-heading p,
.flower-delivery p {
  color: var(--rose);
}

.flower-hero h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.flower-hero-copy span {
  max-width: 520px;
  color: #72525b;
  font-size: 1.08rem;
  line-height: 1.7;
}

.flower-hero-copy a,
.flower-order a,
.detail-hero-panel a,
.detail-quote a,
.auto-actions a,
.auto-reserve a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 50px;
  padding: 0 18px;
  font-weight: 900;
  text-decoration: none;
  border-radius: 8px;
}

.flower-hero-copy a,
.flower-order a {
  color: #3a2028;
  background: #f4b5c7;
}

.flower-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 12px solid #fff;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(122, 60, 78, 0.2);
}

.flower-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 6vw, 82px);
  overflow: hidden;
  border-radius: 8px;
}

.flower-strip span {
  padding: 20px;
  color: #5e3440;
  font-weight: 900;
  text-align: center;
  background: #ffe7ee;
}

.flower-menu,
.flower-delivery,
.flower-order {
  padding: 74px clamp(18px, 6vw, 82px);
}

.flower-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.flower-heading h2,
.flower-delivery h2,
.flower-order h2,
.detail-heading h2,
.detail-results-copy h2,
.detail-quote h2,
.auto-section-heading h2,
.auto-concierge h2,
.auto-reserve h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.02;
}

.flower-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.flower-products article {
  min-height: 230px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(206, 95, 123, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(122, 60, 78, 0.08);
}

.flower-products span {
  color: var(--rose);
  font-weight: 900;
}

.flower-products h3,
.detail-package-grid h3,
.auto-inventory-list h3 {
  margin: 14px 0 8px;
  font-size: 1.45rem;
}

.flower-products p {
  color: #775963;
  line-height: 1.6;
}

.flower-delivery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  color: #fff;
  background: #442730;
}

.flower-delivery ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flower-delivery li {
  padding: 16px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.flower-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
}

.detail-site {
  color: #eaf7fb;
  background: #071014;
}

.detail-header {
  color: #eaf7fb;
  background: rgba(7, 16, 20, 0.86);
  border-bottom: 1px solid rgba(118, 196, 229, 0.16);
  backdrop-filter: blur(14px);
}

.detail-hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 24px;
  align-items: end;
  padding: 70px clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 16, 20, 0.96), rgba(7, 16, 20, 0.62), rgba(7, 16, 20, 0.16)),
    linear-gradient(0deg, rgba(7, 16, 20, 0.88), transparent 60%);
}

.detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: detailZoom 10s ease-in-out infinite alternate;
}

.detail-hero-panel,
.detail-meter {
  position: relative;
  z-index: 2;
}

.detail-hero-panel {
  display: grid;
  gap: 18px;
  max-width: 770px;
}

.detail-hero-panel p,
.detail-heading p,
.detail-results-copy p,
.detail-quote p {
  color: var(--blue);
}

.detail-hero-panel h1 {
  margin: 0;
  max-width: 810px;
  font-size: clamp(2.6rem, 6.8vw, 6.5rem);
  line-height: 0.94;
}

.detail-hero-panel span {
  max-width: 560px;
  color: rgba(234, 247, 251, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
}

.detail-hero-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-hero-panel a,
.detail-quote a {
  color: #051015;
  background: var(--blue);
}

.detail-hero-panel a + a {
  color: #eaf7fb;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.detail-meter {
  justify-self: end;
  width: min(100%, 280px);
  padding: 24px;
  color: #051015;
  background: rgba(234, 247, 251, 0.9);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.detail-meter strong {
  display: block;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 0.9;
}

.detail-meter span {
  color: #315463;
  font-weight: 900;
}

.detail-page-hero {
  min-height: 62vh;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 132px clamp(18px, 5vw, 72px) 72px;
  background:
    radial-gradient(circle at 78% 18%, rgba(118, 196, 229, 0.2), transparent 30%),
    linear-gradient(135deg, #071014, #14252c);
}

.detail-page-hero p,
.detail-contact-panel p {
  margin: 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 6rem);
  line-height: 0.95;
}

.detail-page-hero span {
  max-width: 700px;
  color: rgba(234, 247, 251, 0.74);
  font-size: 1.08rem;
  line-height: 1.7;
}

.detail-packages,
.detail-results,
.detail-quote {
  padding: 76px clamp(18px, 5vw, 72px);
}

.detail-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.detail-package-grid article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(145deg, #111d22, #19313a);
  border: 1px solid rgba(118, 196, 229, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.detail-package-grid .featured-detail {
  min-height: 350px;
  background: linear-gradient(145deg, #13313c, #24576a);
  transform: translateY(-18px);
}

.detail-package-grid span,
.detail-package-grid b {
  color: var(--blue);
  font-weight: 900;
}

.detail-package-grid p {
  color: rgba(234, 247, 251, 0.72);
  line-height: 1.6;
}

.detail-results {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(300px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  background: #0b171c;
}

.detail-site-map {
  padding: 76px clamp(18px, 5vw, 72px);
  background: #eaf7fb;
  color: #071014;
}

.detail-site-map .detail-heading p {
  color: #24576a;
}

.detail-page-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.detail-page-list article {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(7, 16, 20, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(7, 16, 20, 0.1);
}

.detail-page-list span {
  color: #24576a;
  font-weight: 900;
}

.detail-page-list h3 {
  margin: 12px 0 8px;
  font-size: 1.35rem;
}

.detail-page-list p {
  margin: 0;
  color: #42606a;
  line-height: 1.6;
}

.detail-services-page,
.detail-feature-row,
.detail-contact-layout {
  padding: 76px clamp(18px, 5vw, 72px);
}

.detail-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: #0b171c;
}

.detail-feature-row article {
  min-height: 250px;
  padding: 22px;
  background: linear-gradient(145deg, #111d22, #19313a);
  border: 1px solid rgba(118, 196, 229, 0.15);
  border-radius: 8px;
}

.detail-feature-row span {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.detail-feature-row h3 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
}

.detail-feature-row p {
  color: rgba(234, 247, 251, 0.72);
  line-height: 1.65;
}

.detail-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 18px;
  background: #eaf7fb;
  color: #071014;
}

.detail-contact-panel,
.detail-contact-layout aside {
  padding: 28px;
  background: #ffffff;
  border: 1px solid rgba(7, 16, 20, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(7, 16, 20, 0.1);
}

.detail-contact-panel h2,
.auto-contact-panel h2 {
  margin: 10px 0 24px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.demo-form-preview {
  display: grid;
  gap: 12px;
}

.demo-form-preview span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #42606a;
  background: #f1fbff;
  border: 1px solid rgba(7, 16, 20, 0.08);
  border-radius: 8px;
  font-weight: 800;
}

.detail-contact-layout aside p,
.detail-contact-layout aside li,
.auto-contact-layout aside p,
.auto-contact-layout aside li {
  color: #5f6f6f;
  line-height: 1.65;
}

.detail-before,
.detail-after {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  border-radius: 8px;
}

.detail-before {
  background: linear-gradient(145deg, #151b1d, #2e3536);
}

.detail-after {
  background:
    linear-gradient(120deg, transparent, rgba(118, 196, 229, 0.34), transparent),
    linear-gradient(145deg, #15252b, #5bbce5);
}

.detail-before span,
.detail-after span {
  color: #fff;
  font-weight: 900;
}

.detail-results-copy {
  align-self: center;
}

.detail-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #eaf7fb;
  color: #071014;
}

.auto-site {
  color: #f8efe0;
  background: #080908;
}

.auto-header {
  position: fixed;
  color: #f8efe0;
  background: rgba(8, 9, 8, 0.58);
  border-bottom: 1px solid rgba(217, 164, 65, 0.16);
  backdrop-filter: blur(18px);
}

.auto-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(350px, 1.15fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: 130px clamp(18px, 5vw, 76px) 72px;
  background:
    radial-gradient(circle at 74% 22%, rgba(217, 164, 65, 0.16), transparent 30%),
    linear-gradient(135deg, #080908 0%, #15130f 45%, #050505 100%);
}

.auto-hero-copy {
  display: grid;
  gap: 18px;
}

.auto-hero-copy p,
.auto-section-heading p,
.auto-concierge p,
.auto-reserve p {
  color: var(--gold);
}

.auto-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6.6vw, 7rem);
  line-height: 0.9;
}

.auto-hero-copy > span {
  color: rgba(248, 239, 224, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.auto-page-hero {
  min-height: 68vh;
  display: grid;
  align-content: end;
  gap: 16px;
  padding: 136px clamp(18px, 5vw, 76px) 76px;
  background:
    radial-gradient(circle at 82% 20%, rgba(217, 164, 65, 0.18), transparent 28%),
    linear-gradient(135deg, #080908, #17130d 54%, #050505);
}

.auto-page-hero p,
.auto-contact-panel p {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auto-page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.8rem, 6.4vw, 6.8rem);
  line-height: 0.9;
}

.auto-page-hero span {
  max-width: 720px;
  color: rgba(248, 239, 224, 0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.auto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.auto-actions a,
.auto-reserve a {
  color: #0c0b09;
  background: var(--gold);
}

.auto-actions a + a {
  color: #f8efe0;
  background: transparent;
  border: 1px solid rgba(248, 239, 224, 0.24);
}

.auto-hero-media {
  position: relative;
  min-height: 620px;
}

.auto-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
  animation: autoFloat 7s ease-in-out infinite;
}

.auto-spec-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 7px;
  width: min(330px, calc(100% - 44px));
  padding: 20px;
  color: #080908;
  background: rgba(248, 239, 224, 0.92);
  border-radius: 8px;
}

.auto-spec-card small {
  color: #846326;
  font-weight: 900;
  text-transform: uppercase;
}

.auto-spec-card strong {
  font-size: 1.35rem;
}

.auto-marquee {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(217, 164, 65, 0.24);
}

.auto-marquee span {
  padding: 22px;
  color: #f8efe0;
  font-weight: 900;
  text-align: center;
  background: #11100d;
}

.auto-inventory,
.auto-concierge,
.auto-reserve {
  padding: 82px clamp(18px, 5vw, 76px);
}

.auto-section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.auto-inventory-list {
  display: grid;
  gap: 14px;
}

.auto-inventory-list article {
  display: grid;
  grid-template-columns: 70px 1fr minmax(180px, auto);
  gap: 20px;
  align-items: center;
  padding: 22px;
  background: #12110e;
  border: 1px solid rgba(217, 164, 65, 0.18);
  border-radius: 8px;
  transition: transform 200ms ease, border-color 200ms ease;
}

.auto-inventory-list article:hover {
  transform: translateX(8px);
  border-color: rgba(217, 164, 65, 0.48);
}

.auto-inventory-list span,
.auto-inventory-list strong {
  color: var(--gold);
  font-weight: 900;
}

.auto-inventory-list p {
  color: rgba(248, 239, 224, 0.68);
  line-height: 1.6;
}

.auto-concierge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
  gap: 36px;
  background: #f8efe0;
  color: #0c0b09;
}

.concierge-panel {
  display: grid;
  gap: 14px;
}

.concierge-panel article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  background: #fffaf1;
  border: 1px solid rgba(12, 11, 9, 0.08);
  border-radius: 8px;
}

.concierge-panel b {
  color: var(--gold);
  font-size: 1.35rem;
}

.concierge-panel span {
  font-weight: 900;
}

.auto-feature-suite {
  padding: 82px clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 86% 12%, rgba(217, 164, 65, 0.18), transparent 30%),
    #11100d;
}

.auto-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(217, 164, 65, 0.22);
  border-radius: 8px;
}

.auto-feature-grid article {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: rgba(248, 239, 224, 0.06);
}

.auto-feature-grid span {
  color: var(--gold);
  font-weight: 900;
}

.auto-feature-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.28rem;
}

.auto-feature-grid p {
  margin: 0;
  color: rgba(248, 239, 224, 0.68);
  line-height: 1.58;
}

.auto-gallery-page,
.auto-contact-layout {
  padding: 82px clamp(18px, 5vw, 76px);
}

.auto-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.auto-gallery-grid article {
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.14), transparent),
    linear-gradient(145deg, #181713, #2a2112);
  border: 1px solid rgba(217, 164, 65, 0.18);
  border-radius: 8px;
}

.auto-gallery-grid article:nth-child(2n) {
  background:
    linear-gradient(135deg, rgba(248, 239, 224, 0.1), transparent),
    linear-gradient(145deg, #221b12, #4a3517);
}

.auto-gallery-grid span {
  color: #f8efe0;
  font-weight: 900;
}

.auto-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 18px;
  background: #f8efe0;
  color: #0c0b09;
}

.auto-contact-panel,
.auto-contact-layout aside {
  padding: 28px;
  background: #fffaf1;
  border: 1px solid rgba(12, 11, 9, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
}

.auto-form-preview span {
  color: #70551f;
  background: #fff4d8;
}

.auto-reserve {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #080908;
}

@keyframes detailZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes autoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 900px) {
  .flower-header nav,
  .detail-header nav,
  .auto-header nav {
    display: none;
  }

  .flower-hero,
  .flower-heading,
  .flower-delivery,
  .detail-hero,
  .detail-package-grid,
  .detail-page-list,
  .detail-feature-row,
  .detail-contact-layout,
  .detail-results,
  .auto-hero,
  .auto-marquee,
  .auto-concierge,
  .auto-feature-grid,
  .auto-gallery-grid,
  .auto-contact-layout {
    grid-template-columns: 1fr;
  }

  .detail-meter {
    justify-self: start;
  }

  .flower-products {
    grid-template-columns: 1fr;
  }

  .detail-package-grid .featured-detail {
    min-height: 300px;
    transform: none;
  }

  .auto-inventory-list article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .flower-hero,
  .detail-hero,
  .auto-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .flower-strip {
    grid-template-columns: 1fr;
    margin: 0 18px;
  }

  .flower-order,
  .detail-quote,
  .auto-reserve {
    align-items: flex-start;
    flex-direction: column;
  }

  .flower-hero-copy a,
  .flower-order a,
  .detail-hero-panel a,
  .detail-quote a,
  .auto-actions a,
  .auto-reserve a {
    width: 100%;
  }

  .auto-hero-media,
  .auto-hero-media img {
    min-height: 430px;
  }
}

/* Motion and premium image layer */
.detail-scan-beam,
.auto-light-ribbon {
  position: absolute;
  inset: -20% auto -20% -40%;
  z-index: 3;
  width: 38%;
  pointer-events: none;
  transform: skewX(-18deg);
}

.detail-scan-beam {
  background: linear-gradient(90deg, transparent, rgba(118, 196, 229, 0.36), transparent);
  animation: detailBeam 5s ease-in-out infinite;
}

.auto-light-ribbon {
  background: linear-gradient(90deg, transparent, rgba(217, 164, 65, 0.34), transparent);
  animation: goldSweep 5.6s ease-in-out infinite;
}

.detail-page-hero,
.auto-page-hero,
.auto-hero-media {
  position: relative;
  overflow: hidden;
}

.detail-page-hero > :not(.detail-scan-beam),
.auto-page-hero > :not(.auto-light-ribbon) {
  position: relative;
  z-index: 4;
}

.detail-meter,
.auto-spec-card {
  animation: specFloat 5s ease-in-out infinite;
}

.detail-package-grid article,
.detail-page-list article,
.detail-feature-row article,
.auto-inventory-list article,
.auto-feature-grid article,
.auto-gallery-grid article {
  position: relative;
  overflow: hidden;
}

.detail-package-grid article,
.auto-gallery-grid article {
  animation: softLift 6.5s ease-in-out infinite;
}

.detail-package-grid article:nth-child(2),
.auto-gallery-grid article:nth-child(2),
.auto-feature-grid article:nth-child(2) {
  animation-delay: 0.7s;
}

.detail-package-grid article:nth-child(3),
.auto-gallery-grid article:nth-child(3),
.auto-feature-grid article:nth-child(3) {
  animation-delay: 1.2s;
}

.auto-gallery-grid article:nth-child(4),
.auto-feature-grid article:nth-child(4) {
  animation-delay: 1.7s;
}

.auto-gallery-grid article:nth-child(5),
.auto-feature-grid article:nth-child(5) {
  animation-delay: 2.1s;
}

.auto-gallery-grid article:nth-child(6) {
  animation-delay: 2.5s;
}

.detail-package-grid article::after,
.detail-page-list article::after,
.detail-feature-row article::after,
.auto-inventory-list article::after,
.auto-feature-grid article::after,
.auto-gallery-grid article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-125%);
  animation: cardShine 6.5s ease-in-out infinite;
}

.detail-showcase-image,
.auto-showcase-image {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  animation: imageDrift 8s ease-in-out infinite;
}

.detail-before,
.detail-after {
  background-size: 125%;
  background-position: center;
  animation: panelPan 8s ease-in-out infinite;
}

.detail-before {
  background:
    linear-gradient(145deg, rgba(21, 27, 29, 0.74), rgba(46, 53, 54, 0.8)),
    url("assets/demos/detailing-studio-premium.png");
  background-size: cover;
  background-position: center;
}

.detail-after {
  background:
    linear-gradient(120deg, transparent, rgba(118, 196, 229, 0.3), transparent),
    linear-gradient(145deg, rgba(21, 37, 43, 0.34), rgba(91, 188, 229, 0.22)),
    url("assets/demos/detailing-studio-premium.png");
  background-size: cover;
  background-position: center;
  animation-delay: 1s;
}

.auto-marquee span {
  animation: marqueeGlow 4.4s ease-in-out infinite;
}

.auto-marquee span:nth-child(2) {
  animation-delay: 0.5s;
}

.auto-marquee span:nth-child(3) {
  animation-delay: 1s;
}

.auto-marquee span:nth-child(4) {
  animation-delay: 1.5s;
}

.auto-gallery-grid .showroom-photo {
  background:
    linear-gradient(180deg, transparent, rgba(8, 9, 8, 0.86)),
    url("assets/demos/luxury-showroom-premium.png");
  background-size: cover;
  background-position: center;
}

.auto-gallery-grid .showroom-photo.alt {
  background:
    linear-gradient(180deg, transparent, rgba(8, 9, 8, 0.82)),
    url("assets/demos/luxury-showroom-premium.png");
  background-size: 140%;
  background-position: 62% center;
}

@keyframes detailBeam {
  0% {
    transform: translateX(-80%) skewX(-18deg);
  }
  50%,
  100% {
    transform: translateX(360%) skewX(-18deg);
  }
}

@keyframes goldSweep {
  0% {
    transform: translateX(-80%) skewX(-18deg);
  }
  55%,
  100% {
    transform: translateX(380%) skewX(-18deg);
  }
}

@keyframes specFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes softLift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes cardShine {
  0%,
  35% {
    transform: translateX(-125%);
  }
  65%,
  100% {
    transform: translateX(125%);
  }
}

@keyframes imageDrift {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@keyframes panelPan {
  0%,
  100% {
    background-position: center;
  }
  50% {
    background-position: 62% center;
  }
}

@keyframes marqueeGlow {
  0%,
  100% {
    color: #f8efe0;
  }
  50% {
    color: var(--gold);
  }
}
