:root {
  --black: #050505;
  --charcoal: #161616;
  --graphite: #202020;
  --red: #ff1e1e;
  --red-dark: #b80f0f;
  --white: #f5f5f5;
  --muted: #b9b9b9;
  --line: rgba(245, 245, 245, 0.14);
  --dark-line: rgba(5, 5, 5, 0.12);
  --beige: #e7dfd2;
  --card-bg: linear-gradient(145deg, rgba(32, 32, 32, 0.96), rgba(9, 9, 9, 0.96));
  --card-border: rgba(245, 245, 245, 0.14);
  --red-soft: rgba(255, 30, 30, 0.16);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --card-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --section-bg-image: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  padding: 10px 16px;
  transition: transform 180ms var(--ease);
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-dark {
  position: relative;
  background: var(--black);
  color: var(--white);
}

.section-cream {
  background: #eee8dc;
  color: var(--black);
}

.section-content {
  position: relative;
  z-index: 2;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.section-heading.narrow {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-lede {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.text-red {
  color: var(--red);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 9vw, 7.9rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 4.65rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
  line-height: 1.18;
}

p {
  color: rgba(245, 245, 245, 0.76);
}

.section-cream p,
.contact p {
  color: rgba(5, 5, 5, 0.7);
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 27px;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  transition: transform 240ms var(--ease), border-color 240ms var(--ease), background 240ms var(--ease), color 240ms var(--ease), box-shadow 240ms var(--ease);
  white-space: nowrap;
}

.button::after {
  content: ">";
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 245, 245, 0.16);
  font-size: 0.78rem;
  line-height: 1;
}

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

.button-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 18px 44px rgba(255, 30, 30, 0.24);
}

.button-red:hover {
  background: linear-gradient(135deg, #ff3434, #d91313);
  box-shadow: 0 22px 58px rgba(255, 30, 30, 0.34);
}

.button-ghost {
  border-color: rgba(255, 30, 30, 0.34);
  background: rgba(245, 245, 245, 0.045);
  color: var(--white);
}

.button-ghost:hover {
  border-color: rgba(255, 30, 30, 0.72);
  background: rgba(255, 30, 30, 0.1);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.button-small::after {
  width: 18px;
  height: 18px;
  font-size: 0.64rem;
}

.site-header {
  position: fixed;
  top: 18px;
  right: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}

.navbar {
  position: relative;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 auto;
  border: 1px solid rgba(245, 245, 245, 0.13);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.68);
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.28);
  padding: 10px 12px 10px 18px;
  pointer-events: auto;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 92px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand .brand-logo {
  width: 118px;
  height: 92px;
}

.nav-panel {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(245, 245, 245, 0.76);
  font-size: 0.92rem;
  font-weight: 700;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.nav-links a:hover,
.nav-links a:focus {
  background: rgba(245, 245, 245, 0.08);
  color: var(--white);
}

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

.language-switch {
  display: inline-flex;
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.12);
  padding: 4px;
}

.lang-button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(245, 245, 245, 0.76);
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.lang-button.is-active {
  background: var(--red);
  color: var(--white);
}

.mobile-language-switch {
  display: none;
}

.nav-call {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(245, 245, 245, 0.88);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: 50%;
  background: rgba(245, 245, 245, 0.06);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
}

.hero {
  display: grid;
  min-height: clamp(620px, 86svh, 820px);
  align-items: center;
  overflow: hidden;
  padding: 148px 0 80px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06) brightness(0.82);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.84) 38%, rgba(5, 5, 5, 0.38) 72%, rgba(5, 5, 5, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.82) 0%, rgba(5, 5, 5, 0.02) 34%, rgba(5, 5, 5, 0.45) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 30, 30, 0.58);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 30, 30, 0.24), rgba(5, 5, 5, 0.58)),
    rgba(255, 30, 30, 0.12);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(255, 30, 30, 0.14);
  padding: 12px 17px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.promo-mini-countdown {
  border-left: 1px solid rgba(245, 245, 245, 0.16);
  color: rgba(245, 245, 245, 0.76);
  font-size: 0.72rem;
  padding-left: 10px;
}

