/* Lomma Bilexperten Center — pages.css */

/* Hero home */
.hero-home {
  position: relative;
  min-height: min(85vh, 720px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--white);
}

.hero-home__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem 3rem max(1rem, calc((100vw - var(--container)) / 2 + 1rem));
  position: relative;
  z-index: 2;
}

.hero-home__content::after {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  width: 120px;
  height: 100%;
  background: var(--white);
  transform: skewX(-8deg);
  z-index: -1;
}

.hero-home__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0.02em;
  min-height: 2.15em;
}

.hero-home__title span { color: var(--red); }

.hero-home__sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  margin: 1rem 0 0;
  text-transform: uppercase;
}

.hero-home__text {
  margin: 1rem 0 0;
  max-width: 28rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-home__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-home__media {
  position: relative;
  min-height: 280px;
  aspect-ratio: 680 / 436;
  isolation: isolate;
  contain: layout;
}

.hero-home__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 680 / 436;
  object-fit: cover;
  object-position: center;
  min-height: 0;
}

.hero-home__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.5) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.hero-home__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--red);
  z-index: 2;
}

.hero-home__diagonal {
  position: absolute;
  top: 0;
  left: -2px;
  width: 80px;
  height: 100%;
  background: var(--red);
  transform: skewX(-6deg);
  z-index: 2;
  opacity: 0.9;
}

/* Trust bar */
.trust-bar {
  background: var(--black);
  color: var(--white);
  padding: 2rem 0;
  min-height: 132px;
  contain: layout style;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-bar__item {
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.trust-bar__item:last-child { border-right: none; }

.trust-bar__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  color: var(--red);
}

.trust-bar__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.trust-bar__item span {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
  line-height: 1.45;
}

/* Service tiles — homepage + /tjanster/ (shared generator) */
.service-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-tile {
  --tile-accent: var(--red);
  --tile-accent-soft: rgba(196, 30, 36, 0.08);
  --tile-accent-border: rgba(196, 30, 36, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 11.5rem;
  padding: 1.65rem 1.35rem 1.35rem;
  background: linear-gradient(165deg, var(--white) 0%, #fafafa 100%);
  border: 1px solid var(--border);
  border-top: 3px solid var(--tile-accent);
  border-radius: 6px;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-tile__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}

.service-tile__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding-top: 0.35rem;
}

.service-tile__book {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  background: var(--red);
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.service-tile__book:hover {
  background: var(--red-dark);
  color: var(--white);
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--tile-accent-soft) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0.85;
}

.service-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: var(--tile-accent-border);
}

.service-tile--bronze {
  --tile-accent: #a67c52;
  --tile-accent-soft: rgba(166, 124, 82, 0.12);
  --tile-accent-border: rgba(139, 105, 20, 0.45);
}

.service-tile--silver {
  --tile-accent: #8e9aaf;
  --tile-accent-soft: rgba(142, 154, 175, 0.14);
  --tile-accent-border: rgba(160, 168, 184, 0.55);
}

.service-tile--gold {
  --tile-accent: #c9a227;
  --tile-accent-soft: rgba(201, 162, 39, 0.14);
  --tile-accent-border: rgba(184, 134, 11, 0.5);
}

.service-tile--featured {
  border-width: 1px;
  border-top-width: 4px;
  box-shadow: 0 4px 16px rgba(139, 105, 20, 0.12);
}

.service-tile--featured:hover {
  box-shadow: 0 14px 32px rgba(139, 105, 20, 0.18);
}

.service-tile__badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.5rem;
  background: var(--tile-accent);
  color: var(--white);
  border-radius: 3px;
  line-height: 1;
}

