:root {
  --ink: #101a18;
  --ink-soft: #43504c;
  --forest: #062d27;
  --forest-light: #0a473c;
  --emerald: #0b8b73;
  --mint: #d8eee7;
  --gold: #d6ad63;
  --gold-light: #f1dfba;
  --cream: #f5f2eb;
  --paper: #fffdf9;
  --white: #ffffff;
  --line: #dcd8ce;
  --shadow: 0 28px 80px rgba(16, 26, 24, 0.12);
}

.cg-php-header .main-nav a[aria-current="page"] {
  color: var(--emerald);
}

.blog-cookie {
  width: min(680px, calc(100% - 32px));
  padding: 22px;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: rgba(4, 30, 26, .98);
  color: #fff;
  box-shadow: 0 28px 80px rgba(0,0,0,.3);
}

.blog-cookie[hidden] { display: none; }
.blog-cookie strong { display: block; margin-bottom: 6px; }
.blog-cookie p { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.5; }
.blog-cookie > div:last-child { display: flex; flex-shrink: 0; gap: 8px; }
.blog-cookie button { padding: 11px 15px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: transparent; color: #fff; cursor: pointer; font-weight: 800; }
.blog-cookie button:last-child { border-color: var(--gold); background: var(--gold); color: var(--forest); }

@media (max-width: 620px) {
  .blog-cookie { right: 16px; bottom: 106px; align-items: stretch; flex-direction: column; }
  .blog-cookie > div:last-child { display: grid; grid-template-columns: 1fr 1fr; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 3px solid var(--amber, #ffb703);
  outline-offset: 4px;
}

.skip-link {
  padding: 12px 18px;
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

main {
  overflow: hidden;
}

.sr-only {
  width: 1px;
  height: 1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  min-height: 36px;
  padding: 8px clamp(24px, 4vw, 72px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar a {
  color: var(--gold-light);
  margin-left: 8px;
}

.topbar-dot {
  color: var(--gold);
}

.site-header {
  min-height: 84px;
  padding: 0 clamp(24px, 4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  background: var(--paper);
  border-bottom: 1px solid rgba(16, 26, 24, 0.08);
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 46px;
  height: 38px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 10px 10px 7px 7px;
  background: linear-gradient(145deg, var(--emerald), var(--forest-light));
  color: white;
  box-shadow: 0 8px 18px rgba(6, 45, 39, 0.16);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--paper);
}

.brand-mark::before {
  left: 6px;
}

.brand-mark::after {
  right: 6px;
}

.brand-mark span {
  font-size: 10px;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--emerald);
}

.header-phone {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 760;
}

.phone-square {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.header-phone:hover .phone-square {
  transform: translateY(-2px);
  background: var(--emerald);
}

.service-ticker {
  height: 38px;
  padding-right: 52px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #071c19;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-ticker[data-paused="true"] .service-ticker-track,
.service-ticker:hover .service-ticker-track,
.service-ticker:focus-within .service-ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}

.ticker-toggle {
  width: 34px;
  height: 28px;
  padding: 0;
  position: absolute;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #071c19;
  color: var(--gold-light);
  cursor: pointer;
  font-size: 9px;
}

.service-ticker-track {
  width: max-content;
  display: flex;
  animation: service-ticker-motion 34s linear infinite;
  will-change: transform;
}

.service-ticker-track > div {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 30px;
  padding-right: 30px;
}

.service-ticker span {
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-ticker i {
  color: var(--gold);
  font-size: 7px;
  font-style: normal;
}

@keyframes service-ticker-motion {
  to {
    transform: translateX(-50%);
  }
}

.premium-hero {
  width: min(100% - 48px, 1450px);
  min-height: 740px;
  margin: 24px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 28px;
  overflow: hidden;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.premium-hero-image,
.premium-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.premium-hero-image {
  object-fit: cover;
}

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

.hero-slides .premium-hero-image {
  opacity: 0;
  transform: scale(1.07);
  transition:
    opacity 1.15s ease,
    transform 6.6s ease;
}

.hero-slides .premium-hero-image[data-active="true"] {
  opacity: 1;
  transform: scale(1);
}

.hero-carousel-layer {
  position: absolute;
  inset: 0;
}

.hero-carousel-controls {
  min-height: 42px;
  padding: 6px 7px 6px 14px;
  position: absolute;
  top: 28px;
  right: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(4, 27, 23, 0.58);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
  color: white;
  backdrop-filter: blur(14px);
}

.hero-current-location {
  min-width: 94px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-carousel-controls > div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-carousel-controls > div button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.hero-carousel-controls > div button[aria-current="true"] {
  width: 20px;
  border-radius: 999px;
  background: var(--gold);
}

.carousel-play-toggle {
  width: 30px;
  height: 30px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: white;
  color: var(--forest);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.premium-hero-shade {
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 24, 21, 0.98) 0%,
      rgba(5, 24, 21, 0.88) 35%,
      rgba(5, 24, 21, 0.32) 68%,
      rgba(5, 24, 21, 0.08) 100%
    ),
    linear-gradient(0deg, rgba(5, 24, 21, 0.35), transparent 45%);
}

.premium-hero-content {
  width: min(58%, 760px);
  padding: clamp(58px, 7vw, 104px);
  position: relative;
  z-index: 2;
  color: white;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.light-eyebrow {
  color: var(--gold-light);
}

.premium-hero h1,
.local-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 610;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.premium-hero-content > p:not(.eyebrow),
.local-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 56px;
  padding: 0 26px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 760;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: var(--gold);
  color: #17201d;
  box-shadow: 0 14px 34px rgba(214, 173, 99, 0.25);
}

.button-gold:hover {
  background: #e4bc70;
  box-shadow: 0 18px 40px rgba(214, 173, 99, 0.33);
}

.button-glass {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  backdrop-filter: blur(10px);
}

.button-glass:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button-dark {
  background: var(--forest);
  color: white;
}

.button-dark:hover {
  background: var(--emerald);
}

.hero-proof {
  margin-top: 48px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div,
.hero-proof a {
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-proof > * + * {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof strong {
  color: var(--gold-light);
  font-size: 23px;
  font-weight: 720;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.hero-booking-card {
  width: 330px;
  padding: 28px;
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.94);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald);
  font-size: 11px;
  font-weight: 790;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #21b98c;
  box-shadow: 0 0 0 6px rgba(33, 185, 140, 0.12);
}

.hero-booking-card h2 {
  margin: 18px 0 10px;
  font-size: 26px;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero-booking-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.hero-booking-card ul {
  margin: 18px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.hero-booking-card li {
  position: relative;
  padding: 5px 0 5px 20px;
  color: var(--ink-soft);
  font-size: 12px;
}

.hero-booking-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--emerald);
  font-weight: 800;
}

.hero-booking-card > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.premium-trust {
  width: min(100% - 48px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 22px 22px;
}

.premium-trust > div {
  min-height: 118px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-content: center;
}

.premium-trust > div + div {
  border-left: 1px solid var(--line);
}

.premium-trust > div > span {
  grid-row: 1 / 3;
  align-self: center;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.premium-trust strong {
  font-size: 14px;
}

.premium-trust small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.section {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: 120px 0;
}

.editorial-heading {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 9vw;
  align-items: end;
}

.editorial-heading h2,
.photo-story-copy h2,
.dark-process h2,
.coverage-copy h2,
.faq-intro h2,
.local-intro h2,
.local-area-section h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.editorial-heading > p,
.coverage-copy > p,
.faq-intro > p,
.local-intro > p,
.local-area-section > div > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
}

.premium-services {
  padding-top: 140px;
}

.premium-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.premium-service-card {
  min-height: 220px;
  padding: 34px 30px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.premium-service-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.premium-service-card:hover {
  background: var(--paper);
  transform: translateY(-2px);
}

.premium-service-card > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--emerald);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 760;
}

.premium-service-card h3 {
  margin: 4px 0 10px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.premium-service-card p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.premium-service-card a {
  margin-top: 22px;
  display: inline-flex;
  gap: 14px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 760;
}

.photo-story {
  width: min(100% - 48px, 1450px);
  min-height: 760px;
  margin: 18px auto 0;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr auto;
  gap: 28px;
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.photo-story-main {
  grid-row: 1 / 3;
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: 20px;
}

.photo-story-main img,
.photo-story-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(6, 45, 39, 0.88);
  color: white;
  font-size: 11px;
  font-weight: 720;
  backdrop-filter: blur(10px);
}

.photo-story-copy {
  padding: 40px clamp(16px, 3vw, 44px) 10px;
}

.photo-story-copy h2 {
  font-size: clamp(38px, 4.3vw, 62px);
}

.photo-story-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.feature-list {
  margin-top: 28px;
  display: grid;
  gap: 4px;
}

.feature-list > div {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--emerald);
  font-size: 11px;
}

.feature-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 13px;
}

.text-link {
  margin-top: 24px;
  display: inline-flex;
  gap: 14px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 790;
}

.photo-story-secondary {
  min-height: 210px;
  display: grid;
  grid-template-columns: 44% 1fr;
  overflow: hidden;
  border-radius: 18px;
  background: var(--forest);
  color: white;
}

.photo-story-secondary div {
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.photo-story-secondary span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.photo-story-secondary strong {
  font-size: 20px;
  line-height: 1.28;
}

.dark-process {
  width: min(100% - 48px, 1450px);
  margin: 110px auto 0;
  padding: clamp(56px, 7vw, 100px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(11, 139, 115, 0.24), transparent 30%),
    var(--forest);
  color: white;
}

.dark-process-heading {
  max-width: 770px;
}

.dark-process-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.dark-process-grid article {
  padding: 34px 34px 0 0;
}

.dark-process-grid article + article {
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.dark-process-grid span {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.dark-process-grid h3 {
  margin: 38px 0 12px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.dark-process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.75;
}

.dubai-coverage {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(48px, 9vw, 120px);
  align-items: center;
}

.coverage-copy > p {
  max-width: 740px;
  margin-top: 28px;
}

.area-tags {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.area-tags span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--ink-soft);
  font-size: 12px;
}

.coverage-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(16, 26, 24, 0.08);
}

.mini-label {
  color: var(--emerald);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coverage-card h3 {
  margin: 12px 0 20px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.coverage-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.coverage-card li {
  padding: 14px 0;
  display: flex;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.coverage-card li b {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
}

.coverage-card > a {
  margin-top: 24px;
  min-height: 50px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--emerald);
  color: white;
  font-size: 13px;
  font-weight: 760;
}

.reviews-section {
  width: min(100% - 48px, 1450px);
  padding-top: 110px;
}

.reviews-shell {
  overflow: hidden;
}

.reviews-toolbar {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.reviews-toolbar > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: #4285f4;
  font-weight: 800;
}

.reviews-toolbar strong {
  font-size: 14px;
}

.review-count {
  color: var(--ink-soft);
  font-size: 12px;
}

a.review-count:hover {
  color: var(--emerald);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.carousel-buttons {
  display: flex;
  gap: 8px;
}

.carousel-buttons button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
}

.carousel-buttons button:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

.reviews-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((100% - 32px) / 3);
  min-height: 310px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}

.review-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.review-card > p {
  margin: 24px 0;
  color: #293330;
  font-size: 16px;
  line-height: 1.7;
}

.review-card footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--emerald);
  font-size: 11px;
  font-weight: 760;
}

.review-card footer > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-card footer strong {
  font-size: 13px;
}

.review-card footer small {
  color: var(--ink-soft);
  font-size: 10px;
}

.review-dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.review-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #bfc7c3;
  cursor: pointer;
  transition: width 180ms ease;
}

.review-dots button[aria-current="true"] {
  width: 28px;
  background: var(--emerald);
}

.premium-faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
}

.faq-intro > p {
  margin-top: 24px;
}

.faq-intro > a {
  margin-top: 28px;
  display: inline-block;
  color: var(--emerald);
  font-size: 19px;
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 25px 48px 25px 0;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 680;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  color: var(--emerald);
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: -5px 0 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.premium-cta {
  width: min(100% - 48px, 1450px);
  min-height: 300px;
  margin: 20px auto 48px;
  padding: clamp(46px, 6vw, 84px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 30%, rgba(11, 139, 115, 0.28), transparent 32%),
    var(--forest);
  color: white;
}

.premium-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 1;
}

.closing-actions {
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  padding: 72px clamp(24px, 5vw, 80px) 26px;
  background: #071c19;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: clamp(34px, 6vw, 90px);
}

.footer-brand {
  color: white;
}

.footer-brand .brand-mark::before,
.footer-brand .brand-mark::after {
  border-color: #071c19;
}

.footer-grid > div,
.footer-grid > nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid > div:first-child > p {
  max-width: 390px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.footer-grid a:hover {
  color: white;
}

.mobile-note {
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}

.footer-phone {
  color: white !important;
  font-size: 17px !important;
  font-weight: 760;
}

.footer-whatsapp {
  margin-top: 12px;
  color: var(--gold-light) !important;
}

.footer-bottom {
  margin-top: 62px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-action-bar {
  display: none;
}

.area-showcase {
  padding-bottom: 22px;
}

.area-showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.area-showcase-card {
  min-height: 310px;
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border-radius: 22px;
  background: var(--forest);
  box-shadow: 0 18px 44px rgba(16, 26, 24, 0.1);
}

.area-showcase-card:nth-child(4),
.area-showcase-card:nth-child(5) {
  min-height: 330px;
  grid-column: span 6;
}

.area-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 24, 21, 0.04) 24%,
    rgba(4, 24, 21, 0.92) 100%
  );
}

.area-showcase-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.area-showcase-card > span {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: white;
}

.area-showcase-card small {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.area-showcase-card strong {
  margin-top: 6px;
  font-size: clamp(23px, 2.4vw, 34px);
  font-weight: 610;
  letter-spacing: -0.04em;
}

.area-showcase-card em {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
}

.area-showcase-card:hover img {
  transform: scale(1.055);
}

.area-showcase-card:hover em {
  color: white;
}

.seo-content-panel {
  padding: clamp(46px, 7vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 130px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 12%, rgba(216, 238, 231, 0.12), transparent 25%),
    var(--forest);
  color: white;
}

.seo-content-panel h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.seo-content-panel > div:last-child {
  align-self: end;
}

.seo-content-panel > div:last-child p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.seo-content-panel .text-link {
  color: var(--gold-light);
}

.footer-bottom {
  align-items: center;
  gap: 24px;
}

.footer-bottom nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-bottom nav a,
.footer-bottom nav button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.footer-bottom nav a:hover,
.footer-bottom nav button:hover {
  color: white;
}

.consent-banner {
  width: min(calc(100% - 40px), 850px);
  padding: 16px 18px;
  position: fixed;
  left: 50%;
  bottom: 24px;
  margin: 0;
  z-index: 120;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  transform: translateX(-50%);
  border: 1px solid rgba(6, 45, 39, 0.15);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 26px 90px rgba(5, 24, 21, 0.28);
  backdrop-filter: blur(18px);
  animation: consent-enter 320ms ease-out both;
}

.consent-banner > div:first-child {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.consent-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-size: 18px;
}

.consent-banner h2 {
  margin: 0 0 6px;
  font-size: 15px;
  letter-spacing: -0.025em;
}

.consent-banner p {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

@keyframes consent-enter {
  from {
    opacity: 0;
    transform: translate(-50%, 18px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* SEO service detail pages */
.service-detail-hero {
  width: min(100% - 48px, 1450px);
  min-height: 660px;
  margin: 24px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 183, 3, 0.18);
  border-radius: 28px;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.service-detail-hero > img,
.service-detail-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.service-detail-hero > img {
  object-fit: cover;
}

.service-detail-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(4, 23, 20, 0.98) 0%,
      rgba(4, 23, 20, 0.88) 45%,
      rgba(4, 23, 20, 0.18) 100%
    ),
    linear-gradient(0deg, rgba(4, 23, 20, 0.35), transparent 45%);
}

.service-detail-copy {
  width: min(67%, 850px);
  padding: clamp(58px, 7vw, 100px);
  position: relative;
  z-index: 2;
  color: white;
}

.service-detail-copy h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.service-detail-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.75;
}

.service-detail-badge {
  width: 250px;
  padding: 24px;
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(14px);
}

.service-detail-badge span {
  color: var(--signal);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-detail-badge strong {
  margin: 8px 0 4px;
  font-size: 25px;
}

.service-detail-badge small {
  color: var(--ink-soft);
  font-size: 10px;
}

.service-detail-intro {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: 110px 0 72px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.service-detail-intro h2 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.service-detail-list {
  border-top: 1px solid var(--line);
}

.service-detail-list > div {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.service-detail-list span,
.service-issue-grid > article > span,
.service-detail-process li span {
  color: var(--signal);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.service-detail-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.service-issues {
  padding-top: 70px;
}

.service-issue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-issue-grid article {
  min-height: 185px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(16, 26, 24, 0.05);
}

.service-issue-grid h3 {
  margin: 42px 0 0;
  font-size: 20px;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.service-detail-process {
  width: min(100% - 48px, 1450px);
  margin: 30px auto 0;
  padding: clamp(52px, 7vw, 92px);
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(50px, 9vw, 130px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 14%, rgba(11, 139, 115, 0.27), transparent 32%),
    var(--forest);
  color: white;
}

.service-detail-process h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.service-detail-process ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail-process li {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.consent-banner p a,
.content-page a:not(.button) {
  color: var(--emerald);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.consent-actions button,
.inline-cookie-settings {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 760;
}

.consent-reject,
.inline-cookie-settings {
  background: transparent;
  color: var(--forest);
}

.consent-accept {
  background: var(--forest);
  color: white;
}

.content-hero {
  width: min(100% - 48px, 1450px);
  margin: 24px auto 0;
  padding: clamp(72px, 10vw, 134px) clamp(30px, 8vw, 118px);
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 10%, rgba(214, 173, 99, 0.22), transparent 25%),
    radial-gradient(circle at 12% 90%, rgba(11, 139, 115, 0.24), transparent 30%),
    var(--forest);
  color: white;
}

.content-hero > div {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.content-hero h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.content-hero > div > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.content-hero span {
  margin-top: 24px;
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.content-page {
  width: min(100% - 48px, 1040px);
  margin: 34px auto 96px;
  padding: clamp(32px, 6vw, 74px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(16, 26, 24, 0.08);
}

.content-page section {
  padding: 34px 0;
}

.content-page section:first-child {
  padding-top: 0;
}

.content-page section:last-child {
  padding-bottom: 0;
}

.content-page section + section {
  border-top: 1px solid var(--line);
}

.content-page h2 {
  margin: 0 0 16px;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.content-page p,
.content-page li {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}

.content-page p {
  margin: 0 0 14px;
}

.content-page ul,
.content-page ol {
  margin: 14px 0 0;
  padding-left: 23px;
}

.content-page li + li {
  margin-top: 8px;
}

.policy-table-wrap {
  margin: 22px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.policy-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.policy-table th,
.policy-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: var(--mint);
  color: var(--forest);
  font-weight: 780;
}

.policy-table tbody tr:last-child td {
  border-bottom: 0;
}

.inline-cookie-settings {
  margin-top: 8px;
}

.content-stat-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.content-stat-grid > div {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-radius: 16px;
  background: var(--mint);
}

.content-stat-grid strong {
  color: var(--forest);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.content-stat-grid span,
.contact-options > div > span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-contact-card {
  padding: 34px !important;
  border: 0 !important;
  border-radius: 20px;
  background: var(--forest);
  color: white;
}

.content-contact-card p {
  color: rgba(255, 255, 255, 0.66);
}

.contact-options {
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-options > div {
  padding: 32px;
  border-radius: 20px;
  background: var(--mint);
}

.contact-options h2 {
  margin: 8px 0 12px;
}

.contact-options h2 a {
  color: var(--forest) !important;
  text-decoration: none !important;
}

.contact-options .button {
  margin-top: 8px;
  text-decoration: none !important;
}

.content-number-list {
  list-style: none;
  padding-left: 0 !important;
  counter-reset: booking-detail;
}

.content-number-list li {
  padding: 13px 0 13px 54px;
  position: relative;
  counter-increment: booking-detail;
}

.content-number-list li::before {
  content: "0" counter(booking-detail);
  width: 38px;
  height: 38px;
  position: absolute;
  left: 0;
  top: 10px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 780;
}

/* Location pages */
.local-hero {
  width: min(100% - 48px, 1450px);
  min-height: 620px;
  margin: 24px auto 0;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 28px;
  background: var(--forest);
}

.local-hero > img,
.local-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.local-hero > img {
  object-fit: cover;
}

.local-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(5, 24, 21, 0.97) 0%,
    rgba(5, 24, 21, 0.84) 45%,
    rgba(5, 24, 21, 0.18) 100%
  );
}

.local-hero-copy {
  width: min(64%, 820px);
  padding: clamp(58px, 7vw, 100px);
  position: relative;
  z-index: 2;
  color: white;
}

.local-breadcrumbs {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.local-breadcrumbs a {
  color: var(--gold-light);
  transition: color 180ms ease;
}

.local-breadcrumbs a:hover {
  color: white;
}

.local-hero h1 {
  font-size: clamp(48px, 5.5vw, 78px);
}

.local-hero-badge {
  width: 250px;
  padding: 24px;
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.local-hero-badge span {
  color: var(--emerald);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.local-hero-badge strong {
  margin: 9px 0 4px;
  font-size: 26px;
}

.local-hero-badge small {
  color: var(--ink-soft);
  font-size: 10px;
}

.local-intro {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: 115px 0 75px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8vw;
  align-items: end;
}

.local-intro > p {
  align-self: end;
}

.local-priorities {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.local-priorities article {
  padding: 40px 34px 40px 0;
}

.local-priorities article + article {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.local-priorities span {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}

.local-priorities h3 {
  margin: 26px 0 10px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.local-priorities p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
}

.local-services {
  padding-bottom: 80px;
}

.local-area-section {
  width: min(100% - 48px, 1450px);
  margin: 0 auto 110px;
  padding: clamp(50px, 7vw, 90px);
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 8vw;
  border-radius: 30px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.local-area-section h2 {
  font-size: clamp(40px, 4.7vw, 64px);
}

.local-area-section > div > p {
  margin-top: 24px;
}

.light-tags {
  align-content: center;
  margin-top: 0;
}

.light-tags span {
  background: var(--cream);
}

.local-booking {
  width: min(100% - 48px, 1450px);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 90px);
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 8vw;
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 20%, rgba(11, 139, 115, 0.28), transparent 36%),
    var(--forest);
  color: white;
}

.local-booking h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.local-booking p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.local-booking ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-booking li {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.local-booking li span {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}

.local-faq {
  padding-top: 110px;
}

.local-cta {
  margin-top: 0;
}

.not-found {
  width: min(100% - 48px, 1450px);
  min-height: 620px;
  margin: 24px auto 48px;
  padding: clamp(54px, 9vw, 140px);
  display: flex;
  align-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 24%, rgba(11, 139, 115, 0.32), transparent 31%),
    var(--forest);
  color: white;
}

.not-found > div {
  max-width: 780px;
}

.not-found h1 {
  margin: 14px 0 24px;
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.not-found p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.7;
}

.not-found .hero-actions {
  margin-top: 36px;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .premium-hero {
    min-height: 690px;
  }

  .premium-hero-content {
    width: 68%;
    padding: 66px;
  }

  .hero-booking-card {
    width: 300px;
  }

  .area-showcase-card {
    grid-column: span 6;
  }

  .area-showcase-card:last-child {
    grid-column: 4 / 10;
  }

  .seo-content-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .premium-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-trust > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .premium-trust > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .photo-story {
    grid-template-columns: 1fr 1fr;
  }

  .photo-story-main {
    min-height: 640px;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-grid > :nth-child(4) {
    grid-column: 2 / 4;
  }
}

@media (max-width: 860px) {
  .topbar {
    justify-content: space-between;
  }

  .topbar-dot,
  .topbar span:nth-of-type(3) {
    display: none;
  }

  .site-header {
    min-height: 72px;
  }

  .header-phone > span:first-child {
    display: none;
  }

  .premium-hero {
    min-height: 800px;
    align-items: flex-start;
  }

  .premium-hero-image {
    object-position: 58% center;
  }

  .premium-hero-shade {
    background:
      linear-gradient(
        180deg,
        rgba(5, 24, 21, 0.94) 0%,
        rgba(5, 24, 21, 0.74) 55%,
        rgba(5, 24, 21, 0.5) 100%
      ),
      linear-gradient(90deg, rgba(5, 24, 21, 0.6), transparent);
  }

  .premium-hero-content {
    width: 100%;
    padding: 64px 44px;
  }

  .hero-carousel-controls {
    top: 20px;
    right: 20px;
  }

  .hero-current-location {
    display: none;
  }

  .premium-hero-content > p:not(.eyebrow) {
    max-width: 540px;
  }

  .hero-booking-card {
    left: 28px;
    right: 28px;
    bottom: 28px;
    width: auto;
  }

  .editorial-heading,
  .dubai-coverage,
  .premium-faq,
  .local-intro,
  .local-area-section,
  .local-booking {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .area-showcase-card,
  .area-showcase-card:nth-child(4),
  .area-showcase-card:nth-child(5),
  .area-showcase-card:last-child {
    min-height: 300px;
    grid-column: span 6;
  }

  .seo-content-panel {
    padding: 54px 40px;
  }

  .premium-services-grid {
    grid-template-columns: 1fr;
  }

  .premium-service-card:nth-child(odd) {
    border-right: 0;
  }

  .photo-story {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .photo-story-main {
    grid-row: auto;
    min-height: 520px;
  }

  .photo-story-copy {
    padding: 34px 14px;
  }

  .dark-process-grid {
    grid-template-columns: 1fr;
  }

  .dark-process-grid article,
  .dark-process-grid article + article {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .dark-process-grid h3 {
    margin-top: 16px;
  }

  .review-card {
    flex-basis: calc((100% - 16px) / 2);
  }

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

  .closing-actions {
    width: 100%;
    flex-direction: row;
  }

  .closing-actions .button {
    flex: 1;
  }

  .consent-banner {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    bottom: 16px;
  }

  .consent-actions {
    justify-content: flex-end;
  }

  .content-page {
    margin-bottom: 72px;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .local-hero {
    min-height: 720px;
    align-items: flex-start;
  }

  .local-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(5, 24, 21, 0.96) 0%,
      rgba(5, 24, 21, 0.7) 65%,
      rgba(5, 24, 21, 0.44) 100%
    );
  }

  .local-hero-copy {
    width: 100%;
    padding: 58px 44px;
  }

  .local-hero-badge {
    left: 28px;
    right: 28px;
    width: auto;
  }

  .local-priorities {
    grid-template-columns: 1fr;
  }

  .local-priorities article,
  .local-priorities article + article {
    padding: 30px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .local-priorities article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 68px;
  }

  .topbar {
    min-height: 32px;
    padding: 7px 16px;
    font-size: 9px;
  }

  .topbar span:nth-of-type(2) {
    display: none;
  }

  .site-header {
    min-height: 66px;
    padding: 0 16px;
  }

  .brand {
    gap: 9px;
    font-size: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 32px;
  }

  .phone-square {
    width: 40px;
    height: 40px;
  }

  .premium-hero,
  .photo-story,
  .dark-process,
  .premium-cta,
  .local-hero,
  .local-area-section,
  .local-booking,
  .not-found {
    width: calc(100% - 24px);
    border-radius: 20px;
  }

  .premium-hero {
    min-height: 0;
    margin-top: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .service-ticker {
    height: 34px;
  }

  .premium-hero-image {
    object-position: 64% center;
  }

  .premium-hero-content {
    padding: 42px 22px 0;
  }

  .hero-carousel-controls {
    display: none;
  }

  .premium-hero h1,
  .local-hero h1 {
    font-size: 46px;
    line-height: 1;
  }

  .premium-hero-content > p:not(.eyebrow),
  .local-hero-copy > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 26px;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero-proof {
    display: none;
  }

  .hero-proof > * {
    padding-right: 8px;
  }

  .hero-proof > * + * {
    padding-left: 12px;
  }

  .hero-proof strong {
    font-size: 18px;
  }

  .hero-proof span {
    font-size: 9px;
  }

  .hero-booking-card {
    width: calc(100% - 28px);
    padding: 22px;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 24px auto 14px;
  }

  .hero-booking-card h2 {
    font-size: 22px;
  }

  .premium-trust {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }

  .area-showcase-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .area-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .area-showcase-card,
  .area-showcase-card:nth-child(4),
  .area-showcase-card:nth-child(5),
  .area-showcase-card:last-child {
    min-width: 82%;
    min-height: 330px;
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .seo-content-panel h2 {
    font-size: 39px;
  }

  .premium-trust > div,
  .premium-trust > div:nth-child(3),
  .premium-trust > div:nth-child(4) {
    min-height: 92px;
    padding: 18px 22px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .premium-trust > div:first-child {
    border-top: 0;
  }

  .section {
    width: calc(100% - 32px);
    padding: 82px 0;
  }

  .section.seo-content-panel {
    width: calc(100% - 24px);
    padding: 64px 24px 72px;
  }

  .editorial-heading {
    margin-bottom: 34px;
  }

  .editorial-heading h2,
  .photo-story-copy h2,
  .dark-process h2,
  .coverage-copy h2,
  .faq-intro h2,
  .local-intro h2,
  .local-area-section h2 {
    font-size: 40px;
  }

  .editorial-heading > p,
  .coverage-copy > p,
  .faq-intro > p,
  .local-intro > p,
  .local-area-section > div > p {
    font-size: 14px;
    line-height: 1.7;
  }

  .premium-service-card {
    min-height: 0;
    padding: 28px 4px;
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .premium-service-card > span {
    width: 40px;
    height: 40px;
  }

  .premium-service-card h3 {
    font-size: 20px;
  }

  .photo-story {
    padding: 14px;
  }

  .photo-story-main {
    min-height: 400px;
  }

  .photo-story-secondary {
    grid-template-columns: 1fr;
  }

  .photo-story-secondary img {
    height: 220px;
  }

  .dark-process {
    margin-top: 72px;
    padding: 46px 24px;
  }

  .dark-process-grid {
    margin-top: 38px;
  }

  .coverage-card {
    padding: 26px 22px;
  }

  .reviews-section {
    width: calc(100% - 32px);
  }

  .review-count {
    display: none;
  }

  .review-card {
    flex-basis: 88%;
    padding: 26px;
  }

  .premium-faq {
    gap: 46px;
  }

  .premium-cta {
    margin-bottom: 24px;
    padding: 44px 24px;
  }

  .premium-cta h2 {
    font-size: 42px;
  }

  .closing-actions {
    flex-direction: column;
  }

  .site-footer {
    padding: 58px 24px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / 3;
  }

  .footer-grid > :nth-child(4) {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-bottom nav {
    justify-content: flex-start;
    gap: 10px 16px;
  }

  .consent-banner {
    width: calc(100% - 20px);
    padding: 18px;
    bottom: 78px;
    gap: 14px;
    border-radius: 18px;
  }

  .consent-banner > div:first-child {
    gap: 12px;
  }

  .consent-icon {
    width: 34px;
    height: 34px;
  }

  .consent-banner p {
    font-size: 11px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .consent-actions button {
    padding: 0 10px;
    font-size: 10px;
  }

  .content-hero {
    width: calc(100% - 24px);
    margin-top: 12px;
    padding: 58px 24px;
    border-radius: 20px;
  }

  .content-hero h1 {
    font-size: 48px;
  }

  .content-hero > div > p:not(.eyebrow) {
    font-size: 14px;
  }

  .content-page {
    width: calc(100% - 24px);
    margin: 18px auto 42px;
    padding: 26px 22px;
    border-radius: 20px;
  }

  .content-page section {
    padding: 28px 0;
  }

  .content-page p,
  .content-page li {
    font-size: 14px;
  }

  .content-stat-grid {
    grid-template-columns: 1fr;
  }

  .contact-options > div,
  .content-contact-card {
    padding: 24px !important;
  }

  .mobile-action-bar {
    height: 68px;
    padding: 9px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: rgba(255, 253, 249, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }

  .mobile-action-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    background: var(--forest);
    color: white;
    font-size: 13px;
    font-weight: 760;
  }

  .mobile-action-bar a:last-child {
    background: var(--emerald);
  }

  .local-hero {
    min-height: 760px;
    margin-top: 12px;
  }

  .local-hero-copy {
    padding: 42px 22px;
  }

  .local-hero-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 20px;
  }

  .local-intro {
    width: calc(100% - 32px);
    padding: 82px 0 58px;
  }

  .local-priorities {
    width: calc(100% - 32px);
  }

  .local-area-section,
  .local-booking {
    padding: 42px 24px;
  }

  .local-booking h2 {
    font-size: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Blog and secure publishing dashboard */
.blog-hero {
  min-height: 500px;
  padding: clamp(72px, 10vw, 140px) clamp(24px, 7vw, 112px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 30, 26, 0.97) 0%, rgba(4, 30, 26, 0.8) 48%, rgba(4, 30, 26, 0.28) 100%),
    url("/images/stock-diagnostics-1600.webp") center 44% / cover;
  color: var(--white);
}

.blog-hero::after {
  content: "";
  width: 34%;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, var(--gold), var(--emerald));
}

.blog-hero > div {
  width: min(760px, 100%);
}

.blog-hero h1 {
  max-width: 850px;
  margin: 18px 0 24px;
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.blog-hero > div > p:last-child {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
}

.blog-index {
  padding-top: clamp(72px, 9vw, 130px);
  padding-bottom: clamp(96px, 10vw, 150px);
}

.blog-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 22px 56px rgba(16, 26, 24, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(16, 26, 24, 0.14);
}

.blog-card-image {
  height: 240px;
  display: block;
  overflow: hidden;
  background: var(--forest);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.045);
}

.blog-card > div {
  padding: 30px;
}

.blog-card > div > span {
  color: var(--emerald);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 13px 0 15px;
  font-size: clamp(24px, 2.3vw, 33px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.blog-card p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.blog-empty {
  margin-top: 48px;
  padding: 56px;
  border-radius: 30px;
  background: var(--forest);
  color: var(--white);
}

.home-blog {
  padding-top: clamp(80px, 9vw, 132px);
  padding-bottom: clamp(80px, 9vw, 132px);
  background: var(--paper);
}

.home-blog-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-blog-grid > a {
  min-height: 330px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: var(--forest);
  color: var(--white);
  transition: transform 220ms ease, background 220ms ease;
}

.home-blog-grid > a:nth-child(2) { background: var(--emerald); }
.home-blog-grid > a:nth-child(3) { background: #172b27; }
.home-blog-grid > a:hover { transform: translateY(-6px); background: #0b5d4d; }
.home-blog-grid span { color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.home-blog-grid h3 { margin: auto 0 24px; font-size: clamp(28px, 2.8vw, 40px); line-height: 1.06; letter-spacing: -0.05em; }
.home-blog-grid b { font-size: 14px; }
.home-blog-all { margin-top: 30px; display: inline-flex; gap: 12px; color: var(--emerald); font-weight: 800; }

.blog-post {
  padding: clamp(64px, 8vw, 118px) clamp(24px, 5.4vw, 88px) clamp(100px, 11vw, 170px);
  background: var(--paper);
}

.blog-post-header {
  width: min(1020px, 100%);
  margin: 0 auto 54px;
}

.blog-post-header nav {
  margin-bottom: 48px;
  display: flex;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 13px;
}

.blog-post-header nav a:hover { color: var(--emerald); }
.blog-post-header h1 { margin: 18px 0 26px; font-size: clamp(48px, 7vw, 94px); line-height: 0.99; letter-spacing: -0.066em; }
.blog-post-header > p:not(.eyebrow) { max-width: 850px; margin: 0 0 25px; color: var(--ink-soft); font-size: clamp(19px, 2vw, 26px); line-height: 1.55; }
.blog-post-header > span { color: #64716d; font-size: 13px; }

.blog-cover {
  width: min(1320px, 100%);
  max-height: 680px;
  margin: 0 auto 72px;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.blog-post-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: clamp(50px, 7vw, 92px);
}

.blog-article-body { color: #2f3c38; font-size: clamp(18px, 1.7vw, 21px); line-height: 1.82; }
.blog-article-body h2 { margin: 64px 0 20px; color: var(--ink); font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -0.05em; }
.blog-article-body h3 { margin: 44px 0 18px; color: var(--ink); font-size: 28px; letter-spacing: -0.035em; }
.blog-article-body p { margin: 0 0 28px; }
.blog-article-body ul { margin: 0 0 30px; padding: 0; list-style: none; }
.blog-article-body li { margin: 12px 0; padding-left: 30px; position: relative; }
.blog-article-body li::before { content: "✓"; position: absolute; left: 0; color: var(--emerald); font-weight: 900; }

.blog-contact-card {
  padding: 32px;
  position: sticky;
  top: 28px;
  border-radius: 28px;
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow);
}

.blog-contact-card h2 { margin: 24px 0 14px; font-size: 32px; line-height: 1.08; letter-spacing: -0.045em; }
.blog-contact-card > p { margin: 0 0 26px; color: rgba(255,255,255,.7); line-height: 1.65; }
.blog-contact-card .button { width: 100%; margin-top: 10px; }

.dashboard-page { min-height: 100vh; overflow: visible; background: #eef1ec; }
.dashboard-nav { min-height: 72px; padding: 0 clamp(20px, 4vw, 64px); display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid #d8ddd5; background: var(--paper); }
.dashboard-brand { color: var(--forest); font-size: 18px; font-weight: 900; letter-spacing: -0.04em; }
.dashboard-nav > div { display: flex; gap: 24px; font-size: 14px; font-weight: 750; }
.dashboard-nav a:hover { color: var(--emerald); }
.dashboard-shell { width: min(1500px, calc(100% - 48px)); margin: 0 auto; padding: 64px 0 100px; }
.dashboard-heading { margin-bottom: 42px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.dashboard-heading h1 { margin: 12px 0 14px; font-size: clamp(44px, 6vw, 82px); line-height: .98; letter-spacing: -.065em; }
.dashboard-heading > div:first-child > p:last-child { max-width: 720px; margin: 0; color: var(--ink-soft); line-height: 1.6; }
.dashboard-stats { min-width: 250px; padding: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border-radius: 22px; background: var(--forest); color: var(--white); }
.dashboard-stats span { color: rgba(255,255,255,.68); font-size: 12px; }
.dashboard-stats b { display: block; color: var(--white); font-size: 28px; }
.dashboard-stats a { grid-column: 1 / 3; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.15); color: var(--gold-light); font-size: 13px; font-weight: 800; }
.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); align-items: start; gap: 28px; }
.blog-editor, .post-manager { padding: clamp(24px, 3vw, 46px); border: 1px solid #d8ddd5; border-radius: 30px; background: var(--paper); box-shadow: 0 22px 58px rgba(16,26,24,.07); }
.editor-title-row { margin-bottom: 34px; display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.editor-title-row h2, .post-manager h2 { margin: 8px 0 0; font-size: clamp(30px, 3.5vw, 46px); line-height: 1.05; letter-spacing: -.05em; }
.plain-button { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--forest); cursor: pointer; font-weight: 750; }
.blog-editor label { margin-bottom: 23px; display: block; color: var(--ink); font-size: 13px; font-weight: 800; }
.blog-editor input, .blog-editor textarea, .blog-editor select { width: 100%; margin-top: 9px; padding: 14px 16px; border: 1px solid #cfd5cd; border-radius: 12px; background: #fff; color: var(--ink); font: inherit; font-weight: 500; line-height: 1.5; outline: none; }
.blog-editor input:focus, .blog-editor textarea:focus, .blog-editor select:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(11,139,115,.12); }
.blog-editor textarea { resize: vertical; }
.blog-editor .content-input { min-height: 340px; font-family: Arial, Helvetica, sans-serif; }
.blog-editor small { margin-top: 7px; display: block; color: #7a8581; font-weight: 500; text-align: right; }
.slug-field { margin-top: 9px; display: flex; align-items: center; overflow: hidden; border: 1px solid #cfd5cd; border-radius: 12px; background: #eef2ee; }
.slug-field span { padding-left: 14px; color: #69746f; font-weight: 600; }
.slug-field input { margin: 0; border: 0; border-radius: 0; }
.form-two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.seo-fields { margin: 12px 0 28px; padding: 25px; border: 1px solid #d6ddd4; border-radius: 20px; }
.seo-fields legend { padding: 0 9px; color: var(--emerald); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.search-preview { padding: 18px; border-radius: 14px; background: #f3f6f2; }
.search-preview span { display: block; color: #557169; font-size: 12px; }
.search-preview strong { margin: 7px 0; display: block; color: #1558ad; font-size: 20px; font-weight: 500; }
.search-preview p { margin: 0; color: #4f5a56; font-size: 14px; line-height: 1.45; }
.dashboard-save { width: 100%; border: 0; cursor: pointer; }
.dashboard-save:disabled { opacity: .55; cursor: wait; }
.dashboard-alert { padding: 14px 16px; border-radius: 12px; font-size: 14px; font-weight: 700; }
.dashboard-alert.error { background: #fff0ed; color: #9b2918; }
.dashboard-alert.success { background: #e3f5ee; color: #08624f; }
.post-manager { position: sticky; top: 22px; }
.post-manager > div:first-child > p { color: var(--ink-soft); line-height: 1.55; }
.dashboard-loading { padding: 28px 0; color: var(--ink-soft); }
.dashboard-post-list { margin-top: 28px; display: grid; gap: 14px; }
.dashboard-post-list article { padding: 20px; border: 1px solid #dde2db; border-radius: 18px; background: #f8faf7; }
.dashboard-post-list article > div:first-child, .dashboard-post-list article > div:last-child { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dashboard-post-list h3 { margin: 14px 0 8px; font-size: 20px; line-height: 1.18; letter-spacing: -.025em; }
.dashboard-post-list p { margin: 0 0 16px; overflow-wrap: anywhere; color: #6d7874; font-size: 12px; }
.dashboard-post-list time { color: #78837f; font-size: 11px; }
.dashboard-post-list button, .dashboard-post-list a { padding: 0; border: 0; background: transparent; color: var(--emerald); cursor: pointer; font-size: 12px; font-weight: 850; }
.dashboard-post-list .delete-button { color: #b43b28; }
.status-pill { padding: 5px 9px; border-radius: 999px; background: #e6e9e4; color: #56615d; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.status-pill.published { background: #d8f1e8; color: #08705b; }

@media (max-width: 980px) {
  .blog-grid, .home-blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:last-child, .home-blog-grid > a:last-child { grid-column: 1 / 3; }
  .blog-post-layout, .dashboard-grid { grid-template-columns: 1fr; }
  .blog-contact-card, .post-manager { position: static; }
  .dashboard-heading { align-items: start; flex-direction: column; }
}

@media (max-width: 620px) {
  .blog-hero { min-height: 520px; padding: 72px 28px; background-position: 62% center; }
  .blog-hero h1 { font-size: clamp(46px, 15vw, 67px); }
  .blog-index { padding-left: 20px; padding-right: 20px; }
  .blog-grid, .home-blog-grid { grid-template-columns: 1fr; }
  .blog-card:last-child, .home-blog-grid > a:last-child { grid-column: auto; }
  .blog-card-image { height: 220px; }
  .home-blog-grid > a { min-height: 290px; }
  .blog-post { padding: 52px 20px 120px; }
  .blog-post-header nav { margin-bottom: 32px; }
  .blog-post-header h1 { font-size: clamp(44px, 14vw, 65px); }
  .blog-cover { margin-bottom: 48px; border-radius: 22px; }
  .dashboard-shell { width: min(100% - 24px, 1500px); padding-top: 40px; }
  .dashboard-nav { min-height: 64px; }
  .dashboard-nav > div { gap: 12px; font-size: 12px; }
  .dashboard-stats { width: 100%; }
  .blog-editor, .post-manager { padding: 22px; border-radius: 22px; }
  .form-two-columns { grid-template-columns: 1fr; gap: 0; }
  .slug-field span { display: none; }
}

@media (max-width: 1120px) {
  .service-detail-copy {
    width: 72%;
  }

  .service-issue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .service-detail-hero {
    min-height: 760px;
    align-items: flex-start;
  }

  .service-detail-overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 23, 20, 0.97) 0%,
      rgba(4, 23, 20, 0.76) 66%,
      rgba(4, 23, 20, 0.48) 100%
    );
  }

  .service-detail-copy {
    width: 100%;
    padding: 58px 44px;
  }

  .service-detail-badge {
    left: 28px;
    right: 28px;
    width: auto;
  }

  .service-detail-intro,
  .service-detail-process {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 620px) {
  .service-detail-hero,
  .service-detail-process {
    width: calc(100% - 24px);
    border-radius: 20px;
  }

  .service-detail-hero {
    min-height: 830px;
    margin-top: 12px;
  }

  .service-detail-copy {
    padding: 42px 22px;
  }

  .service-detail-copy h1 {
    font-size: 45px;
  }

  .service-detail-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.65;
  }

  .service-detail-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 20px;
  }

  .service-detail-intro {
    width: calc(100% - 32px);
    padding: 82px 0 44px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-detail-intro h2,
  .service-detail-process h2 {
    font-size: 39px;
  }

  .service-issue-grid {
    grid-template-columns: 1fr;
  }

  .service-issue-grid article {
    min-height: 155px;
  }

  .service-detail-process {
    padding: 44px 24px;
  }

  .consent-banner {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 98px);
    bottom: 78px;
    padding: 14px;
    gap: 14px;
    overflow-y: auto;
    border-radius: 18px;
  }

  .consent-banner > div:first-child {
    gap: 10px;
  }

  .consent-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .consent-banner h2 {
    font-size: 14px;
  }

  .consent-banner p {
    font-size: 10px;
    line-height: 1.5;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-actions button {
    min-height: 42px;
    padding: 0 12px;
    flex: 1;
    font-size: 9px;
  }

  .ticker-toggle {
    right: 6px;
  }
}

/* High-energy automotive identity and motion system */
:root {
  --signal: #ff4d2e;
  --amber: #ffb703;
  --night: #041714;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  width: 58px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--forest);
  filter: drop-shadow(0 8px 14px rgba(6, 45, 39, 0.18));
}

.brand-words {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-words strong {
  color: var(--forest);
  font-size: 17px;
  font-weight: 880;
  letter-spacing: -0.045em;
}

.brand-words small {
  margin-top: 5px;
  color: var(--signal);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.footer-brand .brand-logo {
  color: #0a3d35;
}

.footer-brand .brand-words strong {
  color: white;
}

.footer-brand .brand-words small {
  color: var(--amber);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle,
.mobile-menu-link {
  display: none;
}

.topbar {
  background:
    linear-gradient(90deg, rgba(255, 77, 46, 0.12), transparent 30%),
    var(--night);
  border-bottom: 1px solid rgba(255, 183, 3, 0.16);
}

.topbar-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
}

.topbar-live i,
.section-carousel-toolbar > span i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(255, 77, 46, 0.55);
  animation: emergency-pulse 1.8s ease-out infinite;
}

.premium-hero {
  isolation: isolate;
  border: 1px solid rgba(255, 183, 3, 0.18);
}

.premium-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    112deg,
    transparent 28%,
    rgba(255, 183, 3, 0.08) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: hero-scan 7s ease-in-out infinite;
}

.hero-energy-lines {
  width: 38%;
  height: 22px;
  position: absolute;
  left: 7%;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 12px;
  pointer-events: none;
  opacity: 0.5;
}

.hero-energy-lines i {
  height: 2px;
  display: block;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  animation: energy-line 2.8s ease-in-out infinite;
}

.hero-energy-lines i:nth-child(2) {
  animation-delay: 0.45s;
}

.hero-energy-lines i:nth-child(3) {
  animation-delay: 0.9s;
}

.availability i {
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(255, 77, 46, 0.45);
  animation: emergency-pulse 1.8s ease-out infinite;
}

.button-gold {
  position: relative;
  overflow: hidden;
  background: var(--amber);
}

.button-gold::after {
  content: "";
  width: 40%;
  position: absolute;
  inset: -30% auto -30% -55%;
  transform: skewX(-20deg);
  background: rgba(255, 255, 255, 0.38);
  animation: button-sizzle 3.6s ease-in-out infinite;
}

.urgent-dispatch {
  width: min(100% - 48px, 1380px);
  min-height: 92px;
  margin: 18px auto 0;
  padding: 18px 22px;
  position: relative;
  display: grid;
  grid-template-columns: auto 1.1fr 1fr auto;
  align-items: center;
  gap: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 77, 46, 0.26);
  border-radius: 20px;
  background:
    linear-gradient(100deg, rgba(255, 77, 46, 0.14), transparent 42%),
    var(--night);
  color: white;
  box-shadow: 0 18px 44px rgba(4, 23, 20, 0.16);
}

.urgent-dispatch::after {
  content: "";
  width: 170px;
  position: absolute;
  inset: 0 auto 0 -220px;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.12), transparent);
  animation: urgent-scan 5.5s linear infinite;
}

.urgent-signal {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--signal);
  box-shadow: 0 0 0 8px rgba(255, 77, 46, 0.1);
  animation: emergency-tilt 2.4s ease-in-out infinite;
}

.urgent-signal span {
  font-size: 25px;
  font-weight: 900;
}

.urgent-dispatch > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.urgent-dispatch small {
  color: var(--amber);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.urgent-dispatch strong {
  font-size: 15px;
  line-height: 1.35;
}

.urgent-cases {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 12px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.urgent-cases i {
  color: var(--signal);
  font-style: normal;
}

.urgent-dispatch > a {
  min-height: 48px;
  padding: 0 22px;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-radius: 999px;
  background: var(--signal);
  color: white;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.section-carousel-toolbar {
  margin: 0 0 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-carousel-toolbar > span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-carousel-toolbar > div {
  display: flex;
  gap: 7px;
}

.section-carousel-toolbar button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--forest);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.section-carousel-toolbar button:hover {
  transform: translateY(-2px);
  border-color: var(--signal);
  background: var(--forest);
  color: white;
}

.section-carousel-dots {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.section-carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #b9c0bc;
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.section-carousel-dots button[aria-current="true"] {
  width: 28px;
  background: var(--signal);
}

.premium-services-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border: 0;
}

.premium-services-grid::-webkit-scrollbar {
  display: none;
}

.premium-service-card {
  min-height: 315px;
  padding: 34px;
  position: relative;
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
  border: 1px solid var(--line) !important;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 253, 249, 0.46)),
    var(--paper);
  box-shadow: 0 16px 38px rgba(16, 26, 24, 0.06);
}

.premium-service-card::after {
  content: "";
  width: 44%;
  height: 3px;
  position: absolute;
  left: 34px;
  bottom: 0;
  border-radius: 99px 99px 0 0;
  background: linear-gradient(90deg, var(--signal), var(--amber));
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 350ms ease;
}

.premium-service-card[data-active="true"] {
  border-color: rgba(255, 77, 46, 0.3) !important;
  background: var(--paper);
  transform: translateY(-3px);
}

.premium-service-card[data-active="true"]::after,
.premium-service-card:hover::after {
  transform: scaleX(1);
}

.premium-service-card small {
  color: var(--signal);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.area-showcase-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.area-showcase-grid::-webkit-scrollbar {
  display: none;
}

.area-showcase-card,
.area-showcase-card:nth-child(4),
.area-showcase-card:nth-child(5),
.area-showcase-card:last-child {
  min-width: calc((100% - 32px) / 3);
  min-height: 390px;
  flex: 0 0 calc((100% - 32px) / 3);
  scroll-snap-align: start;
  transform: scale(0.98);
  transition:
    transform 420ms ease,
    box-shadow 420ms ease;
}

.area-showcase-card[data-active="true"] {
  transform: scale(1);
  box-shadow: 0 26px 64px rgba(4, 23, 20, 0.2);
}

.media-carousel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.07);
  transition:
    opacity 900ms ease,
    transform 5.5s ease;
}

.media-carousel img[data-active="true"] {
  opacity: 1;
  transform: scale(1);
}

.media-carousel .image-label {
  z-index: 3;
}

.media-carousel-controls {
  padding: 7px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(4, 23, 20, 0.62);
  backdrop-filter: blur(12px);
}

.media-carousel-controls button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.media-carousel-controls button[aria-current="true"] {
  width: 24px;
  background: var(--amber);
}

.media-carousel-controls .media-play {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: white;
  color: var(--forest);
  font-size: 9px;
}

.premium-trust > div,
.review-card,
.coverage-card,
.dark-process-grid article {
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background 240ms ease;
}

.premium-trust > div:hover,
.review-card:hover,
.coverage-card:hover,
.dark-process-grid article:hover {
  transform: translateY(-5px);
}

.dark-process,
.seo-content-panel,
.premium-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.dark-process::after,
.seo-content-panel::after,
.premium-cta::after {
  content: "";
  width: 28%;
  position: absolute;
  inset: 0 auto 0 -36%;
  z-index: -1;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.08), transparent);
  animation: panel-sizzle 8s ease-in-out infinite;
}

.mobile-action-bar a:last-child {
  background: linear-gradient(135deg, #0b8b73, #075b4c);
}

@keyframes emergency-pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(255, 77, 46, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 46, 0);
  }
}

@keyframes hero-scan {
  0%,
  55% {
    transform: translateX(-120%);
  }
  82%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes energy-line {
  0%,
  100% {
    opacity: 0.16;
    transform: scaleX(0.35);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes button-sizzle {
  0%,
  52% {
    left: -55%;
  }
  82%,
  100% {
    left: 130%;
  }
}

@keyframes urgent-scan {
  to {
    left: calc(100% + 220px);
  }
}

@keyframes emergency-tilt {
  0%,
  100% {
    transform: rotate(-3deg) scale(1);
  }
  50% {
    transform: rotate(3deg) scale(1.05);
  }
}

@keyframes panel-sizzle {
  0%,
  58% {
    left: -36%;
  }
  86%,
  100% {
    left: 118%;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    grid-column: 2;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--paper);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 99px;
    background: var(--forest);
    transition:
      transform 220ms ease,
      opacity 220ms ease;
  }

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

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

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

  .main-nav {
    padding: 16px;
    position: absolute;
    top: calc(100% + 10px);
    left: clamp(20px, 4vw, 60px);
    right: clamp(20px, 4vw, 60px);
    z-index: 40;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 26px 70px rgba(4, 23, 20, 0.2);
    backdrop-filter: blur(18px);
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .main-nav.menu-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(16, 26, 24, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .mobile-menu-link {
    display: block;
  }

  .urgent-dispatch {
    grid-template-columns: auto 1fr auto;
  }

  .urgent-cases {
    display: none;
  }

  .premium-service-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .area-showcase-card,
  .area-showcase-card:nth-child(4),
  .area-showcase-card:nth-child(5),
  .area-showcase-card:last-child {
    min-width: calc((100% - 16px) / 2);
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 48px;
    height: 36px;
  }

  .brand-words strong {
    font-size: 14px;
  }

  .brand-words small {
    font-size: 6px;
  }

  .header-actions {
    gap: 6px;
  }

  .main-nav {
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 156px);
    overflow-y: auto;
  }

  .urgent-dispatch {
    width: calc(100% - 24px);
    min-height: 0;
    padding: 16px;
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .urgent-signal {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .urgent-dispatch > a {
    min-height: 46px;
    grid-column: 1 / 3;
    justify-content: space-between;
  }

  .section-carousel-toolbar > span {
    max-width: 160px;
    line-height: 1.45;
  }

  .section-carousel-toolbar button {
    width: 38px;
    height: 38px;
  }

  .premium-service-card {
    min-height: 330px;
    padding: 28px;
    flex-basis: 88%;
  }

  .area-showcase-card,
  .area-showcase-card:nth-child(4),
  .area-showcase-card:nth-child(5),
  .area-showcase-card:last-child {
    min-width: 88%;
    min-height: 360px;
    flex-basis: 88%;
  }

  .hero-energy-lines {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .topbar-live i,
  .section-carousel-toolbar > span i,
  .availability i,
  .premium-hero::after,
  .hero-energy-lines i,
  .button-gold::after,
  .urgent-dispatch::after,
  .urgent-signal,
  .dark-process::after,
  .seo-content-panel::after,
  .premium-cta::after {
    animation: none !important;
  }
}
