/* ============================================================
   KOSTER MOBILE DETAIL — hero styles
   Flat. Sharp. No gradients. Solid blue + white on black.
   ============================================================ */

:root {
  --bg: #080a10;
  --bg-strip: #0b0e15;
  --ink: #ffffff;
  --ink-dim: #aab2c0;

  --blue: #2b8fff;
  --blue-hov: #4ba2ff;

  --line: rgba(255, 255, 255, .14);

  --container: 1240px;

  --font-display: "Saira Condensed", "Arial Narrow", sans-serif;
  --font-body: "Saira", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 28px;
}

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

/* ---------- buttons (flat, sharp) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 15px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  white-space: nowrap;
}

.btn-lg {
  font-size: 18px;
  padding: 15px 36px;
}

.btn-primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-hov);
  border-color: var(--blue-hov);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 58px;
  width: 58px;
  border-radius: 50%;
  /* crop the logo's square corners to the round badge */
  object-fit: cover;
  display: block;
}

.brand-mark {
  display: grid;
  place-items: center;
}

.brand-mark-letter {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  fill: #fff;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: .9;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 27px;
  letter-spacing: .04em;
  color: #fff;
}

.brand-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .42em;
  color: var(--blue);
  margin-left: 2px;
}

.main-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 15px;
  color: var(--ink-dim);
  padding: 6px 0;
  position: relative;
  transition: color .15s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width .18s ease;
}

.main-nav a:hover {
  color: #fff;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .03em;
  color: var(--ink);
}

.header-phone svg {
  color: var(--blue);
}

.header-phone:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  transition: .2s;
}

/* ============================================================
   HERO — full-bleed rotating photos + bespoke left headline
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* 3 stacked photos, cross-fade between them */
.hero-photo {
  position: absolute;
  inset: 0;
  background: var(--bg) center / cover no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-photo.is-active {
  opacity: 1;
}

/* background header video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg);
}

/* flat dark overlay for text legibility (not a gradient) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 16, .5);
}

.hero-inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  min-height: 100vh;
  padding-block: 120px 90px;
}

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

.hero-title {
  font-family: "Anton", var(--font-display), sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: .96;
  font-size: clamp(48px, 8vw, 118px);
  color: #fff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .45);
}

.hero-cta {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* slide indicator dots, bottom-left */
.hero-dots {
  position: absolute;
  left: 0;
  bottom: 46px;
  display: flex;
  gap: 12px;
}

.hdot {
  width: 11px;
  height: 11px;
  border: 1.5px solid rgba(255, 255, 255, .5);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: .15s;
}

.hdot:hover {
  border-color: #fff;
}

.hdot.is-active {
  background: var(--blue);
  border-color: var(--blue);
}

/* ============================================================
   CONDENSED FLOATING NAV — appears on scroll
   ============================================================ */
.floatnav {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 80;
  width: 300px;
  background: #0a0e17;
  /* faint blue pixel-grid texture, like the reference component */
  background-image:
    repeating-linear-gradient(0deg, rgba(43, 143, 255, .10) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(90deg, rgba(43, 143, 255, .10) 0 1px, transparent 1px 9px);
  box-shadow: inset 0 0 0 1px var(--line), 0 18px 40px rgba(0, 0, 0, .5);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

body.is-condensed .floatnav {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.floatnav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
}

.floatnav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  letter-spacing: .14em;
  font-size: 16px;
  color: #fff;
}

.floatnav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 4px;
}

.floatnav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: .2s ease;
}

.floatnav.is-open .floatnav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.floatnav.is-open .floatnav-toggle span:nth-child(2) {
  opacity: 0;
}

.floatnav.is-open .floatnav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.floatnav-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height .32s ease;
}

.floatnav.is-open .floatnav-menu {
  max-height: 440px;
}

.floatnav-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .07);
  transition: background .15s ease, color .15s ease;
}

.floatnav-menu a:hover {
  background: rgba(43, 143, 255, .12);
  color: #fff;
}

.floatnav-menu a:hover .fn-arrow {
  color: #fff;
}

.floatnav-menu .fn-arrow {
  color: var(--blue);
  font-size: 16px;
}

.floatnav-menu .fn-cta {
  color: var(--blue);
}

