:root {
  --red: #c90808;
  --red-deep: #950000;
  --red-soft: #fff0ee;
  --gold: #f6b739;
  --gold-soft: #fff8e8;
  --ink: #201b1b;
  --muted: #6c6161;
  --line: #eadada;
  --paper: #fffdf9;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(126, 24, 12, 0.12);
  --shadow-strong: 0 24px 70px rgba(126, 24, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 253, 249, 0.9), rgba(255, 253, 249, 0.9)),
    url("assets/pages/3.png") center / cover no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.32;
  background:
    radial-gradient(circle at 18% 26%, rgba(246, 183, 57, 0.24), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(201, 8, 8, 0.18), transparent 26%),
    linear-gradient(135deg, transparent 0 46%, rgba(201, 8, 8, 0.05) 46% 54%, transparent 54%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red-deep));
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 18px rgba(201, 8, 8, 0.36);
}

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

a {
  color: inherit;
}

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

[data-animate],
[data-stagger] > * {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

[data-animate="fade-left"] {
  transform: translateX(32px);
}

[data-animate].is-visible,
[data-stagger] > *.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(201, 8, 8, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  border: 2px solid var(--red-soft);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--red);
  background: var(--red-soft);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 26px rgba(201, 8, 8, 0.22);
}

.header-cta:hover,
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--red-deep);
}

.btn-ghost {
  color: var(--red);
  border: 1px solid rgba(201, 8, 8, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  background: var(--red-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--red);
}

.section,
.section-band,
.trust-strip,
.cta-band,
.site-footer {
  padding-inline: clamp(18px, 5vw, 72px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-height: calc(100svh - 84px);
  padding-top: clamp(44px, 7vw, 88px);
  padding-bottom: clamp(36px, 6vw, 72px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 24%, rgba(246, 183, 57, 0.22), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(201, 8, 8, 0.16), transparent 30%),
    linear-gradient(115deg, rgba(255, 253, 249, 0.98) 0%, rgba(255, 253, 249, 0.9) 48%, rgba(255, 240, 238, 0.82) 100%),
    url("assets/pages/2.png") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  bottom: 0;
  height: 10px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red-deep));
}

.eyebrow {
  margin: 0 0 16px;
  color: rgba(201, 8, 8, 0.82);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.6vw, 1.28rem);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(201, 8, 8, 0.13);
  border-radius: 999px;
  color: var(--red-deep);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 22px rgba(126, 24, 12, 0.06);
  font-size: 0.86rem;
  font-weight: 850;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin: 34px 0 0;
}

.hero-proof div {
  padding: 18px;
  border: 1px solid rgba(201, 8, 8, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 232, 0.82));
  box-shadow: 0 16px 38px rgba(126, 24, 12, 0.1);
}

.hero-proof dt {
  color: var(--red);
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.hero-proof dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  padding: 18px 18px 28px;
  transform: translateY(var(--hero-shift, 0));
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  transform: rotate(-2deg);
  opacity: 0.18;
}

.hero-visual > img {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--white);
  box-shadow: var(--shadow-strong);
  animation: softFloat 7s ease-in-out infinite;
  opacity: 0.5;
}

.hero-badge {
  position: absolute;
  top: 42px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 8, 8, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.hero-badge strong {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 1rem;
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.mascot-card {
  position: absolute;
  right: clamp(10px, 3vw, 32px);
  bottom: -16px;
  width: min(76%, 360px);
  padding: 18px;
  border: 1px solid rgba(201, 8, 8, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.mascot-card img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: clamp(22px, 4vw, 42px);
  padding-bottom: clamp(22px, 4vw, 42px);
  background: var(--paper);
}

.trust-strip span {
  min-height: 96px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  place-items: center;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--red-deep);
  border: 1px solid rgba(201, 8, 8, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 238, 0.7)),
    var(--white);
  box-shadow: 0 14px 34px rgba(126, 24, 12, 0.08);
  font-weight: 900;
  text-align: center;
}

.trust-strip span::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  box-shadow: none;
}

.section {
  padding-top: clamp(70px, 9vw, 128px);
  padding-bottom: clamp(70px, 9vw, 128px);
}

.section-band {
  background: linear-gradient(180deg, var(--gold-soft), var(--paper));
}

.scenic {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.scenic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(255, 253, 249, 0.7);
  backdrop-filter: blur(0.4px);
}

.scenic::after {
  content: "";
  position: absolute;
  inset: auto clamp(18px, 5vw, 72px) 0;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 8, 8, 0.28), transparent);
}

