:root {
  --nc-page-max: 1400px;
  --nc-page-gutter: clamp(18px, 5vw, 80px);
  --bg: #f5f8f7;
  --surface: #ffffff;
  --soft: #eaf3f1;
  --ink: #182320;
  --muted: #526963;
  --brand: #0f6f6a;
  --accent: #2a9db0;
  --accent-strong: #17324d;
  --teal: #0f6f6a;
  --trust: #17324d;
  --gold: #c8a45d;
  --line: #d8e3e0;
  --danger: #9b3f32;
  --shadow: 0 18px 44px rgba(16, 50, 61, 0.12);
  --radius: 8px;
  --type-section-h2: 2.05rem;
  --type-section-h2-tablet: 1.9rem;
  --type-section-h2-mobile: 1.68rem;
  --type-section-h3: 1.22rem;
  --type-card-title: 1.08rem;
  --type-body: 1rem;
  --type-small-body: 0.92rem;
  --type-panel-title: 1.28rem;
  --nc-editor-color-1: #0f6f6a;
  --nc-editor-color-2: #2a9db0;
  --nc-editor-color-3: #17324d;
  --nc-editor-color-4: #c8a45d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(42, 157, 176, 0.38);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 248, 247, 0.94);
  border-bottom: 1px solid rgba(216, 227, 224, 0.9);
  backdrop-filter: blur(16px);
}

.site-header .shell {
  width: min(var(--nc-page-max), calc(100% - (var(--nc-page-gutter) * 2)));
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr;
}

.header-main {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  flex: 1 1 auto;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 168px;
}

.brand span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-panel {
  position: relative;
  border-top: 1px solid rgba(216, 227, 224, 0.82);
}

.mobile-menu-bg,
.mobile-menu-actions {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1.4vw, 22px);
  min-height: 52px;
  width: 100%;
}

.site-nav a {
  flex: 0 0 auto;
  padding: 10px clamp(4px, 0.8vw, 12px);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition:
    font-weight 0.18s ease,
    text-shadow 0.18s ease,
    color 0.18s ease;
}

.site-nav a[aria-current="page"] {
  color: var(--brand);
  font-weight: 700;
}

.site-nav a:hover {
  font-weight: 700;
  text-shadow: 0 0 0.01px currentColor;
}

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

