:root {
  --bg: #050608;
  --bg-soft: #0b0e14;
  --panel: rgba(255,255,255,0.06);
  --panel-strong: rgba(255,255,255,0.1);
  --text: #f5f7fb;
  --muted: #b7bfce;
  --line: rgba(255,255,255,0.12);
  --gold: #d6a35a;
  --gold-bright: #f0c078;
  --gold-soft: rgba(214, 163, 90, 0.18);
  --chrome: linear-gradient(120deg, #ffffff 0%, #d8dce2 24%, #f0c078 45%, #9fa6b0 66%, #ffffff 100%);
  --section-space: clamp(4rem, 9vw, 8rem);
  --radius: 20px;
  --shadow: 0 20px 80px rgba(0,0,0,0.55);
}
  
  * { box-sizing: border-box; }
  
  html { scroll-behavior: smooth; }
  
  body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214,163,90,0.06), transparent 26%),
    radial-gradient(circle at 80% 15%, rgba(255,255,255,0.035), transparent 26%),
    linear-gradient(180deg, #030405 0%, #08090c 48%, #030405 100%);
  }
  
  body::before,
  body::after {
    content: "";
    position: fixed;
    inset: -10%;
    pointer-events: none;
    z-index: -3;
  }
  
body::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(214,163,90,0.07), transparent 18%),
    radial-gradient(circle at 72% 25%, rgba(255,255,255,0.04), transparent 16%),
    radial-gradient(circle at 55% 68%, rgba(255,255,255,0.035), transparent 20%);
  filter: blur(36px);
  animation: floatGlow 18s ease-in-out infinite alternate;
}
  
  body::after {
  display: none;
}
  
  .noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: 0.06;
    background-image:
      radial-gradient(circle at 20% 20%, rgba(255,255,255,0.8) 0.5px, transparent 0.7px),
      radial-gradient(circle at 60% 80%, rgba(255,255,255,0.6) 0.5px, transparent 0.7px),
      radial-gradient(circle at 80% 30%, rgba(255,255,255,0.6) 0.5px, transparent 0.7px);
    background-size: 190px 190px, 240px 240px, 280px 280px;
    animation: shimmer 20s linear infinite;
  }
  
  .aurora {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
  }
  
  .aurora span {
    position: absolute;
    width: 42vw;
    height: 42vw;
    border-radius: 999px;
    filter: blur(70px);
    opacity: 0.08;
    mix-blend-mode: screen;
    animation: blobMove 18s ease-in-out infinite;
  }
  
  .aurora span:nth-child(1) { top: 4%; left: -8%; background: #d6a35a; }
  .aurora span:nth-child(2) { top: 20%; right: -10%; background: #ffffff; }
  .aurora span:nth-child(3) { bottom: -12%; left: 25%; background: #d6a35a; }

  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  .wrap {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
  }
  
  header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: linear-gradient(180deg, rgba(4,5,8,0.82), rgba(4,5,8,0.46));
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 1rem;
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.82rem;
    color: #edf2ff;
  }
  
  
.brand-logo-wrap {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  line-height: 1;
  letter-spacing: 0.12em;
}

.brand-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.brand-text small {
  display: block;
  font-size: 0.58rem;
  color: #b9c4d8;
  letter-spacing: 0.22em;
}
  
  nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    font-size: 0.95rem;
    color: var(--muted);
  }
  
  nav a {
    transition: color 0.25s ease, transform 0.25s ease;
  }
  
  nav a:hover {
    color: var(--text);
    transform: translateY(-1px);
  }
  
  .nav-cta {
    padding: 0.9rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.12), 0 0 24px rgba(122,183,255,0.08);
    color: #fff;
  }
  
  section { position: relative; }
  
  .hero {
    padding: 5.5rem 0 3rem;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
  }
  
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.9rem;
    margin-bottom: 1.35rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    color: #d8e2f5;
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
  }
  
  .eyebrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    box-shadow: 0 0 18px rgba(214,163,90,0.28);
  }
  
  h1 {
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.3rem);
    line-height: 0.94;
    letter-spacing: -0.05em;
    max-width: 9ch;
  }
  
  .chrome-text {
    background: var(--chrome);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
  }
  
  .hero-copy p {
    max-width: 40rem;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
    margin: 1.3rem 0 0;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .btn {
    position: relative;
    padding: 1rem 1.35rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    font-weight: 600;
    letter-spacing: 0.01em;
    overflow: hidden;
    isolation: isolate;
    backdrop-filter: blur(12px);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  }
  
  .btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 18%, rgba(255,255,255,0.24) 50%, transparent 82%);
    transform: translateX(-140%);
    transition: transform 0.7s ease;
    z-index: -1;
  }
  
  .btn:hover::before { transform: translateX(140%); }
  
  .btn:hover { transform: translateY(-2px); }
  
  .btn-primary {
  background:
    linear-gradient(180deg, rgba(214,163,90,0.18), rgba(214,163,90,0.08)),
    #090a0d;
  border-color: rgba(214,163,90,0.42);
  color: #fff7e8;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 0 0 rgba(214,163,90,0);
}
  
  .btn-secondary {
    background: rgba(255,255,255,0.04);
    color: #e8eefc;
  }
  
  .hero-side {
    position: relative;
    min-height: 620px;
    padding-left: 3.5rem;
  }
  
  .hero-panel,
  .float-panel,
  .service-band,
  .price-shell,
  .story-shell,
  .contact-shell,
  .gallery-head {
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.11);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
  }
  
  .hero-panel {
    position: absolute;
    inset: 0.8rem 0 0 auto;
    width: min(100%, 460px);
    border-radius: 34px;
    overflow: hidden;
    z-index: 1;
  }
  
  .hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
    radial-gradient(circle at top left, rgba(214,163,90,0.16), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(255,255,255,0.06), transparent 28%),
      linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
    pointer-events: none;
  }
  
 .hero-image {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  background: url('../images/gallery/hero-ferrari-front.jpg') center/cover no-repeat;
}
  
  .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.7)
  );
}
  
  .hero-overlay {
    position: absolute;
    inset: auto 1.2rem 1.2rem 1.2rem;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .mini-stat {
    padding: 0.95rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
  }
  
  .mini-stat strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 0.2rem;
  }
  
  .mini-stat span {
    font-size: 0.8rem;
    color: #c0c8d7;
  }
  
  .float-panel {
    position: absolute;
    padding: 1rem 1rem 0.95rem;
    border-radius: 24px;
    width: 220px;
    animation: none;
    z-index: 3;
  }
  
  .float-top {
    top: 1.5rem;
    left: 0;
  }
  
  .float-bottom {
    right: -0.6rem;
    bottom: 2.5rem;
    animation-delay: 1.1s;
  }
  
  .float-label {
    font-size: 0.75rem;
    color: #b7bfd0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.35rem;
  }
  
  .float-panel strong {
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.45rem;
  }
  
  .float-panel p {
    margin: 0;
    font-size: 0.88rem;
    color: #d7dff0;
    line-height: 1.55;
  }
  
  .section-label {
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #b7c4d9;
    margin-bottom: 1rem;
  }
  
  .section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .section-head h2 {
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 0;
    max-width: 11ch;
  }
  
  .section-head p {
    color: var(--muted);
    max-width: 34rem;
    line-height: 1.75;
    margin: 0;
  }
  
  .services,
  .pricing,
  .gallery,
  .story,
  .contact {
    padding: var(--section-space) 0 0;
  }
  
  .service-band {
    border-radius: 34px;
    overflow: hidden;
  }
  
  .service-row {
    display: grid;
    grid-template-columns: 1.1fr 0.75fr 0.5fr;
    gap: 1.5rem;
    padding: 1.45rem 1.6rem;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .service-row:first-child { border-top: 0; }
  
  .service-row:hover {
  background: linear-gradient(90deg, rgba(214,163,90,0.05), rgba(255,255,255,0.02));
  }
  
  .service-name {
    font-size: 1.28rem;
    font-weight: 650;
    margin-bottom: 0.35rem;
  }
  
  .service-desc,
  .service-meta {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.96rem;
  }
  
  .service-price {
    justify-self: end;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.11);
    background: rgba(255,255,255,0.04);
    white-space: nowrap;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  
  .price-shell {
    border-radius: 34px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    min-height: 460px;
    display: flex;
    flex-direction: column;
  }
  
  .price-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 40%);
    pointer-events: none;
  }
  
  .price-shell.featured {
  transform: translateY(-14px);
  border-color: rgba(214,163,90,0.42);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.62),
    0 0 34px rgba(214,163,90,0.10),
    inset 0 1px 0 rgba(255,255,255,0.07);
  }
  
  .price-tag {
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: #dce5f7;
  }
  
  .price-shell h3 {
    margin: 0;
    font-size: 1.65rem;
    letter-spacing: -0.03em;
  }
  
  .price-amount {
    margin: 1rem 0 0.7rem;
    font-size: 2.6rem;
    font-weight: 750;
    letter-spacing: -0.05em;
  }
  
  .price-sub {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }
  
  .price-list {
    display: grid;
    gap: 0.85rem;
    margin: 1rem 0 1.5rem;
    padding: 0;
    list-style: none;
    color: #e7ecf7;
  }
  
  .price-list li {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    line-height: 1.6;
  }
  
  .price-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    box-shadow: 0 0 16px rgba(214,163,90,0.28);
    flex: 0 0 auto;
  }
  
  .price-shell .btn {
    margin-top: auto;
    text-align: center;
  }
  
  .gallery-head {
    border-radius: 34px;
    padding: 1.3rem;
    margin-bottom: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .gallery-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    max-width: 44rem;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 0.85fr;
    gap: 1rem;
    grid-auto-rows: 220px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.11);
    background: #0d1016;
    box-shadow: var(--shadow);
    isolation: isolate;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
  }
  
  .gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(5,6,8,0.7));
    z-index: 1;
  }
  
  .gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.15) 50%, transparent 80%);
    transform: translateX(-140%);
    transition: transform 0.8s ease;
    z-index: 2;
  }
  
  .gallery-item:hover img { transform: scale(1.06); }
  
  .gallery-item:hover::after { transform: translateX(140%); }
  
  .gallery-item.large { grid-row: span 2; }
  
  .gallery-item.tall { grid-row: span 2; }
  
  .gallery-caption {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
  }
  
  .gallery-caption strong {
    display: block;
    font-size: 1.02rem;
    margin-bottom: 0.28rem;
  }
  
  .gallery-caption span {
    color: #ccd5e5;
    font-size: 0.88rem;
  }
  
  .badge {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
  }
  
  .story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 1rem;
  }
  
  .story-shell,
  .contact-shell {
    border-radius: 34px;
    padding: 1.6rem;
  }
  
  .story-shell p,
  .contact-shell p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0.9rem 0 0;
  }
  
  .story-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    margin: 0;
  }
  
  .story-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.35rem;
  }
  
  .story-point {
    padding: 1rem 1rem 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  .story-point strong {
    display: block;
    margin-bottom: 0.35rem;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.4rem;
  }
  
  .contact-tile {
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  .contact-tile span {
    display: block;
    color: #b8c4d8;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    margin-bottom: 0.45rem;
  }
  
  .contact-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 0;
    max-width: 10ch;
  }
  
  .contact-actions {
    margin-top: 1.6rem;
  }
  
  footer {
    padding: 3.5rem 0 2.5rem;
    color: #9eabbe;
  }
  
  .footer-line {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.92rem;
  }
  
  @keyframes floatGlow {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(1%, -2%, 0) scale(1.04); }
  }
  
  @keyframes driftGrid {
    0% { transform: translateY(0); }
    100% { transform: translateY(90px); }
  }
  
  @keyframes shimmer {
    0% { transform: translate3d(0,0,0); }
    100% { transform: translate3d(-40px, 30px, 0); }
  }
  
  @keyframes blobMove {
    0% { transform: translate3d(0,0,0) scale(1); }
    50% { transform: translate3d(4vw,-2vw,0) scale(1.06); }
    100% { transform: translate3d(-3vw,2vw,0) scale(0.96); }
  }
  
  @keyframes driftCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }
  
  @media (max-width: 1080px) {
    .hero-grid,
    .story-grid,
    .pricing-grid,
    .contact-grid,
    .gallery-grid,
    .service-row {
      grid-template-columns: 1fr;
    }
  
    .hero-side {
      min-height: 580px;
      padding-left: 0;
    }
  
    .float-top { left: 0.3rem; }
    .float-bottom { right: 0.3rem; }
    .service-price { justify-self: start; }
    .price-shell.featured { transform: none; }
    .gallery-grid { grid-auto-rows: 260px; }
    .gallery-item.large,
    .gallery-item.tall { grid-row: span 1; }
  }
  
  @media (max-width: 720px) {
    .wrap { width: min(100% - 1rem, 1180px); }
    nav { display: none; }
    .hero { padding-top: 3.8rem; }
    h1 { max-width: 100%; }
    .hero-side { min-height: 500px; }
    .hero-panel { width: 100%; }
    .float-panel { width: 190px; }
    .hero-overlay { grid-template-columns: 1fr; }
    .section-head { align-items: start; }
    .service-row,
    .price-shell,
    .story-shell,
    .contact-shell,
    .gallery-head { padding-left: 1.1rem; padding-right: 1.1rem; }
    .footer-line { flex-direction: column; align-items: flex-start; }
  }

