/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:   #f5c000;
  --yellow-d: #d4a600;
  --black:    #0a0a0a;
  --dark:     #111111;
  --dark2:    #1a1a1a;
  --dark3:    #222222;
  --grey:     #888888;
  --light:    #f0f0f0;
  --white:    #ffffff;
  --font-head:'Barlow Condensed', sans-serif;
  --font-body:'Barlow', sans-serif;
  --radius: 4px;
  --transition: .3s ease;
}

html { scroll-behavior: smooth; }
body  { font-family: var(--font-body); background: var(--black); color: var(--light); overflow-x: hidden; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--yellow);
  border-left: 3px solid var(--yellow);
  padding-left: 10px;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 15px 32px; border: 2px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition);
}
.btn-primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-d); border-color: var(--yellow-d); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn-dark { background: var(--black); color: var(--yellow); border-color: var(--black); }
.btn-dark:hover { background: var(--dark2); border-color: var(--dark2); transform: translateY(-2px); }

/* ── INTRO OVERLAY ──────────────────────────────────────────── */
body:not(.is-home) #intro {
  display: none !important;
}

#intro {
  position: fixed; inset: 0; z-index: 10000; background: #030303;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease 0.15s, visibility 0.7s ease 0.15s;
}
#intro.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-wrap { text-align: center; }
.speedo-svg { width: 260px; height: auto; display: block; margin: 0 auto; }
.speedo-fill { stroke-dasharray: 361; stroke-dashoffset: 361; animation: arcFill 1.9s cubic-bezier(.1,.8,.3,1) 0.4s forwards; }
.speedo-needle { transform-origin: 140px 140px; transform: rotate(-130deg); animation: needleSweep 1.9s cubic-bezier(.1,.8,.3,1) 0.4s forwards; }
@keyframes arcFill    { to { stroke-dashoffset: 0; } }
@keyframes needleSweep { to { transform: rotate(130deg); } }
.intro-brand { font-family: var(--font-head); font-weight: 900; font-size: 2.6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-top: 16px; animation: introUp .7s ease 1.7s both; }
.intro-brand span { color: var(--yellow); }
.intro-location { font-family: var(--font-head); font-size: .78rem; letter-spacing: .32em; text-transform: uppercase; color: var(--grey); margin-top: 6px; animation: introUp .7s ease 1.9s both; }
@keyframes introUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* ── NAV ─────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%); z-index: 1000;
  width: min(1280px, calc(100% - 32px));
  padding: 0 24px; display: flex; align-items: center; justify-content: space-between;
  height: 72px; background: rgba(10,10,10,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,192,0,.12);
  border-radius: 0 0 8px 8px;
  transition: background var(--transition);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 48px; width: auto; display: block; border-radius: 3px; }
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-toggle { display: none; }
.nav-links a { font-family: var(--font-head); font-weight: 600; font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; color: var(--light); position: relative; transition: color var(--transition); }
.nav-links a::after { content:''; position: absolute; bottom: -4px; left: 0; right: 100%; height: 2px; background: var(--yellow); transition: right var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-cta { background: var(--yellow) !important; color: var(--black) !important; padding: 10px 22px; font-weight: 700 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--yellow-d) !important; }

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 160px 0 90px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(245,192,0,.04) 0%, transparent 60%);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(3rem, 7vw, 6rem);
  text-transform: uppercase; line-height: .95; color: var(--white);
  margin-bottom: 20px;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero p { font-size: 1.1rem; color: rgba(240,240,240,.65); max-width: 560px; line-height: 1.75; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 24px;
}
.breadcrumb a { color: var(--yellow); transition: opacity var(--transition); }
.breadcrumb a:hover { opacity: .7; }
.breadcrumb span { color: var(--grey); }

/* ── SECTION HEADER ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 70px; }
.section-header h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.4rem, 5vw, 4rem); text-transform: uppercase; color: var(--white); line-height: 1; }
.section-header h2 span { color: var(--yellow); }
.section-header p { margin-top: 16px; color: var(--grey); font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── CTA BAR ───────────────────────────────────────────────── */
#cta-bar { padding: 80px 0; background: var(--dark2); text-align: center; }
#cta-bar h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(1.8rem, 4vw, 3rem); text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
#cta-bar h2 span { color: var(--yellow); }
#cta-bar p { color: var(--grey); font-size: 1.05rem; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER (Premium) ──────────────────────────────────────── */
.mtm-footer {
  background: #050505;
  border-top: 2px solid var(--yellow);
  padding: 42px 40px 34px;
}