.scenic-quality {
  background-image: url("assets/pages/4.png");
  background-position: center 30%;
}

.scenic-services {
  background-image: url("assets/pages/1.png");
  background-position: center;
}

.section-intro {
  max-width: 920px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

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

.about-grid p {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(126, 24, 12, 0.06);
  color: var(--muted);
  font-size: 1.08rem;
}

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

.audience-panel article,
.process-steps article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(201, 8, 8, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 232, 0.92)),
    var(--white);
  box-shadow: 0 14px 38px rgba(126, 24, 12, 0.08);
}

.audience-panel article::after,
.process-steps article::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background: rgba(201, 8, 8, 0.08);
}

.audience-panel span,
.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  min-width: 64px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--red);
  background: var(--red-soft);
  font-size: 1.24rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(201, 8, 8, 0.12);
}

.audience-panel strong {
  display: block;
  margin-top: 18px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.audience-panel p,
.process-steps p {
  margin: 10px 0 0;
  color: var(--muted);
}

.location {
  padding-top: 0;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(201, 8, 8, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 5% 12%, rgba(246, 183, 57, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 238, 0.72));
  box-shadow: var(--shadow);
}

.location-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.location-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
}

.location-copy address {
  margin: 22px 0 26px;
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
  line-height: 1.55;
}

.map-panel {
  position: relative;
  display: block;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(201, 8, 8, 0.14);
  border-radius: 8px;
  background: var(--red-soft);
  box-shadow: 0 16px 42px rgba(126, 24, 12, 0.11);
}

.map-panel::after {
  content: "Open in Google Maps";
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(201, 8, 8, 0.26);
  font-size: 0.84rem;
  font-weight: 900;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

.value-grid,
.feature-grid,
.service-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid article,
.feature-grid article,
.service-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(126, 24, 12, 0.07);
}

.value-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 220px;
  padding: 24px;
  text-align: center;
}

.value-grid img {
  width: 78px;
  height: 78px;
  margin-inline: auto;
  border-radius: 50%;
  object-fit: cover;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quality-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: 28px;
  align-items: end;
}

.quality-note {
  padding: 24px;
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(126, 24, 12, 0.08);
}

.quality-note strong,
.quality-note span {
  display: block;
}

.quality-note strong {
  color: var(--red-deep);
  font-size: 1.18rem;
  line-height: 1.2;
}

.quality-note span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.96rem;
}

.feature-grid article {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-grid article:hover,
.value-grid article:hover,
.tech-panel:hover,
.service-grid article:hover,
.client-grid img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
  background: var(--gold-soft);
}

.feature-grid h3,
.feature-grid p {
  padding-inline: 20px;
}

.feature-grid h3 {
  margin-top: 18px;
}

.feature-grid p {
  margin: 8px 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.tech-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.tech-panel img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  background: var(--red-soft);
}

.tech-panel.robot img {
  object-fit: contain;
  padding: 22px;
  background: #eaf8ff;
}

.tech-panel div {
  padding: 24px;
}

.tech-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.service-grid article {
  min-height: 168px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 240, 238, 0.58)),
    var(--white);
}

.service-grid strong,
.service-grid span {
  display: block;
}

.service-grid strong {
  color: var(--red);
  font-size: 1.12rem;
  line-height: 1.2;
}

.process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(246, 183, 57, 0.18), transparent 24%),
    linear-gradient(180deg, var(--paper), rgba(255, 240, 238, 0.62) 52%, var(--paper));
}

.process::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 48%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 8, 8, 0.24), transparent);
}

.process-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
}

.process-header p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.process-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
  counter-reset: process;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 9%;
  right: 9%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.process-steps h3 {
  margin-top: 24px;
}

.process-steps article {
  counter-increment: process;
  padding-top: 72px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 232, 0.9)),
    var(--white);
}

.process-steps article::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 24px;
  z-index: 1;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 5px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 12px 24px rgba(201, 8, 8, 0.24);
  font-size: 0.92rem;
  font-weight: 950;
}

.process-steps span {
  position: absolute;
  top: 30px;
  left: 88px;
  min-height: 30px;
  background: var(--gold-soft);
}

.services {
  padding-top: clamp(72px, 9vw, 132px);
  padding-bottom: clamp(72px, 9vw, 132px);
}

.services.scenic::before {
  background:
    linear-gradient(90deg, rgba(131, 18, 8, 0.98), rgba(131, 18, 8, 0.9) 46%, rgba(255, 253, 249, 0.84) 46%),
    rgba(255, 253, 249, 0.8);
}

.services-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.services-showcase {
  color: var(--white);
}

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