.header-actions {
  flex: 0 0 auto;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.site-header .btn {
  min-width: 206px;
  white-space: nowrap;
  font-size: 0.84rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: var(--teal);
  color: #fff;
}

.btn-primary:hover {
  background: #0b5b57;
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: transparent;
}

.btn-outline:hover {
  background: var(--soft);
}

.btn-ghost {
  border-color: rgba(23, 50, 77, 0.24);
  color: var(--trust);
  background: rgba(255, 255, 255, 0.72);
}

.btn-ghost:hover {
  background: #fff;
  border-color: var(--brand);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  position: relative;
  z-index: 90;
  grid-template-rows: repeat(3, 3px);
  align-content: center;
  justify-items: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle-bar {
  display: block;
  width: 27px;
  height: 3px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 260ms ease, opacity 220ms ease, width 220ms ease, background 220ms ease;
}

.nav-toggle-bar.top {
  width: 16px;
  justify-self: start;
  margin-left: 9px;
}

.nav-toggle-bar.middle {
  width: 27px;
}

.nav-toggle-bar.bottom {
  width: 16px;
  justify-self: end;
  margin-right: 9px;
}

body.nav-open .nav-toggle {
  border-color: rgba(24, 35, 32, 0.16);
  background: #fff;
}

body.nav-open .nav-toggle-bar.top {
  width: 27px;
  margin-left: 0;
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle-bar.middle {
  opacity: 0;
}

body.nav-open .nav-toggle-bar.bottom {
  width: 27px;
  margin-right: 0;
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 104px 0 92px;
  isolation: isolate;
  background-image:
    linear-gradient(90deg, rgba(245, 248, 247, 0.3) 0%, rgba(245, 248, 247, 0.18) 36%, rgba(245, 248, 247, 0.06) 72%, rgba(245, 248, 247, 0) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  color: var(--ink);
}

.hero-home {
  min-height: 680px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 26px 0;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -28px;
  bottom: -18px;
  left: -28px;
  z-index: -1;
  border-radius: 18px;
  background: radial-gradient(ellipse at left, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.58) 48%, rgba(255, 255, 255, 0) 78%);
  backdrop-filter: blur(5px);
}

.hero-home .hero-content::before,
.hero-subpage .hero-content::before {
  content: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-home .hero-copy::before,
.hero-subpage .hero-copy::before {
  content: "";
  position: absolute;
  top: -14px;
  right: -18px;
  bottom: -16px;
  left: -14px;
  z-index: -1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(4px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: 3rem;
  line-height: 1.02;
  color: var(--trust);
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.92);
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.22rem;
  text-align: justify;
  text-wrap: pretty;
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.9);
}

.hero .eyebrow {
  max-width: none;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.62);
}

.hero-home .eyebrow,
.hero-subpage .eyebrow {
  color: var(--teal);
}

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

.hero-home .hero-actions .btn,
.hero-subpage .hero-actions .btn {
  font-size: 0.88rem;
}

.hero-note {
  display: grid;
  gap: 2px;
  margin-top: 16px;
  color: var(--trust);
  font-size: 0.98rem;
  font-weight: 800;
}

.hero .hero-note {
  max-width: 680px;
  margin-top: 16px;
  color: var(--trust);
  font-size: 0.98rem;
  text-shadow: none;
}

.trust-strip {
  padding: 30px 0 18px;
  background: var(--trust);
  color: #fff;
}

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

.trust-card {
  min-height: 156px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.trust-visual {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
}

.trust-number {
  border: 1px solid rgba(42, 157, 176, 0.28);
  background: rgba(255, 255, 255, 0.94);
}

.trust-number span {
  color: #546e79;
  font-size: 2.55rem;
  font-weight: 900;
  line-height: 1;
}

.trust-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.trust-image-contain img {
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  object-fit: contain;
}

.trust-title {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.trust-card p:not(.trust-title) {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: justify;
  text-wrap: pretty;
}

.trust-region {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.trust-region a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  transition:
    font-weight 0.18s ease,
    text-shadow 0.18s ease,
    color 0.18s ease;
}

.trust-region a:hover {
  font-weight: 700;
  text-shadow: 0 0 0.01px currentColor;
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head-wide {
  max-width: none;
}

.section-head-wide p:last-child {
  max-width: none;
}

.section-head h2,
.split h2,
.estimate-copy h2,
.cta-band h2,
.side-panel h2,
.contact-panel h2,
.site-footer h2 {
  margin: 0;
  color: var(--trust);
  line-height: 1.12;
  letter-spacing: 0;
}

.cta-band h2 {
  color: #fff;
}

.section-head h2,
.split h2,
.estimate-copy h2,
.cta-band h2,
.cms-content h2 {
  font-size: var(--type-section-h2);
}

.side-panel h2,
.contact-panel h2 {
  font-size: var(--type-panel-title);
}

.section-head p:last-child,
.split p:not(.eyebrow),
.estimate-copy p:not(.eyebrow),
.side-panel p,
.contact-panel p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.65;
  text-align: justify;
  text-wrap: pretty;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(340px, 2fr);
  gap: 28px;
  align-items: start;
}

.intro-media {
  position: sticky;
  top: 154px;
  margin: 0;
  padding-top: 12px;
}

.intro-media-logo {
  width: 82%;
  max-width: 410px;
  margin: 0 auto 22px;
}

.intro-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(15, 111, 106, 0.18), rgba(200, 164, 93, 0.24)) border-box;
  box-shadow:
    0 18px 38px rgba(16, 50, 61, 0.14),
    0 0 0 8px rgba(255, 255, 255, 0.42);
}

.intro-media .intro-media-logo {
  aspect-ratio: auto;
  object-fit: contain;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

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

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

.info-card,
.region-card,
.step,
.side-panel,
.contact-panel,
.cms-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(16, 50, 61, 0.06);
}

.info-card {
  min-height: 196px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.info-card h3,
.region-card h3,
.step h3 {
  margin: 0;
  letter-spacing: 0;
}

.info-card h3,
.step h3 {
  color: var(--trust);
  font-size: var(--type-card-title);
  line-height: 1.22;
}

.info-card p,
.step p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: justify;
  text-wrap: pretty;
}

.info-card a {
  margin-top: auto;
  align-self: flex-end;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    font-weight 0.18s ease,
    text-shadow 0.18s ease;
}

.info-card a:hover {
  font-weight: 700;
  text-shadow: 0 0 0.01px currentColor;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 42px;
  align-items: center;
}

.split-mirror {
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
}

.split-half {
  grid-template-columns: minmax(0, 1fr) minmax(520px, 50%);
  gap: 24px;
}

.estimate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 50%);
  gap: 24px;
  align-items: stretch;
}

