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

:root {
  --red:      #b21919;
  --dark-red: #500e15;
  --darkest:  #2b0509;
  --bg:       #0e0204;
  --surface:  #180407;
  --surface2: #1f060a;
  --text:     #f0eded;
  --muted:    #9a8080;
  --grad:     linear-gradient(135deg, #b21919 0%, #500e15 100%);
  --grad-v:   linear-gradient(180deg, #b21919 0%, #500e15 100%);
  --page-max: 1400px;
  --red-text: #ea3a3a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--dark-red); border-radius: 3px; }

/* ─── NAVBAR ─── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(14, 2, 4, 0.0);
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.site-nav.scrolled {
  background: rgba(14, 2, 4, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(178, 25, 25, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(178,25,25,0.5));
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand .name {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
}
.nav-brand .sub {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--red); }

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

/* Shared "tilted" pill used by lang switch, phone, and CTA. */
.nav-cta,
.nav-phone,
.lang-switch .lang-current {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 10px 20px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.2s, color 0.2s, filter 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
}

/* Primary CTA, red gradient. */
.nav-cta {
  background: var(--grad);
  color: #fff;
}
.nav-cta:hover { filter: brightness(1.15); }

/* Secondary utility buttons, subtle fill, same tilt. */
.nav-phone,
.lang-switch .lang-current {
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.nav-phone:hover,
.lang-switch .lang-current:hover,
.lang-switch.is-open .lang-current {
  background: rgba(178,25,25,0.25);
  color: #fff;
}
.nav-phone svg { display: block; fill: currentColor; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── LANGUAGE SWITCH ─── */
.lang-switch {
  position: relative;
}
.lang-switch .lang-current svg {
  transition: transform 0.2s;
}
.lang-switch.is-open .lang-current svg {
  transform: rotate(180deg);
}
.lang-switch .lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 88px;
  background: rgba(14,2,4,0.97);
  border: 1px solid rgba(178,25,25,0.25);
  list-style: none;
  padding: 4px 0;
  display: none;
  z-index: 110;
}
.lang-switch.is-open .lang-dropdown { display: block; }
.lang-switch .lang-dropdown a {
  display: block;
  padding: 9px 14px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}
.lang-switch .lang-dropdown a:hover {
  background: rgba(178,25,25,0.12);
  color: var(--red);
}
.lang-switch .lang-dropdown a.is-active {
  color: var(--red);
}

/* ─── HERO ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

/* Responsive hero art.
 * Phones get a portrait crop so a tall viewport is filled without pulling down
 * the full landscape frame; wider viewports step up to landscape renditions.
 * Keep these breakpoints in sync with xpertcar_preload_hero() in functions.php,
 * which preloads the matching file via the same media queries. */
.hero-bg,
.page-hero-bg {
  background-image: url('../images/hero-mobile.webp');
}
@media (min-width: 601px) {
  .hero-bg,
  .page-hero-bg { background-image: url('../images/hero-1280.webp'); }
}
@media (min-width: 1281px) {
  .hero-bg,
  .page-hero-bg { background-image: url('../images/hero-1920.webp'); }
}
#hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(14,2,4,0.90) 0%,
    rgba(43,5,9,0.70) 50%,
    rgba(14,2,4,0.30) 100%
  );
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
  max-width: 700px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow-line {
  width: 36px;
  height: 2px;
  background: var(--grad);
}
.hero-eyebrow span {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 500;
}

.hero-title {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-title .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(240,237,237,0.75);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 14px 32px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: filter 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { filter: brightness(1.15); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 14px 32px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-1px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: float 2s ease-in-out infinite;
}
.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll svg { width: 18px; height: 18px; }

@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: linear-gradient(135deg, var(--darkest) 0%, var(--dark-red) 100%);
  padding: 32px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  position: relative;
  z-index: 2;
}
.stat-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-num span {
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ─── SECTION COMMON ─── */
section { padding: 96px 5%; max-width: var(--page-max); margin-left: auto; margin-right: auto; }
#hero { max-width: none; width: 100%; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.section-eyebrow-line {
  width: 28px; height: 2px;
  background: var(--grad);
}
.section-eyebrow span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-text);
  font-weight: 500;
}
.section-title {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* ─── SERVICES ─── */
#services { background: var(--surface); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

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

.service-card {
  background: var(--surface2);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { background: #220609; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(178,25,25,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: border-color 0.3s, background 0.3s;
}
.service-card:hover .service-icon {
  border-color: var(--red);
  background: rgba(178,25,25,0.08);
}
.service-icon svg { width: 24px; height: 24px; fill: var(--red); }

.service-num {
  position: absolute;
  top: 28px; right: 24px;
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(178,25,25,0.07);
  line-height: 1;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(178,25,25,0.12); }

.service-title {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── PROCESS ─── */
#process { background: var(--bg); }

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}

.process-image-wrap {
  position: relative;
}
.process-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.process-image-accent {
  position: absolute;
  top: -16px; right: -16px;
  width: 80px; height: 80px;
  background: var(--grad);
  z-index: -1;
}
.process-image-accent2 {
  position: absolute;
  bottom: -16px; left: -16px;
  width: 120px; height: 4px;
  background: var(--grad);
}

.process-steps { display: flex; flex-direction: column; gap: 28px; }
.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--grad);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}
.step-title {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── WHY US ─── */
#why { background: var(--surface); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 80px;
  margin-top: 56px;
}

.why-item {
  display: flex;
  gap: 18px;
}
.why-icon-wrap {
  flex-shrink: 0;
  position: relative;
}
.why-icon-wrap::after {
  content: '';
  position: absolute;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(178,25,25,0.3), transparent);
}
.why-icon {
  width: 48px; height: 48px;
  background: rgba(178,25,25,0.1);
  border: 1px solid rgba(178,25,25,0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 22px; height: 22px; fill: var(--red); }
.why-title {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.why-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--bg); }

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header .section-eyebrow {
  justify-content: center;
}

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

