:root {
  --slate: #5B7A99;
  --slate-text: #376080;
  --sky: #BCD7E6;
  --cream: #F7F4EE;
  --sage: #8FA98C;
  --navy: #2C3E50;

  --paper: #FFFCF6;
  --paper-soft: #FBF8F1;
  --cream-deep: #EFE9DD;
  --ink-soft: #4C6173;
  --line: rgb(91 122 153 / 0.24);
  --line-strong: rgb(44 62 80 / 0.18);
  --shadow: 0 24px 70px rgb(44 62 80 / 0.14);
  --shadow-soft: 0 18px 45px rgb(44 62 80 / 0.10);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;

  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --shell: 1160px;
  --gutter: clamp(18px, 4vw, 32px);
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  color: var(--navy);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 0;
  background:
    radial-gradient(circle at 12% 0%, rgb(188 215 230 / 0.36), transparent 32rem),
    radial-gradient(circle at 92% 18%, rgb(143 169 140 / 0.16), transparent 28rem),
    var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body,
button,
input,
textarea {
  font-family: var(--font-body);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:hover {
  text-decoration-thickness: 0.12em;
}

:focus-visible {
  outline: 3px solid var(--sage);
  outline-offset: 4px;
}

::selection {
  background: var(--sky);
  color: var(--navy);
}

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}

.narrow {
  max-width: 980px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.55rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

h3 {
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
}

p {
  margin: 0;
}

p + p {
  margin-top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgb(247 244 238 / 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 16px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark,
.mini-mark,
.promise-mark,
.panel-mark {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--slate);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 8px 20px rgb(44 62 80 / 0.08);
}

.brand-mark svg,
.mini-mark svg,
.promise-mark svg,
.panel-mark svg,
.drift-mark svg {
  width: 100%;
  height: 100%;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand-mark path,
.mini-mark path,
.promise-mark path,
.panel-mark path,
.drift-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: grid;
  gap: 1px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.brand-text small {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 2px 0;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(42deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-42deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

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

.nav-link,
.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.nav-link {
  background: transparent;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgb(188 215 230 / 0.52);
}

.nav-call {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 12px 24px rgb(44 62 80 / 0.18);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(58px, 10vw, 124px) 0;
  isolation: isolate;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--sky);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shell {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(740px, calc(100svh - var(--header-height)));
}

.hero-card,
.intro-card {
  position: relative;
  width: min(100%, 680px);
  border: 1px solid rgb(247 244 238 / 0.96);
  border-radius: var(--radius-xl);
  background: rgb(255 252 246 / 0.97);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: clamp(26px, 5vw, 54px);
}

.hero-copy,
.intro-card > p,
.section-heading p,
.split-copy p,
.promise-head p,
.contact-card p,
.form-head p {
  max-width: 66ch;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 2vw, 1.18rem);
}

.hero-card h1 {
  max-width: 9.5ch;
  margin-top: 18px;
}

.hero-copy {
  margin-top: 20px;
}

.hero-actions,
.intro-actions,
.center-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions,
.intro-actions {
  margin-top: 28px;
}

.center-actions {
  justify-content: center;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--navy);
  color: var(--cream);
  box-shadow: 0 16px 34px rgb(44 62 80 / 0.20);
}

.btn-primary:hover {
  background: #24394A;
}

.btn-secondary {
  border-color: rgb(44 62 80 / 0.24);
  background: var(--paper);
  color: var(--navy);
}

.btn-secondary:hover {
  border-color: rgb(44 62 80 / 0.42);
  box-shadow: 0 12px 28px rgb(44 62 80 / 0.10);
}

.btn-light {
  background: var(--cream);
  color: var(--navy);
}

.btn-ghost {
  border-color: rgb(247 244 238 / 0.42);
  background: rgb(247 244 238 / 0.10);
  color: var(--cream);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--slate-text);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.mini-mark {
  width: 24px;
  height: 24px;
}

.mini-mark path {
  stroke-width: 4;
}

.trust-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(247 244 238 / 0.82);
  color: var(--navy);
  font-weight: 850;
}

.stars {
  color: var(--slate-text);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.drift-mark {
  position: absolute;
  top: 10%;
  right: min(4vw, 46px);
  width: clamp(90px, 12vw, 168px);
  height: clamp(90px, 12vw, 168px);
  color: var(--slate);
  opacity: 0.22;
  animation: doveDrift 13s ease-in-out infinite alternate;
  pointer-events: none;
}

.section {
  padding: clamp(72px, 10vw, 136px) 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgb(188 215 230 / 0.20), rgb(247 244 238 / 0.78)),
    var(--cream);
  border-block: 1px solid var(--line);
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--slate-text);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-kicker .line {
  width: min(18vw, 120px);
  height: 1px;
  background: var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 50px);
}

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

.section-heading h2,
.split-copy h2 {
  margin-top: 12px;
}

.section-heading p,
.split-copy p {
  margin-top: 16px;
}

.promise-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgb(255 252 246 / 0.96), rgb(247 244 238 / 0.96)),
    var(--paper);
  box-shadow: var(--shadow);
}