.mtm-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(210px, 0.9fr) minmax(280px, 1fr);
  gap: 34px;
  align-items: start;
}

.mtm-footer__col {
  min-width: 0;
}

.mtm-footer__title {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}

.mtm-footer__logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
}

.mtm-footer__logo {
  height: 58px;
  width: auto;
  display: block;
}

.mtm-footer__brand-name {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 900;
  line-height: .95;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.mtm-footer__tagline {
  font-family: var(--font-body);
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(240,240,240,.68);
  max-width: 34ch;
}

.mtm-footer__brand-meta {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}

.mtm-footer__brand-link {
  font-family: var(--font-body);
  font-size: .88rem;
  color: #d7d7d7;
  transition: color .25s ease;
}

.mtm-footer__brand-link:hover {
  color: var(--yellow);
}

.mtm-footer__col--nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mtm-footer__link {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9a9a9a;
  padding: 4px 0;
  transition: color .25s ease, transform .25s ease;
}

.mtm-footer__link:hover {
  color: var(--yellow);
  transform: translateY(-1px);
}

.mtm-footer__col--actions {
  text-align: right;
}

.mtm-footer__buttons {
  display: grid;
  gap: 10px;
  justify-content: end;
  margin-bottom: 14px;
}

.mtm-footer__btn {
  min-width: 142px;
  padding: 8px 12px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, color .2s ease;
}

.mtm-footer__btn:hover {
  transform: translateY(-1px);
}

.mtm-footer__btn--ghost {
  background: transparent;
  border-color: rgba(245,192,0,.34);
  color: var(--yellow);
}

.mtm-footer__btn--ghost:hover {
  border-color: rgba(245,192,0,.62);
  background: rgba(245,192,0,.08);
}

.mtm-footer__btn--accent {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.mtm-footer__btn--accent:hover {
  background: var(--yellow-d);
  border-color: var(--yellow-d);
}

.mtm-footer__credit-rotating {
  position: relative;
  min-width: 142px;
  min-height: 38px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 140px;
  text-decoration: none;
  color: var(--black);
  overflow: hidden;
}

.mtm-footer__credit-rotating:hover,
.mtm-footer__credit-rotating:focus-visible {
  background: var(--yellow-d);
  border-color: var(--yellow-d);
  color: #050505;
}

.mtm-footer__credit-rotator {
  position: relative;
  width: 100%;
  height: 1.6rem;
  transform-style: preserve-3d;
  animation: footerCredit3D 9s linear infinite;
}

.mtm-footer__credit-word {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;
  backface-visibility: hidden;
  transform: rotateX(calc(var(--i) * 120deg)) translateZ(16px);
}

@keyframes footerCredit3D {
  0%         { transform: rotateX(0deg);   animation-timing-function: ease-in-out; }
  25%        { transform: rotateX(0deg);   animation-timing-function: ease-in-out; }
  33%        { transform: rotateX(120deg); animation-timing-function: ease-in-out; }
  58%        { transform: rotateX(120deg); animation-timing-function: ease-in-out; }
  66%        { transform: rotateX(240deg); animation-timing-function: ease-in-out; }
  91%        { transform: rotateX(240deg); animation-timing-function: ease-in-out; }
  100%       { transform: rotateX(360deg); }
}

.mtm-footer__contact {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.mtm-footer__contact-link {
  font-family: var(--font-body);
  font-size: .95rem;
  color: #d7d7d7;
  transition: color .25s ease;
}

.mtm-footer__contact-link:hover {
  color: var(--yellow);
}

.mtm-footer__hours {
  font-family: var(--font-head);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #6f6f6f;
  margin-top: 4px;
}

.mtm-footer__copyright {
  font-family: var(--font-body);
  font-size: .78rem;
  color: #8c8c8c;
  margin-top: 2px;
}

/* ── GLOBAL REVEAL ANIMATIONS ─────────────────────────────── */
.site-reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(1px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1), filter .72s ease;
  will-change: opacity, transform;
}

.site-reveal[data-reveal="left"] {
  transform: translateX(-24px);
}

.site-reveal[data-reveal="right"] {
  transform: translateX(24px);
}

.site-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0);
}