.testimonial-card {
  background: var(--surface);
  padding: 32px 28px;
  position: relative;
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-top-color: var(--red); }

.testimonial-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--red);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star { color: var(--red); font-size: 0.9rem; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.author-car {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ─── CTA BAND ─── */
#cta-band {
  background: linear-gradient(135deg, var(--darkest) 0%, var(--dark-red) 60%, var(--red) 100%);
  padding: 72px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-band::before {
  content: 'XPERT';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}
.cta-band-title {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  position: relative;
}
.cta-band-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  position: relative;
}

/* ─── CONTACT ─── */
#contact { background: var(--surface); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(178,25,25,0.1);
  border: 1px solid rgba(178,25,25,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; fill: var(--red); }
.contact-item-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-text);
  margin-bottom: 3px;
}
.contact-item-value {
  font-size: 0.9rem;
  color: var(--text);
}
.contact-item-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item-value a:hover { color: var(--red); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input, .form-select, .form-textarea {
  background: var(--surface2);
  border: 1px solid rgba(178,25,25,0.15);
  color: var(--text);
  font-family: 'Inter', 'Inter Fallback', sans-serif;
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--red);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b21919' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}
.form-select option { background: var(--surface2); }
.form-textarea { resize: vertical; min-height: 120px; }

/* Honeypot, visually hidden but present in the DOM; bots fill it, humans don't. */
.xc-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Submission status */
.form-status {
  min-height: 1.2em;
  font-size: 0.82rem;
  line-height: 1.5;
  margin-top: 4px;
}
.form-status.is-error {
  color: #ff6b6b;
}
.form-status.is-success {
  color: #7cd98d;
}

/* ─── FOOTER ─── */
footer.site-footer {
  background: var(--bg);
  border-top: 1px solid rgba(178,25,25,0.15);
  padding: 48px 5% 28px;
  max-width: var(--page-max);
  margin-left: auto;
  margin-right: auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(178,25,25,0.1);
}
.footer-brand img {
  height: 52px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 6px rgba(178,25,25,0.3));
}
.footer-brand-name {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--red-text);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 280px;
}
.footer-social {
  list-style: none;
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 0;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--red); }
.footer-social svg { display: block; }

