:root {
  --ink: #17303d;
  --muted: #5f7480;
  --blue-950: #0b3046;
  --blue-900: #174a67;
  --blue-700: #287a9a;
  --blue-500: #54b6d2;
  --blue-100: #dceef5;
  --blue-50: #eef7fa;
  --white: #ffffff;
  --line: #cfe1e8;
  --success: #176a54;
  --shadow: 0 22px 55px rgba(11, 48, 70, 0.13);
  --shadow-soft: 0 12px 30px rgba(11, 48, 70, 0.07);
  --radius-sm: 4px;
  --radius: 7px;
  --radius-lg: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fbfc;
  font-family: "Libre Franklin", 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;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-950);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
  border-bottom: 1px solid rgba(207, 225, 232, 0.78);
  background: rgba(248, 251, 252, 0.94);
  backdrop-filter: blur(16px);
}

.admin-bar .site-header {
  top: 32px;
}

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

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

.brand-symbol {
  width: 48px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
}

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

.brand-copy strong {
  font: 700 1.02rem/1.1 "Libre Franklin", sans-serif;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  color: #34515f;
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--blue-700);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.language-switcher a,
.language-switcher span {
  min-width: 36px;
  padding: 5px 8px;
  border-radius: 2px;
  font-size: 0.77rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.language-switcher span {
  color: var(--blue-900);
  background: var(--blue-100);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--white);
  cursor: pointer;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue-900);
  box-shadow: 0 12px 26px rgba(23, 74, 103, 0.2);
}

.button-primary:hover {
  background: var(--blue-950);
}

.button-light {
  color: var(--blue-950);
  background: var(--white);
}

.button-ghost {
  color: var(--blue-900);
  border-color: var(--line);
  background: transparent;
}

.hero-actions .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 750;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--blue-950);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -80px 0;
  z-index: -3;
  background: var(--hero-poster) center 58% / cover no-repeat;
  filter: saturate(0.78) contrast(1.05);
  transform: translate3d(0, var(--section-parallax, 0), 0);
  will-change: transform;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  opacity: 0;
  filter: saturate(0.78) contrast(1.05);
  transition: opacity 700ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-video-toggle {
  position: absolute;
  z-index: 2;
  inset-inline-start: max(20px, calc((100vw - var(--container)) / 2));
  inset-block-end: 18px;
  min-height: 38px;
  padding: 7px 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: var(--white);
  background: rgba(6, 35, 52, 0.66);
  backdrop-filter: blur(8px);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.hero-video-toggle[hidden] {
  display: none;
}

.hero-video-toggle::before {
  content: "";
  width: 8px;
  height: 10px;
  border-inline: 2px solid currentColor;
}

.hero-video-toggle.is-paused::before {
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-inline-start: 8px solid currentColor;
  border-inline-end: 0;
}

.hero-video-toggle:hover {
  background: rgba(6, 35, 52, 0.84);
}

.hero-video-toggle:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(6, 35, 52, 0.9) 0%, rgba(8, 41, 59, 0.78) 56%, rgba(8, 41, 59, 0.54) 100%);
}

.hero-grid {
  padding-block: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9edff0;
}

.hero h1,
.page-hero h1,
.service-hero h1 {
  margin: 0;
  font: 600 clamp(2.9rem, 6.2vw, 5.8rem)/1.01 Lora, Georgia, serif;
  letter-spacing: -0.045em;
}

.hero-subtitle {
  max-width: 610px;
  margin: 28px 0 0;
  color: #e4f2f7;
  font: 500 clamp(1.25rem, 2vw, 1.7rem)/1.4 Lora, Georgia, serif;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #d3e8f0;
  font-size: 0.94rem;
}

.hero-note span:first-child {
  width: 42px;
  height: 1px;
  background: var(--blue-500);
}

.service-landing-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--blue-950);
}