@media (max-width: 1024px) {
  .mtm-footer {
    padding: 38px 24px 28px;
  }

  .mtm-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .mtm-footer__col--brand,
  .mtm-footer__col--nav,
  .mtm-footer__col--actions {
    text-align: center;
    align-items: center;
    justify-items: center;
  }

  .mtm-footer__tagline {
    margin: 0 auto;
  }

  .mtm-footer__buttons {
    justify-content: center;
    width: min(100%, 320px);
  }

  .mtm-footer__btn {
    width: 100%;
  }

  .mtm-footer__contact {
    justify-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mtm-footer__credit-rotator {
    transform-style: flat;
    animation: none !important;
    height: auto;
  }

  .mtm-footer__credit-word {
    position: static;
    display: inline;
    transform: none;
    backface-visibility: visible;
    font-size: .72rem;
    letter-spacing: .06em;
  }

  .mtm-footer__credit-word::after {
    content: ' ';
  }

  .mtm-footer__credit-word:last-child::after {
    content: '';
  }
}

/* ── LIGHTBOX (base) ───────────────────────────────────────── */
#lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.92); align-items: center; justify-content: center; cursor: zoom-out; }
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border: 2px solid rgba(245,192,0,.3); }
#lightbox-close { position: absolute; top: 24px; right: 32px; font-family: var(--font-head); font-size: 2.5rem; color: var(--yellow); cursor: pointer; line-height: 1; background: none; border: none; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  #nav { left: 0; transform: none; width: 100%; border-radius: 0; padding: 0 20px; }
  .nav-logo-text { display: inline-block; font-size: .92rem; letter-spacing: .06em; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(10,10,10,.98); border-top: 1px solid rgba(245,192,0,.15); padding: 12px 0; gap: 0; z-index: 100; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(245,192,0,.06); }
  .nav-links a { padding: 13px 24px; display: block; }
  .nav-toggle { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: transparent; margin-left: auto; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; border-radius: 1px; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .site-reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
}
:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }

/* ── SHARED COMPONENTS (pages locales SEO) ───────────────── */

/* Services */
.shared-services { padding: 110px 0; background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card { background: var(--dark2); padding: 50px 40px; position: relative; overflow: hidden; transition: background var(--transition); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.service-card:hover { background: var(--dark3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; background: rgba(245,192,0,.1); border: 1px solid rgba(245,192,0,.25); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 28px; transition: background var(--transition); }
.service-card:hover .service-icon { background: var(--yellow); }
.service-card:hover .service-icon svg { fill: var(--black); }
.service-icon svg { width: 32px; height: 32px; fill: var(--yellow); transition: fill var(--transition); }
.service-card h3 { font-family: var(--font-head); font-weight: 800; font-size: 1.55rem; text-transform: uppercase; color: var(--white); margin-bottom: 22px; letter-spacing: .03em; }
.service-list { display: flex; flex-direction: column; gap: 11px; }
.service-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .97rem; color: rgba(240,240,240,.75); line-height: 1.4; }
.service-list li::before { content: '▸'; color: var(--yellow); font-size: .85rem; flex-shrink: 0; margin-top: 1px; }
.service-bg-num { position: absolute; bottom: -20px; right: 20px; font-family: var(--font-head); font-weight: 900; font-size: 8rem; color: rgba(245,192,0,.04); line-height: 1; user-select: none; pointer-events: none; }

/* Gallery */
.shared-gallery { padding: 110px 0; background: var(--dark); }
.gallery-carousel { position: relative; max-width: 1100px; margin: 0 auto; user-select: none; }
.gallery-carousel-track { overflow: hidden; border-radius: var(--radius); aspect-ratio: 16/7; background: var(--dark2); }
.gallery-slides { display: flex; height: 100%; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.gallery-slide { min-width: 100%; height: 100%; cursor: zoom-in; position: relative; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-slide::after { content: ''; position: absolute; inset: 0; background: rgba(245,192,0,0); transition: background .3s; pointer-events: none; }
.gallery-slide:hover::after { background: rgba(245,192,0,.08); }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(10,10,10,.72); border: 1px solid rgba(245,192,0,.35); color: var(--yellow); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; cursor: pointer; transition: background var(--transition), border-color var(--transition), color var(--transition); line-height: 1; padding: 0; }
.gallery-arrow:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }
.gallery-counter { position: absolute; bottom: 14px; right: 16px; font-family: var(--font-head); font-size: .82rem; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.85); background: rgba(10,10,10,.65); padding: 3px 12px; border-radius: 20px; pointer-events: none; }
.gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; transition: background var(--transition), transform var(--transition); border: none; padding: 0; }
.gallery-dot.active { background: var(--yellow); transform: scale(1.4); }
.gallery-cta { text-align: center; margin-top: 36px; }