.footer-col-title {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(178,25,25,0.2);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
}
.footer-reg {
  font-size: 0.68rem;
  color: var(--muted);
}

/* ─── PRICING ─── */
#pricing {
  background: var(--bg);
}
.pricing-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.pricing-header .section-eyebrow { justify-content: center; }
.pricing-header .section-sub { margin: 0 auto; max-width: 640px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--surface2);
  border: 1px solid rgba(178,25,25,0.12);
  padding: 36px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.pricing-card:hover {
  border-color: rgba(178,25,25,0.45);
  transform: translateY(-3px);
}

.pricing-card.is-featured {
  background: linear-gradient(180deg, #220609 0%, var(--surface2) 60%);
  border-color: var(--red);
  box-shadow: 0 8px 48px -12px rgba(178,25,25,0.35);
}
.pricing-card.is-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
}

.pricing-card-ribbon {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 6px 14px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  white-space: nowrap;
}

.pricing-card-head {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(178,25,25,0.15);
}
.pricing-card-level {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  color: var(--red-text);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.pricing-card-name {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pricing-card-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}
.pricing-card-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
}
.pricing-card-price .price-num {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.pricing-card.is-featured .pricing-card-price .price-num {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-card-price .price-currency {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--red);
  margin-top: 6px;
}


.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.pricing-features li {
  display: flex;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(240,237,237,0.85);
  line-height: 1.5;
}
.pricing-check {
  flex-shrink: 0;
  width: 14px;
  height: 10px;
  color: var(--red);
  margin-top: 6px;
}

.pricing-includes {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red-text);
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(178,25,25,0.2);
}

.pricing-note-inline {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 20px;
}

.pricing-card-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  background: transparent;
  color: var(--text);
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 18px;
  border: 1px solid rgba(178,25,25,0.35);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pricing-card-cta:hover {
  background: rgba(178,25,25,0.15);
  border-color: var(--red);
  color: #fff;
}
.pricing-card-cta-featured {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
}
.pricing-card-cta-featured:hover {
  filter: brightness(1.15);
  background: var(--grad);
  color: #fff;
}

/* Extras + surcharges row */
.pricing-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
  background: rgba(178,25,25,0.12);
}
.pricing-extras-col {
  background: var(--surface2);
  padding: 28px 28px 24px;
}
.pricing-extras-title {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(178,25,25,0.2);
}
.pricing-extras-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-extras-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.05);
}
.pricing-extras-list li:last-child { border-bottom: none; }
.pricing-extras-name { color: rgba(240,237,237,0.85); }
.pricing-extras-price {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-weight: 600;
  color: var(--red-text);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* ─── GALLERY PAGE ─── */
#gallery-page {
  padding: 80px 5%;
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1400px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface2);
  cursor: zoom-in;
  text-decoration: none;
  color: inherit;
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(43,5,9,0) 0%, rgba(178,25,25,0.55) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.gallery-empty {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 48px 24px;
  background: var(--surface2);
  border: 1px solid rgba(178,25,25,0.2);
  color: var(--muted);
  line-height: 1.7;
}
.gallery-empty p { margin-bottom: 24px; }

/* ─── LIGHTBOX ─── */
.gl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(14,2,4,0.96);
  align-items: center;
  justify-content: center;
  padding: 40px 72px;
}
.gl-lightbox.is-open { display: flex; }
.gl-stage {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.gl-image {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 16px 64px -16px rgba(0,0,0,0.6);
}
.gl-caption {
  font-size: 0.85rem;
  color: rgba(240,237,237,0.7);
  text-align: center;
  max-width: 640px;
  line-height: 1.5;
}
.gl-caption:empty { display: none; }
.gl-close,
.gl-prev,
.gl-next {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.gl-close:hover,
.gl-prev:hover,
.gl-next:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(178,25,25,0.08);
}
.gl-close { top: 20px; right: 20px; font-size: 26px; }
.gl-prev  { left: 20px;  top: 50%; transform: translateY(-50%); font-size: 28px; }
.gl-next  { right: 20px; top: 50%; transform: translateY(-50%); font-size: 28px; }

/* ─── PAGE HERO (secondary pages) ─── */
.page-hero {
  position: relative;
  padding: 160px 5% 80px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
  filter: saturate(0.8);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(14,2,4,0.94) 0%,
    rgba(43,5,9,0.86) 60%,
    rgba(14,2,4,0.7) 100%
  );
  z-index: -1;
}
.page-hero-content {
  max-width: 760px;
}
.page-hero .hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.page-hero .hero-sub {
  max-width: 560px;
  margin-bottom: 0;
}