.service-landing-hero::before {
  content: "";
  position: absolute;
  inset: -80px 0;
  z-index: -2;
  background-image: var(--service-hero-image);
  background-position: var(--service-hero-position, center);
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.72) contrast(1.06);
  transform: translate3d(0, var(--section-parallax, 0), 0);
  will-change: transform;
}

.service-landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(6, 35, 52, 0.94) 0%, rgba(8, 41, 59, 0.82) 54%, rgba(8, 41, 59, 0.58) 100%);
}

.service-landing-grid {
  padding-block: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.service-landing-copy {
  min-width: 0;
  max-width: 700px;
}

.service-landing-copy .text-link {
  margin-bottom: 26px;
  color: #b8e8f3;
}

.service-landing-copy h1 {
  margin: 0;
  max-width: 100%;
  font: 600 clamp(2.8rem, 4.7vw, 4.75rem)/1.02 Lora, Georgia, serif;
  letter-spacing: -0.045em;
}

.service-landing-copy > p {
  max-width: 680px;
  margin: 26px 0 0;
  color: #e2f0f5;
  font-size: 1.1rem;
}

.service-hero-price {
  max-width: 560px;
  margin-top: 30px;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  border-left: 2px solid var(--blue-500);
}

.service-hero-price span {
  font: 600 1.25rem/1.2 Lora, Georgia, serif;
}

.service-hero-price small {
  color: #cee4ec;
  font-size: 0.84rem;
  line-height: 1.5;
}

.contact-card {
  padding: clamp(26px, 3vw, 38px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.985);
  border: 0;
  border-top: 5px solid var(--blue-500);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0;
  font: 600 clamp(1.6rem, 2.5vw, 2.15rem)/1.18 Lora, Georgia, serif;
  letter-spacing: -0.025em;
}

.contact-card > p:not(.eyebrow):not(.form-status) {
  margin: 10px 0 22px;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}

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

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

.field label,
.checkbox-field {
  font-size: 0.86rem;
  font-weight: 700;
}

.field label {
  display: grid;
  gap: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  border: 1px solid #bfd4dd;
  border-radius: 2px;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #83aebe;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(38, 135, 169, 0.14);
  outline: 0;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #405c68;
  line-height: 1.4;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--blue-900);
}

.contact-card .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-card .button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.contact-card-compact .form-grid {
  grid-template-columns: 1fr;
}

.form-footnote,
.form-status {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.form-status {
  padding: 10px 12px;
  color: var(--success);
  background: #eaf7f1;
  border-radius: 10px;
}

.section {
  padding-block: clamp(76px, 9vw, 122px);
}

.section-tight {
  padding-block: 64px;
}

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

.section-blue {
  color: var(--white);
  background: var(--blue-950);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.profile-copy h2,
.final-cta h2 {
  margin: 0;
  font: 600 clamp(2rem, 4vw, 3.65rem)/1.1 Lora, Georgia, serif;
  letter-spacing: -0.035em;
}

.section-heading > p:not(.eyebrow),
.profile-copy > p,
.final-cta p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  align-items: center;
  gap: clamp(44px, 8vw, 100px);
}

.profile-frame {
  position: relative;
  max-width: 430px;
  margin-inline: auto;
}

.profile-frame::before {
  content: "";
  position: absolute;
  inset: 20px -22px -20px 28px;
  z-index: 0;
  border-radius: 2px;
  background: var(--blue-100);
}

.profile-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}

.profile-copy {
  max-width: 680px;
}

.location-pill {
  width: fit-content;
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 12px 18px;
  color: var(--blue-950);
  background: transparent;
  border-left: 3px solid var(--blue-500);
  font-size: 0.91rem;
}

.location-pill strong {
  color: var(--blue-700);
}

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

.services-cluster + .services-cluster {
  margin-top: clamp(64px, 8vw, 96px);
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--line);
}

.services-cluster-title {
  margin: 0 0 30px;
  color: var(--blue-950);
  font: 600 clamp(1.65rem, 3vw, 2.4rem)/1.15 Lora, Georgia, serif;
  letter-spacing: -0.035em;
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
  grid-column: span 4;
  border: 0;
  border-top: 1px solid var(--blue-700);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
}

