
:root {
  --ink: #151829;
  --muted: #62677d;
  --paper: #ffffff;
  --soft: #f5f5f8;
  --soft-blue: #eef0f7;
  --indigo: #414b88;
  --indigo-dark: #2f376d;
  --turquoise: #35bbb8;
  --line: #dadce7;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--indigo-dark);
  box-shadow: 0 8px 24px rgb(23 27 49 / 18%);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgb(65 75 136 / 12%);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--indigo-dark);
}

.brand img {
  width: 124px;
  height: auto;
}

.site-header .brand img {
  width: 148px;
}

.brand span {
  max-width: 116px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: #393d50;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a:not(.nav-cta) {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--turquoise);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--indigo);
  color: white;
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  width: 48px;
  height: 48px;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  cursor: pointer;
  list-style: none;
  place-items: center;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-icon,
.mobile-menu-icon::before,
.mobile-menu-icon::after {
  width: 21px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--indigo-dark);
  content: "";
  transition: transform 180ms ease;
}

.mobile-menu-icon {
  position: relative;
}

.mobile-menu-icon::before {
  position: absolute;
  top: -7px;
}

.mobile-menu-icon::after {
  position: absolute;
  top: 7px;
}

.mobile-menu[open] .mobile-menu-icon {
  background: transparent;
}

.mobile-menu[open] .mobile-menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu[open] .mobile-menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu nav {
  position: absolute;
  z-index: 60;
  top: calc(100% + 12px);
  right: 0;
  width: min(330px, calc(100vw - 28px));
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid rgb(65 75 136 / 15%);
  border-radius: 14px;
  background: white;
  box-shadow: 0 22px 55px rgb(22 27 56 / 18%);
}

.mobile-menu nav a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--indigo-dark);
  font-size: 15px;
  font-weight: 750;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  background: var(--soft);
}

.mobile-menu nav .nav-cta {
  justify-content: center;
  margin-top: 5px;
  background: var(--indigo);
  color: white;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 42px;
  background:
    radial-gradient(circle at 4% 16%, rgb(53 187 184 / 11%), transparent 24%),
    linear-gradient(180deg, #f8f8fa 0%, #fff 82%);
}

.hero::after {
  position: absolute;
  top: -210px;
  right: -240px;
  width: 580px;
  height: 580px;
  border: 90px solid rgb(65 75 136 / 5%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--indigo);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  background: var(--turquoise);
  content: "";
}

.hero h1,
.camper-hero h1,
.subpage-hero h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  color: var(--indigo-dark);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--turquoise);
}

.hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

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

.button-primary {
  background: var(--indigo);
  color: white;
  box-shadow: 0 12px 25px rgb(65 75 136 / 22%);
}

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

.button-secondary {
  border-color: var(--line);
  background: white;
  color: var(--indigo-dark);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-proof strong {
  color: var(--indigo-dark);
  font-size: 14px;
}

.hero-proof span {
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
  max-width: 510px;
  justify-self: end;
}

.hero-media > img {
  width: 100%;
  aspect-ratio: 0.78;
  border-radius: 4px 70px 4px 4px;
  object-fit: cover;
  box-shadow: 0 28px 60px rgb(27 31 60 / 19%);
}

.hero-media::before {
  position: absolute;
  z-index: -1;
  right: -20px;
  bottom: -20px;
  width: 75%;
  height: 70%;
  border: 3px solid var(--turquoise);
  content: "";
}

.hero-card {
  position: absolute;
  bottom: 28px;
  left: -75px;
  width: 270px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px;
  border-left: 4px solid var(--turquoise);
  background: white;
  box-shadow: 0 18px 45px rgb(27 31 60 / 18%);
}

.hero-card > span {
  color: var(--turquoise);
  font-size: 13px;
  font-weight: 850;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--indigo-dark);
}

