:root {
  --ink: #14211d;
  --forest: #24584f;
  --forest-dark: #1a463e;
  --stone: #f4efe6;
  --sand: #e9dece;
  --warm: #fcfbf8;
  --line: #d8d1c5;
  --card: #fffcf8;
  --shadow-soft: 0 10px 24px rgba(20, 33, 29, 0.05);
  --shadow-medium: 0 18px 34px rgba(20, 33, 29, 0.1);
  --radius-panel: 24px;
  --site-header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, var(--stone) 100%);
  line-height: 1.62;
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

main,
.page-footer {
  transition:
    filter 0.32s ease,
    transform 0.32s ease,
    opacity 0.32s ease;
}

body.menu-open main,
body.menu-open .page-footer {
  filter: blur(14px) saturate(0.92);
  transform: scale(1.01);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at bottom right, rgba(233, 222, 206, 0.22), rgba(233, 222, 206, 0) 28%);
  z-index: -1;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: "Sentient", serif;
  line-height: 1.12;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 500;
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  font-weight: 400;
}

h3 {
  font-weight: 300;
}

p {
  margin: 0 0 14px;
}

::selection {
  background: rgba(36, 88, 79, 0.16);
}

a {
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1;
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
  box-shadow: 0 6px 18px rgba(20, 33, 29, 0.06);
  position: relative;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(20, 33, 29, 0.12);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.22) 50%, transparent 75%);
  transform: translateX(-130%);
  transition: transform 0.45s ease;
}

.btn:hover::after {
  transform: translateX(130%);
}

.btn-primary {
  background: var(--forest);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--forest-dark);
}

.btn-secondary {
  color: var(--forest);
  border: 1px solid var(--forest);
  background: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  overflow: visible;
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    backdrop-filter 0.28s ease;
}