.service-card.featured {
  border-color: var(--blue-500);
}

.service-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-price {
  margin-top: 28px;
  color: var(--blue-900);
  font: 600 clamp(2rem, 3vw, 2.75rem)/1 Lora, Georgia, serif;
  letter-spacing: -0.05em;
}

.service-card .service-price {
  margin-top: 14px;
  color: var(--muted);
  font: 700 1rem/1.2 "Libre Franklin", sans-serif;
  letter-spacing: 0.02em;
}

.service-price small {
  margin-left: 5px;
  color: var(--muted);
  font: 700 0.8rem/1 "Libre Franklin", sans-serif;
  letter-spacing: 0.04em;
}

.service-card h3 {
  margin: 22px 0 0;
  color: var(--blue-950);
  font: 600 clamp(1.55rem, 2vw, 1.9rem)/1.16 Lora, Georgia, serif;
  letter-spacing: -0.04em;
}

.service-card h3.service-card-title-compact {
  font-size: clamp(1.45rem, 1.75vw, 1.66rem);
  letter-spacing: -0.045em;
}

.service-card-title-compact > span {
  display: block;
  white-space: nowrap;
}

.service-card-title-nowrap {
  white-space: nowrap;
}

.service-card > p {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-preview {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-preview li {
  position: relative;
  margin-top: 10px;
  padding-left: 34px;
  color: #405c68;
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-preview li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--blue-900);
  background: var(--blue-100);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 800;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.section-action {
  margin-top: 38px;
  text-align: center;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 0;
}

.faq-item {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  overflow: clip;
}

.faq-item summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  cursor: pointer;
  font: 600 1rem/1.4 "Libre Franklin", sans-serif;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue-900);
  background: var(--blue-50);
  border-radius: 2px;
  font-size: 1.25rem;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-answer p,
.faq-answer ul {
  margin: 10px 0 0;
}

.faq-answer ul {
  padding-left: 22px;
}

.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding: clamp(34px, 5vw, 60px);
  color: var(--white);
  background: var(--blue-900);
  border-radius: var(--radius);
  box-shadow: none;
}

.final-cta p {
  color: #dcecf2;
}

.page-hero,
.service-hero {
  padding-block: clamp(72px, 10vw, 124px);
  color: var(--white);
  background: var(--blue-950);
}

.page-image-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.page-image-hero::before {
  content: "";
  position: absolute;
  inset: -80px 0;
  z-index: -2;
  background: var(--page-hero-image) var(--page-hero-position, center) / cover no-repeat;
  filter: saturate(0.72) contrast(1.06);
  transform: translate3d(0, var(--section-parallax, 0), 0);
  will-change: transform;
}

.page-image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(6, 35, 52, 0.94) 0%, rgba(8, 41, 59, 0.82) 58%, rgba(8, 41, 59, 0.62) 100%);
}

.page-hero-inner {
  max-width: 850px;
}

.page-hero h1,
.service-hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 5.2rem);
}

.page-hero p,
.service-hero p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #d3e8f0;
  font-size: 1.12rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: clamp(48px, 8vw, 100px);
}

.service-detail h2 {
  margin: 0 0 24px;
  font: 600 2rem/1.15 Lora, Georgia, serif;
  letter-spacing: -0.04em;
}

.included-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
  list-style: none;
}

.included-list li {
  position: relative;
  padding: 14px 0 14px 38px;
  border-bottom: 1px solid var(--line);
}

.included-list li::before {
  content: "✓";
  position: absolute;
  top: 14px;
  left: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--blue-900);
  background: var(--blue-100);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 800;
}

.service-aside {
  position: sticky;
  top: 110px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
}

.service-aside .service-price {
  margin: 0;
}

