:root {
  --brand: #133250;
  --brand-dark: #081d31;
  --brand-soft: #edf5f8;
  --accent: #108f87;
  --accent-dark: #0a6e69;
  --signal: #b8d43a;
  --ink: #172330;
  --muted: #65717c;
  --paper: #ffffff;
  --mist: #f7fafb;
  --line: #d9e5ea;
  --shadow: 0 22px 55px rgba(19, 50, 80, 0.13);
  --radius: 8px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: only light;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfcfd 0%, #f4f8fa 100%);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-tap-highlight-color: rgba(16, 143, 135, 0.16);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Manrope", "Segoe UI", Arial, sans-serif;
}

p {
  color: var(--muted);
  text-wrap: pretty;
}

ul {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.35rem;
}

li {
  overflow-wrap: break-word;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: #ffffff;
  background: var(--brand);
  border-radius: var(--radius);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  color-scheme: only light;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 229, 235, 0.9);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: fit-content;
  padding: 0.32rem 0.58rem 0.32rem 0.38rem;
  color-scheme: only light;
  color: var(--brand);
  background: #ffffff;
  border: 1px solid rgba(19, 50, 80, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(8, 29, 49, 0.06);
}

.brand-emblem {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--brand);
  color-scheme: only light;
  background:
    linear-gradient(150deg, #ffffff 0%, #edf5f8 64%, #dcebef 100%);
  border: 1px solid rgba(19, 50, 80, 0.16);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.brand-emblem::before {
  content: "A";
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 1.22rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-emblem::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 9px;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: -8px 4px 0 -1px currentColor, 7px 4px 0 -1px currentColor;
}

.brand-text {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
  white-space: normal;
}

.brand-text strong {
  display: block;
  color: var(--brand);
  font-size: 1.12rem;
  line-height: 1.1;
  font-weight: 800;
}

.brand-text small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.15;
  font-weight: 700;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.site-nav a {
  color: #2b4051;
  font-size: 0.95rem;
  font-weight: 750;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--brand);
  border-bottom-color: var(--accent);
}

.header-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.header-call,
.btn-primary {
  color: #ffffff;
  background: var(--accent);
}

.header-call:hover,
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--brand);
  background: #ffffff;
  border-color: rgba(19, 50, 80, 0.18);
}

.btn-secondary:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-whatsapp {
  gap: 0.5rem;
  color: #ffffff;
  background: #1f9f63;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-whatsapp:hover {
  background: #168851;
  transform: translateY(-1px);
}

.nav-toggle {
  display: block;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--brand);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: max(560px, calc(88svh - var(--header-height)));
  color: #ffffff;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.hero-signature {
  background:
    radial-gradient(circle at 74% 35%, rgba(16, 143, 135, 0.34), transparent 22rem),
    radial-gradient(circle at 88% 84%, rgba(184, 212, 58, 0.18), transparent 18rem),
    linear-gradient(135deg, #04121f 0%, #081d31 44%, #133250 100%);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  height: 5px;
  background: linear-gradient(90deg, var(--signal), var(--accent), rgba(255, 255, 255, 0));
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 16, 29, 0.99) 0%, rgba(4, 16, 29, 0.9) 45%, rgba(4, 16, 29, 0.34) 100%),
    linear-gradient(0deg, rgba(4, 16, 29, 0.7), rgba(8, 29, 49, 0.04)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 92px);
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.03);
  transform: scale(1.004);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 32px));
  min-width: 0;
  margin: 0 auto;
  padding: 4rem 0;
}

.hero-content {
  min-width: 0;
  max-width: 660px;
  animation: rise-in 600ms ease both;
}