.services-showcase h2 {
  font-size: clamp(1.6rem, 3.25vw, 2.85rem);
}

.services-showcase p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.services-showcase img {
  width: min(460px, 100%);
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.18);
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06) brightness(0.96);
}

.services-layout .service-grid {
  margin-top: 0;
}

.services-layout .service-grid article {
  position: relative;
  min-height: 190px;
  padding: 64px 26px 26px;
  border-color: rgba(201, 8, 8, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 232, 0.88)),
    var(--white);
  box-shadow: 0 18px 42px rgba(126, 24, 12, 0.1);
}

.services-layout .service-grid article::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 26px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 0 0 8px rgba(201, 8, 8, 0.08);
}

.services-layout .service-grid article::after {
  content: "";
  position: absolute;
  top: 33px;
  left: 36px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.service-grid span {
  margin-top: 12px;
  color: var(--muted);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.client-grid img,
.accreditation-grid img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
  box-shadow: 0 10px 26px rgba(126, 24, 12, 0.06);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(70px, 8vw, 110px);
  padding-top: clamp(34px, 5vw, 54px);
  padding-bottom: clamp(34px, 5vw, 54px);
  border: 1px solid rgba(201, 8, 8, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(149, 0, 0, 0.96), rgba(201, 8, 8, 0.9)),
    url("assets/pages/1.png") center / cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

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

.cta-band h2 {
  font-size: clamp(1.56rem, 3.15vw, 2.76rem);
}

.cta-band p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.cta-band .btn-primary {
  color: var(--red-deep);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.client-grid img {
  aspect-ratio: 1.45 / 1;
  padding: 18px;
}

.accreditation {
  padding-top: 0;
}

.accreditation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 36px auto 0;
}

.accreditation-grid img {
  aspect-ratio: 1.7 / 1;
  padding: 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 36px;
  padding-top: 52px;
  padding-bottom: 52px;
  color: var(--white);
  background: var(--red-deep);
}

.footer-logo {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.site-footer h2 {
  margin-top: 18px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.site-footer p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer address {
  display: grid;
  align-content: start;
  gap: 12px;
  font-style: normal;
}

.site-footer address a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer address a:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-visual > img {
    height: 430px;
  }

  .value-grid,
  .feature-grid,
  .service-grid,
  .audience-panel,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-layout {
    grid-template-columns: 1fr;
  }

  .tech-panel {
    grid-template-columns: minmax(260px, 0.8fr) 1fr;
    grid-template-rows: none;
  }

  .client-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .quality-heading,
  .cta-band,
  .process-header,
  .services-layout,
  .location-card {
    grid-template-columns: 1fr;
  }

  .cta-band .btn {
    justify-self: start;
  }

  .services.scenic::before {
    background: linear-gradient(180deg, rgba(149, 0, 0, 0.94), rgba(149, 0, 0, 0.78) 48%, rgba(255, 253, 249, 0.92) 48%);
  }

  .services-showcase img {
    max-width: 380px;
  }
}

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

  .brand small,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 75px 12px auto;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 13px 14px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.36rem, 5.3vw, 2.05rem);
    line-height: 1.03;
  }

  .hero-proof,
  .about-grid,
  .trust-strip,
  .tech-panel,
  .quality-heading,
  .process-header,
  .location-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    min-height: 64px;
  }

  .tech-panel img {
    aspect-ratio: 1.6 / 1;
  }

  .client-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .hero-badge {
    left: 8px;
    top: 28px;
  }

  .cta-band {
    margin-inline: 18px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 300px;
  }

  .process::before,
  .process-steps::before {
    display: none;
  }

  .process-steps article {
    padding-top: 82px;
  }

  .audience-panel span,
  .process-steps span {
    min-height: 56px;
    min-width: 56px;
    font-size: 1.08rem;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-proof,
  .value-grid,
  .feature-grid,
  .service-grid,
  .audience-panel,
  .process-steps,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 340px;
  }

  .hero-visual > img {
    height: 340px;
  }

  .mascot-card {
    right: 12px;
    width: 210px;
    padding: 12px;
  }

  .hero-badge {
    max-width: 220px;
    padding: 10px 12px;
  }

  .hero-badge strong {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .hero-tags span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .client-grid img {
    aspect-ratio: 2 / 1;
  }

  .cta-band {
    margin-bottom: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate],
  [data-stagger] > * {
    opacity: 1;
    transform: none;
  }

  .hero-visual {
    transform: none;
  }

  .scenic {
    background-attachment: scroll;
  }
}