.promo-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 30, 30, 0.5);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(255, 30, 30, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 30, 30, 0);
  }
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(245, 245, 245, 0.82);
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.hero-proof {
  display: flex;
  max-width: 760px;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof span {
  min-width: 0;
  border: 1px solid rgba(245, 245, 245, 0.16);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.32);
  color: rgba(245, 245, 245, 0.78);
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.promo-band {
  background-image:
    radial-gradient(circle at 18% 20%, rgba(255, 30, 30, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.94), rgba(5, 5, 5, 0.92)),
    var(--section-bg-image);
  background-position: center;
  background-size: cover;
  color: var(--white);
  padding: 44px 0;
}

.promo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 30, 30, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 30, 30, 0.12), transparent 34%),
    var(--card-bg);
  box-shadow: var(--card-shadow);
  padding: 28px;
}

.promo-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--red);
  content: "";
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.25fr minmax(310px, 0.8fr) auto;
  align-items: center;
  gap: 28px;
}

.promo-grid h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
}

.promo-grid p {
  margin-bottom: 0;
  color: rgba(245, 245, 245, 0.72);
}

.countdown {
  border-left: 1px solid rgba(245, 245, 245, 0.12);
  padding-left: 28px;
}

.countdown > p {
  margin-bottom: 10px;
  color: rgba(245, 245, 245, 0.62);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(58px, 1fr));
  gap: 8px;
}

.countdown-grid span {
  display: grid;
  min-width: 0;
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.05);
  padding: 10px 8px;
  text-align: center;
}

.countdown-grid strong {
  color: var(--red);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1;
}

.countdown-grid small {
  color: rgba(245, 245, 245, 0.62);
  font-size: 0.68rem;
  font-weight: 800;
}

.services {
  overflow: hidden;
  padding: 124px 0;
  background-image: var(--section-bg-image);
  background-position: center;
  background-size: cover;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.84)),
    rgba(5, 5, 5, 0.82);
  z-index: 1;
}

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

.service-card {
  position: relative;
  display: grid;
  min-height: 250px;
  align-content: start;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.86);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.22);
  padding: 22px;
  overflow: hidden;
  transition: transform 280ms var(--ease), border-color 280ms var(--ease), background 280ms var(--ease), box-shadow 280ms var(--ease);
}

.trust-card::before,
.review-card::before,
.comparison-card::before,
.leader-card::before,
.about-visual-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  content: "";
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 30, 30, 0.34);
  background: rgba(18, 18, 18, 0.92);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.3);
}

.service-featured {
  min-height: 260px;
}

.service-secondary {
  opacity: 0.9;
}

.service-number {
  display: none;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(245, 245, 245, 0.14);
  border-radius: 50%;
  background: rgba(245, 245, 245, 0.04);
  box-shadow: none;
  margin-bottom: 22px;
}

.card-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card p {
  min-height: 68px;
  margin-bottom: 18px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 22px;
}

.service-tags span {
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.06);
  color: rgba(245, 245, 245, 0.72);
  padding: 7px 10px;
  font-size: 0.74rem;
  font-weight: 800;
}

.card-cta {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  align-self: end;
  border: 1px solid rgba(255, 30, 30, 0.36);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  transition: background 220ms var(--ease), border-color 220ms var(--ease);
}

.card-cta::after {
  content: ">";
  color: var(--red);
}

.service-card:hover .card-cta {
  border-color: rgba(255, 30, 30, 0.68);
  background: rgba(255, 30, 30, 0.18);
}

.contact {
  background: var(--white);
  color: var(--black);
  padding: 112px 0;
}

.about,
.leader,
.reviews {
  padding: 112px 0;
}

.about {
  background-image:
    radial-gradient(circle at 82% 16%, rgba(255, 30, 30, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.94), rgba(5, 5, 5, 0.91)),
    var(--section-bg-image);
  background-position: center;
  background-size: cover;
}

.about-grid,
.leader-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 78px);
}

.about-copy {
  position: relative;
  border-left: 3px solid var(--red);
  padding-left: clamp(22px, 3vw, 34px);
}

.about-copy p:not(.eyebrow) {
  max-width: 680px;
}

.story-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 26px 0;
}

.story-points span {
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.035);
  color: rgba(245, 245, 245, 0.72);
  padding: 10px 12px;
  font-size: 0.76rem;
  font-weight: 800;
}