/* ─── BOOKING (Amelia) ─── */
#booking {
  background: var(--surface);
}
.booking-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
.booking-fallback {
  background: var(--surface2);
  border: 1px solid rgba(178,25,25,0.2);
  padding: 40px 32px;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}
.booking-fallback p { max-width: 520px; margin: 0 auto; }
.booking-fallback .booking-admin-hint {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--red);
  opacity: 0.8;
}

/* Amelia plugin runs in its own shadow-y container, soften its defaults
   so it blends into the dark theme without fighting plugin updates. */
.booking-wrap .amelia-v2-booking,
.booking-wrap .amelia-app-booking {
  --ameliaPrimary: var(--red);
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(178,25,25,0.4), transparent);
  margin: 0 5%;
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
  .pricing-extras { grid-template-columns: 1fr; }
  .process-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gl-lightbox { padding: 20px 56px; }
  .process-image-wrap { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  .services-header { flex-direction: column; align-items: flex-start; }

  .nav-cta,
  .nav-phone,
  .lang-switch .lang-current { padding: 8px 16px; font-size: 0.7rem; }
  .nav-actions { gap: 6px; }
}

@media (max-width: 600px) {
  section { padding: 64px 5%; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 24px 5%; }
  .nav-phone-text { display: none; }
  .nav-phone { padding: 8px 14px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gl-lightbox { padding: 12px 52px; }
  .gl-close { top: 10px; right: 10px; width: 40px; height: 40px; }
  .gl-prev  { left: 6px;  width: 40px; height: 40px; }
  .gl-next  { right: 6px; width: 40px; height: 40px; }
}

/* ─── COOKIE CONSENT ─── */
/* display:flex below would override the hidden attribute's display:none. */
.xc-cookie[hidden] { display: none; }
.xc-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 300;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px 22px;
  background: rgba(24, 4, 7, 0.97);
  border: 1px solid rgba(178, 25, 25, 0.45);
  border-top: 3px solid var(--red);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}
.xc-cookie-text {
  flex: 1 1 320px;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text);
}
.xc-cookie-text a {
  color: var(--red-text);
  text-decoration: underline;
}
.xc-cookie-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.xc-cookie-btn {
  padding: 10px 22px;
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s, border-color 0.2s, color 0.2s;
}
.xc-cookie-accept {
  background: var(--grad);
  border: none;
  color: #fff;
}
.xc-cookie-accept:hover { filter: brightness(1.15); }
.xc-cookie-decline {
  background: none;
  border: 1px solid rgba(178, 25, 25, 0.5);
  color: var(--text);
}
.xc-cookie-decline:hover { border-color: var(--red); color: var(--red-text); }

/* ─── PRIVACY POLICY PAGE ─── */
.privacy-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 5% 96px;
}
.privacy-updated {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 32px;
}
.privacy-section { margin-bottom: 36px; }
.privacy-section h2 {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 12px;
}
.privacy-section p,
.privacy-section li {
  font-size: 0.9rem;
  line-height: 1.75;
  color: #cdb9b9;
}
.privacy-section p { margin-bottom: 10px; }
.privacy-section ul {
  margin: 6px 0 10px;
  padding-left: 22px;
}
.privacy-section a { color: var(--red-text); }

/* ─── PRICING EXTRAS (front page) ─── */
.price-from {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
}
.pricing-full-list {
  text-align: center;
  margin-top: 40px;
}