.promise-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgb(91 122 153 / 0.22);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.promise-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgb(188 215 230 / 0.44);
  filter: blur(2px);
  pointer-events: none;
}

.promise-head {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.promise-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  box-shadow: 0 12px 28px rgb(44 62 80 / 0.08);
}

.promise-mark svg {
  width: 36px;
  height: 36px;
}

.promise-mark path {
  stroke-width: 3.5;
}

.promise-head h2 {
  margin-top: 12px;
}

.promise-head p:last-child {
  margin-top: 18px;
}

.promise-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: clamp(28px, 5vw, 44px);
}

.promise-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgb(255 252 246 / 0.82);
}

.promise-point h3 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.promise-point p {
  margin-top: 6px;
  color: var(--ink-soft);
}

.check {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgb(143 169 140 / 0.22);
  color: var(--navy);
  font-weight: 900;
}

.promise-note {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgb(91 122 153 / 0.22);
  border-radius: 18px;
  background: rgb(188 215 230 / 0.28);
  color: var(--navy);
  font-weight: 750;
}

.promise-card.compact .promise-head .btn {
  margin-top: 24px;
}

.card-grid,
.service-detail-grid,
.values-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

.card-grid,
.values-grid {
  grid-template-columns: 1fr;
}

.service-card,
.detail-card,
.value-card,
.review-card,
.contact-card,
.form-card,
.calm-panel,
.quote-panel,
.steps-card,
.area-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.service-card,
.detail-card,
.value-card {
  padding: 24px;
}

.service-card h3,
.detail-card h3,
.value-card h3 {
  margin-top: 18px;
}

.service-card p,
.detail-card p,
.value-card p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgb(188 215 230 / 0.50);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.service-card:nth-child(even) .card-number,
.value-card:nth-child(even) .card-number,
.detail-card:nth-child(even) .card-number {
  background: rgb(143 169 140 / 0.20);
}

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

.soft-detail {
  background:
    linear-gradient(135deg, rgb(188 215 230 / 0.28), rgb(255 252 246 / 0.94)),
    var(--paper);
}

.split {
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.calm-panel,
.quote-panel,
.steps-card {
  padding: clamp(24px, 4vw, 38px);
}

.panel-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgb(188 215 230 / 0.34);
}

.panel-mark svg {
  width: 38px;
  height: 38px;
}

.soft-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.soft-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-weight: 750;
}

.soft-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--sage);
}

.page-hero {
  padding: clamp(54px, 9vw, 104px) 0;
  background:
    radial-gradient(circle at 20% 20%, rgb(188 215 230 / 0.42), transparent 30rem),
    radial-gradient(circle at 80% 10%, rgb(143 169 140 / 0.16), transparent 24rem),
    var(--cream);
  border-bottom: 1px solid var(--line);
}

.intro-card {
  padding: clamp(26px, 5vw, 56px);
}

.intro-card h1 {
  max-width: 12ch;
  margin-top: 18px;
}

.intro-card > p {
  margin-top: 20px;
}

.steps-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps-list li {
  position: relative;
  padding-left: 52px;
  counter-increment: step;
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  font-weight: 900;
}

.steps-list span {
  display: block;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
}

.steps-list p {
  margin-top: 4px;
  color: var(--ink-soft);
}

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

.review-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.review-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-source {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-card blockquote {
  margin: 0;
  color: var(--navy);
}

.review-card blockquote p {
  white-space: pre-wrap;
}

.review-author {
  margin-top: auto;
  color: var(--slate-text);
  font-weight: 950;
}

.review-summary {
  display: grid;
  gap: 20px;
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 44px);
}