.about-visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  padding: 10px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 86px);
}

.split-copy h2 {
  color: var(--black);
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 8px;
  background: var(--charcoal);
}

.image-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(5, 5, 5, 0.34));
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.about-slideshow img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms var(--ease), transform 1600ms var(--ease);
  transform: scale(1.025);
}

.about-slideshow img.is-active {
  opacity: 1;
  transform: scale(1);
}

.slideshow-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slideshow-dots button,
.gallery-dot {
  width: 28px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.34);
  padding: 0;
  transition: width 240ms var(--ease), background 240ms var(--ease);
}

.slideshow-dots button.is-active,
.gallery-dot.is-active {
  width: 42px;
  background: var(--red);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.stats-row span {
  display: grid;
  border: 1px solid rgba(245, 245, 245, 0.11);
  border-radius: 8px;
  background: rgba(245, 245, 245, 0.045);
  padding: 16px;
}

.stats-row strong {
  color: var(--red);
  font-size: 1.4rem;
  line-height: 1;
}

.stats-row small {
  color: rgba(245, 245, 245, 0.62);
  font-weight: 700;
}

.leader {
  background-image:
    linear-gradient(90deg, rgba(247, 247, 245, 0.98), rgba(247, 247, 245, 0.9)),
    var(--section-bg-image);
  background-position: center;
  background-size: cover;
  color: var(--black);
  border-top: 1px solid rgba(5, 5, 5, 0.08);
}

.leader-grid {
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1fr);
}

.leader-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(5, 5, 5, 0.08);
  padding: 18px;
}

.leader-portrait {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 30, 30, 0.06), rgba(5, 5, 5, 0.02)),
    rgba(5, 5, 5, 0.03);
  color: var(--black);
  text-align: center;
}

.leader-portrait img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
}

.leader-copy {
  max-width: 720px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(5, 5, 5, 0.08);
  padding: clamp(28px, 4vw, 44px);
}

.leader-copy h2 {
  color: var(--black);
}

.leader-name-block h3 {
  margin-bottom: 6px;
  color: var(--red);
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.leader-name-block p {
  margin-bottom: 28px;
  color: rgba(5, 5, 5, 0.58);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.leader-copy p {
  color: rgba(5, 5, 5, 0.68);
}

.leader-copy strong {
  color: var(--red);
  font-weight: 900;
}

.why {
  padding: 112px 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 30, 30, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.88)),
    var(--section-bg-image);
  background-position: center;
  background-size: cover;
}

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

.trust-card {
  position: relative;
  min-height: 0;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 30, 30, 0.08), transparent 38%),
    var(--card-bg);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  padding: 22px;
  overflow: hidden;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 30, 30, 0.5);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.42);
}

.trust-toggle {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 0;
  text-align: left;
}

.trust-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 0;
}

.trust-toggle span:last-child {
  font-weight: 900;
  line-height: 1.16;
}

.trust-card p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding-top: 0;
  transition: max-height 260ms var(--ease), opacity 220ms var(--ease), padding-top 220ms var(--ease);
}

.trust-card.is-open p {
  max-height: 180px;
  opacity: 1;
  padding-top: 14px;
}

.comparisons {
  padding: 104px 0;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.93), rgba(5, 5, 5, 0.9)),
    var(--section-bg-image);
  background-position: center;
  background-size: cover;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  position: relative;
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.86);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.comparison-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 30, 30, 0.3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.comparison-card h3 {
  margin: 0;
  padding: 16px 18px 18px;
  font-size: 1rem;
}

.comparison-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  --position: 50%;
  --comparison-width: 100%;
  --comparison-height: 100%;
  touch-action: none;
  user-select: none;
}

.comparison-img,
.comparison-before-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.comparison-img {
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
}

.comparison-before-wrap {
  width: var(--position);
  overflow: hidden;
  border-right: 2px solid rgba(255, 30, 30, 0.84);
  will-change: width;
}

.comparison-before {
  width: var(--comparison-width);
  max-width: none;
  height: var(--comparison-height);
  filter: saturate(0.55) contrast(0.94) brightness(0.72);
}

.comparison-label {
  position: absolute;
  top: 14px;
  z-index: 3;
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.62);
  color: var(--white);
  padding: 6px 9px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.label-before {
  left: 14px;
}