.estimate-copy {
  align-self: center;
  max-width: 660px;
}

.estimate-copy .eyebrow {
  color: var(--gold);
}

.estimate-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  font-size: var(--type-body);
  line-height: 1.65;
}

.estimate-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(216, 227, 224, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 243, 241, 0.84)),
    var(--surface);
  box-shadow:
    0 18px 42px rgba(16, 50, 61, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.estimate-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.estimate-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.estimate-panel-head p {
  margin: 0;
  color: var(--trust);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.estimate-panel-head strong {
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: right;
}

.estimate-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 8px 0 18px;
  list-style: none;
}

.estimate-steps li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
}

.estimate-steps li + li {
  border-top: 1px solid var(--line);
}

.estimate-steps span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 900;
}

.estimate-steps strong {
  display: block;
  color: var(--trust);
  font-size: 1.02rem;
  line-height: 1.25;
}

.estimate-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: var(--type-small-body);
  line-height: 1.45;
  text-align: justify;
  text-wrap: pretty;
}

.estimate-panel .btn {
  width: 100%;
}

.feature-image {
  width: min(100%, 390px);
  justify-self: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-preparation .feature-image {
  display: block;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  align-self: center;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(15, 111, 106, 0.18), rgba(200, 164, 93, 0.24)) border-box;
  box-shadow:
    0 18px 38px rgba(16, 50, 61, 0.14),
    0 0 0 8px rgba(255, 255, 255, 0.42);
}

.safety-image {
  display: block;
  width: min(86%, 360px);
  max-width: 100%;
  justify-self: center;
  align-self: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  object-position: center;
}

.reference-gallery-panel {
  align-self: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(15, 111, 106, 0.18), rgba(200, 164, 93, 0.24)) border-box;
  box-shadow:
    0 18px 38px rgba(16, 50, 61, 0.14),
    0 0 0 8px rgba(255, 255, 255, 0.42);
}

.reference-gallery-panel .nc-gallery {
  margin: 0;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: justify;
  text-wrap: pretty;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(15, 111, 106, 0.1);
}

.cms-panel {
  padding: 24px;
}

.cms-panel > :first-child,
.cms-panel .nc-article > :first-child,
.cms-panel .nc-blog > :first-child,
.cms-panel .nc-blog-post > :first-child {
  margin-top: 0;
}

.cms-panel > :last-child,
.cms-panel .nc-article > :last-child,
.cms-panel .nc-blog > :last-child,
.cms-panel .nc-blog-post > :last-child {
  margin-bottom: 0;
}

.cms-content {
  font-size: var(--type-body);
  line-height: 1.65;
}

.cms-content h2 {
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: 0;
}

.cms-content h3 {
  margin: 28px 0 10px;
  font-size: var(--type-section-h3);
  line-height: 1.2;
  letter-spacing: 0;
}

.cms-content p,
.cms-content li,
.cms-panel p,
.cms-panel li {
  color: var(--muted);
  text-align: justify;
  text-wrap: pretty;
}

.cms-content .eyebrow {
  color: var(--gold);
}