@media (max-width: 720px) {
  .brand-logo-wrap { width: 38px; height: 38px; flex-basis: 38px; }
  .brand-text strong { font-size: 0.78rem; }
  .brand-text small { font-size: 0.52rem; }
}


.comparison {
  padding: var(--section-space) 0 0;
}

.comparison-shell {
  position: relative;
  padding: 1.4rem;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.comparison-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.comparison-copy h3 {
  margin: 0.6rem 0 0;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.comparison-copy p {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.75;
}

@media (max-width: 1080px) {
  .comparison-copy {
    align-items: start;
  }
}

/* =========================
BLACK HAND FINISHES — PREMIUM UPGRADE LAYER
Supports expanded HTML sections without altering base layout
========================= */

:root {
  --gold: #ffb45c;
  --gold-soft: rgba(255, 180, 92, 0.18);
}

/* Contact links */
.contact-tile a {
  color: #f5f7fb;
  transition: color 0.25s ease;
}

.contact-tile a:hover {
  color: var(--gold);
}

/* Stronger premium CTA feel */
.btn-primary {
  border-color: var(--gold-soft);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.18),
    0 0 34px rgba(255,180,92,0.12);
}

.nav-cta:hover {
  border-color: var(--gold-soft);
}

/* Signature package emphasis */
.price-shell.featured {
  border-color: rgba(255, 180, 92, 0.34);
  box-shadow:
    0 28px 100px rgba(0,0,0,0.48),
    0 0 70px rgba(255,180,92,0.10),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.price-shell.featured .price-tag {
  color: #fff3df;
  border-color: rgba(255,180,92,0.28);
  background: rgba(255,180,92,0.08);
}

/* New section anchor support */
#process,
#mobile,
#condition,
#fleet {
  scroll-margin-top: 90px;
}

/* New section price/status pills */
#process .service-price,
#mobile .service-price,
#condition .service-price,
#fleet .service-price {
  color: #fff3df;
  border-color: rgba(255,180,92,0.18);
  background: rgba(255,180,92,0.055);
}