.label-after {
  right: 14px;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: var(--position);
  z-index: 4;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border: 1px solid rgba(255, 30, 30, 0.78);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.78);
  color: var(--white);
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.comparison-handle::before {
  position: absolute;
  top: -999px;
  bottom: -999px;
  left: 50%;
  width: 1px;
  background: rgba(255, 30, 30, 0.78);
  content: "";
  transform: translateX(-50%);
}

.reviews {
  background-image:
    linear-gradient(180deg, rgba(11, 11, 11, 0.94), rgba(5, 5, 5, 0.92)),
    var(--section-bg-image);
  background-position: center;
  background-size: cover;
}

.reviews .section-heading p {
  margin-bottom: 0;
}

.review-summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  color: rgba(245, 245, 245, 0.66);
  font-size: 0.9rem;
}

.summary-stars {
  color: #ffcc17;
  letter-spacing: 0;
}

.review-summary strong {
  color: var(--white);
}

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

.review-card {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 30, 30, 0.08), transparent 42%),
    var(--card-bg);
  padding: 22px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 260ms var(--ease), border-color 260ms var(--ease), box-shadow 260ms var(--ease);
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 30, 30, 0.42);
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.42);
}

.review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.review-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 30, 30, 0.28);
  background: rgba(255, 30, 30, 0.12);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.review-card h3 {
  min-height: 28px;
  margin: 0 0 2px;
  outline: none;
  color: var(--white);
}

.stars {
  color: #ffcc17;
  font-size: 0.88rem;
  line-height: 1;
}

.stars span {
  color: rgba(245, 245, 245, 0.28);
}

.google-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(245, 245, 245, 0.16);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}

.review-card p {
  min-height: 0;
  margin: 0;
  outline: none;
  color: rgba(245, 245, 245, 0.76);
}

.review-date {
  display: block;
  min-height: 20px;
  color: rgba(245, 245, 245, 0.52);
  font-size: 0.78rem;
  font-weight: 800;
  outline: none;
}

.avatar-blue {
  background: #3f7ee8;
}

.avatar-green {
  background: #2fb463;
}

.avatar-red {
  background: #f04438;
}

.avatar-yellow {
  background: #f2b705;
  color: var(--black);
}

.avatar-purple {
  background: #9c27b0;
}

.google-review-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245, 245, 245, 0.14);
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.04);
  color: rgba(245, 245, 245, 0.82);
  margin: 36px auto 0;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.google-review-link::before {
  content: "G";
  color: var(--red);
  font-weight: 900;
}

.google-review-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 30, 30, 0.45);
  background: rgba(255, 30, 30, 0.08);
}

[contenteditable="true"]:empty::before {
  content: attr(data-placeholder);
  color: rgba(245, 245, 245, 0.42);
}

[contenteditable="true"]:focus {
  box-shadow: inset 0 -2px 0 var(--red);
}

.gallery {
  padding: 124px 0;
  background-image:
    radial-gradient(circle at 78% 12%, rgba(255, 30, 30, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.9)),
    var(--section-bg-image);
  background-position: center;
  background-size: cover;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.gallery-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.gallery-controls button,
.gallery-tabs button,
.assistant-header button,
.modal-close {
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.07);
  color: var(--white);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.gallery-controls button {
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  line-height: 1;
}

.gallery-controls button:hover,
.gallery-tabs button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 30, 30, 0.56);
  background: rgba(255, 30, 30, 0.12);
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.gallery-tabs button {
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 900;
}

.gallery-tabs button.is-active {
  border-color: rgba(255, 30, 30, 0.68);
  background: var(--red);
  color: var(--white);
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: 8px;
  aspect-ratio: 16 / 8.8;
  background: var(--charcoal);
  box-shadow: 0 24px 74px rgba(0, 0, 0, 0.34);
}

.gallery-stage::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.58));
  content: "";
  pointer-events: none;
}

.gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: opacity 520ms var(--ease), transform 900ms var(--ease);
}

.gallery-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: var(--white);
  z-index: 2;
}

.gallery-caption span,
.gallery-caption strong {
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.6);
  padding: 9px 12px;
  backdrop-filter: blur(10px);
}

.gallery-caption strong {
  max-width: min(520px, 70%);
  font-size: 0.92rem;
  text-align: right;
}