.review-summary h2 {
  margin-top: 12px;
}

.rating-badge {
  display: inline-grid;
  justify-items: start;
  gap: 4px;
  width: fit-content;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.rating-number {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.quote-large {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.quote-credit {
  margin-top: 18px;
  color: var(--slate-text);
  font-weight: 900;
}

.area-section {
  padding-top: 0;
}

.area-card {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 5vw, 42px);
  background:
    linear-gradient(135deg, rgb(255 252 246 / 0.96), rgb(188 215 230 / 0.24)),
    var(--paper);
}

.area-card h2 {
  margin-top: 12px;
}

.area-card p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.cta-band {
  padding: clamp(54px, 8vw, 84px) 0;
  background:
    radial-gradient(circle at 90% 0%, rgb(188 215 230 / 0.20), transparent 26rem),
    var(--navy);
  color: var(--cream);
}

.cta-inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.cta-inner h2,
.cta-inner p {
  color: var(--cream);
}

.cta-inner h2 {
  margin-top: 10px;
}

.cta-inner p:not(.eyebrow) {
  margin-top: 12px;
  max-width: 58ch;
  color: rgb(247 244 238 / 0.84);
}

.contact-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

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

.contact-card,
.form-card {
  padding: clamp(24px, 4vw, 38px);
}

.primary-contact {
  background:
    linear-gradient(135deg, rgb(255 252 246 / 0.96), rgb(188 215 230 / 0.30)),
    var(--paper);
}

.contact-card h2,
.form-head h2 {
  margin-top: 10px;
}

.big-phone,
.contact-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 950;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  overflow-wrap: anywhere;
}

.big-phone {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.contact-card p {
  margin-top: 16px;
}

.form-head {
  margin-bottom: 26px;
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

label {
  color: var(--navy);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgb(44 62 80 / 0.24);
  border-radius: 16px;
  background: var(--paper-soft);
  color: var(--navy);
  font: inherit;
  line-height: 1.4;
}

input {
  min-height: 52px;
  padding: 12px 14px;
}

textarea {
  resize: vertical;
  min-height: 150px;
  padding: 14px;
}

input:focus,
textarea:focus {
  border-color: var(--slate);
  outline: 3px solid rgb(143 169 140 / 0.36);
  outline-offset: 2px;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.form-note a {
  color: var(--navy);
  font-weight: 900;
}

.site-footer {
  padding: clamp(52px, 8vw, 74px) 0 26px;
  background: var(--navy);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer-brand {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.footer-brand .brand-mark {
  background: rgb(247 244 238 / 0.08);
  color: var(--sky);
  border-color: rgb(247 244 238 / 0.24);
  box-shadow: none;
}

.site-footer p,
.footer-links {
  color: rgb(247 244 238 / 0.82);
}

.site-footer p {
  max-width: 42ch;
  margin-top: 16px;
}

.footer-title {
  margin: 0 0 14px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--cream);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: grid;
  gap: 8px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgb(247 244 238 / 0.18);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--navy);
  font-weight: 950;
  text-decoration-color: var(--slate);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.2em;
}

.js-anim .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

.js-anim .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes doveDrift {
  from {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }

  to {
    transform: translate3d(-16px, 18px, 0) rotate(3deg);
  }
}

@media (min-width: 640px) {
  .promise-list,
  .card-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .area-card,
  .cta-inner,
  .review-summary {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-link {
    min-height: 42px;
    padding-inline: 13px;
  }

  .nav-call {
    min-height: 44px;
    margin-left: 8px;
    padding-inline: 18px;
  }

  .split,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.86fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(160px, 0.5fr) minmax(240px, 0.8fr);
  }

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

@media (min-width: 1040px) {
  .service-detail-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-detail-grid .detail-card {
    min-height: 300px;
  }

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

@media (max-width: 520px) {
  :root {
    --header-height: 70px;
  }

  .brand-text small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: 620px;
    align-items: end;
  }

  .hero-card {
    border-radius: 28px;
  }

  .hero-card h1 {
    max-width: 10ch;
  }

  .btn,
  .nav-call {
    width: 100%;
  }

  .nav-link {
    justify-content: flex-start;
  }

  .trust-strip {
    border-radius: 20px;
  }

  .drift-mark {
    display: none;
  }

  .review-top {
    align-items: flex-start;
  }
}

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

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