/* Reviews */
.shared-reviews { padding: 110px 0; background: linear-gradient(180deg, var(--dark2) 0%, var(--black) 100%); position: relative; overflow: hidden; }
.shared-reviews::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(245,192,0,.12), transparent 36%), radial-gradient(circle at bottom left, rgba(245,192,0,.08), transparent 28%); pointer-events: none; }
.reviews-shell { position: relative; z-index: 1; max-width: 1040px; margin: 0 auto; padding: 38px; background: rgba(17,17,17,.86); border: 1px solid rgba(245,192,0,.14); border-radius: 18px; box-shadow: 0 24px 80px rgba(0,0,0,.28); }
.reviews-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.reviews-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; color: rgba(240,240,240,.82); }
.reviews-score { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border: 1px solid rgba(245,192,0,.18); border-radius: 999px; background: rgba(245,192,0,.08); font-family: var(--font-head); font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--white); }
.reviews-stars { color: var(--yellow); letter-spacing: .14em; font-size: .95rem; white-space: nowrap; }
.reviews-summary small { display: block; font-size: .95rem; color: rgba(240,240,240,.62); }
.reviews-carousel { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: stretch; }
.reviews-nav { width: 52px; min-width: 52px; border: 1px solid rgba(245,192,0,.16); border-radius: 16px; background: rgba(255,255,255,.02); color: var(--yellow); font-size: 1.4rem; cursor: pointer; transition: transform var(--transition), border-color var(--transition), background var(--transition); }
.reviews-nav:hover { transform: translateY(-2px); border-color: rgba(245,192,0,.38); background: rgba(245,192,0,.08); }
.reviews-stage { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: 18px; min-height: 100%; }
.review-card { height: 100%; display: flex; flex-direction: column; gap: 18px; padding: 24px; border-radius: 16px; background: linear-gradient(180deg, rgba(34,34,34,.95) 0%, rgba(20,20,20,.95) 100%); border: 1px solid rgba(245,192,0,.12); }
.review-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.review-author strong { display: block; font-size: 1rem; color: var(--white); }
.review-meta { font-size: .84rem; color: rgba(240,240,240,.58); margin-top: 3px; }
.review-badge { display: inline-flex; align-items: center; padding: 7px 10px; border-radius: 999px; background: rgba(245,192,0,.12); color: var(--yellow); font-family: var(--font-head); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.review-text { color: rgba(240,240,240,.82); line-height: 1.78; font-size: .98rem; flex: 1; text-align: justify; text-justify: inter-word; hyphens: auto; }
.review-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; border-top: 1px solid rgba(245,192,0,.08); }
.review-footer .reviews-stars { font-size: .88rem; }
.review-source { font-size: .8rem; color: rgba(240,240,240,.52); text-transform: uppercase; letter-spacing: .08em; }
.reviews-dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.reviews-dot { width: 10px; height: 10px; border: none; border-radius: 50%; background: rgba(240,240,240,.22); cursor: pointer; transition: transform var(--transition), background var(--transition); }
.reviews-dot.active { transform: scale(1.15); background: var(--yellow); }

/* Shared responsive */
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .shared-services, .shared-gallery, .shared-reviews { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 24px; }
  .gallery-arrow { width: 38px; height: 38px; font-size: 1.2rem; }
  .gallery-arrow.prev { left: 8px; }
  .gallery-arrow.next { right: 8px; }
  .gallery-carousel-track { aspect-ratio: 4/3; }
  .reviews-shell { padding: 22px; }
  .reviews-carousel { grid-template-columns: 1fr; }
  .reviews-nav { display: none; }
  .review-card { padding: 20px; }
  .reviews-score { width: 100%; justify-content: center; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
}