.gallery-strip {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  overflow: hidden;
  padding-bottom: 2px;
}

.gallery-thumb {
  overflow: hidden;
  width: 28px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.34);
  padding: 0;
  opacity: 1;
  transition: opacity 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.gallery-thumb.is-active,
.gallery-thumb:hover {
  width: 42px;
  background: var(--red);
  transform: none;
}

.gallery-thumb img {
  display: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 32px;
}

.contact-info-panel {
  align-self: start;
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 30, 30, 0.08), transparent 42%),
    var(--card-bg);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.18);
  padding: 30px;
}

.contact-info-panel h2 {
  color: var(--white);
}

.contact-info-panel p:not(.eyebrow) {
  color: rgba(245, 245, 245, 0.64);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 14px;
  color: rgba(245, 245, 245, 0.78);
  font-weight: 700;
}

.contact-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--red);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-form,
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form {
  align-self: start;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 22px 66px rgba(5, 5, 5, 0.08);
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: rgba(5, 5, 5, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 8px;
  background: #f8f8f8;
  color: var(--black);
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  background: #fff;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.map-wrap {
  grid-column: 1 / -1;
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
  background: var(--charcoal);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(1) contrast(1.04);
}

.site-footer {
  border-top: 1px solid rgba(245, 245, 245, 0.12);
  background: var(--black);
  color: var(--white);
  padding: 62px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.7fr);
  gap: 34px;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: rgba(245, 245, 245, 0.72);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin-bottom: 9px;
  color: rgba(245, 245, 245, 0.68);
  font-weight: 700;
}

.footer-grid p {
  max-width: 380px;
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(245, 245, 245, 0.1);
  margin-top: 42px;
  padding-top: 22px;
  color: rgba(245, 245, 245, 0.54);
  font-size: 0.86rem;
}

.assistant-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 110;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  font-weight: 900;
}

.assistant-launcher svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.assistant-panel {
  position: fixed;
  right: 22px;
  bottom: 94px;
  z-index: 110;
  display: grid;
  width: min(420px, calc(100% - 32px));
  max-height: min(720px, calc(100svh - 124px));
  grid-template-rows: auto 1fr auto auto;
  border: 1px solid rgba(245, 245, 245, 0.14);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.94);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  backdrop-filter: blur(18px);
}

.assistant-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.assistant-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.12);
  padding: 18px;
}

.assistant-header h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.2;
}

.assistant-header .eyebrow {
  margin-bottom: 4px;
}

.assistant-header button,
.modal-close {
  width: 38px;
  height: 38px;
  font-size: 1.35rem;
  line-height: 1;
}

.assistant-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow: auto;
  padding: 18px;
}

.assistant-message {
  max-width: 88%;
  border-radius: 8px;
  padding: 12px 13px;
  font-size: 0.92rem;
}

.assistant-message.bot {
  justify-self: start;
  background: rgba(245, 245, 245, 0.08);
}

.assistant-message.user {
  justify-self: end;
  background: var(--red);
  color: var(--white);
}

.assistant-message p {
  margin-bottom: 0;
}

.assistant-message a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.assistant-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(245, 245, 245, 0.1);
  padding: 12px 18px;
}

.assistant-prompts button {
  border: 1px solid rgba(245, 245, 245, 0.16);
  border-radius: 999px;
  background: rgba(245, 245, 245, 0.06);
  color: var(--white);
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 800;
}

.assistant-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  border-top: 1px solid rgba(245, 245, 245, 0.1);
  padding: 14px;
}

.assistant-form input {
  border-color: rgba(245, 245, 245, 0.16);
  background: rgba(245, 245, 245, 0.08);
  color: var(--white);
}

.assistant-form button {
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  padding: 0 14px;
  font-weight: 900;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow-y: auto;
  background: rgba(5, 5, 5, 0.72);
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease);
  backdrop-filter: blur(12px);
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal {
  position: relative;
  display: grid;
  width: min(920px, 100%);
  grid-template-columns: 0.78fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 245, 245, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  box-shadow: var(--card-shadow);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(5, 5, 5, 0.74);
}