.service-tile__icon-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.85rem;
  color: var(--red);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.service-tile--bronze .service-tile__icon-wrap {
  border-color: rgba(166, 124, 82, 0.35);
  background: linear-gradient(145deg, #fff 0%, #f8f4ef 100%);
}

.service-tile--silver .service-tile__icon-wrap {
  border-color: rgba(142, 154, 175, 0.4);
  background: linear-gradient(145deg, #fff 0%, #f4f5f8 100%);
}

.service-tile--gold .service-tile__icon-wrap {
  border-color: rgba(201, 162, 39, 0.4);
  background: linear-gradient(145deg, #fff 0%, #faf6eb 100%);
}

.service-tile__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  /* SVGs embed stroke #c41e24 (= var(--red)); img cannot inherit CSS stroke */
}

.service-tile h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--black);
}

.service-tile__desc {
  position: relative;
  z-index: 1;
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.service-tile__price {
  position: relative;
  z-index: 1;
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
}

.service-tile__price .price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--price-green);
  letter-spacing: 0.01em;
}

.service-tile--bronze .service-tile__price .price-amount,
.service-tile--silver .service-tile__price .price-amount,
.service-tile--gold .service-tile__price .price-amount {
  color: var(--black);
}

.service-tile__price--varies {
  font-size: 0.72rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.4;
  color: var(--text-muted);
  max-width: 11rem;
  margin-left: auto;
  margin-right: auto;
}

.service-tile__more {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  text-decoration: none;
}

.service-tile--bronze .service-tile__more { color: #8b6914; }
.service-tile--silver .service-tile__more { color: #5c6478; }
.service-tile--gold .service-tile__more { color: #9a7b0a; }

.service-tile__more:hover { text-decoration: underline; }

/* Landing page SEO */
.landing-seo h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 2rem 0 0.65rem;
  line-height: 1.2;
  color: var(--black);
}

.landing-seo h2:first-child {
  margin-top: 0;
}

.landing-seo p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.landing-cta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--black);
}

/* Service cards (legacy) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--red);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-amount {
  color: var(--price-green);
  font-family: var(--font-display);
  font-weight: 700;
}

/* Tjänstlista med priser */
.service-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 2px solid var(--black);
}

.service-price-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--black-soft);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-price-list li:last-child { border-bottom: none; }

.service-price-list a {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--white);
}

.service-price-list a:hover { color: var(--price-green); }

.service-price-list .price-amount {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.service-card a.stretched {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Price grid */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--black);
  padding: 1.5rem;
  text-align: center;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--price-green);
}

.price-card p {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================================
   Product tiles — horizontal cards on /produkter/
   Text-left / image-right with a red left accent bar.
   Brand language: Oswald uppercase title + red #c41e24 left bar.
   ============================================================ */
.produkt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.produkt-tile {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(160px, 42%);
  align-items: stretch;
  overflow: hidden;
  min-height: 200px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  isolation: isolate;
  box-shadow: 0 4px 14px rgba(10, 10, 10, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Vertical red brand bar — left edge */
.produkt-tile::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--red);
  z-index: 3;
  transition: width 0.25s ease, background-color 0.25s ease;
}

.produkt-tile__media {
  position: relative;
  overflow: hidden;
  background: var(--off);
}

.produkt-tile__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.produkt-tile__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.5rem 1.35rem 1.5rem 1.65rem;
  color: var(--black);
}

.produkt-tile__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 1.9vw, 1.7rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  color: var(--black);
}

.produkt-tile__desc {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 38ch;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.produkt-tile__cta {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid var(--red);
  align-self: flex-start;
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.produkt-tile:hover,
.produkt-tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(10, 10, 10, 0.14);
  border-color: rgba(196, 30, 36, 0.25);
}

.produkt-tile:hover::before,
.produkt-tile:focus-visible::before {
  width: 6px;
  background: var(--red-light);
}

.produkt-tile:hover .produkt-tile__img,
.produkt-tile:focus-visible .produkt-tile__img {
  transform: scale(1.05);
}

.produkt-tile:hover .produkt-tile__cta,
.produkt-tile:focus-visible .produkt-tile__cta {
  color: var(--red-dark);
  border-bottom-color: var(--red-dark);
  gap: 0.6rem;
}

.produkt-tile:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

/* About page — split hero (not homepage diagonal hero) */
.about-hero-split {
  background: var(--off);
  border-bottom: 4px solid var(--red);
  padding: 3rem 0;
}

.about-hero-split__inner {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 38%);
  gap: 2.5rem;
  align-items: center;
}

