:root {
  --ink: #092641;
  --ink-soft: #456077;
  --navy: #083b78;
  --navy-deep: #052b59;
  --aqua: #0a9ba8;
  --aqua-pale: #e5f8f8;
  --coral: #ef5e45;
  --coral-dark: #c9422d;
  --sky: #f2f9fc;
  --sand: #fff8ec;
  --white: #ffffff;
  --line: #d8e4eb;
  --success: #196c4b;
  --warning: #7a4b00;
  --shadow-sm: 0 8px 24px rgba(5, 43, 89, 0.08);
  --shadow-lg: 0 24px 60px rgba(5, 43, 89, 0.16);
  --radius-sm: 0.6rem;
  --radius: 1.1rem;
  --radius-lg: 1.75rem;
  --container: 74rem;
  --header-height: 5rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--navy);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--coral-dark);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 0.2rem solid #ffb000;
  outline-offset: 0.2rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.7rem 1rem;
  border-radius: 0.4rem;
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 2rem), 48rem);
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.7rem;
  color: var(--aqua);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.75rem;
  height: 0.18rem;
  border-radius: 999px;
  background: var(--coral);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.6vw, 3.45rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
}

p {
  margin-top: 0;
}

.lead {
  max-width: 46rem;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.muted {
  color: var(--ink-soft);
}

.fine-print {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.mt-sm {
  margin-top: 1rem;
}

.mt-md {
  margin-top: 1.25rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.justify-center {
  justify-content: center;
}

.topbar {
  color: var(--white);
  background: var(--navy-deep);
}

.topbar .container {
  display: flex;
  min-height: 2.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.35rem;
  font-size: 0.89rem;
  font-weight: 700;
}

.topbar p {
  margin: 0;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
}

.topbar a:hover {
  color: #8de9ed;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(8, 59, 120, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 16px rgba(5, 43, 89, 0.04);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand img {
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.brand-service {
  margin-top: 0.25rem;
  color: var(--aqua);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav-toggle {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.3rem;
  height: 0.14rem;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -0.42rem;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 0.42rem;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: calc(var(--header-height) + 2.6rem) 0 0;
  visibility: hidden;
  overflow-y: auto;
  padding: 1.2rem 1rem 6rem;
  background: var(--white);
  opacity: 0;
  transform: translateY(-0.5rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
}

.site-nav.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.site-nav ul {
  display: grid;
  max-width: 36rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: flex;
  min-height: 3.25rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--coral-dark);
}

.site-nav .nav-cta {
  justify-content: center;
  margin-top: 1rem;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 8px 18px rgba(239, 94, 69, 0.2);
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--coral-dark);
  box-shadow: 0 12px 24px rgba(201, 66, 45, 0.24);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--navy);
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--white);
  background: var(--navy);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.62rem 1rem;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(46rem, calc(100svh - 7.6rem));
  overflow: hidden;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-media,
.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: -2;
}

.hero-media img {
  object-fit: cover;
  object-position: 64% center;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 27, 55, 0.94) 0%, rgba(3, 34, 68, 0.82) 45%, rgba(3, 34, 68, 0.24) 78%, rgba(3, 34, 68, 0.14) 100%);
  content: "";
}