/* header slides away once condensed */
body.is-condensed .site-header {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.site-header {
  transition: transform .3s ease, opacity .3s ease;
}

/* ============================================================
   SCROLL TICKER — moves horizontally as you scroll
   ============================================================ */
.ticker {
  background: var(--bg-strip);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 22px;
  overflow: hidden;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

.tick {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: 20px;
  color: var(--ink);
  padding: 0 30px;
}

.tick-sep {
  color: var(--blue);
  font-size: 11px;
  transform: translateY(-1px);
}

/* ============================================================
   SERVICES — chamfered image cards (flat, sharp)
   ============================================================ */
.services {
  padding-block: 88px;
}

.section-head {
  margin-bottom: 42px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .36em;
  font-size: 14px;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1;
  font-size: clamp(30px, 4.4vw, 52px);
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
  /* chamfer top-left + bottom-right — echoes the angular logo shapes */
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  /* flat hairline border that follows the chamfer; turns blue on hover */
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow .2s ease, clip-path .4s ease, opacity .6s cubic-bezier(0.2, 0.8, 0.2, 1), transform .6s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0;
  transform: translateX(-100px);
}

.service-card.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* on hover: border goes blue AND the chamfer swaps to the other two corners */
.service-card:hover {
  box-shadow: inset 0 0 0 2px var(--blue);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.card-media {
  position: absolute;
  inset: 0;
}

.card-img {
  position: absolute;
  inset: 0;
  background: #0d1017 center / cover no-repeat;
  opacity: 0;
  transition: opacity .5s ease;
}

.card-img.is-active {
  opacity: 1;
}

/* >>> Drop each service photo here (uncomment + point at your files). <<<
   3 layers per card — they cross-fade in sequence while the card is hovered. */
.img-ceramic-1 {
  background-image: url('awaitingimage');
}

.img-ceramic-2 {
  background-image: url('awaitingimage');
}

.img-ceramic-3 {
  background-image: url('awaitingimage');
}

.img-wax-1 {
  background-image: url('awaitingimage');
}

.img-wax-2 {
  background-image: url('awaitingimage');
}

.img-wax-3 {
  background-image: url('awaitingimage');
}

.img-vac-1 {
  background-image: url('awaitingimage');
}

.img-vac-2 {
  background-image: url('awaitingimage');
}

.img-vac-3 {
  background-image: url('awaitingimage');
}

.img-paint-1 {
  background-image: url('porsche_full_front.png');
}

.img-paint-2 {
  background-image: url('awaitingimage');
}

.img-paint-3 {
  background-image: url('awaitingimage');
}

.card-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 10, 16, .82);
  border-top: 2px solid var(--blue);
  padding: 16px 22px 18px;
}

.card-bar h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 24px;
  line-height: 1;
  color: #fff;
}

.card-bar p {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--ink-dim);
}

.card-tag {
  position: absolute;
  top: 16px;
  left: 22px;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
  color: #fff;
  background: var(--blue);
  padding: 6px 13px;
}

/* ============================================================
   MOBILE DETAILING — banner card
   ============================================================ */
.mobile-cta {
  padding-block: 20px 88px;
}

.mobile-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  overflow: hidden;
  background: var(--bg-strip);
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
  box-shadow: inset 0 0 0 1px var(--line);
}

.mobile-copy {
  position: relative;
  z-index: 1;
  padding: 54px 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.mobile-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: .98;
  letter-spacing: .01em;
  font-size: clamp(28px, 3.6vw, 46px);
  color: #fff;
  margin-bottom: 18px;
}

.mobile-text {
  max-width: 420px;
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.mobile-media {
  position: relative;
}

/* >>> Drop your van / mobile-rig photo here <<< */
.mobile-img {
  position: absolute;
  inset: 0;
  background: #0d1017 center / cover no-repeat;
  background-image: url('awaitingimage');
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding-block: 0 96px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  clip-path: polygon(28px 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%, 0 28px);
  box-shadow: inset 0 0 0 1px var(--line);
}

/* >>> Drop a photo of Masen / a finished car here <<< */
.about-img {
  position: absolute;
  inset: 0;
  background: #0d1017 center / cover no-repeat;
  background-image: url('awaitingimage');
}

.about-copy .section-title {
  margin-bottom: 24px;
}

.about-copy p {
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.72;
  max-width: 560px;
  margin-bottom: 16px;
}

.about-tag {
  font-family: var(--font-display) !important;
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 22px !important;
  color: var(--blue) !important;
  margin: 24px 0 28px !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr .8fr 1.4fr;
  gap: 40px;
  padding-block: 66px 50px;
}

.footer-logo {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink-dim);
  box-shadow: inset 0 0 0 1px var(--line);
  transition: color .15s ease, box-shadow .15s ease;
}

.footer-social a:hover {
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 15px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  color: var(--ink-dim);
  font-size: 15px;
  padding: 5px 0;
  transition: color .15s ease;
}

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

.footer-info p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 15px;
}

.footer-info strong {
  color: #fff;
  font-weight: 600;
}

