/* ============================================================
   SBS – Schmidt Baumaschinen Service
   Industrial-Modern Design System
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --dark:        #0c1620;
  --dark-2:      #162131;
  --dark-3:      #1e2f42;
  --orange:      #f97316;
  --orange-dim:  #c45d10;
  --orange-glow: rgba(249, 115, 22, 0.2);
  --light:       #f4f1ec;
  --light-2:     #e8e3db;
  --white:       #ffffff;

  --text-on-dark:   #c8c0b4;
  --text-muted-dk:  #7a8fa0;
  --text-light:     #2c3440;
  --text-muted-lt:  #5a6475;

  --font-display:   'Bebas Neue', sans-serif;
  --font-body:      'Barlow', sans-serif;
  --font-cond:      'Barlow Condensed', sans-serif;

  --nav-h:      70px;
  --max-w:      1200px;
  --gap:        clamp(1.5rem, 3vw, 2.5rem);
  --section-py: clamp(5rem, 10vw, 9rem);
  --radius:     4px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* === CONTAINER === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* === SECTIONS === */
.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section--dark {
  background-color: var(--dark);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
}

.section--light  { background-color: var(--light); }
.section--orange { background-color: var(--orange); }

/* === SECTION HEADER === */
.section__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 780px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text-light);
}

.section__title--light { color: var(--white); }
.section__title--dark  { color: var(--dark); }

.section__sub {
  margin-top: 1rem;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-muted-lt);
  max-width: 640px;
}

.section__sub--light { color: var(--text-on-dark); }
.section__sub--dark  { color: rgba(12, 22, 32, 0.68); }

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.6s var(--ease),
    transform 0.6s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav.scrolled {
  background: rgba(12, 22, 32, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 44px;
  width: auto;
  filter: brightness(1.15);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links a {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  transition: color 0.25s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.25s var(--ease);
}

.nav__links a:hover         { color: #fff; }
.nav__links a:hover::after  { width: 100%; }

.nav__cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: var(--radius);
  transition: background 0.25s !important;
}
.nav__cta:hover           { background: var(--orange-dim) !important; }
.nav__cta::after          { display: none !important; }

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  transition: transform 0.28s var(--ease), opacity 0.28s;
  transform-origin: center;
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav__drawer {
  display: none;
  background: rgba(12, 22, 32, 0.98);
  border-top: 1px solid rgba(249, 115, 22, 0.25);
}

.nav__drawer.open { display: block; }

.nav__drawer ul {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.5rem clamp(1.25rem, 4vw, 3rem);
}

.nav__drawer a {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.22s, padding-left 0.22s;
}

.nav__drawer a:hover { color: var(--orange); padding-left: 0.6rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.06);
  transition: transform 12s ease-out;
}
.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(12, 22, 32, 0.93) 0%,
    rgba(12, 22, 32, 0.80) 55%,
    rgba(12, 22, 32, 0.60) 100%
  );
}

/* Vertical orange accent line */
.hero__overlay::after {
  content: '';
  position: absolute;
  top: 0; right: 60px;
  width: 3px; height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--orange) 30%,
    var(--orange) 70%,
    transparent 100%
  );
  opacity: 0.4;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 4vw, 3rem) 5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.015em;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 48px rgba(0,0,0,0.45);
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.4s forwards;
}

.hero__sub {
  font-family: var(--font-cond);
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.55s forwards;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.7s forwards;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.btn--primary {
  background: var(--orange);
  color: #fff;
}
.btn--primary:hover {
  background: var(--orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.45);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.38);
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* Trust badges */
.hero__trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.85s forwards;
}

.hero__trust span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.hero__trust .fa-circle-check { color: var(--orange); font-size: 0.7rem; }

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 1rem;
  animation: bounce 2.2s ease-in-out infinite;
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-bottom-color 0.3s;
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.13);
  border-bottom-color: var(--orange);
}

.service-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card__img-wrap img { transform: scale(1.06); }

.service-card__icon {
  position: absolute;
  bottom: -1.1rem; left: 1.5rem;
  width: 2.4rem; height: 2.4rem;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(249,115,22,0.45);
}

.service-card__body {
  padding: 2.25rem 1.5rem 1.75rem;
}

.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin-bottom: 0.7rem;
}

.service-card__body p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted-lt);
  margin-bottom: 1.25rem;
}

.service-card__link {
  font-family: var(--font-cond);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.22s;
}
.service-card__link:hover { gap: 0.75rem; }

/* ============================================================
   CONTENT LAYOUTS
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.two-col-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Inspektionen layout: content + photo */
.insp-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.insp-img img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  aspect-ratio: 3/4;
}