.hero .container {
  display: grid;
  min-height: inherit;
  align-items: center;
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.hero-copy {
  max-width: 43rem;
}

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

.hero .eyebrow {
  color: #7be1e6;
}

.hero .lead {
  max-width: 38rem;
  color: #e7f2f7;
}

.hero-note {
  margin: 1.2rem 0 0;
  color: #d8ebf3;
  font-size: 0.9rem;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(8, 59, 120, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.trust-item {
  min-width: 0;
  padding: 1.1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item:nth-child(2n) {
  border-right: 0;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--navy);
  font-size: 0.98rem;
}

.trust-item span {
  margin-top: 0.18rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.4;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-compact {
  padding-block: clamp(2.75rem, 5vw, 4.5rem);
}

.section-sky {
  background: var(--sky);
}

.section-sand {
  background: var(--sand);
}

.section-navy {
  color: #e4f0f6;
  background: var(--navy-deep);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-navy .lead,
.section-navy .muted {
  color: #c7dce7;
}

.section-head {
  display: flex;
  margin-bottom: clamp(2rem, 4vw, 3.3rem);
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-head > div {
  max-width: 50rem;
}

.section-head p:last-child,
.card p:last-child,
.content-card p:last-child,
.notice p:last-child {
  margin-bottom: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.card-accent {
  border-top: 0.32rem solid var(--aqua);
}

.card-number {
  display: inline-flex;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 950;
}

.card-link {
  display: inline-flex;
  margin-top: 0.6rem;
  align-items: center;
  gap: 0.35rem;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.card-link::after {
  content: "→";
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #d9edf0;
  box-shadow: var(--shadow-lg);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.media-caption {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-style: italic;
}

.check-list,
.plain-list,
.link-list {
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-block: 0.68rem;
  padding-left: 1.8rem;
}

.check-list li::before {
  position: absolute;
  top: 0.12rem;
  left: 0;
  color: var(--aqua);
  content: "✓";
  font-weight: 950;
}

.plain-list li {
  margin-block: 0.45rem;
}

.link-list li {
  border-bottom: 1px solid var(--line);
}

.link-list a {
  display: flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.link-list a::after {
  content: "→";
}

.notice {
  padding: 1.2rem 1.3rem;
  border: 1px solid #f1d092;
  border-left: 0.35rem solid #e59a1d;
  border-radius: var(--radius-sm);
  color: #563800;
  background: #fff9e8;
}

.notice strong {
  color: #442b00;
}

.notice-safe {
  border-color: #93d8c0;
  border-left-color: var(--success);
  color: #164c38;
  background: #edfbf5;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
  color: var(--white);
  background:
    radial-gradient(circle at 90% 15%, rgba(10, 155, 168, 0.7), transparent 28rem),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.page-hero::after {
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 27rem;
  height: 27rem;
  border: 3.5rem solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.page-hero h1 {
  max-width: 54rem;
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.7rem);
}

.page-hero .lead {
  max-width: 48rem;
  color: #d9edf4;
}

.breadcrumbs {
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.5rem;
  color: #90b5ca;
  content: "/";
}

.breadcrumbs a {
  color: #c8edf0;
}

.breadcrumbs [aria-current="page"] {
  color: var(--white);
}

.content-grid {
  display: grid;
  align-items: start;
  gap: 2rem;
}

.content-card {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.sidebar {
  display: grid;
  gap: 1rem;
}

.sidebar-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.sidebar-card h2,
.sidebar-card h3 {
  color: var(--white);
}

.sidebar-card a:not(.button) {
  color: #c9f6f7;
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.rate-card {
  min-width: 0;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.rate-card h3 {
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 950;
}

.rate {
  margin: 0.25rem 0;
  color: var(--navy);
  font-size: 1.6rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.rate span {
  color: var(--ink-soft);
  font-size: 0.85rem;
  letter-spacing: 0;
}

.timeline {
  counter-reset: steps;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  position: relative;
  min-height: 4.2rem;
  padding: 0 0 1.5rem 4rem;
}

.timeline li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 2.9rem;
  height: 2.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--coral);
  content: counter(steps);
  counter-increment: steps;
  font-weight: 950;
}

.timeline li:not(:last-child)::after {
  position: absolute;
  top: 2.9rem;
  bottom: 0;
  left: 1.43rem;
  width: 2px;
  background: var(--line);
  content: "";
}

.timeline h3 {
  margin-bottom: 0.35rem;
  font-family: inherit;
  font-size: 1.05rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 1rem 1.1rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

summary {
  position: relative;
  padding: 1rem 3.25rem 1rem 1.15rem;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  color: var(--coral);
  content: "+";
  font-size: 1.5rem;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "−";
}

.detail-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--ink-soft);
}

.detail-body p:last-child {
  margin: 0;
}

.post-list {
  display: grid;
  gap: 1rem;
}

.post-card {
  display: grid;
  min-width: 0;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.post-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
}

.post-card a {
  text-decoration: none;
}

.post-card .card-link {
  align-self: end;
}

.article-body {
  max-width: 49rem;
  color: #243f55;
  font-size: 1.06rem;
}

.article-body h2 {
  margin-top: 2.6rem;
  font-size: clamp(1.7rem, 3.6vw, 2.45rem);
}

.article-body h3 {
  margin-top: 2rem;
}

.article-body li {
  margin-block: 0.5rem;
}

.article-body a {
  font-weight: 750;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin: -0.3rem 0 1.5rem;
  color: #c7dce7;
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.legend {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #9fb3c1;
  border-radius: 0.55rem;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  outline: 0.2rem solid rgba(10, 155, 168, 0.24);
  outline-offset: 0;
}

.required {
  color: var(--coral-dark);
}

.checkbox-row {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.65rem;
  align-items: start;
}

.checkbox-row input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.25rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 1.7rem;
  margin: 0;
  color: var(--success);
  font-weight: 800;
}

.form-status.is-error {
  color: #a32626;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 0.1rem;
}

.contact-list strong {
  color: var(--ink);
}

.contact-list a {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 0.8rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--white);
  background: var(--navy);
}

tr:last-child td {
  border-bottom: 0;
}

.cta-band {
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 10%, rgba(10, 155, 168, 0.9), transparent 22rem),
    var(--navy-deep);
  box-shadow: var(--shadow-lg);
}

.cta-band-inner {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.8rem, 5vw, 3.4rem);
}

.cta-band h2 {
  max-width: 45rem;
  margin-bottom: 0.7rem;
  color: var(--white);
}

.cta-band p {
  max-width: 43rem;
  margin-bottom: 0;
  color: #d3e9f1;
}

.site-footer {
  padding: 4rem 0 5.7rem;
  color: #c9dce7;
  background: #031f3e;
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand .brand-service {
  color: #78dfe4;
}

.footer-brand p {
  max-width: 29rem;
}

.site-footer h2 {
  margin-bottom: 0.9rem;
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.site-footer li {
  margin-block: 0.45rem;
}

.site-footer a {
  color: #d8edf3;
  text-decoration: none;
}

.site-footer a:hover {
  color: #77e1e5;
}

.site-footer address {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  justify-content: space-between;
  gap: 0.8rem 2rem;
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.mobile-actions {
  position: fixed;
  z-index: 90;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.55rem max(0.55rem, env(safe-area-inset-right)) max(0.55rem, env(safe-area-inset-bottom)) max(0.55rem, env(safe-area-inset-left));
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -8px 22px rgba(5, 43, 89, 0.12);
}

.mobile-actions a {
  min-height: 2.8rem;
  font-size: 0.92rem;
}

.error-page {
  display: grid;
  min-height: 66vh;
  place-items: center;
  padding-block: 4rem;
  text-align: center;
}

.error-code {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--aqua);
  font-size: clamp(4rem, 18vw, 9rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

@media (min-width: 42rem) {
  .card-grid-2,
  .post-list,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .footer-grid {
    grid-template-columns: minmax(0, 1.8fr) repeat(2, minmax(10rem, 1fr));
  }

  .cta-band-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 54rem) {
  .topbar .container {
    min-height: 2.35rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    visibility: visible;
    overflow: visible;
    padding: 0;
    background: transparent;
    opacity: 1;
    transform: none;
  }

  .site-nav ul {
    display: flex;
    max-width: none;
    align-items: center;
    gap: clamp(0.6rem, 1.2vw, 1.1rem);
  }

  .site-nav a {
    position: relative;
    min-height: 2.75rem;
    border: 0;
    font-size: 0.87rem;
  }

  .site-nav a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 0.2rem;
    left: 0;
    height: 0.14rem;
    border-radius: 999px;
    background: var(--coral);
    content: "";
    opacity: 0;
    transform: scaleX(0.3);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav .nav-cta {
    min-height: 2.7rem;
    margin: 0 0 0 0.25rem;
    padding: 0.5rem 1rem;
    color: var(--white);
  }

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

  .trust-item,
  .trust-item:nth-child(2n) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .trust-item:last-child {
    border-right: 0;
  }

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

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

  .split.reverse .media-frame {
    order: 2;
  }

  .content-grid {
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 20rem);
    gap: clamp(2rem, 5vw, 4rem);
  }

  .sidebar {
    position: sticky;
    top: 7rem;
  }

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

  .gallery-item:first-child {
    grid-column: span 2;
  }

  .gallery-item:first-child img {
    aspect-ratio: 2 / 1;
  }
}

@media (min-width: 70rem) {
  .brand-name {
    font-size: 1.2rem;
  }

  .site-nav a {
    font-size: 0.93rem;
  }

  .trust-item {
    padding: 1.3rem 1.45rem;
  }

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

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

@media (max-width: 31rem) {
  .topbar p {
    display: none;
  }

  .topbar .container {
    justify-content: center;
  }

  .brand-service {
    letter-spacing: 0.06em;
  }

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

  .button-row {
    display: grid;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .topbar,
  .site-header,
  .mobile-actions,
  .site-footer,
  .button-row {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
  }
}