/* ─── PRICE LIST PAGE ─── */
#pricelist { background: var(--surface); }
.pl-wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 5% 96px;
}
.pl-intro {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #cdb9b9;
  margin-bottom: 14px;
  max-width: 720px;
}
.pl-section { margin-top: 48px; }
.pl-section > h2 {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(178, 25, 25, 0.4);
}
.pl-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #cdb9b9;
  margin-bottom: 14px;
}
.pl-sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pl-size {
  background: #2b0d12;
  border: 1px solid rgba(178, 25, 25, 0.4);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pl-size strong {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
.pl-size span {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #cdb9b9;
}
.pl-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 10px 28px;
  background: #2b0d12;
  border: 1px solid rgba(178, 25, 25, 0.3);
  padding: 20px 22px;
  margin-bottom: 12px;
}
.pl-item-head h3 {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 6px;
}
.pl-item-desc {
  font-size: 0.84rem;
  line-height: 1.65;
  color: #cdb9b9;
}
.pl-includes {
  margin: 10px 0 0;
  padding-left: 18px;
  columns: 2;
  column-gap: 24px;
}
.pl-includes li {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #cdb9b9;
  break-inside: avoid;
}
.pl-prices {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: center;
}
.pl-prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.82rem;
  color: #cdb9b9;
}
.pl-prices li strong {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 1rem;
  color: var(--red-text);
  white-space: nowrap;
}
.pl-table {
  list-style: none;
  border: 1px solid rgba(178, 25, 25, 0.3);
  background: #2b0d12;
}
.pl-table li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 18px;
  font-size: 0.85rem;
  color: #cdb9b9;
}
.pl-table li + li { border-top: 1px solid rgba(178, 25, 25, 0.18); }
.pl-table li strong {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  color: var(--red-text);
  white-space: nowrap;
}
.pl-note {
  margin-top: 12px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--muted);
}
.pl-cta {
  text-align: center;
  margin-top: 56px;
}

@media (max-width: 900px) {
  .pl-sizes { grid-template-columns: 1fr; }
  .pl-item { grid-template-columns: 1fr; }
  .pl-prices { align-self: stretch; }
  .pl-includes { columns: 1; }
}

/* ─── SERVICE PAGES ─── */
#service-page { background: var(--surface); }
.sv-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 5% 96px;
}
.sv-section { margin-bottom: 44px; }
.sv-section h2 {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 14px;
}
.sv-section p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #cdb9b9;
  margin-bottom: 12px;
}
.sv-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 6px 0 12px;
}
.sv-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #cdb9b9;
}
.sv-list .pricing-check {
  flex: 0 0 14px;
  width: 14px;
  margin-top: 6px;
  color: var(--red-text);
}
.sv-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.sv-step {
  display: flex;
  gap: 18px;
  background: #2b0d12;
  border: 1px solid rgba(178, 25, 25, 0.3);
  padding: 18px 20px;
}
.sv-step-num {
  flex: 0 0 auto;
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red-text);
  line-height: 1;
  padding-top: 2px;
}
.sv-step-title {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 6px;
}
.sv-step-desc {
  font-size: 0.86rem;
  line-height: 1.65;
  color: #cdb9b9;
  margin: 0;
}
.sv-faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sv-faq-item {
  background: #2b0d12;
  border: 1px solid rgba(178, 25, 25, 0.3);
  border-left: 3px solid var(--red);
  padding: 16px 20px;
}
.sv-faq-q {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.sv-faq-a {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #cdb9b9;
  margin: 0;
}
.sv-cta {
  margin-top: 56px;
  text-align: center;
  background: #2b0d12;
  border: 1px solid rgba(178, 25, 25, 0.35);
  border-top: 3px solid var(--red);
  padding: 40px 32px;
}
.sv-cta h2 {
  font-family: 'Oswald', 'Oswald Fallback', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 12px;
}
.sv-cta p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #cdb9b9;
  max-width: 560px;
  margin: 0 auto 24px;
}
.sv-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Front page service cards are links to the service pages. */
a.service-card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer; /* base .service-card sets cursor:default */
}

@media (max-width: 900px) {
  .sv-list { grid-template-columns: 1fr; }
}