.site-header.solid {
  position: sticky;
  background: rgba(252, 251, 248, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  background: rgba(252, 251, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 209, 197, 0.92);
  box-shadow: 0 10px 24px rgba(20, 33, 29, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  transition: padding 0.28s ease;
}

.site-header.is-scrolled .nav {
  padding: 12px 0;
}

.brand {
  font-family: "Sentient", serif;
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.22s ease;
}

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

.nav-links {
  display: none;
  gap: 20px;
}

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

.mobile-menu-toggle {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(36, 88, 79, 0.18);
  border-radius: 999px;
  background: rgba(252, 251, 248, 0.52);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  color: var(--forest);
  cursor: pointer;
  box-shadow:
    0 10px 22px rgba(20, 33, 29, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  position: relative;
  z-index: 40;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease;
}

.mobile-menu-toggle svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-toggle svg path {
  transition:
    transform 0.26s ease,
    opacity 0.18s ease;
  transform-origin: center;
  transform-box: fill-box;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(20, 33, 29, 0.12);
}

.mobile-menu-toggle.is-open {
  background: rgba(36, 88, 79, 0.78);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px) saturate(1.04);
  -webkit-backdrop-filter: blur(16px) saturate(1.04);
  box-shadow:
    0 18px 30px rgba(20, 33, 29, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.mobile-menu-toggle.is-open svg path:nth-of-type(1) {
  transform: translateY(5px) rotate(45deg);
}

.mobile-menu-toggle.is-open svg path:nth-of-type(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open svg path:nth-of-type(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--site-header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  padding: 12px 0 22px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background:
    linear-gradient(180deg, rgba(252, 251, 248, 0.74), rgba(244, 239, 230, 0.7) 100%);
  display: none;
}

.mobile-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 24%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 42%);
  z-index: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.mobile-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 26%),
    linear-gradient(180deg, rgba(244, 239, 230, 0), rgba(244, 239, 230, 0.12) 100%);
  z-index: 0;
  pointer-events: none;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav-panel {
  display: grid;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 34px;
  position: relative;
  z-index: 1;
  min-height: calc(100svh - var(--site-header-height));
  align-content: start;
  animation: fade-lift 220ms ease-out both;
}

.mobile-nav-panel a {
  display: block;
  position: relative;
  z-index: 2;
  padding: 15px 16px;
  text-decoration: none;
  color: var(--ink) !important;
  font-weight: 500;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow:
    0 14px 24px rgba(20, 33, 29, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
  -webkit-text-fill-color: var(--ink);
  transition:
    background 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.mobile-nav-panel a:hover {
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 28px rgba(20, 33, 29, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.mobile-nav-panel a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(36, 88, 79, 0.16);
  color: var(--forest);
  -webkit-text-fill-color: var(--forest);
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--site-header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ece3d7;
  --hero-shift: 0px;
  --hero-scale: 1.02;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      90deg,
      rgba(252, 251, 248, 0.96) 0%,
      rgba(252, 251, 248, 0.9) 50%,
      rgba(252, 251, 248, 0.35) 100%
    ),
    url("./assets/images/home-hero.jpg");
  background-size: cover;
  background-position: center 34%;
  transform: translate3d(0, var(--hero-shift), 0) scale(var(--hero-scale));
  transition: transform 0.18s ease-out;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(244, 239, 230, 0.7) 0%, rgba(244, 239, 230, 0) 26%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 86px;
  padding-bottom: 52px;
  animation: fade-lift 620ms ease-out both;
}

.eyebrow {
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.78rem;
  margin: 0 0 8px;
}

.hero-sub {
  max-width: 58ch;
  font-size: clamp(1.03rem, 2vw, 1.12rem);
  font-weight: 400;
  color: rgba(20, 33, 29, 0.86);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-renew {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.12em;
}

.scroll-cue {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 26px;
  margin: 6px auto 0;
  background: rgba(36, 88, 79, 0.6);
}

.page-hero {
  padding: 136px 0 64px;
  background:
    radial-gradient(circle at top left, rgba(233, 222, 206, 0.7), rgba(233, 222, 206, 0) 36%),
    linear-gradient(180deg, #fcfbf8 0%, #f4efe6 100%);
  border-bottom: 1px solid var(--line);
}

.contact-hero {
  --cms-hero-image: url("./assets/images/woman-phone.jpg");
  --cms-hero-position: center 28%;
  background:
    linear-gradient(90deg, rgba(252, 251, 248, 0.94) 0%, rgba(252, 251, 248, 0.86) 46%, rgba(252, 251, 248, 0.34) 100%),
    var(--cms-hero-image);
  background-size: cover;
  background-position: var(--cms-hero-position);
}

.individual-hero {
  --cms-hero-image: url("./assets/images/individual-portrait.jpg");
  --cms-hero-position: 70% 32%;
  background:
    linear-gradient(90deg, rgba(252, 251, 248, 0.94) 0%, rgba(252, 251, 248, 0.86) 46%, rgba(252, 251, 248, 0.34) 100%),
    var(--cms-hero-image);
  background-size: cover;
  background-position: var(--cms-hero-position);
}

.teams-hero {
  --cms-hero-image: url("./assets/images/team-meeting.jpg");
  --cms-hero-position: center 34%;
  background:
    linear-gradient(90deg, rgba(252, 251, 248, 0.94) 0%, rgba(252, 251, 248, 0.86) 46%, rgba(252, 251, 248, 0.34) 100%),
    var(--cms-hero-image);
  background-size: cover;
  background-position: var(--cms-hero-position);
}

.page-hero h1 {
  max-width: 14ch;
}

.page-hero p {
  max-width: 62ch;
}

section {
  padding: clamp(52px, 6vw, 76px) 0;
  position: relative;
}

main > section:not(.hero):not(.trust)::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 209, 197, 0.9), transparent);
}

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  padding: 18px 0;
}

.trust-grid {
  display: grid;
  gap: 10px;
}

.trust-chip {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 14px rgba(20, 33, 29, 0.04);
}

.section-intro {
  max-width: 66ch;
  margin-bottom: 20px;
  color: rgba(20, 33, 29, 0.78);
  font-size: 1.03rem;
}

.individual-focus,
.feature-panel {
  margin-top: 26px;
  border: 1px solid var(--sand);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0) 22%),
    linear-gradient(135deg, #fcf9f3, #f4ece0);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.individual-focus p,
.feature-panel p {
  max-width: 64ch;
}

.image-panel {
  background-size: cover;
  background-position: center;
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(252, 249, 243, 0.94), rgba(244, 236, 224, 0.82));
  z-index: 0;
}

.individual-focus::after,
.feature-panel::after {
  content: "";
  position: absolute;
  top: -42px;
  right: -12px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.individual-focus > * ,
.feature-panel > * {
  position: relative;
  z-index: 1;
}

.panel-individual {
  --cms-panel-image: url("./assets/images/individual-portrait.jpg");
  --cms-panel-position: 70% 36%;
  background-image: var(--cms-panel-image);
  background-position: var(--cms-panel-position);
}

.panel-group {
  --cms-panel-image: url("./assets/images/team-meeting.jpg");
  --cms-panel-position: center 36%;
  background-image: var(--cms-panel-image);
  background-position: var(--cms-panel-position);
}

.individual-points,
.card-grid,
.detail-grid,
.steps-grid,
.services-grid,
.contact-grid {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(36, 88, 79, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(36, 88, 79, 0.5);
  box-shadow: 0 0 0 4px rgba(36, 88, 79, 0.08);
  background: rgba(255, 255, 255, 0.95);
}

.form-help {
  font-size: 0.92rem;
  color: rgba(20, 33, 29, 0.72);
}

.form-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.individual-focus > .btn,
.feature-panel > .btn {
  margin-top: 12px;
}

.individual-point,
.info-card,
.detail-card,
.step,
.contact-card {
  background: rgba(255, 252, 248, 0.8);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.info-card,
.detail-card,
.contact-card {
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.audience-card-grid {
  align-items: stretch;
}

.audience-image-card {
  position: relative;
  min-height: 300px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(36, 88, 79, 0.12);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.audience-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 33, 29, 0.42), rgba(20, 33, 29, 0.42));
  z-index: 1;
}

.audience-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.audience-image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.audience-card-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.audience-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) blur(1.2px);
  transform: scale(1.02);
}

.audience-card-title {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% - 40px);
  z-index: 2;
  display: inline-block;
  color: #ffffff;
  font-family: "Sentient", serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.18;
  font-weight: 400;
  text-shadow:
    0 4px 10px rgba(20, 33, 29, 0.36),
    0 10px 26px rgba(20, 33, 29, 0.34);
  text-align: center;
  transform: translate(-50%, -50%);
}

.audience-card-one .audience-card-media img {
  object-position: center 54%;
}

.audience-card-two .audience-card-media img {
  object-position: center 40%;
}

.audience-card-two .audience-card-title {
  width: min(300px, calc(100% - 56px));
}

.audience-card-three .audience-card-media img {
  position: relative;
  top: -12%;
  height: 122%;
  object-position: center top;
  transform: scale(1.18);
  transform-origin: center top;
}

.contact-card > * {
  position: relative;
  z-index: 1;
  max-width: 74%;
}

.card-bg-icon {
  position: absolute;
  inset: auto -18px -18px auto;
  width: 160px;
  height: 160px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.card-bg-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover,
.info-card:hover,
.detail-card:hover,
.contact-card:hover,
.step:hover {
  transform: translateY(-4px);
}

.service-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: rgba(36, 88, 79, 0.2);
}

.service-card.secondary {
  opacity: 0.92;
}

.service-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.service-card.individual img {
  object-position: center 18%;
}

.service-card.secondary img {
  object-position: center 36%;
}

.service-body {
  padding: 18px 20px 22px;
}

.service-card:hover img,
.cta-band:hover img {
  transform: scale(1.03);
  filter: saturate(1.03);
}

.step {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.step:hover,
.info-card:hover,
.detail-card:hover,
.contact-card:hover {
  box-shadow: 0 14px 26px rgba(20, 33, 29, 0.08);
  border-color: rgba(36, 88, 79, 0.16);
}

.step-number {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
}

.cta-band {
  border: 1px solid var(--sand);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 25%),
    linear-gradient(120deg, #f9f5ec, #efe5d6);
  padding: 28px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.cta-band img {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.list-clean {
  padding-left: 18px;
  margin: 0;
}

.list-clean li + li {
  margin-top: 8px;
}

.muted {
  color: rgba(20, 33, 29, 0.78);
}

.page-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 46px;
  color: #3a4a46;
  font-size: 0.95rem;
}

.footer-inner {
  display: grid;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover::after {
  opacity: 0.6;
  transform: scaleX(1);
}

.reveal-target {
  will-change: transform, opacity;
}

html.has-motion .reveal-target {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.68s ease,
    transform 0.68s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

html.has-motion .reveal-target.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fade-lift {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 760px) {
  .nav-links {
    display: flex;
  }

  .mobile-menu-toggle,
  .mobile-nav {
    display: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .hero .eyebrow {
    font-size: 0.975rem;
  }

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

  .services-grid,
  .card-grid,
  .detail-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-stack > .contact-card {
    max-width: calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2);
    margin: 0 auto;
  }

  .individual-points,
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .cta-band {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

  .cta-band img {
    height: 260px;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

@media (max-width: 759px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: calc(100svh - var(--site-header-height));
    padding-top: 0;
  }

  .scroll-cue {
    display: none;
  }

  .site-header.is-scrolled .nav,
  .nav {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .contact-card > * {
    max-width: 82%;
    margin-left: auto;
    margin-right: auto;
  }

  .card-bg-icon {
    inset: 50% auto auto 50%;
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    opacity: 0.18;
  }
}