.about-hero-split__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin: 0 0 0.5rem;
}

.about-hero-split h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

.about-hero-split__lead {
  font-size: 1.1rem;
  color: var(--text);
  margin: 1rem 0 0;
  line-height: 1.65;
  max-width: 36rem;
}

.about-hero-split__text p {
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0.75rem 0 0;
  max-width: 36rem;
}

.about-hero-split__text .btn {
  margin-top: 1.25rem;
  margin-right: 0.5rem;
}

.about-media {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.about-media img {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
}

/* Zigzag story rows */
.about-zigzag__grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem 0;
}

.about-zigzag__row {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 36%);
  gap: 2rem;
  align-items: center;
}

.about-zigzag__row--reverse {
  grid-template-columns: minmax(200px, 36%) 1fr;
}

.about-zigzag__row--reverse .about-zigzag__text {
  order: 2;
}

.about-zigzag__row--reverse .about-media {
  order: 1;
}

.about-zigzag__row--text-only {
  grid-template-columns: 1fr;
}

.about-zigzag__row--text-only .about-zigzag__text {
  max-width: 56rem;
}

.about-zigzag__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.about-zigzag__text p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 1rem;
}

.about-zigzag__text p:last-child {
  margin-bottom: 0;
}

.about-zigzag__text a {
  color: var(--red);
  font-weight: 500;
}

.about-closing h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.about-closing p {
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .about-hero-split__inner {
    grid-template-columns: 1fr;
  }
  .about-hero-split__inner .about-media {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .about-zigzag__row,
  .about-zigzag__row--reverse {
    grid-template-columns: 1fr;
  }
  .about-zigzag__row .about-media,
  .about-zigzag__row--reverse .about-media {
    order: -1;
    max-width: 100%;
  }
  .about-zigzag__row--reverse .about-zigzag__text {
    order: unset;
  }
}

/* About split (homepage) */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.about-split__dark {
  background: var(--black);
  color: var(--white);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-split__dark h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  margin: 0;
  line-height: 1.15;
}

.about-split__dark h2 span { color: #f5b4b7; }

.about-split__inner {
  max-width: 32rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.about-split__text {
  color: rgba(245, 245, 245, 0.9);
  margin: 1rem 0 0;
  line-height: 1.65;
}

.about-split__aside {
  background: var(--off);
  display: flex;
  align-items: stretch;
  min-height: 400px;
}

.about-split-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: 2.5rem 2rem;
}

.about-split-block__title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin: 0 0 0.25rem;
}

.about-split-block__label {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin: 0 0 0.85rem;
  line-height: 1.2;
}

.about-vehicle-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.about-vehicle-list__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.about-vehicle-list__item img {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  opacity: 0.9;
}

.about-process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about-process-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.about-process-list__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.about-process-list__body {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  padding-top: 0.1rem;
}

.about-process-list__body strong {
  display: inline;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.82rem;
  color: var(--black);
}

/* Vehicle types */
.vehicle-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.vehicle-pill {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.65rem 1.25rem;
  border: 2px solid var(--black);
  background: var(--white);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.review-card.is-hidden { display: none; }

.review-card--compact {
  padding: 1rem 1.25rem;
}

.review-card__stars {
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.review-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem;
  font-style: italic;
}

.review-card__meta {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-mid);
  font-style: normal;
  margin-top: auto;
}

.review-card__source {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--gray-mid);
  opacity: 0.85;
}

.reviews-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.promo-code {
  color: var(--price-green);
  font-weight: 700;
}

.hero-promo {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  max-width: 28rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--price-green);
  border-radius: var(--radius);
}

.hero-promo__lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text);
}

.hero-promo__code {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.booking-promo {
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
  background: #e8f5ec;
  border: 1px solid #b8dcc4;
  border-left: 4px solid var(--price-green);
  border-radius: var(--radius);
}

.booking-promo__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
}

.booking-promo__text {
  margin: 0;
}