.service-aside h2 {
  margin: 22px 0 8px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-aside .service-aside-title {
  margin: 4px 0 12px;
  color: var(--blue-950);
  font: 600 1.65rem/1.2 Lora, Georgia, serif;
  letter-spacing: -0.035em;
  text-transform: none;
}

.service-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-aside .button {
  width: 100%;
  margin-top: 22px;
}

.service-note {
  margin-top: 32px;
  padding: 20px 22px;
  border-left: 4px solid var(--blue-500);
  color: #405c68;
  background: var(--blue-50);
  border-radius: 0 12px 12px 0;
}

.comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-wrap:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 4px;
}

.comparison-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table tbody th {
  color: var(--ink);
  font-weight: 650;
}

.comparison-table thead th {
  color: var(--blue-950);
  background: var(--blue-50);
  font-family: "Libre Franklin", sans-serif;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.check {
  color: var(--success);
  font-weight: 800;
}

.dash {
  color: #98aab3;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: clamp(44px, 8vw, 100px);
}

.contact-copy h2 {
  margin: 0;
  font: 600 clamp(2rem, 4vw, 3.25rem)/1.1 Lora, Georgia, serif;
  letter-spacing: -0.05em;
}

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

.contact-links {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contact-links a {
  width: fit-content;
  color: var(--blue-700);
  font-weight: 750;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  width: 42px !important;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #dcecf2 !important;
  border: 1px solid rgba(220, 236, 242, 0.58);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  opacity: 1;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.social-link:hover {
  color: var(--white) !important;
  border-color: var(--blue-500);
  background: rgba(84, 182, 210, 0.18);
  transform: translateY(-2px);
}

.social-link svg {
  width: 21px;
  height: 21px;
}

.social-link > span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.aldo-cf7-form .wpcf7-form-control-wrap {
  display: block;
}

.aldo-cf7-form .form-grid > .field > p,
.aldo-cf7-form .form-grid > .checkbox-field > p,
.aldo-cf7-form .form-grid > .field-full > p {
  margin: 0;
}

.aldo-cf7-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.aldo-cf7-form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.aldo-cf7-form .wpcf7-acceptance input {
  margin-top: 2px;
}

.aldo-cf7-form .field-full > p {
  position: relative;
}

.aldo-cf7-form .wpcf7-spinner {
  position: absolute;
  top: 12px;
  right: 14px;
  margin: 0;
}

.aldo-cf7-form .wpcf7-form.submitting .wpcf7-submit {
  cursor: wait;
  opacity: 0.78;
}

.aldo-cf7-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #a52222;
  font-size: 0.78rem;
  font-weight: 650;
}

.aldo-cf7-form .wpcf7-not-valid {
  border-color: #b84040;
  background: #fffafa;
}

.aldo-cf7-form .wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 12px 14px !important;
  border: 0 !important;
  border-left: 4px solid var(--blue-500) !important;
  background: var(--blue-50);
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.5;
}

.aldo-cf7-form .wpcf7-form.invalid .wpcf7-response-output,
.aldo-cf7-form .wpcf7-form.failed .wpcf7-response-output,
.aldo-cf7-form .wpcf7-form.aborted .wpcf7-response-output,
.aldo-cf7-form .wpcf7-form.spam .wpcf7-response-output {
  border-left-color: #b84040 !important;
  background: #fff3f3;
}

.aldo-cf7-form .wpcf7-form.sent .wpcf7-response-output {
  border-left-color: var(--success) !important;
  background: #eaf7f1;
}

.social-links-labeled {
  margin-top: 8px;
  flex-wrap: wrap;
}

.social-links-labeled .social-link {
  width: auto !important;
  padding-inline: 12px;
  gap: 8px;
}

.social-links-labeled .social-link span {
  font-size: 0.86rem;
}

.testimonials-section {
  background: var(--blue-50);
  border-top: 1px solid var(--line);
}

.testimonials-heading {
  margin-bottom: 42px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.testimonials-heading > div:first-child {
  max-width: 760px;
}

.testimonials-heading h2 {
  margin: 0;
  color: var(--blue-950);
  font: 600 clamp(2rem, 4vw, 3.65rem)/1.1 Lora, Georgia, serif;
  letter-spacing: -0.04em;
}

.testimonials-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.testimonial-arrows {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.testimonial-arrows button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--blue-950);
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.testimonial-arrows button:hover {
  color: var(--white);
  background: var(--blue-900);
  transform: translateY(-2px);
}

.testimonial-arrows svg {
  width: 22px;
  height: 22px;
}

.testimonial-carousel {
  overflow: hidden;
  background: var(--white);
  border-radius: 2px;
  box-shadow: var(--shadow-soft);
}

.testimonial-slide {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}

.testimonial-slide[hidden] {
  display: none;
}

.testimonial-photo {
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--blue-100);
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-slide blockquote {
  min-width: 0;
  margin: 0;
  padding: clamp(34px, 5vw, 66px);
  display: flex;
  flex-direction: column;
}

.testimonial-mark {
  height: 42px;
  color: var(--blue-500);
  font: 600 5.2rem/0.9 Lora, Georgia, serif;
}

.testimonial-quote {
  max-height: 330px;
  margin-top: 18px;
  padding-right: 18px;
  overflow-y: auto;
  scrollbar-color: var(--blue-100) transparent;
  scrollbar-width: thin;
}

.testimonial-quote p {
  margin: 0;
  color: #34515f;
  font: 500 clamp(1.05rem, 1.7vw, 1.28rem)/1.62 Lora, Georgia, serif;
}

.testimonial-quote p + p {
  margin-top: 16px;
}

.testimonial-slide blockquote footer {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  gap: 3px;
  border-top: 1px solid var(--line);
}

.testimonial-slide cite {
  color: var(--blue-950);
  font-style: normal;
  font-weight: 750;
}

.testimonial-slide blockquote footer span {
  color: var(--muted);
  font-size: 0.86rem;
}

.testimonial-pagination {
  min-height: 64px;
  padding: 16px clamp(20px, 3vw, 38px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.testimonial-count {
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.testimonial-dots button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.testimonial-dots button::before {
  content: "";
  width: 20px;
  height: 2px;
  display: block;
  margin: auto;
  background: #acc6d1;
  transition: background 160ms ease, transform 160ms ease;
}

.testimonial-dots button[aria-current="true"]::before {
  background: var(--blue-900);
  transform: scaleX(1.25);
}

.site-footer {
  padding-block: 54px 32px;
  color: #dcecf2;
  background: #08293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 42px;
}

.site-footer .brand {
  color: var(--white);
}

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

.site-footer .brand-copy small,
.site-footer p,
.site-footer small {
  color: #a9c5d1;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font: 700 0.9rem/1.2 "Libre Franklin", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  width: fit-content;
  color: #dcecf2;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(207, 225, 232, 0.16);
}

.photo-credit {
  font-size: 0.73rem;
}

@media (min-width: 1021px) {
  .hero-grid {
    padding-block: 44px;
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.76fr);
    gap: clamp(36px, 5vw, 72px);
  }

  .contact-card-compact {
    padding: 22px 24px 24px;
  }

  .contact-card-compact > .eyebrow,
  .contact-card-compact > p:not(.form-status) {
    display: none;
  }

  .contact-card-compact h2 {
    margin-bottom: 16px;
    font-size: 1.45rem;
  }

  .contact-card-compact .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 11px 12px;
  }

  .contact-card-compact .field label,
  .contact-card-compact .checkbox-field {
    font-size: 0.78rem;
  }

  .contact-card-compact .field label {
    gap: 5px;
  }

  .contact-card-compact .field input,
  .contact-card-compact .field select {
    min-height: 42px;
    height: 42px;
    padding: 8px 10px;
  }

  .contact-card-compact .field textarea {
    min-height: 78px;
    height: 78px;
    padding: 9px 10px;
  }

  .contact-card-compact .checkbox-field,
  .contact-card-compact .wpcf7-acceptance label {
    gap: 8px;
    line-height: 1.3;
  }

  .contact-card-compact .checkbox-field input,
  .contact-card-compact .wpcf7-acceptance input {
    width: 16px;
    height: 16px;
  }

  .contact-card-compact .button {
    min-height: 42px;
    padding-block: 9px;
  }

  .contact-card-compact .wpcf7-not-valid-tip {
    margin-top: 3px;
    font-size: 0.72rem;
  }

  .contact-card-compact .wpcf7-response-output {
    margin-top: 10px !important;
    padding: 9px 11px !important;
  }
}

@media (max-width: 1020px) {
  .hero-video,
  .hero-video-toggle {
    display: none !important;
  }

  .desktop-nav,
  .header-actions > .button {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .desktop-nav.is-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 20;
    min-height: calc(100vh - 78px);
    min-height: calc(100dvh - 78px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px 20px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-top: 1px solid var(--line);
    background: #f8fbfc;
    box-shadow: 0 24px 42px rgba(11, 48, 70, 0.2);
  }

  .desktop-nav.is-open a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--blue-950);
    font-size: 1.1rem;
  }

  .menu-toggle[aria-expanded="true"] {
    color: var(--white);
    border-color: var(--blue-900);
    background: var(--blue-900);
  }

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

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

  .hero-copy {
    max-width: 760px;
  }

  .contact-card {
    max-width: 720px;
  }

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

  .service-card {
    grid-column: auto;
    display: flex;
  }

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

  .service-aside {
    position: static;
  }

  .testimonial-slide {
    grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  }
}

@media (max-width: 760px) {
  .admin-bar .site-header {
    top: 46px;
  }
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-symbol {
    width: 42px;
    height: 46px;
  }

  .desktop-nav.is-open {
    min-height: calc(100vh - 70px);
    min-height: calc(100dvh - 70px);
  }

  .hero {
    min-height: auto;
  }

  .service-landing-hero {
    min-height: auto;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(6, 35, 52, 0.94) 0%, rgba(13, 55, 78, 0.78) 52%, rgba(13, 55, 78, 0.86) 100%);
  }

  .service-landing-hero::after {
    background: linear-gradient(180deg, rgba(6, 35, 52, 0.95) 0%, rgba(13, 55, 78, 0.78) 48%, rgba(13, 55, 78, 0.9) 100%);
  }

  .page-image-hero::after {
    background: linear-gradient(180deg, rgba(6, 35, 52, 0.95) 0%, rgba(13, 55, 78, 0.76) 55%, rgba(13, 55, 78, 0.88) 100%);
  }

  .service-landing-grid {
    padding-block: 58px;
    gap: 46px;
  }

  .service-landing-copy h1 {
    font-size: clamp(2.55rem, 12vw, 4.15rem);
  }

  .hero-grid {
    padding-block: 58px;
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .form-grid,
  .profile-grid,
  .services-grid,
  .final-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .profile-frame {
    width: min(82%, 360px);
  }

  .service-card {
    padding: 24px;
  }

  .final-cta {
    text-align: left;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .testimonials-heading {
    align-items: flex-start;
  }

  .testimonial-slide {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .testimonial-photo {
    min-height: 0;
  }

  .testimonial-photo img {
    aspect-ratio: 4 / 3;
    object-position: center 38%;
  }

  .testimonial-quote {
    max-height: none;
    padding-right: 0;
    overflow: visible;
  }

  .testimonial-dots {
    gap: 2px;
  }

  .testimonial-dots button {
    width: 22px;
  }

  .testimonial-dots button::before {
    width: 14px;
  }
}

@media (max-width: 520px) {
  .testimonials-heading {
    display: grid;
  }

  .testimonial-arrows {
    justify-self: end;
  }

  .testimonial-pagination {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

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

  .hero::before {
    inset: 0;
    transform: none;
    will-change: auto;
  }

  .hero-video,
  .hero-video-toggle {
    display: none !important;
  }

  .service-landing-hero::before {
    inset: 0;
    transform: none;
    will-change: auto;
  }

  .page-image-hero::before {
    inset: 0;
    transform: none;
    will-change: auto;
  }
}