.brand-stripe {
  width: var(--shell);
  height: 6px;
  display: grid;
  grid-template-columns: 7fr 2fr 1fr;
  margin: 80px auto 0;
}

.brand-stripe span:nth-child(1) {
  background: var(--indigo);
}

.brand-stripe span:nth-child(2) {
  background: var(--turquoise);
}

.brand-stripe span:nth-child(3) {
  background: #d8d7e7;
}

.section {
  padding-block: 112px;
}

.section-tint {
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 390px);
  align-items: end;
  gap: 50px;
  margin-bottom: 54px;
}

.section-heading.compact {
  margin-bottom: 48px;
}

.section-heading h2,
.split-section h2,
.premium-section h2,
.quality-section h2,
.cta-section h2,
.camper-b2b h2 {
  max-width: 760px;
  margin: 13px 0 0;
  color: var(--indigo-dark);
  font-size: clamp(35px, 4.5vw, 56px);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 30px 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.service-card-link {
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.service-card-link:hover {
  z-index: 1;
  background: var(--indigo);
  color: white;
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgb(65 75 136 / 18%);
}

.service-number {
  margin-bottom: auto;
  color: var(--turquoise);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin: 38px 0 10px;
  color: var(--indigo-dark);
  font-size: 21px;
  line-height: 1.2;
}

.service-card-link:hover h3,
.service-card-link:hover p {
  color: white;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.text-link {
  margin-top: 18px;
  color: var(--turquoise);
  font-size: 14px;
  font-weight: 800;
}

.standards-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(44px, 6vw, 80px);
}

.standards-image {
  position: relative;
  align-self: start;
}

.standards-image img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.image-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 19px 22px;
  background: rgb(47 55 109 / 94%);
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.image-label span {
  display: block;
  margin-top: 3px;
  color: rgb(255 255 255 / 76%);
  font-size: 12px;
  font-weight: 500;
}

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

.standard-list article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.standard-list article > span {
  color: var(--turquoise);
  font-size: 13px;
  font-weight: 850;
}

.standard-list h3 {
  margin: 0 0 5px;
  color: var(--indigo-dark);
  font-size: 19px;
}

.standard-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.quote-card {
  position: relative;
  padding: 50px;
  background: var(--soft-blue);
  color: var(--indigo-dark);
}

.quote-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--indigo);
  content: "";
}

.quote-mark {
  color: var(--turquoise);
  font-family: Georgia, serif;
  font-size: 75px;
  line-height: 0.7;
}

.quote-card blockquote {
  margin: 18px 0 28px;
  font-size: 23px;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.quote-card p {
  margin: 0;
}

.quote-card strong,
.quote-card p span {
  display: block;
}

.quote-card p span {
  color: var(--muted);
  font-size: 13px;
}

.about-copy p {
  color: var(--muted);
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.mini-proof span {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 800;
}

.premium-section {
  padding-block: 90px;
  overflow: hidden;
  background: var(--indigo-dark);
  color: white;
}

.premium-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(55px, 7vw, 95px);
}

.premium-section h2 {
  color: white;
}

.premium-copy > p {
  color: rgb(255 255 255 / 72%);
}

.eyebrow-light {
  color: white;
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before,
.plain-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--turquoise);
  content: "✓";
  font-weight: 900;
}

.premium-grid > img {
  width: 100%;
  min-height: 480px;
  border-radius: 70px 4px 4px 4px;
  object-fit: cover;
}

.quality-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
}

.quality-copy p {
  max-width: 480px;
  color: var(--muted);
}

.quality-copy .button {
  margin-top: 20px;
}

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

.certificate-grid figure {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: white;
}

.certificate-grid img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: contain;
  background: var(--soft);
}

.certificate-grid figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.cta-section {
  padding-block: 72px;
  background: var(--turquoise);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 60px;
}

.cta-section .eyebrow::before {
  background: var(--indigo-dark);
}