.footer-info a {
  display: inline;
  color: var(--blue);
  padding: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-block: 24px;
  color: var(--ink-dim);
  font-size: 14px;
}

.footer-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  letter-spacing: .14em;
  color: var(--blue);
  font-size: 15px;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
  padding-block: 88px;
  background: var(--bg);
}

.portfolio .section-head {
  border-bottom: none;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.portfolio-card {
  background: var(--bg-strip);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 0 2px var(--blue), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.portfolio-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66%;
  /* 3:2 aspect ratio */
  overflow: hidden;
}

.portfolio-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.05);
}

.portfolio-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-car {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.portfolio-info {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.portfolio-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio-tag {
  background: rgba(43, 143, 255, 0.15);
  color: var(--blue);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  padding-block: 88px;
  background: var(--bg);
}

.reviews .section-head {
  border-bottom: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.review-card {
  background: var(--bg-strip);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px var(--blue), 0 12px 30px rgba(0, 0, 0, 0.5);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: #dc2626;
  /* default red */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  font-family: var(--font-display);
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.review-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 24px;
}

.review-response {
  background: rgba(43, 143, 255, 0.05);
  border-left: 3px solid var(--blue);
  padding: 16px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
}

.review-response strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.review-response p {
  color: var(--ink-dim);
  line-height: 1.5;
}

.pkg-includes ul {
  list-style: none;
}

.pkg-includes li {
  font-size: 14px;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pkg-includes li::before {
  content: "•";
  color: var(--ink-dim);
}

.pkg-price {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  padding: 24px 30px;
  font-family: system-ui, -apple-system, sans-serif;
}

.btn-modal-book {
  display: block;
  text-align: center;
  background: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  padding: 14px;
  margin: 0 30px 30px;
  text-decoration: none;
  text-transform: none;
  font-family: system-ui, -apple-system, sans-serif;
  transition: opacity 0.2s;
  cursor: pointer;
  border: none;
}

.btn-modal-book:hover {
  opacity: 0.9;
}

.pkg-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #0a0a0a;
}

.pkg-media img {
  max-width: 100%;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

/* ============================================================
   BOOKING FORM (Multi-Step)
   ============================================================ */
.booking-section {
  background: #06080c;
  padding-block: 80px;
  border-top: 1px solid var(--line);
}

.booking-container {
  max-width: 900px;
}

/* Progress Bar */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
  position: relative;
}

.booking-progress::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  background: var(--blue);
  width: var(--progress, 0%);
  /* updated via JS */
  transition: width 0.3s ease;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 13px;
  color: var(--ink-dim);
  font-weight: 500;
  transition: color 0.3s;
}

.step-indicator.active {
  color: #fff;
}

.step-indicator.completed {
  color: #fff;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 700;
}

.step-indicator.active .step-num {
  background: #fff;
  color: #000;
}

.step-indicator.completed .step-num {
  background: var(--blue);
  color: #fff;
}

/* Header */
.booking-header {
  text-align: center;
  margin-bottom: 40px;
}

.booking-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  margin-bottom: 16px;
}

.booking-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 32px;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.booking-subtitle {
  color: var(--ink-dim);
  font-size: 15px;
}

/* Forms */
.form-step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.form-step.is-active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label,
.group-label {
  display: block;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  padding: 10px 0;
  font-family: system-ui, -apple-system, sans-serif;
  transition: border-color 0.2s;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-bottom-color: var(--blue);
}

.form-group select option {
  background: #0a0a0a;
  color: #fff;
}

/* Pills */
.pill-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.pill-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.pill-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.pill-btn.selected {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.pill-group-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill-btn-lg {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.pill-btn-lg:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.pill-btn-lg.selected {
  border-color: var(--blue);
  background: rgba(43, 143, 255, 0.05);
}

/* Navigation Buttons */
.booking-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-back {
  background: transparent;
  border: none;
  color: var(--ink-dim);
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-right: auto;
}

.btn-back:hover {
  color: #fff;
}

.btn-next {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 24px;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-next:hover {
  background: #fff;
  color: #000;
}

/* Summary Box */
.summary-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
}

.sum-section {
  margin-bottom: 20px;
}

.sum-section:last-child {
  margin-bottom: 0;
}

.sum-section h4 {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.sum-section p {
  color: #fff;
  font-size: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 4px 0;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 28px;
    font-size: 17px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 880px) {
  .mobile-card {
    grid-template-columns: 1fr;
  }

  .mobile-media {
    min-height: 240px;
    order: -1;
  }

  .mobile-copy {
    padding: 40px 34px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-media {
    min-height: 280px;
    order: -1;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }

  .pkg-details {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .pkg-media {
    order: -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .modal-controls {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}

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

  .services {
    padding-block: 60px;
  }

  .tick {
    font-size: 17px;
    padding: 0 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pill-group {
    grid-template-columns: 1fr 1fr;
  }

  .booking-progress {
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 16px;
    justify-content: flex-start;
  }

  .step-text {
    display: none;
  }

  .booking-progress::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 620px) {
  .service {
    font-size: 17px;
    padding: 6px 20px;
  }

  .service+.service::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    padding-inline: 18px;
  }

  .header-inner {
    height: 62px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-sub {
    font-size: 10px;
    letter-spacing: .3em;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .floatnav {
    width: calc(100vw - 28px);
    left: 14px;
    top: 14px;
  }
}

/* ============================================================
   HERO SUBHEADING (keyword + location line under the H1)
   ============================================================ */
.hero-sub {
  margin-top: 22px;
  max-width: 620px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(17px, 2.1vw, 22px);
  letter-spacing: .02em;
  line-height: 1.45;
  color: var(--ink-dim);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
}

.hero-sub strong {
  color: #fff;
  font-weight: 700;
}

/* ============================================================
   AREAS OF SERVICE
   ============================================================ */
.areas {
  padding-block: 20px 88px;
}

.areas-card {
  position: relative;
  background: var(--bg-strip);
  box-shadow: inset 0 0 0 1px var(--line);
  border-left: 3px solid var(--blue);
  /* chamfer top-left + bottom-right, echoing the service cards */
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
  padding: 46px 50px;
}

.areas-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: .01em;
  font-size: clamp(26px, 3.6vw, 44px);
  color: #fff;
  margin-bottom: 16px;
}

.areas-hl {
  color: var(--blue);
}

.areas-text {
  max-width: 560px;
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 26px;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.area-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 15px;
  color: #fff;
  background: rgba(43, 143, 255, .12);
  box-shadow: inset 0 0 0 1px var(--blue);
  padding: 9px 18px;
}

@media (max-width: 560px) {
  .areas-card {
    padding: 34px 26px;
  }
}

/* ============================================================
   SERVICE DETAIL PAGES (ceramic-coating.html, etc.)
   ============================================================ */
.svc-page {
  padding-top: 74px;
}

.svc-hero {
  position: relative;
  padding-block: 70px 60px;
  background: var(--bg-strip);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

/* optional image/video behind the service-page hero (set in admin) —
   only shown once media is actually configured */
.svc-hero-media,
.svc-hero-overlay {
  display: none;
}

.svc-hero.has-hero-media .svc-hero-media {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0d1017 center / cover no-repeat;
}

.svc-hero.has-hero-media .svc-hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 10, 16, .64);
}

.svc-hero .container {
  position: relative;
  z-index: 2;
}

.svc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 26px;
}

.svc-breadcrumb a:hover {
  color: var(--blue);
}

.svc-breadcrumb .sep {
  color: var(--blue);
}

.svc-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .36em;
  font-size: 14px;
  color: var(--blue);
  margin-bottom: 14px;
}

.svc-title {
  font-family: "Anton", var(--font-display), sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: .98;
  font-size: clamp(40px, 7vw, 84px);
  color: #fff;
}

.svc-sub {
  margin-top: 20px;
  max-width: 640px;
  color: var(--ink-dim);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.svc-body {
  padding-block: 70px;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}

.svc-main h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: clamp(24px, 3vw, 34px);
  color: #fff;
  margin: 38px 0 16px;
}

.svc-main h2:first-child {
  margin-top: 0;
}

.svc-main p {
  color: var(--ink-dim);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 640px;
}

.svc-includes {
  list-style: none;
  margin: 6px 0 8px;
}

.svc-includes li {
  position: relative;
  padding: 10px 0 10px 26px;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}

.svc-includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 10px;
  background: var(--blue);
  clip-path: polygon(3px 0, 100% 0, 100% calc(100% - 3px), calc(100% - 3px) 100%, 0 100%, 0 3px);
}

/* sticky CTA / info card in the aside */
.svc-aside {
  position: sticky;
  top: 96px;
  background: var(--bg);
  box-shadow: inset 0 0 0 1px var(--line);
  border-top: 3px solid var(--blue);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  padding: 32px 30px;
}

.svc-aside h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.svc-aside p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.svc-aside .btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.svc-aside-areas {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.6;
}

.svc-aside-areas strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  color: #fff;
  margin-bottom: 8px;
}

/* related services strip */
.svc-related {
  padding-block: 10px 80px;
}

.svc-related h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(22px, 3vw, 32px);
  color: #fff;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.svc-related-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  background: var(--bg-strip);
  box-shadow: inset 0 0 0 1px var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 18px;
  color: #fff;
  transition: box-shadow .18s ease, color .18s ease;
}

.svc-related-grid a:hover {
  box-shadow: inset 0 0 0 2px var(--blue);
  color: var(--blue);
}

.svc-related-grid .arrow {
  color: var(--blue);
  font-size: 15px;
}

@media (max-width: 860px) {
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .svc-aside {
    position: static;
  }
}

/* ============================================================
   PORTFOLIO — "View Full Gallery" button
   ============================================================ */
.portfolio-more {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section {
  padding-block: 60px 90px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.gallery-card {
  background: var(--bg-strip);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  transition: box-shadow .25s ease, transform .25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 2px var(--blue), 0 12px 34px rgba(0, 0, 0, .5);
}

.gallery-cover {
  position: relative;
  width: 100%;
  padding-top: 66%;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-slides {
  position: absolute;
  inset: 0;
}

.gallery-cover .gallery-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease, transform .5s ease;
}

.gallery-cover .gallery-slide.is-active {
  opacity: 1;
}

.gallery-card:hover .gallery-cover .gallery-slide.is-active {
  transform: scale(1.05);
}

/* little "N photos" badge on cards with multiple images */
.gallery-count {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  color: #fff;
  background: rgba(8, 10, 16, .82);
  box-shadow: inset 0 0 0 1px var(--blue);
  padding: 5px 10px;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 20px 0;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 54px;
  height: 40px;
  object-fit: cover;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px var(--line);
  transition: box-shadow .15s ease, opacity .15s ease;
  opacity: .8;
}

.gallery-thumb:hover {
  box-shadow: inset 0 0 0 2px var(--blue);
  opacity: 1;
}

.gallery-content {
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-car {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}

.gallery-info {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.gallery-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gallery-tag {
  background: rgba(43, 143, 255, .15);
  color: var(--blue);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.gallery-empty {
  color: var(--ink-dim);
  font-size: 17px;
  text-align: center;
  padding: 60px 0;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4, 6, 11, .92);
  padding: 40px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(8, 10, 16, .7);
  color: #fff;
  border: none;
  box-shadow: inset 0 0 0 1px var(--line);
  cursor: pointer;
  font-family: var(--font-display);
  transition: box-shadow .15s ease, color .15s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  box-shadow: inset 0 0 0 2px var(--blue);
  color: var(--blue);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  font-size: 26px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 62px;
  font-size: 30px;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-counter {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .1em;
  font-size: 14px;
  color: var(--ink-dim);
}

@media (max-width: 560px) {
  .lightbox {
    padding: 16px;
  }

  .lightbox-nav {
    width: 42px;
    height: 52px;
    font-size: 24px;
  }
}

/* ============================================================
   SERVICE CARDS AS PRICING DROPDOWNS
   ============================================================ */
.services-grid {
  align-items: start;
}

.service-item {
  display: flex;
  flex-direction: column;
}

/* the card is now a <button> — strip native button styling */
button.service-card {
  font-family: inherit;
  color: inherit;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0;
  width: 100%;
  display: block;
}

/* small "View Pricing" affordance in the card bar */
.card-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  color: var(--blue);
}

.card-hint .chev {
  transition: transform .25s ease;
  font-style: normal;
}

.service-item.is-open .card-hint .chev {
  transform: rotate(180deg);
}

.service-item.is-open .card-hint {
  color: #fff;
}

/* the dropdown panel */
.service-dropdown {
  margin-top: 12px;
  background: var(--bg-strip);
  box-shadow: inset 0 0 0 1px var(--line);
  border-top: 3px solid var(--blue);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  padding: 24px 26px 26px;
}

.service-dropdown[hidden] {
  display: none;
}

.service-dropdown:not([hidden]) {
  animation: fadeIn .28s ease;
}

.price-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.price-head h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 20px;
  color: #fff;
}

.price-note {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  color: var(--blue);
}

.price-list {
  list-style: none;
  margin: 0 0 22px;
}

.price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  color: var(--ink-dim);
  font-size: 16px;
}

.price-list li:last-child {
  border-bottom: none;
}

.price-list li small {
  color: #6b7280;
  font-size: 13px;
}

.price-list .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
}

.price-cta {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   STEPPED IMAGERY
   ============================================================ */
.stepped-imagery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .stepped-imagery {
    grid-template-columns: 1fr;
  }
}

.stepped-imagery .media-slot {
  aspect-ratio: 4 / 3;
  background: #111 center / cover no-repeat;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px var(--line);
}