.hero-media {
  object-position: center center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #e9fbf7;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--signal);
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  color: inherit;
  font-size: 3.25rem;
  line-height: 1.04;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.hero p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.social-actions {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  min-width: 0;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.58rem 0.72rem;
  color: var(--brand);
  background: #ffffff;
  border: 1px solid rgba(19, 50, 80, 0.12);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-link:hover {
  border-color: rgba(16, 143, 135, 0.42);
  transform: translateY(-1px);
}

.contact-social {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  margin-top: 0.75rem;
}

.contact-social .social-link,
.footer-social .social-link {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
}

.hero-proof span {
  min-width: 0;
  overflow-wrap: break-word;
}

.hero-proof span + span {
  padding-left: 0.9rem;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.signal-rail {
  color: #ffffff;
  background: var(--brand-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(19, 50, 80, 0.18);
}

.signal-rail-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-rail-inner div {
  min-width: 0;
  padding: 1rem 1.1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-rail-inner div:first-child {
  background: linear-gradient(135deg, rgba(16, 143, 135, 0.22), rgba(184, 212, 58, 0.12));
}

.signal-rail-inner div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-rail strong,
.signal-rail span {
  display: block;
}

.signal-rail strong {
  overflow-wrap: anywhere;
  color: #ffffff;
  font-family: "Space Grotesk", "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.signal-rail span {
  margin-top: 0.18rem;
  color: #cfe0e7;
  font-size: 0.88rem;
}

.section {
  padding: 5rem 0;
}

.section-compact {
  padding: 3.5rem 0;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(237, 245, 248, 0.62), rgba(247, 250, 251, 0.88));
}

.container {
  width: min(1180px, calc(100% - 32px));
  min-width: 0;
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.7fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.section-heading > *,
.services-grid > *,
.proof-grid > *,
.local-grid > *,
.faq-grid > *,
.legal-grid > *,
.work-grid > *,
.steps > * {
  min-width: 0;
}

.section-heading h2,
.content h2 {
  color: var(--brand);
  font-size: 2.25rem;
  line-height: 1.12;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.section-heading p {
  margin-bottom: 0;
}

.section > .container > h2 {
  max-width: 720px;
  color: var(--brand);
  font-size: 2.1rem;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.services-grid,
.proof-grid,
.local-grid,
.faq-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.proof-item,
.local-item,
.faq-item,
.legal-box {
  min-width: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 10px 24px rgba(19, 50, 80, 0.055);
}

.service-card {
  position: relative;
  display: grid;
  gap: 0.8rem;
  min-height: 100%;
  overflow: hidden;
  container-type: inline-size;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card p,
.local-item p {
  margin-bottom: 0;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--signal), rgba(184, 212, 58, 0));
  transform: scaleX(0.28);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.5);
  box-shadow: var(--shadow);
}

.local-item[href] {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.local-item[href]:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: var(--shadow);
}

.service-card:focus-visible,
.local-item:focus-visible {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  background: var(--brand-soft);
  border-radius: var(--radius);
  font-size: 1.35rem;
}

.service-card-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.78rem;
}

.service-card-heading h3 {
  margin-bottom: 0;
}

.service-card .text-link,
.local-item .text-link {
  align-self: end;
  margin-top: auto;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
}

.work-shot {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brand-soft);
  box-shadow: var(--shadow);
}

.work-shot:first-child {
  grid-row: span 2;
  min-height: 540px;
}

.work-shot img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.work-poster {
  background: var(--brand-dark);
}

.work-poster img {
  object-fit: contain;
  padding: 0;
  background: var(--brand-dark);
}

.work-shot:hover img {
  transform: scale(1.035);
}

.work-shot figcaption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  padding: 0.75rem 0.85rem;
  color: #ffffff;
  background: rgba(8, 29, 49, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.brand-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  color: var(--brand);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(19, 50, 80, 0.045);
}

.service-card h3,
.proof-item h3,
.local-item h3,
.faq-item h3,
.legal-box h2,
.content h3 {
  color: var(--brand);
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.service-card .service-card-heading h3 {
  margin-bottom: 0;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.media-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--brand-soft);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.content {
  width: 100%;
  min-width: 0;
  max-width: 720px;
}

.content > *:last-child,
.side-panel > *:last-child,
.legal-box > *:last-child,
.proof-item > *:last-child,
.faq-item > *:last-child,
.service-card > *:last-child,
.local-item > *:last-child {
  margin-bottom: 0;
}

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

.content p + h3,
.side-panel p + h3 {
  margin-top: 1.9rem;
}

.side-panel .btn + h3,
.side-panel .social-actions + h3 {
  margin-top: 1.2rem;
}

.content .check-list + h3,
.content .plain-list + h3,
.side-panel .check-list + h3,
.side-panel .plain-list + h3 {
  margin-top: 1.65rem;
}

.content .check-list + p,
.content .plain-list + p {
  margin-top: 1.2rem;
}

.check-list li,
.plain-list li {
  position: relative;
  min-width: 0;
  padding-left: 1.7rem;
  color: var(--muted);
}

.side-panel .plain-list {
  margin-top: 0.72rem;
}

.side-panel .plain-list li + li {
  margin-top: 0.18rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--signal));
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.8rem;
  height: 2px;
  background: var(--accent);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cta-band {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(8, 29, 49, 0.98), rgba(19, 50, 80, 0.94)),
    var(--brand);
}

.cta-band .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
}

.cta-band h2 {
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.reviews-section {
  background:
    linear-gradient(135deg, rgba(237, 245, 248, 0.8), rgba(255, 255, 255, 0.94));
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(300px, 0.58fr);
  gap: 2rem;
  align-items: center;
}

.reviews-panel {
  min-width: 0;
  padding: 1.4rem;
  background: #ffffff;
  border: 1px solid rgba(19, 50, 80, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: baseline;
  justify-content: space-between;
}

.reviews-score {
  color: var(--brand);
  font-family: "Space Grotesk", "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
}

.reviews-count {
  color: var(--muted);
  font-weight: 750;
}

.reviews-stars {
  margin-top: 0.4rem;
  color: #f6b73c;
  letter-spacing: 0.08em;
}

.reviews-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.review-item {
  min-width: 0;
  padding: 0.95rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-item p {
  margin-bottom: 0;
}

.review-author {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  align-items: center;
  margin-bottom: 0.35rem;
  color: var(--brand);
  font-weight: 800;
}

.review-author span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.reviews-mini {
  margin-top: 1rem;
  padding: 0.85rem;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reviews-mini strong,
.reviews-mini span {
  display: block;
}

.reviews-mini strong {
  color: var(--brand);
  font-family: "Space Grotesk", "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 1.25rem;
}

.reviews-mini span {
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: var(--brand);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 29, 49, 0.94), rgba(8, 29, 49, 0.66), rgba(8, 29, 49, 0.22));
}

.page-hero-inner {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 32px));
  min-height: 330px;
  margin: 0 auto;
  padding: 4.5rem 0;
  display: grid;
  align-items: end;
}

.page-hero-inner > div {
  max-width: min(100%, 760px);
}

.page-hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.breadcrumb {
  margin-bottom: 1rem;
  color: #cce8e5;
  font-weight: 700;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(280px, 0.36fr);
  gap: 3rem;
  align-items: start;
}

.two-column > *,
.media-split > *,
.form-layout > *,
.cta-band .container > * {
  min-width: 0;
}

.side-panel {
  position: sticky;
  min-width: 0;
  top: calc(var(--header-height) + 1rem);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 14px 34px rgba(19, 50, 80, 0.08);
}

.side-panel h2,
.side-panel h3 {
  color: var(--brand);
}

.side-panel .btn {
  width: 100%;
  margin-top: 0.7rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
  margin-top: 2rem;
}

.step {
  position: relative;
  padding-top: 3rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-radius: var(--radius);
  font-weight: 800;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.38fr);
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  min-width: 0;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  min-width: 0;
  gap: 0.35rem;
}