.booking-promo__exclude {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* CTA band */
.cta-band {
  background: var(--black);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  max-width: 18ch;
}

.cta-band p {
  margin: 0.5rem 0 0;
  color: var(--text-muted-dark);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cta-band__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.cta-band__phone svg {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  color: var(--red);
}

.cta-band__phone:hover { color: var(--red-light); }

.cta-band__phone:hover svg { color: var(--red-light); }

/* Booking calendar */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.booking-loan-note {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  color: #2d8a4e;
  background: #e8f5ec;
  border: 1px solid #b8dcc4;
  border-radius: var(--radius);
}

.booking-service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  gap: 0.45rem;
  max-height: 11.5rem;
  overflow-y: auto;
  margin: 0 0 0.75rem;
  padding: 0.15rem 0.25rem 0.15rem 0;
  scrollbar-width: thin;
}

.booking-service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  width: 100%;
  padding: 0.5rem 0.6rem;
  text-align: left;
  font: inherit;
  color: var(--black);
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.booking-service-card:hover {
  border-color: var(--red);
  background: var(--white);
}

.booking-service-card.is-selected {
  border-color: var(--red);
  background: #fff8f8;
  box-shadow: 0 0 0 1px var(--red);
}

.booking-service-card__title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.25;
}

.booking-service-card__price {
  font-size: 0.7rem;
  line-height: 1.3;
  color: var(--gray-mid);
}

.booking-calendar {
  background: var(--off);
  border: 1px solid var(--border);
  padding: 1.25rem;
  border-radius: var(--radius);
}

.booking-calendar__slots-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 1rem 0 0.5rem;
}

.booking-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.booking-calendar__header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0;
}

.booking-calendar__nav {
  display: flex;
  gap: 0.35rem;
}

.booking-calendar__nav button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
  font-weight: 700;
}

.booking-calendar__nav button:hover {
  border-color: var(--red);
  color: var(--red);
}

.booking-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 1rem;
}

.booking-week__day-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-align: center;
  text-transform: uppercase;
  color: var(--gray-mid);
  padding: 0.25rem;
}

.booking-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
}

.booking-day.is-disabled {
  background: var(--off);
  color: var(--gray-mid);
  cursor: not-allowed;
  opacity: 0.5;
}

.booking-day.is-selected {
  background: var(--red);
  color: var(--white);
  border-color: var(--red-dark);
}

.booking-day:not(.is-disabled):not(.is-selected):hover {
  border-color: var(--red);
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.booking-slot {
  padding: 0.5rem;
  text-align: center;
  font-size: 0.8rem;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
}

.booking-slot.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.booking-slot.is-selected {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.booking-price-hint {
  margin: 0.35rem 0 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--black);
  background: linear-gradient(135deg, #f8f4ef 0%, var(--white) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  min-height: 2.5rem;
}

.booking-price-hint:empty {
  display: none;
}

.booking-price-hint strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--red);
}

.booking-form-panel__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.booking-form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.booking-form-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.35rem;
}

.booking-form-panel__subtitle {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--gray-mid);
}

/* Service packages – slim horizontal cards */
.package-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 52rem;
  margin: 0 auto;
}

.package-card {
  padding: 0.7rem 1rem 0.65rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(5.5rem, auto);
  grid-template-rows: auto auto auto;
  column-gap: 1rem;
  row-gap: 0.35rem;
  align-items: start;
}

.section--dark .package-card {
  background: var(--red);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.package-card--featured {
  border: 2px solid rgba(255, 255, 255, 0.45);
  padding-top: 1.6rem;
}

.package-card--hotel {
  /* Same red card styling as other packages */
}

.package-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #f5c518;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
}

.package-card__head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0 0 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.section--dark .package-card__head h3,
.section--dark .package-card__price,
.section--dark .package-card__price span {
  color: var(--white);
}

.package-card__head h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.package-card__price {
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  text-align: right;
  color: var(--white);
}