/* Improve longer copy readability */
.service-desc,
.service-meta,
.price-sub,
.story-shell p,
.contact-shell p {
  text-wrap: pretty;
}

/* Subtle service hover reinforcement */
.service-row:hover .service-price {
  border-color: rgba(255,180,92,0.28);
  box-shadow: 0 0 22px rgba(255,180,92,0.08);
}

/* Six contact tiles stay clean on desktop */
@media (min-width: 1081px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile polish */
@media (max-width: 720px) {
  .hero-copy p {
    font-size: 1rem;
  }

  .service-price {
    width: fit-content;
  }

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

/* =========================
BLACK HAND FINISHES — AUTOMOTIVE CONTRAST PASS
Black / charcoal / smoke / warm gold / chrome
========================= */

:root {
  --gold: #d6a35a;
  --gold-bright: #f0c078;
  --gold-soft: rgba(214, 163, 90, 0.18);
  --smoke: rgba(255, 255, 255, 0.045);
  --hard-line: rgba(255, 255, 255, 0.085);
}

/* Reduce blue / purple AI glow */
body {
  background:
    radial-gradient(circle at top left, rgba(214,163,90,0.055), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.035), transparent 24%),
    linear-gradient(180deg, #030405 0%, #08090c 48%, #030405 100%);
}

body::before {
  background:
    radial-gradient(circle at 20% 30%, rgba(214,163,90,0.07), transparent 18%),
    radial-gradient(circle at 72% 25%, rgba(255,255,255,0.04), transparent 16%),
    radial-gradient(circle at 55% 68%, rgba(255,255,255,0.035), transparent 20%);
}

.aurora span:nth-child(1),
.aurora span:nth-child(2),
.aurora span:nth-child(3) {
  background: #d6a35a;
  opacity: 0.055;
}

/* Harder automotive panels */
.hero-panel,
.float-panel,
.service-band,
.price-shell,
.story-shell,
.contact-shell,
.gallery-head,
.comparison-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.018)),
    linear-gradient(135deg, rgba(214,163,90,0.025), transparent 42%);
  border: 1px solid var(--hard-line);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.58),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