.cta-section h2 {
  max-width: 760px;
  color: var(--indigo-dark);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.button-white {
  background: white;
  color: var(--indigo-dark);
  box-shadow: 0 14px 28px rgb(23 27 49 / 16%);
}

.cta-actions span {
  color: rgb(47 55 109 / 82%);
  font-size: 12px;
  font-weight: 700;
}

.camper-hero {
  position: relative;
  overflow: hidden;
  padding: 95px 0 105px;
  background:
    linear-gradient(125deg, rgb(53 187 184 / 12%), transparent 45%),
    var(--indigo-dark);
  color: white;
}

.camper-hero::after {
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 2px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgb(255 255 255 / 3%),
    0 0 0 130px rgb(255 255 255 / 2%);
  content: "";
}

.camper-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 80px;
}

.camper-hero h1 {
  color: white;
}

.camper-title > p {
  max-width: 650px;
  color: rgb(255 255 255 / 76%);
  font-size: 18px;
}

.button-ghost-light {
  border-color: rgb(255 255 255 / 30%);
  color: white;
}

.camper-visual {
  position: relative;
  min-height: 470px;
  align-self: stretch;
}

.camper-window {
  position: absolute;
  top: 10px;
  right: 0;
  width: 90%;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  border: 3px solid rgb(255 255 255 / 66%);
  border-radius: 130px 130px 20px 20px;
  background:
    linear-gradient(to top, rgb(47 55 109 / 25%), transparent),
    radial-gradient(circle at 65% 34%, #b4f1ef 0, #78d5d2 14%, #3c5a92 45%, #313970 70%);
  box-shadow: inset 0 0 0 12px rgb(255 255 255 / 7%);
}

.camper-window::after {
  position: absolute;
  right: 60px;
  bottom: -24px;
  width: 120px;
  height: 38px;
  border-radius: 50%;
  background: #20264f;
  box-shadow: -240px 0 #20264f;
  content: "";
}

.camper-window span {
  color: rgb(255 255 255 / 76%);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.camper-window strong {
  font-size: 46px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.camper-detail-card {
  position: absolute;
  right: 8%;
  bottom: 5px;
  left: 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 22px;
  background: white;
  color: var(--muted);
  box-shadow: 0 18px 44px rgb(16 18 40 / 32%);
}

.camper-detail-card > span {
  width: 38px;
  height: 38px;
  display: grid;
  border-radius: 50%;
  background: var(--turquoise);
  color: var(--indigo-dark);
  font-weight: 900;
  place-items: center;
}

.camper-detail-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}

.camper-detail-card strong {
  display: block;
  color: var(--indigo-dark);
  font-size: 14px;
}

.camper-offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 55px;
}

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

.camper-checks > div {
  min-height: 145px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.camper-checks span {
  color: var(--turquoise);
  font-size: 12px;
  font-weight: 850;
}

.camper-checks p {
  margin: 15px 0 0;
  color: var(--indigo-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.camper-aside {
  align-self: start;
  background: var(--indigo);
  color: white;
}

.camper-aside img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.camper-aside > div {
  padding: 30px;
}

.camper-aside h3 {
  margin: 10px 0;
  font-size: 27px;
  line-height: 1.15;
}

.camper-aside p {
  margin: 0;
  color: rgb(255 255 255 / 72%);
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-grid article {
  min-height: 265px;
  padding: 28px;
  background: white;
}

.process-grid article > span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--turquoise);
  border-radius: 50%;
  color: var(--turquoise);
  font-size: 12px;
  font-weight: 850;
  place-items: center;
}

.process-grid h3 {
  margin: 45px 0 8px;
  color: var(--indigo-dark);
  font-size: 19px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.camper-b2b {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

.camper-b2b > div:first-child > p {
  max-width: 640px;
  color: var(--muted);
}

.plain-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: var(--indigo-dark);
  font-size: 14px;
  font-weight: 750;
}

.b2b-card {
  padding: 46px;
  border-top: 5px solid var(--turquoise);
  background: var(--soft-blue);
}

.b2b-card > span {
  color: var(--indigo);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.b2b-card h3 {
  margin: 14px 0;
  color: var(--indigo-dark);
  font-size: 30px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.b2b-card p {
  color: var(--muted);
}

.b2b-card .button {
  margin-top: 12px;
}

.subpage-hero {
  padding: 75px 0 65px;
  background: var(--indigo-dark);
  color: white;
}

.subpage-hero h1 {
  margin-bottom: 12px;
  color: white;
  font-size: clamp(42px, 5vw, 64px);
}

.subpage-hero p {
  margin: 0;
  color: rgb(255 255 255 / 68%);
}

.legal-content {
  max-width: 880px;
  padding-block: 80px 110px;
}

.legal-content section {
  padding-block: 27px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 10px;
  color: var(--indigo-dark);
  font-size: 24px;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--indigo);
  font-weight: 800;
  text-decoration: underline;
}

.legal-note {
  margin-top: 35px;
  padding: 25px;
  border-left: 4px solid var(--turquoise);
  background: var(--soft);
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 70px 0 24px;
  background: #171b39;
  color: rgb(255 255 255 / 72%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.9fr;
  gap: 45px;
}

.footer-brand {
  margin-bottom: 17px;
  color: white;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-grid > div:first-child p {
  max-width: 310px;
  color: rgb(255 255 255 / 58%);
  font-size: 13px;
}

.footer-grid h2 {
  margin: 0 0 17px;
  color: white;
  font-size: 14px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
}

.footer-grid a:hover,
.footer-privacy-button:hover {
  color: var(--turquoise);
}

.footer-privacy-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgb(255 255 255 / 11%);
  color: rgb(255 255 255 / 40%);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgb(255 255 255 / 54%);
  transition: color 160ms ease;
}

.site-credit:hover,
.site-credit:focus-visible {
  color: white;
}

.site-credit img {
  width: 132px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.82;
  transition: opacity 160ms ease;
}

.site-credit:hover img,
.site-credit:focus-visible img {
  opacity: 1;
}

.cookie-layer {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 100dvh;
  display: flex;
  justify-content: center;
  padding:
    16px max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left));
  pointer-events: auto;
}

.cookie-banner {
  width: min(980px, 100%);
  max-height: calc(100dvh - 32px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 0;
  overflow: hidden;
  overscroll-behavior: contain;
  border: 1px solid rgb(65 75 136 / 20%);
  border-radius: 14px;
  background: white;
  box-shadow: 0 24px 80px rgb(22 27 56 / 24%);
  pointer-events: auto;
}

.cookie-content {
  min-width: 0;
  min-height: 0;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 28px;
}

.cookie-kicker {
  color: var(--turquoise);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-copy h2 {
  margin: 5px 0 7px;
  color: var(--indigo-dark);
  font-size: 24px;
}

.cookie-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-copy a {
  color: var(--indigo);
  font-weight: 800;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 28px 28px 28px 0;
}

.cookie-button {
  position: relative;
  z-index: 1;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: white;
  color: var(--indigo-dark);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  touch-action: manipulation;
}

.cookie-button.solid {
  border-color: var(--indigo);
  background: var(--indigo);
  color: white;
}

.cookie-button.subtle {
  border-color: transparent;
  color: var(--muted);
}

.cookie-settings {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 14px;
  background: var(--soft);
}

.cookie-settings > div,
.cookie-settings label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 8px;
  color: var(--indigo-dark);
  font-size: 13px;
}

.cookie-settings strong,
.cookie-settings small {
  display: block;
}

.cookie-settings small {
  color: var(--muted);
}

.always-on {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.cookie-settings input {
  width: 42px;
  height: 22px;
  accent-color: var(--indigo);
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 15px;
  }

  .hero-grid,
  .standards-layout,
  .split-section,
  .premium-grid,
  .quality-section,
  .camper-hero-grid,
  .camper-offer-grid,
  .camper-b2b {
    gap: 45px;
  }

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

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 0.8fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 3;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 28px, 680px);
  }

  body {
    font-size: 16px;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 76px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding-block: 8px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu nav {
    position: fixed;
    top: 76px;
    right: 14px;
    left: 14px;
    width: auto;
  }

  .site-header .brand img {
    width: 138px;
  }

  .hero,
  .camper-hero {
    padding-top: 58px;
  }

  .hero-grid,
  .standards-layout,
  .split-section,
  .premium-grid,
  .quality-section,
  .camper-hero-grid,
  .camper-offer-grid,
  .camper-b2b,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    width: calc(100% - 26px);
    max-width: 570px;
    justify-self: center;
    margin-top: 20px;
  }

  .hero-media > img {
    aspect-ratio: 5 / 4;
    border-radius: 4px 48px 4px 4px;
    object-position: center 30%;
  }

  .hero-card {
    left: -15px;
  }

  .section {
    padding-block: 80px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 37px;
  }

  .standards-image img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .premium-grid > img {
    min-height: 0;
    aspect-ratio: 16 / 9;
    grid-row: 1;
  }

  .quality-copy {
    order: 1;
  }

  .camper-visual {
    min-height: 450px;
  }

  .cta-inner {
    gap: 30px;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: stretch;
  }

  .cookie-content {
    max-height: none;
    padding: 24px 24px 0;
  }

  .cookie-actions {
    justify-content: flex-start;
    padding: 18px 24px 24px;
  }
}

@media (max-width: 560px) {
  .hero h1,
  .camper-hero h1,
  .subpage-hero h1 {
    font-size: clamp(38px, 11vw, 44px);
    letter-spacing: -0.045em;
  }

  .hero,
  .camper-hero {
    padding-top: 44px;
  }

  .section {
    padding-block: 64px;
  }

  .section-heading h2,
  .split-section h2,
  .premium-section h2,
  .quality-section h2,
  .cta-section h2,
  .camper-b2b h2 {
    font-size: clamp(32px, 9vw, 39px);
  }

  .button-row {
    display: grid;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-proof,
  .service-grid,
  .process-grid,
  .camper-checks,
  .plain-list,
  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: -48px auto 0;
    padding: 18px;
  }

  .brand-stripe {
    margin-top: 50px;
  }

  .service-card {
    min-height: auto;
    padding: 27px 22px;
  }

  .certificate-grid figure:nth-child(2) img {
    width: min(100%, 280px);
    aspect-ratio: 3 / 4;
    margin-inline: auto;
  }

  .quote-card,
  .b2b-card {
    padding: 30px 22px;
  }

  .camper-visual {
    min-height: 400px;
  }

  .camper-window {
    width: 100%;
    height: 300px;
    padding: 26px;
  }

  .camper-window::after {
    right: 42px;
    box-shadow: -190px 0 #20264f;
  }

  .camper-detail-card {
    right: 15px;
    left: 15px;
  }

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

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: auto;
  }

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

  .site-credit {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .cookie-layer {
    padding:
      8px max(8px, env(safe-area-inset-right))
      max(8px, env(safe-area-inset-bottom))
      max(8px, env(safe-area-inset-left));
  }

  .cookie-banner {
    max-height: calc(100dvh - 16px);
    border-radius: 12px;
  }

  .cookie-content {
    padding: 20px;
  }

  .cookie-copy h2 {
    font-size: 21px;
  }

  .cookie-actions {
    display: grid;
    margin: 0;
    padding: 12px 20px max(12px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: white;
  }

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

  .cookie-settings > div,
  .cookie-settings label {
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 380px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .site-header .brand span {
    display: none;
  }

  .site-header .brand img {
    width: 142px;
  }

  .mobile-menu nav {
    right: 12px;
    left: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