.package-card__price span {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.section--dark .package-card__intro,
.section--dark .package-card__includes {
  color: rgba(255, 255, 255, 0.92);
}

.package-card__intro {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.35;
}

.package-card__includes {
  grid-column: 1;
  margin: 0;
  padding-left: 1rem;
  font-size: 0.8rem;
  line-height: 1.35;
}

.package-card__includes li + li { margin-top: 0.2rem; }

.section--dark .package-card__link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.package-card__link {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  align-self: start;
  margin-top: 0.15rem;
}

.package-card__link:hover { text-decoration: underline; }

.package-note {
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  text-align: center;
}

/* Product list */
.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 2px solid var(--black);
}

.product-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.product-row:last-child { border-bottom: none; }

.product-row:nth-child(even) { background: var(--off); }

.product-row__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border-radius: var(--radius);
}

.product-row__icon img { filter: brightness(0) invert(1); }

.product-row__body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.product-row__body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.product-row__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.product-row__cta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.55rem 1rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  white-space: nowrap;
}

.product-row__cta:hover { background: var(--red-dark); }

.product-row__cta--alt {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.product-list__footer { text-align: center; margin-top: 1.75rem; }

/* SEO content */
.seo-content h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 2.25rem 0 0.75rem;
  line-height: 1.2;
  color: var(--black);
}

.seo-content h2:first-child { margin-top: 0; }

.seo-content p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* FAQ */
.faq-list { border-top: 2px solid var(--black); }