/* Sharper service rows */
.service-row {
  border-top: 1px solid rgba(255,255,255,0.075);
}

.service-row:hover {
  background: linear-gradient(90deg, rgba(214,163,90,0.05), rgba(255,255,255,0.02));
}

/* Warm gold accents */
.eyebrow::before,
.price-list li::before {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 16px rgba(214,163,90,0.28);
}

.chrome-text {
  background: linear-gradient(120deg, #ffffff 0%, #d8dce2 24%, #f0c078 45%, #9fa6b0 66%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* Less futuristic buttons */
.btn-primary {
  background:
    linear-gradient(180deg, rgba(214,163,90,0.18), rgba(214,163,90,0.08)),
    #090a0d;
  border-color: rgba(214,163,90,0.42);
  color: #fff7e8;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 0 0 rgba(214,163,90,0);
}

.btn-primary:hover {
  border-color: rgba(240,192,120,0.68);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 24px rgba(214,163,90,0.16);
}

.btn-secondary {
  background: rgba(0,0,0,0.24);
  border-color: rgba(255,255,255,0.12);
  color: #dfe4ec;
}

.btn-secondary:hover {
  border-color: rgba(214,163,90,0.38);
  color: #fff3df;
}

/* Calm down shiny sweep */
.btn::before,
.gallery-item::after {
  background: linear-gradient(120deg, transparent 20%, rgba(214,163,90,0.14) 50%, transparent 80%);
}

/* Featured pricing: premium, not sci-fi */
.price-shell.featured {
  border-color: rgba(214,163,90,0.34);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.58),
    0 0 44px rgba(214,163,90,0.08),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.price-shell.featured .price-tag {
  color: #fff3df;
  border-color: rgba(214,163,90,0.32);
  background: rgba(214,163,90,0.08);
}

/* Contact and status pills */
.service-price,
.badge,
.contact-tile,
.story-point,
.mini-stat {
  border-color: rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.035);
}

.service-row:hover .service-price,
.contact-tile:hover {
  border-color: rgba(214,163,90,0.28);
  box-shadow: 0 0 20px rgba(214,163,90,0.07);
}
/* =========================
BLACK HAND FINISHES — SERVICE PLATE + PRICING CARD PASS
Makes hero cards and pricing feel less SaaS, more automotive
========================= */

/* Hero floating cards: less glass, more service plate */
.float-panel {
  animation: none;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(12,13,15,0.94), rgba(6,7,9,0.94));
  border: 1px solid rgba(214,163,90,0.18);
  box-shadow:
    0 16px 45px rgba(0,0,0,0.52),
    inset 3px 0 0 rgba(214,163,90,0.55);
  backdrop-filter: blur(8px);
}