.booking-promo {
  display: grid;
  align-content: end;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.9)),
    radial-gradient(circle at 24% 22%, rgba(255, 30, 30, 0.22), transparent 34%),
    var(--charcoal);
  color: var(--white);
  padding: 34px;
}

.booking-promo h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.booking-form {
  background: #fff;
  padding: 34px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 96px;
  z-index: 250;
  max-width: min(360px, calc(100% - 44px));
  border: 1px solid rgba(245, 245, 245, 0.12);
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-panel {
    gap: 14px;
  }

  .nav-links a {
    padding-inline: 9px;
  }

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

  .service-featured {
    grid-column: span 1;
  }

  .hero-proof {
    display: flex;
  }

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

  .countdown {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 880px) {
  .site-header {
    top: 10px;
  }

  .navbar {
    min-height: 66px;
    border-radius: 28px;
    padding: 9px 10px 9px 14px;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-language-switch {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-panel .language-switch {
    display: none;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    border: 1px solid rgba(245, 245, 245, 0.13);
    border-radius: 24px;
    background: rgba(5, 5, 5, 0.94);
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
    backdrop-filter: blur(16px);
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links,
  .nav-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nav-links a,
  .nav-call,
  .nav-actions .button {
    width: 100%;
    justify-content: center;
  }

  .nav-panel .language-switch {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 62px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.8) 62%, rgba(5, 5, 5, 0.42) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.22) 48%, rgba(5, 5, 5, 0.48) 100%);
  }

  .split-section,
  .about-grid,
  .leader-grid,
  .contact-grid,
  .booking-modal {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 420px;
  }

  .leader-card {
    order: 2;
  }

  .leader-copy {
    order: 1;
  }

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

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

  .gallery-stage {
    aspect-ratio: 4 / 3.35;
  }

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

  .booking-promo {
    min-height: 300px;
  }

}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero-actions .button,
  .promo-cta {
    width: 100%;
  }

  .button {
    min-height: 48px;
    padding: 0 20px;
    font-size: 0.86rem;
  }

  .hero-proof span {
    width: auto;
  }

  .hero-proof,
  .story-points {
    grid-template-columns: 1fr;
  }

  .promo-band,
  .services,
  .about,
  .leader,
  .why,
  .comparisons,
  .reviews,
  .gallery,
  .contact {
    padding-block: 72px;
  }

  .promo-grid {
    gap: 22px;
  }

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

  .why-grid,
  .review-grid,
  .service-grid,
  .comparison-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .contact-form,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
    padding: 14px;
  }

  .service-card h3 {
    margin-bottom: 8px;
    font-size: 0.94rem;
  }

  .service-card p {
    min-height: 0;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .service-tags {
    display: none;
  }

  .card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
  }

  .card-icon svg {
    width: 18px;
    height: 18px;
  }

  .card-cta {
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .image-panel {
    min-height: 330px;
  }

  .leader-portrait {
    min-height: 320px;
  }

  .comparison-media {
    aspect-ratio: 4 / 3.15;
  }

  .comparison-card h3 {
    padding: 11px 12px 13px;
    font-size: 0.82rem;
  }

  .trust-card,
  .review-card {
    min-height: 0;
    padding: 14px;
  }

  .trust-card h3,
  .review-card h3 {
    font-size: 0.9rem;
  }

  .trust-card p,
  .review-card p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .trust-card .card-icon {
    margin-bottom: 0;
  }

  .review-top {
    grid-template-columns: auto 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }

  .review-avatar {
    width: 34px;
    height: 34px;
    font-size: 0.66rem;
  }

  .google-mark {
    display: none;
  }

  .stars {
    font-size: 0.72rem;
  }

  .review-date {
    min-height: 0;
    font-size: 0.68rem;
  }

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

  .gallery-caption strong {
    max-width: 100%;
    text-align: left;
  }

  .contact-list > a,
  .contact-list > span {
    display: grid;
    gap: 4px;
  }

  .map-wrap {
    min-height: 300px;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .assistant-panel {
    right: 14px;
    bottom: 88px;
    width: calc(100% - 28px);
  }

  .assistant-launcher {
    right: 14px;
    bottom: 14px;
  }

  .modal-backdrop {
    place-items: start center;
    padding: 14px;
  }

  .booking-form,
  .booking-promo {
    padding: 24px;
  }
}

@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;
  }
}