.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.faq-item summary {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 1.15rem 2.5rem 1.15rem 1.25rem;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--red);
  font-weight: 700;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item__body {
  padding: 0 1.25rem 1.15rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item__body p { margin: 0; }
.faq-item__body a { color: var(--red); text-decoration: underline; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-step {
  background: var(--white);
  border: 2px solid var(--black);
  padding: 1.5rem;
  border-top: 4px solid var(--red);
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Parallax vars */
.hero-home__media {
  --parallax-y: 0px;
}

@media (min-width: 901px) {
  .hero-home__media {
    min-height: min(85vh, 720px);
    aspect-ratio: 680 / 436;
  }
  .hero-home__media img {
    transform: translate3d(0, var(--parallax-y, 0), 0);
    will-change: transform;
  }
}

@media (max-width: 1100px) {
  .service-tile-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .service-tile-grid { grid-template-columns: repeat(2, 1fr); }
  .package-list { max-width: none; }
  .product-row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .product-row__cta { grid-column: 1 / -1; justify-self: start; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-home {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-home__content {
    padding: 2rem 1rem;
    order: 1;
  }
  .hero-home__content::after { display: none; }
  .hero-home__media { order: 0; min-height: 280px; aspect-ratio: 680 / 436; }
  .hero-home__media img { min-height: 0; }
  .trust-bar__grid { grid-template-columns: 1fr 1fr; }
  .trust-bar__item:nth-child(2) { border-right: none; }
  .service-grid, .reviews-grid { grid-template-columns: 1fr; }
  .produkt-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .produkt-tile { min-height: 180px; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__aside { min-height: auto; }
  .about-split-panel { padding: 2rem 1.25rem; max-width: none; }
  .about-vehicle-list { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .service-tile-grid { grid-template-columns: 1fr; }
  .service-tile { min-height: 10rem; padding: 1.35rem 1.15rem 1.15rem; }
  .trust-bar__grid { grid-template-columns: 1fr; }
  .trust-bar__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; }
  .produkt-grid { grid-template-columns: 1fr; gap: 1rem; }
  .produkt-tile { grid-template-columns: 1fr 38%; min-height: 150px; }
  .produkt-tile__content { padding: 1.1rem 1rem 1.1rem 1.2rem; gap: 0.4rem; }
  .produkt-tile__title { font-size: 1.25rem; }
  .produkt-tile__desc { font-size: 0.875rem; -webkit-line-clamp: 2; }
  .produkt-tile__cta { font-size: 0.8rem; }
}

/* —— Product pages (lively order UX) —— */
.page-hero--product {
  border-bottom: 4px solid var(--red);
}

.product-showcase {
  padding: 2.5rem 0 3rem;
}

.product-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.product-hero-card {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border: 2px solid var(--black);
  padding: 1.5rem;
  border-top: 5px solid var(--red);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.08);
}

.product-hero-card__icon {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100, #f4f4f4);
  border: 2px solid var(--black);
}

.product-hero-card__icon img {
  width: 2.75rem;
  height: 2.75rem;
}

.product-hero-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

.product-hero-card__lead {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.product-benefits {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.product-benefits li {
  margin-bottom: 0.45rem;
}

.product-benefits li::marker {
  color: var(--red);
}

.product-order {
  background: var(--white);
  border: 2px solid var(--black);
  padding: 1.5rem;
  position: relative;
}

.product-order::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--black) 100%);
}

.product-order__heading {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  letter-spacing: 0.03em;
}

.product-order__hint {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-size-picker {
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: var(--gray-100, #f7f7f7);
  border: 1px solid var(--border);
}

.product-size-picker__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.04em;
}

.product-size-picker__select,
.product-size-picker__input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 2px solid var(--black);
  font-size: 1rem;
  background: var(--white);
}

.product-size-picker__custom {
  margin-top: 0.75rem;
}

.product-size-picker__custom label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.product-order__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.product-order__fields .form-field--full {
  grid-column: 1 / -1;
}

.product-order__note {
  margin: 0.75rem 0 1rem;
  font-size: 0.85rem;
}

.product-order__submit {
  margin-bottom: 0.5rem;
}

.product-order__call {
  text-align: center;
}

.product-order--tire .product-order__submit {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Order section: photo (left) + order form (right) */
.product-order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.product-order-grid > .product-order {
  height: 100%;
}

.product-order-photo {
  margin: 0;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--off);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.product-order-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 600px;
  border-radius: 0;
}

.product-order-photo figcaption {
  padding: 0.65rem 1rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  background: var(--white);
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .product-showcase__grid {
    grid-template-columns: 1fr;
  }
  .product-hero-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-order__fields {
    grid-template-columns: 1fr;
  }
  .product-order-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .product-order-photo img {
    max-height: 360px;
  }
}

/* ============================================================
   Featured services — homepage 1×6 rectangular cards (image left)
   ============================================================ */
.featured-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.featured-service-card {
  display: grid;
  grid-template-columns: minmax(170px, 30%) 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 140px;
  min-height: 0;
}

.featured-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(196, 30, 36, 0.35);
}

.featured-service-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--black);
  align-self: stretch;
  height: 100%;
  max-height: 140px;
  aspect-ratio: 4 / 3;
}

.featured-service-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.featured-service-card:hover .featured-service-card__media img {
  transform: scale(1.04);
}

.featured-service-card__media::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 30%;
  background: linear-gradient(to left, rgba(10, 10, 10, 0.25), transparent);
  pointer-events: none;
}

.featured-service-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 1.1rem 0.7rem;
  border-left: 3px solid var(--red);
  min-width: 0;
  overflow: hidden;
}

.featured-service-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--black);
}

.featured-service-card__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-service-card__price {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--red);
}

.featured-service-card__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.btn.btn--sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.featured-service-card__more {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.featured-service-card__more:hover {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Tablet: collapse to single column of full-width horizontal rectangles */
@media (max-width: 900px) {
  .featured-services {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Mobile: stack image on top of content */
@media (max-width: 600px) {
  .featured-service-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }
  .featured-service-card__media {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: none;
  }
  .featured-service-card__media img {
    position: absolute;
  }
  .featured-service-card__media::after {
    inset: auto 0 0 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.35), transparent);
  }
  .featured-service-card__body {
    border-left: none;
    border-top: 3px solid var(--red);
    padding: 1.25rem 1.25rem 1.4rem;
  }
}

/* ============================================================
   Workshop photo on service landing pages
   ============================================================ */
.landing-photo {
  margin: 1.5rem 0 2rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--off);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.landing-photo figure {
  margin: 0;
}

.landing-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

.landing-photo figcaption {
  padding: 0.65rem 1rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  background: var(--white);
  border-top: 1px solid var(--border);
}