.field label {
  color: var(--brand);
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #cfd9df;
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
}

.field textarea {
  min-width: 0;
  min-height: 150px;
  resize: vertical;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-status {
  min-height: 1.4rem;
  font-weight: 700;
}

.form-status.is-error {
  color: #9b2f2f;
}

.form-status.is-success {
  color: var(--accent-dark);
}

.site-footer {
  color: #d8e6ee;
  background: var(--brand-dark);
}

.site-footer .brand {
  padding: 0.35rem 0.55rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: none;
}

.site-footer .brand-emblem {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-social {
  margin-top: 0.9rem;
}

.site-footer .social-link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.site-footer .social-link:hover {
  background: rgba(255, 255, 255, 0.14);
  text-decoration: none;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(150px, 0.45fr));
  gap: 2rem;
}

.footer-inner > * {
  min-width: 0;
}

.site-footer .brand-text strong,
.site-footer h2,
.site-footer h3 {
  color: #ffffff;
}

.site-footer .brand-text small,
.site-footer p,
.site-footer a,
.site-footer li {
  color: #d8e6ee;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #bfd2dd;
  font-size: 0.92rem;
}

.mobile-call {
  display: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.js-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 450ms ease, transform 450ms ease;
}

body.js-enabled [data-reveal].is-visible,
[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  .header-inner {
    width: min(100% - 24px, 1180px);
  }

  .nav-toggle {
    display: block;
    margin-left: 0;
  }

.site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    margin: 0;
    padding: 1.2rem;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    overscroll-behavior: contain;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .header-call {
    margin-left: auto;
  }

  .section-heading,
  .media-split,
  .two-column,
  .form-layout,
  .reviews-layout,
  .cta-band .container {
    grid-template-columns: 1fr;
  }

  .signal-rail-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid,
  .proof-grid,
  .local-grid,
  .faq-grid,
  .legal-grid,
  .work-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-shot:first-child {
    grid-row: auto;
    min-height: 300px;
  }

  .side-panel {
    position: static;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }

  .header-inner {
    gap: 0.6rem;
  }

  .brand-text small {
    display: none;
  }

  .header-call {
    display: none;
  }

  .nav-toggle {
    position: absolute;
    top: calc((var(--header-height) - 44px) / 2);
    right: 0;
    z-index: 2;
    display: block !important;
    flex: 0 0 44px;
    margin-left: auto;
    border-color: rgba(19, 50, 80, 0.18);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(8, 29, 49, 0.08);
  }

  .hero {
    min-height: max(540px, calc(80svh - var(--header-height)));
  }

  .hero-inner,
  .page-hero-inner {
    width: min(100% - 32px, 1180px);
  }

  .hero-inner {
    padding: 3rem 0 2.6rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.08rem;
  }

  .hero p,
  .page-hero p {
    max-width: min(100%, 33ch);
    font-size: 1rem;
    text-wrap: pretty;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.7rem;
    max-width: 360px;
  }

  .hero-actions .btn {
    width: 100%;
    padding-inline: 0.72rem;
  }

  .hero-actions .btn-outline {
    grid-column: 1 / -1;
  }

  .page-hero p,
  .section-heading p,
  .content > p {
    max-width: 34ch;
    overflow-wrap: anywhere;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    margin-top: 1.2rem;
  }

  .hero-proof span,
  .hero-proof span + span {
    padding-left: 0;
    border-left: 0;
  }

  .signal-rail-inner {
    grid-template-columns: 1fr;
  }

  .signal-rail-inner div,
  .signal-rail-inner div:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-heading h2,
  .content h2,
  .section > .container > h2 {
    font-size: 1.85rem;
  }

  .section-heading {
    margin-bottom: 1.8rem;
  }

  .service-card,
  .proof-item,
  .local-item,
  .faq-item,
  .legal-box,
  .contact-form,
  .side-panel {
    padding: 1.25rem;
  }

  .services-grid,
  .proof-grid,
  .local-grid,
  .faq-grid,
  .legal-grid,
  .work-grid,
  .steps,
  .form-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .work-shot,
  .work-shot:first-child {
    min-height: 260px;
  }

  .media-frame img {
    height: 300px;
  }

  .mobile-call {
    position: fixed;
    z-index: 60;
    left: 16px;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--accent);
    border-radius: var(--radius);
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.26);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  }

  body.has-scrolled .mobile-call {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@container (max-width: 270px) {
  .service-card-heading {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (forced-colors: active) {
  .site-header,
  .brand,
  .brand-emblem,
  .nav-toggle,
  .header-call,
  .btn,
  .mobile-call {
    forced-color-adjust: auto;
  }

  .site-header,
  .brand,
  .nav-toggle {
    background: Canvas;
    color: CanvasText;
    border-color: CanvasText;
    box-shadow: none;
  }

  .brand-emblem {
    background: Canvas;
    color: CanvasText;
    border-color: CanvasText;
    box-shadow: none;
  }

  .brand-emblem::after {
    background: CanvasText;
    box-shadow: -8px 4px 0 -1px CanvasText, 7px 4px 0 -1px CanvasText;
  }

  .brand-text strong,
  .brand-text small,
  .site-footer .brand-text strong,
  .site-footer .brand-text small {
    color: CanvasText;
  }

  .hero::after {
    background: rgba(0, 0, 0, 0.88);
  }
}

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