.float-label {
  color: var(--gold-bright);
  font-size: 0.68rem;
}

.float-panel strong {
  letter-spacing: -0.02em;
}

.float-panel p {
  color: #c8ced8;
}

/* Mini stats: more like spec plates */
.mini-stat {
  border-radius: 14px;
  background: rgba(5,6,8,0.72);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.mini-stat strong {
  color: #fff3df;
}

/* Pricing cards: flatter, sharper, less app-like */
.price-shell {
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(14,15,18,0.96), rgba(6,7,9,0.98));
  border: 1px solid rgba(255,255,255,0.095);
  box-shadow:
    0 22px 65px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.055);
}

.price-shell::before {
  background:
    linear-gradient(90deg, rgba(214,163,90,0.16), transparent 38%);
  height: 3px;
  bottom: auto;
}

.price-shell.featured {
  border-color: rgba(214,163,90,0.42);
  box-shadow:
    0 28px 80px rgba(0,0,0,0.62),
    0 0 34px rgba(214,163,90,0.10),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.price-tag {
  border-radius: 6px;
  background: rgba(214,163,90,0.08);
  border-color: rgba(214,163,90,0.22);
  color: #fff3df;
}

.price-shell h3 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.25rem;
}

.price-amount {
  letter-spacing: -0.02em;
}

.price-list li::before {
  width: 7px;
  height: 7px;
  margin-top: 0.58rem;
}

/* Buttons inside pricing feel more grounded */
.price-shell .btn {
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

/* Mobile: keep cards clean */
@media (max-width: 720px) {
  .float-panel {
    border-radius: 14px;
  }

  .price-shell {
    border-radius: 18px;
  }
}