/* Column headings */
.col-heading {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.col-heading--light { color: var(--white); }

/* ============================================================
   CHECK LIST
   ============================================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--text-muted-lt);
}

.check-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 19px; height: 19px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  margin-top: 2px;
}

.check-list--light li { color: var(--text-on-dark); }

/* ============================================================
   PRICE TABLE
   ============================================================ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.price-table thead tr { background: var(--orange); }

.price-table thead th {
  padding: 0.7rem 1rem;
  text-align: left;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.price-table thead th:last-child { text-align: right; }

.price-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.price-table--light tbody tr {
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.price-table tbody tr:hover              { background: rgba(249,115,22,0.08); }
.price-table--light tbody tr:hover       { background: rgba(249,115,22,0.06); }

.price-table tbody td {
  padding: 0.75rem 1rem;
  color: var(--text-on-dark);
}
.price-table--light tbody td { color: var(--text-light); }

.price-table tbody td:last-child {
  text-align: right;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--orange);
  white-space: nowrap;
}

.price-date {
  font-family: var(--font-body);
  font-size: 0.65em;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted-dk);
}

.table-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted-lt);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.table-note .fa-leaf { color: #4ade80; }
.section--dark .table-note { color: var(--text-muted-dk); }

.fair-billing {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: var(--radius);
}

.fair-billing .fa-clock {
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.fair-billing div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fair-billing strong {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.fair-billing span {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-on-dark);
}

/* ============================================================
   IMAGE TRIO
   ============================================================ */
.img-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.img-trio img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  filter: brightness(0.82);
  transition: filter 0.3s, transform 0.35s var(--ease);
}

.img-trio img:hover {
  filter: brightness(1);
  transform: scale(1.025);
  z-index: 1;
  position: relative;
}

/* ============================================================
   CALLOUTS
   ============================================================ */
.callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-top: 1.75rem;
}

.callout--highlight {
  background: rgba(249, 115, 22, 0.1);
  border-left: 3px solid var(--orange);
  color: var(--text-on-dark);
}
.callout--highlight .fa-star {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

.callout--orange-solid {
  background: var(--orange);
  color: var(--dark);
}
.callout--orange-solid .fa-lightbulb {
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================================
   UVV SECTION
   ============================================================ */
.uvv-prices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.uvv-price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.1rem;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  gap: 1rem;
  transition: background 0.22s;
}
.uvv-price-item:hover { background: rgba(255,255,255,0.07); }

.uvv-machine {
  font-size: 0.88rem;
  color: var(--text-on-dark);
}

.uvv-price {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

.uvv-base {
  font-size: 0.82rem;
  color: var(--text-muted-dk);
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0.5rem;
}

.uvv-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt-block {
  max-width: 580px;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.kontakt-name {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.kontakt-name strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--dark);
  line-height: 1;
}

.kontakt-title {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(12, 22, 32, 0.55);
}

.kontakt-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--dark);
  transition: opacity 0.22s;
}
.kontakt-row:hover { opacity: 0.72; }

.kontakt-row i {
  font-size: 1.05rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.kontakt-row span {
  font-family: var(--font-cond);
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 2rem 0;
  border-top: 1px solid rgba(249, 115, 22, 0.18);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 1.75rem;
}

.footer__links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.22s;
}
.footer__links a:hover { color: var(--orange); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 90;
  width: 44px; height: 44px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.22s;
  box-shadow: 0 4px 18px rgba(249,115,22,0.45);
  font-size: 0.9rem;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.back-to-top:hover {
  background: var(--orange-dim);
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .insp-layout {
    grid-template-columns: 1fr 240px;
  }
}

@media (max-width: 900px) {
  .nav__links  { display: none; }
  .nav__burger { display: flex; }

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

  .two-col,
  .insp-layout { grid-template-columns: 1fr; }

  .two-col-inner { grid-template-columns: 1fr; }

  .insp-img { display: none; }
}

/* === ÖFFNUNGSZEITEN === */
.kontakt-row--hours { align-items: flex-start; cursor: default; }
.kontakt-row--hours:hover { opacity: 1; }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 1.25rem;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

/* === REZENSIONEN TICKER === */
.review-ticker {
  background: var(--dark-2);
  padding: 1.4rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.review-ticker__inner {
  flex: 1;
  display: grid;
}

.review-ticker__slide {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.review-ticker__slide.active {
  opacity: 1;
  pointer-events: auto;
}

.review-ticker__stars {
  color: #f59e0b;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.review-ticker__slide blockquote {
  font-size: clamp(0.8rem, 1.4vw, 0.92rem);
  line-height: 1.5;
  color: var(--text-on-dark);
  margin: 0;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.review-ticker__slide cite {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
  flex-shrink: 0;
  font-style: normal;
}

.review-ticker__google {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.22s;
}
.review-ticker__google:hover { color: var(--orange); }

@media (max-width: 768px) {
  .review-ticker { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .review-ticker__inner { height: auto; min-height: 70px; }
  .review-ticker__slide { flex-wrap: wrap; gap: 0.5rem; }
  .review-ticker__slide cite { width: 100%; }
  .review-ticker__google { align-self: flex-end; }
}

@media (max-width: 640px) {
  .img-trio { grid-template-columns: 1fr; }

  .hero__overlay::after { display: none; }

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

  .hero__trust { flex-direction: column; gap: 0.7rem; }

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

  .back-to-top { bottom: 1.25rem; right: 1.25rem; }

}