.cms-content .cms-lead,
.cms-panel .cms-lead {
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 600;
}

.cms-note {
  padding: 16px;
  border-left: 4px solid var(--teal);
  background: #eef8f7;
  color: var(--ink);
}

.cms-muted {
  color: var(--muted);
}

.cms-content details,
.cms-panel details {
  margin: 10px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.cms-content summary,
.cms-panel summary {
  cursor: pointer;
  color: var(--ink);
  font-size: var(--type-body);
  line-height: 1.35;
  font-weight: 900;
}

.cms-content details p,
.cms-panel details p {
  font-size: var(--type-body);
  line-height: 1.6;
}

.service-faq {
  max-width: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  min-height: 196px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 22px;
}

.step span {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
}

.section-action {
  margin-top: 28px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.region-card {
  padding: 22px;
  text-align: left;
}

.region-card h3 {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.region-card p {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: justify;
  text-wrap: pretty;
}

.region-card p a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  transition:
    font-weight 0.18s ease,
    text-shadow 0.18s ease;
}

.region-card p a:hover {
  font-weight: 700;
  text-shadow: 0 0 0.01px currentColor;
}

.gallery-wrap .nc-gallery {
  --nc-gallery-tile: 170px;
}

.gallery-wrap .nc-gallery-empty {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--teal);
  font-weight: 500;
  text-decoration: none;
  transition:
    font-weight 0.18s ease,
    text-shadow 0.18s ease;
}

.breadcrumbs a:hover {
  font-weight: 700;
  text-shadow: 0 0 0.01px currentColor;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(340px, 2fr);
  gap: 28px;
  align-items: start;
}

.estimate-agent-layout {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 3fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.estimate-agent-visual {
  margin: 0;
  align-self: center;
  justify-self: stretch;
}

.estimate-agent-visual img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  object-fit: contain;
  object-position: right center;
}

.estimate-agent-widget {
  display: grid;
  gap: 16px;
  align-self: center;
  justify-self: stretch;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.estimate-agent-title {
  margin: 0;
  color: rgba(15, 111, 106, 0.09);
  font-size: clamp(1.40rem, 2.65vw, 2.7rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-indent: 0.26em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95);
}

.estimate-agent-frame {
  height: clamp(320px, 34vw, 540px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.estimate-agent-frame > * {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.estimate-agent-frame iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
}

.side-panel,
.contact-panel {
  position: sticky;
  top: 154px;
  padding: 24px;
}

.side-panel .btn,
.contact-panel .btn {
  width: 100%;
  margin-top: 10px;
}

.side-panel-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.side-panel-logo {
  margin: 0 0 2px;
}

.side-panel-logo img {
  width: min(86%, 330px);
  margin-inline: auto;
}

.side-panel-cta .eyebrow {
  color: var(--gold);
  margin: 0;
}

.side-panel-cta p {
  margin: 0;
}

.side-panel-cta h2 {
  color: var(--teal);
  text-align: center;
}

.side-panel-list {
  display: grid;
  gap: 10px;
  margin: 2px 0 4px;
  padding: 0;
  list-style: none;
}

.side-panel-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.side-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 9px;
  height: 9px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  background: rgba(15, 111, 106, 0.12);
}

.side-panel-contact-note {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.side-panel-contact-note strong {
  display: block;
  color: var(--teal);
  font-size: 0.96rem;
  text-align: center;
}

.side-panel-contact-note p {
  margin: 6px 0 8px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.side-panel-contact-note a {
  display: block;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: right;
  text-decoration: none;
  transition:
    color 0.18s ease,
    font-weight 0.18s ease,
    text-shadow 0.18s ease;
}

.side-panel-contact-note a:hover {
  color: var(--teal);
  font-weight: 900;
  text-shadow: 0 0 0.01px currentColor;
}

.cta-band {
  padding: 70px 0;
  background: var(--trust);
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

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

.cta-band p:not(.eyebrow) {
  text-align: justify;
  text-wrap: pretty;
}

.cta-actions {
  justify-content: flex-end;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-panel-rich {
  position: sticky;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(216, 227, 224, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 243, 241, 0.84)),
    var(--surface);
  box-shadow:
    0 18px 42px rgba(16, 50, 61, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.contact-panel-rich::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.contact-panel-rich .eyebrow {
  margin: 2px 0 -4px;
  color: var(--teal);
}

.contact-panel-rich h2 {
  color: var(--teal);
  text-align: center;
}

.contact-card-section {
  display: grid;
  gap: 20px;
  padding: 4px 0 28px;
  border-bottom: 1px solid var(--line);
}

.contact-card-section + .contact-card-section {
  padding-top: 28px;
}

.contact-card-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-panel-rich .contact-card-section > .contact-card-title,
.contact-form-title {
  margin: 0;
  color: var(--teal) !important;
  font-size: var(--type-body);
  font-weight: 900;
  line-height: 1.25;
  text-align: center !important;
  text-transform: uppercase;
}

.contact-panel-rich .contact-panel-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

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

.contact-panel-rich > .btn {
  margin-top: 0;
}

.contact-methods {
  display: grid;
  gap: 10px;
}

.contact-method {
  display: grid;
  gap: 3px;
  padding: 14px 15px;
  border: 1px solid rgba(15, 111, 106, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(15, 111, 106, 0.08), rgba(255, 255, 255, 0.72));
  color: var(--trust);
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

.contact-method:hover {
  border-color: rgba(15, 111, 106, 0.38);
  box-shadow: 0 12px 28px rgba(16, 50, 61, 0.08);
  transform: translateY(-1px);
}

.contact-method span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.18;
}

.contact-method[data-contact-ready="true"] strong {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  text-transform: none;
  letter-spacing: 0;
}

.contact-hours {
  border-top: 0;
}

.contact-hours strong {
  display: block;
  margin-top: 0;
  color: var(--trust);
  font-size: 0.9rem;
  text-transform: uppercase;
  line-height: 1.35;
  text-align: center;
}

.contact-hours strong span {
  display: block;
}

.contact-hours p {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.contact-hours p + p {
  margin-top: 0;
}

.contact-hours-divider {
  display: block;
  height: 1px;
  background: var(--line);
}

.contact-form-panel {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  display: grid;
  gap: 20px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(216, 227, 224, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 243, 241, 0.84)),
    var(--surface);
  box-shadow:
    0 18px 42px rgba(16, 50, 61, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.contact-form-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.contact-form-title {
  margin: 0;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

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

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

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
  line-height: 1.45;
  padding: 12px 13px;
}

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

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(15, 111, 106, 0.55);
  outline: 3px solid rgba(15, 111, 106, 0.12);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.45;
  opacity: 1;
  text-transform: uppercase;
}

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

.form-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: justify;
  text-wrap: pretty;
}

.form-consent input {
  margin-top: 0.28em;
  accent-color: var(--teal);
}

.form-consent a {
  color: var(--teal);
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.form-status-success {
  border: 1px solid rgba(15, 111, 106, 0.26);
  background: rgba(15, 111, 106, 0.08);
  color: var(--teal);
}

.form-status-error {
  border: 1px solid rgba(155, 63, 50, 0.28);
  background: rgba(155, 63, 50, 0.08);
  color: var(--danger);
}

.contact-link {
  color: var(--teal);
  font-size: 1.65rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    font-weight 0.18s ease,
    text-shadow 0.18s ease;
}

.contact-link:hover {
  font-weight: 700;
  text-shadow: 0 0 0.01px currentColor;
}

.site-footer {
  padding: 0 0 96px;
  background: var(--trust);
  color: rgba(255, 255, 255, 0.82);
}

.footer-separator {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-top: 60px;
  align-items: start;
}

.footer-contact,
.footer-services-column {
  justify-self: center;
}

.footer-area {
  justify-self: end;
  max-width: 420px;
}

.footer-brand img {
  width: 160px;
}

.site-footer h2 {
  color: var(--teal);
  font-size: 1rem;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p,
.footer-area p {
  text-align: justify;
  text-wrap: pretty;
}

.site-footer ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer .footer-services {
  margin-top: 14px;
}

.site-footer .footer-services li {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer li + li {
  margin-top: 7px;
}

.site-footer a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  transition:
    font-weight 0.18s ease,
    text-shadow 0.18s ease;
}

.site-footer a:hover {
  font-weight: 700;
  text-shadow: 0 0 0.01px currentColor;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: flex-start;
  gap: 32px;
}

.footer-bottom-main > p {
  margin: 0;
}

.footer-credit {
  width: 100%;
  text-align: right;
}

.footer-credit p {
  margin: 0;
  color: rgba(130, 159, 176, 0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.74rem;
  line-height: 1.45;
  letter-spacing: 0;
}

.footer-credit strong {
  color: rgba(178, 196, 204, 0.9);
  font-weight: 700;
}

.footer-credit a {
  color: rgba(178, 196, 204, 0.9);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.76rem;
}

.footer-legal a {
  color: rgba(178, 196, 204, 0.86);
}

.cms-content a:not(.btn),
.cms-panel a:not(.btn),
.side-panel a:not(.btn),
.contact-panel a:not(.btn) {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  transition:
    font-weight 0.18s ease,
    text-shadow 0.18s ease;
}

.cms-content a:not(.btn):hover,
.cms-panel a:not(.btn):hover,
.side-panel a:not(.btn):hover,
.contact-panel a:not(.btn):hover {
  font-weight: 700;
  text-shadow: 0 0 0.01px currentColor;
}

.side-panel .side-panel-contact-note a:not(.btn) {
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: right;
  text-decoration: none;
}

.side-panel .side-panel-contact-note a:not(.btn):hover {
  color: var(--teal);
  font-weight: 900;
  text-shadow: 0 0 0.01px currentColor;
}

.cookie-consent {
  position: fixed;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 80;
  pointer-events: none;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 34px;
  border: 1px solid rgba(216, 227, 224, 0.92);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 243, 241, 0.92)),
    var(--surface);
  box-shadow: 0 18px 44px rgba(16, 50, 61, 0.18);
  pointer-events: auto;
}

.cookie-consent-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.cookie-consent-copy {
  display: grid;
  gap: 4px;
}

.cookie-consent-title {
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.cookie-consent-copy p:not(.cookie-consent-title) {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: justify;
  text-wrap: pretty;
}

.cookie-consent-copy a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  transition:
    font-weight 0.18s ease,
    text-shadow 0.18s ease;
}

.cookie-consent-copy a:hover {
  font-weight: 900;
  text-shadow: 0 0 0.01px currentColor;
}

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

.cookie-consent-actions .btn {
  min-width: 132px;
  min-height: 42px;
  padding: 11px 16px;
  font-size: 0.74rem;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  body.nav-open .site-header {
    position: fixed;
    inset: 0;
    z-index: 200;
    overflow: hidden;
    border-bottom: 0;
    background: var(--bg);
    backdrop-filter: none;
  }

  body.nav-open .nav-shell {
    height: 100vh;
    height: 100svh;
  }

  .header-main {
    min-height: 76px;
    position: relative;
    z-index: 120;
  }

  body.nav-open .header-main {
    position: fixed;
    top: 0;
    left: 50%;
    width: min(1320px, calc(100% - 36px));
    transform: translateX(-50%);
    background: var(--bg);
  }

  .brand {
    position: relative;
    z-index: 125;
  }

  .brand img {
    width: 138px;
  }

  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    inset: 0;
    z-index: 100;
    width: 100vw;
    min-height: 100vh;
    min-height: 100svh;
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 26px;
    padding: 108px var(--nc-page-gutter) calc(42px + env(safe-area-inset-bottom));
    border: 0;
    background: var(--bg);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    isolation: isolate;
    transition: opacity 180ms ease, visibility 0s linear 680ms;
  }

  body.nav-open .nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  body.nav-open .brand {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu-bg {
    display: none;
    pointer-events: none;
  }

  .site-nav,
  .mobile-menu-actions {
    position: relative;
    z-index: 20;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  body.nav-open .site-nav,
  body.nav-open .mobile-menu-actions {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav {
    width: min(100%, 520px);
    flex: 0 0 auto;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 0;
  }

  .site-nav a {
    position: relative;
    z-index: 21;
    width: min(100%, 520px);
    padding: 13px 0;
    border-bottom: 1px solid rgba(216, 227, 224, 0.9);
    border-radius: 0;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 500;
  }

  .site-nav a[aria-current="page"] {
    color: var(--teal);
    font-weight: 700;
  }

  .site-nav a:hover {
    font-weight: 700;
    text-shadow: 0 0 0.01px currentColor;
  }

  .mobile-menu-actions {
    width: min(100%, 520px);
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-menu-actions .btn {
    position: relative;
    z-index: 21;
    width: 100%;
    min-width: 0;
  }

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

@media (max-width: 900px) {
  .hero,
  .hero-home {
    min-height: 560px;
    padding: 92px 0 56px;
    background-image:
      linear-gradient(90deg, rgba(245, 248, 247, 0.78), rgba(245, 248, 247, 0.44)),
      var(--hero-image);
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero p {
    font-size: 1.08rem;
  }

  .section-head h2,
  .split h2,
  .estimate-copy h2,
  .cta-band h2,
  .cms-content h2 {
    font-size: var(--type-section-h2-tablet);
  }

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

  .split,
  .split-mirror,
  .split-half,
  .estimate-grid,
  .estimate-agent-layout,
  .intro-grid,
  .content-layout,
  .contact-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact,
  .footer-services-column,
  .footer-area {
    justify-self: stretch;
    max-width: none;
  }

  .side-panel,
  .contact-panel,
  .estimate-agent-visual,
  .intro-media {
    position: static;
  }

  .cookie-consent-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-consent-actions {
    justify-content: flex-start;
  }

  .card-grid,
  .card-grid-3,
  .steps,
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 66px;
  }

  .cookie-consent {
    bottom: 76px;
  }

  .cookie-consent-inner {
    padding: 16px 22px;
  }

  .cookie-consent-copy p:not(.cookie-consent-title) {
    font-size: 0.78rem;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .estimate-agent-title {
    font-size: 1.22rem;
    letter-spacing: 0.14em;
    text-indent: 0.14em;
  }

  .site-header {
    position: sticky;
  }

  .header-main {
    min-height: 68px;
  }

  .brand img {
    width: 112px;
  }

  .brand span {
    display: none;
  }

  .nav-panel {
    padding-top: 88px;
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .site-nav a {
    width: 100%;
    padding: 11px 0;
    font-size: 1.03rem;
  }

  .hero,
  .hero-home {
    min-height: 520px;
    padding: 96px 0 42px;
  }

  .hero-content {
    padding: 22px;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .trust-strip {
    padding: 22px 0 20px;
  }

  .intro-media {
    padding-top: 0;
  }

  .trust-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 13px;
    min-height: 0;
    padding: 15px;
  }

  .trust-visual {
    width: 72px;
    height: 72px;
  }

  .trust-number span {
    font-size: 2.3rem;
  }

  .trust-title {
    font-size: 0.9rem;
  }

  .section {
    padding: 56px 0;
  }

  .section-head h2,
  .split h2,
  .estimate-copy h2,
  .cta-band h2,
  .cms-content h2 {
    font-size: var(--type-section-h2-mobile);
  }

  .card-grid,
  .card-grid-3,
  .steps,
  .region-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-credit {
    text-align: left;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(16, 50, 61, 0.12);
  }

  body.nav-open .mobile-cta {
    display: none;
  }

  .mobile-cta a {
    min-height: 58px;
    display: grid;
    place-items: center;
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-cta a:first-child {
    background: var(--teal);
    color: #fff;
  }
}

@media (max-width: 420px) {
  .trust-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .trust-title {
    font-size: 0.88rem;
  }
}
