:root {
  --color-navy: #0d2538;
  --color-navy-dark: #071824;
  --color-green: #2f6f4e;
  --color-green-dark: #204d36;
  --color-white: #ffffff;
  --color-gray-50: #f7f9f8;
  --color-gray-100: #edf2ef;
  --color-gray-200: #dbe4df;
  --color-gray-300: #c2cec8;
  --color-gray-700: #4c5b54;
  --color-text: #17241f;
  --color-muted: #5c6a63;
  --color-line: rgba(13, 37, 56, 0.12);
  --color-focus: #f2c94c;
  --container: 1200px;
  --section-space: clamp(4.4rem, 6.5vw, 6.8rem);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-soft: 0 18px 44px rgba(7, 24, 36, 0.08);
  --shadow-strong: 0 26px 68px rgba(7, 24, 36, 0.16);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: #fbfcfb;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--color-focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-navy-dark);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.25rem;
  color: var(--color-white);
  font-size: clamp(2.7rem, 5.4vw, 5.4rem);
  font-weight: 820;
  text-wrap: balance;
}

h2 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3.05rem);
  font-weight: 800;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.17rem;
  font-weight: 780;
}

p {
  margin-bottom: 1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  color: var(--color-white);
  background: var(--color-navy-dark);
  border-radius: 999px;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(13, 37, 56, 0.09);
  box-shadow: 0 10px 28px rgba(7, 24, 36, 0.04);
  backdrop-filter: blur(14px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-navy-dark);
  font-weight: 820;
  text-decoration: none;
}

.brand-mark {
  width: clamp(170px, 19vw, 245px);
  height: auto;
  max-height: 50px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  color: var(--color-gray-700);
  font-size: 0.94rem;
  font-weight: 680;
}

.main-nav a {
  padding-block: 0.2rem;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--color-navy-dark);
}

.main-nav a.is-active {
  position: relative;
}

.main-nav a.is-active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 2px;
  content: "";
  background: var(--color-green);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.22rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 1.05rem;
}

.button-primary {
  color: var(--color-white);
  background: var(--color-green);
  box-shadow: 0 12px 26px rgba(47, 111, 78, 0.2);
}

.button-primary:hover {
  color: var(--color-white);
  background: var(--color-green-dark);
}

.button-secondary {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.button-secondary:hover {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
}

.button-outline {
  color: var(--color-navy-dark);
  background: var(--color-white);
  border-color: var(--color-gray-300);
}

.button-outline:hover {
  background: var(--color-gray-50);
}

.button-disabled,
.button-disabled:hover {
  color: #626c68;
  background: var(--color-gray-100);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.hero {
  position: relative;
  min-height: clamp(640px, 74vh, 820px);
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-navy-dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  filter: saturate(0.86) contrast(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 36, 0.96) 0%, rgba(7, 24, 36, 0.84) 40%, rgba(7, 24, 36, 0.3) 72%, rgba(7, 24, 36, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 24, 36, 0.78), rgba(7, 24, 36, 0.05) 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: clamp(640px, 74vh, 820px);
  padding-block: clamp(5rem, 7vw, 7rem);
}

.hero-content > * {
  max-width: 760px;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.32vw, 1.25rem);
  line-height: 1.66;
}

.hero-note {
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.hero .button-primary {
  min-height: 54px;
  padding-inline: 1.45rem;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.hero .button-secondary {
  min-height: 54px;
}

.page-hero {
  position: relative;
  min-height: clamp(430px, 50vh, 590px);
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-navy-dark);
}

.page-hero-compact {
  min-height: clamp(390px, 48vh, 540px);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.03);
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 24, 36, 0.94), rgba(7, 24, 36, 0.7) 46%, rgba(7, 24, 36, 0.25)),
    linear-gradient(0deg, rgba(7, 24, 36, 0.62), transparent 52%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: inherit;
  padding-block: clamp(4.5rem, 7vw, 6.2rem);
}

.page-hero-content > * {
  max-width: 760px;
}

.page-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 4.5vw, 4.4rem);
}

.page-hero p:not(.eyebrow):not(.breadcrumb) {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.03rem, 1.28vw, 1.2rem);
}

.breadcrumb {
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 720;
}

.breadcrumb a {
  color: var(--color-white);
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--color-green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow,
.map-section .eyebrow {
  color: #a8d7bd;
}

.proof-band {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--container), calc(100% - 2rem));
  margin: -3.2rem auto 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.proof-band div {
  min-height: 124px;
  padding: 1.2rem;
  border-right: 1px solid var(--color-gray-200);
}

.proof-band div:first-child {
  color: var(--color-white);
  background: var(--color-navy-dark);
}

.proof-band div:first-child strong,
.proof-band div:first-child span {
  color: var(--color-white);
}

.proof-band div:first-child span {
  color: rgba(255, 255, 255, 0.75);
}

.proof-band div:last-child {
  border-right: 0;
}

.proof-band strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-navy-dark);
  font-size: 0.96rem;
  line-height: 1.25;
}

.proof-band span {
  display: block;
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.section-tight {
  padding-top: clamp(3.2rem, 5vw, 5rem);
}

.section > .container[id] {
  scroll-margin-top: 96px;
}

.home-intro {
  padding-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.section-soft,
.value-section {
  background:
    radial-gradient(circle at top left, rgba(47, 111, 78, 0.08), transparent 34rem),
    var(--color-gray-50);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  padding-bottom: clamp(1.8rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--color-line);
}

.intro-grid p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2.2rem, 4vw, 3.2rem);
}

.section-heading p,
.trust-grid p,
.about-copy p,
.area-grid p,
.contact-copy p {
  max-width: 66ch;
  color: var(--color-muted);
  font-size: 1.04rem;
}

.image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--color-gray-100);
}

.image-frame img,
.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(7, 24, 36, 0.2), transparent 58%);
  pointer-events: none;
}

.teaser-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 0.9rem;
}

.teaser-card {
  position: relative;
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.25rem;
  color: var(--color-white);
  background: var(--color-navy-dark);
  border-radius: var(--radius-lg);
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 16px 42px rgba(7, 24, 36, 0.09);
}

.teaser-card-large {
  grid-row: span 2;
}

.teaser-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.03);
  transition: transform 220ms ease;
}

.teaser-card:focus-visible {
  outline-offset: 5px;
}

.teaser-card::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(0deg, rgba(7, 24, 36, 0.92), rgba(7, 24, 36, 0.18) 62%),
    linear-gradient(90deg, rgba(47, 111, 78, 0.22), transparent 52%);
}

.teaser-card:hover {
  color: var(--color-white);
}

.teaser-card:hover img {
  transform: scale(1.035);
}

.teaser-card span {
  width: fit-content;
  margin-bottom: 0.55rem;
  padding: 0.32rem 0.58rem;
  color: var(--color-navy-dark);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.teaser-card strong {
  max-width: 26rem;
  font-size: clamp(1.08rem, 1.7vw, 1.45rem);
  line-height: 1.18;
}

.value-grid,
.process-grid,
.thanks-next,
.fit-list {
  display: grid;
  gap: 1rem;
}

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

.value-card,
.process-grid article,
.thanks-next article,
.fit-list article {
  padding: clamp(1.1rem, 2.5vw, 1.45rem);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 38px rgba(7, 24, 36, 0.06);
}

.value-card span,
.process-grid span,
.fit-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 1.85rem;
  margin-bottom: 0.95rem;
  padding: 0.28rem 0.62rem;
  color: var(--color-green-dark);
  background: rgba(47, 111, 78, 0.1);
  border: 1px solid rgba(47, 111, 78, 0.16);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.value-card h3,
.process-grid h3,
.fit-list h3 {
  margin-bottom: 0.5rem;
}

.value-card p,
.process-grid p,
.thanks-next span,
.fit-list p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.fit-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--color-white), #f3f7f5);
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 5vw, 4.4rem);
  align-items: start;
}

.fit-copy {
  position: sticky;
  top: 112px;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--color-navy-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
}

.fit-copy h2 {
  color: var(--color-white);
}

.fit-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.fit-copy .button-outline {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.fit-copy .button-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

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

.fit-list article {
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 248, 0.98));
}

.inline-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.home-local-photo {
  min-height: 390px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.service-feature {
  min-height: 520px;
  border-radius: var(--radius-lg);
}

.service-feature img {
  object-position: 44% center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--color-gray-200);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 1.35rem;
  background: var(--color-white);
}

.service-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding-bottom: 0.35rem;
  color: var(--color-green-dark);
  border-bottom: 2px solid rgba(47, 111, 78, 0.28);
  font-size: 0.82rem;
  font-weight: 780;
}

.service-card p {
  margin-bottom: 1.15rem;
  color: var(--color-muted);
  font-size: 0.96rem;
}

.service-use {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.95rem;
  margin-top: auto;
  border-top: 1px solid var(--color-gray-200);
}

.service-use strong {
  color: var(--color-navy-dark);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-use span {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.service-detail-card {
  scroll-margin-top: 98px;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  padding: clamp(1.3rem, 2.4vw, 1.8rem);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(7, 24, 36, 0.055);
}

.service-detail-card p {
  color: var(--color-muted);
}

.service-detail-card .check-list {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--color-gray-200);
}

.section-trust {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f2f6f3, var(--color-white));
}

.trust-grid,
.about-grid,
.area-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(2rem, 5vw, 4.2rem);
  align-items: center;
}

.trust-stack,
.about-side {
  display: grid;
  gap: 1rem;
}

.trust-facts,
.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.8rem;
  overflow: hidden;
  background: var(--color-gray-200);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
}

.trust-facts div,
.about-highlights div {
  display: grid;
  gap: 0.28rem;
  padding: 0.95rem;
  background: var(--color-white);
}

.trust-facts strong,
.about-highlights strong {
  color: var(--color-green-dark);
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-facts span,
.about-highlights span,
.about-highlights a {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 680;
}

.local-photo {
  height: 320px;
  border-radius: var(--radius-lg);
}

.local-photo img {
  object-position: 52% center;
}

.trust-box {
  padding: 1.45rem;
  color: var(--color-white);
  background: var(--color-navy-dark);
  border-radius: var(--radius-lg);
}

.fact-list,
.check-list {
  display: grid;
  gap: 0.88rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fact-list li,
.check-list li {
  position: relative;
  padding-left: 1.45rem;
}

.fact-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.43em;
  width: 0.55rem;
  height: 0.55rem;
  content: "";
  background: var(--color-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(47, 111, 78, 0.14);
}

.trust-box .check-list li::before {
  background: #a8d7bd;
  box-shadow: 0 0 0 4px rgba(168, 215, 189, 0.13);
}

.about-grid {
  align-items: start;
}

.about-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(180deg, var(--color-white), var(--color-gray-50));
  border: 1px solid var(--color-line);
  border-left: 4px solid var(--color-green);
  border-radius: var(--radius-lg);
}

.about-highlights {
  grid-template-columns: 1fr;
  margin-top: 1.6rem;
}

.about-highlights div {
  grid-template-columns: 105px 1fr;
  align-items: baseline;
}

.about-photo {
  height: 300px;
  border-radius: var(--radius-lg);
}

.about-photo img,
.contact-photo img {
  object-position: 58% center;
}

.info-card {
  padding: 1.45rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  margin-bottom: 1rem;
}

.info-card dl {
  display: grid;
  margin: 0;
}

.info-card div {
  display: grid;
  gap: 0.18rem;
  padding-block: 0.86rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.info-card div:first-child {
  padding-top: 0;
}

.info-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-card dt {
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.info-card dd {
  margin: 0;
  font-weight: 720;
}

.map-section {
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-navy-dark);
}

.map-section h2 {
  color: var(--color-white);
}

.map-section p {
  color: rgba(255, 255, 255, 0.78);
}

.area-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 620px;
  margin-top: 1.6rem;
}

.area-actions {
  margin-top: 1.8rem;
}

.area-tags span {
  display: grid;
  gap: 0.14rem;
  padding: 0.85rem 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.area-tags strong {
  display: block;
  color: var(--color-white);
  font-size: 1rem;
}

.map-card {
  position: relative;
  isolation: isolate;
  min-height: 430px;
  overflow: hidden;
  background: var(--color-navy);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
}

.map-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: saturate(0.82) contrast(1.04);
}

.map-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 24, 36, 0.74), rgba(7, 24, 36, 0.24)),
    linear-gradient(0deg, rgba(7, 24, 36, 0.44), transparent 55%);
}

.map-line {
  position: absolute;
  z-index: 2;
  width: 3px;
  background: rgba(255, 255, 255, 0.34);
  border-radius: 999px;
}

.map-line-main {
  left: 24%;
  top: 13%;
  height: 76%;
  transform: rotate(24deg);
}

.map-line-coast {
  right: 20%;
  top: 7%;
  height: 86%;
  background: rgba(168, 215, 189, 0.44);
  transform: rotate(-4deg);
}

.map-point {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.48rem 0.72rem;
  color: var(--color-navy-dark);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
}

.map-point::before {
  width: 0.58rem;
  height: 0.58rem;
  content: "";
  background: var(--color-green);
  border-radius: 50%;
}

.point-storuman {
  left: 22%;
  top: 38%;
}

.point-lycksele {
  left: 40%;
  top: 59%;
}

.point-inland {
  left: 12%;
  top: 18%;
}

.point-coast {
  right: 13%;
  top: 29%;
}

.contact-section {
  background:
    linear-gradient(180deg, #f4f7f5, var(--color-white));
}

.contact-grid {
  align-items: start;
}

.contact-card {
  max-width: 520px;
  padding: 0;
  margin-top: 1.35rem;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact-priority {
  display: grid;
  gap: 0.25rem;
  padding: 1.2rem 1.25rem;
  color: var(--color-white);
  background: var(--color-navy-dark);
}

.contact-priority span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-priority a {
  color: var(--color-white);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 820;
  line-height: 1.1;
  text-decoration: none;
}

.contact-details {
  padding: 1.15rem 1.25rem;
  color: var(--color-text);
  font-style: normal;
}

.contact-details strong {
  display: inline-block;
  margin-bottom: 0.35rem;
}

.contact-details a {
  font-weight: 760;
}

.next-steps {
  max-width: 560px;
  margin-top: 1.6rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
}

.next-steps .eyebrow {
  margin-bottom: 0.4rem;
}

.next-steps h3 {
  margin-bottom: 1rem;
}

.next-steps ol {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.next-steps li {
  position: relative;
  display: grid;
  gap: 0.12rem;
  padding-left: 1.15rem;
}

.next-steps li::before {
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  background: var(--color-green);
  border-radius: 50%;
}

.next-steps strong {
  color: var(--color-navy-dark);
  font-size: 0.96rem;
}

.next-steps span {
  color: var(--color-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.contact-photo {
  height: 250px;
  margin-top: 1.5rem;
  border-radius: var(--radius-lg);
}

.cta-section {
  background: var(--color-gray-50);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.4rem, 3.5vw, 2.4rem);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.cta-panel h2 {
  margin-bottom: 0.65rem;
}

.cta-panel p {
  max-width: 60ch;
  margin-bottom: 0;
  color: var(--color-muted);
}

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

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 1.85rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 248, 0.98));
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-form .button-primary {
  width: 100%;
}

.form-hp {
  display: none;
}

.thanks-section {
  display: grid;
  min-height: 72vh;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(7, 24, 36, 0.92), rgba(13, 37, 56, 0.76)),
    url("assets/images/kontakt-trygghet.jpg") center / cover;
}

.thanks-card {
  max-width: 850px;
  padding: clamp(1.35rem, 4vw, 2.4rem);
  color: var(--color-white);
  background: rgba(7, 24, 36, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius-lg) + 8px);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}

.thanks-card h1 {
  color: var(--color-white);
  font-size: clamp(2.2rem, 5vw, 4.35rem);
}

.thanks-card p {
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.82);
}

.thanks-next {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.6rem 0;
}

.thanks-next article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.thanks-next strong {
  display: block;
  color: var(--color-white);
}

.thanks-next span {
  color: rgba(255, 255, 255, 0.72);
}

.legal-hero {
  padding-block: clamp(4rem, 8vw, 6.4rem);
  color: var(--color-white);
  background:
    linear-gradient(115deg, rgba(7, 24, 36, 0.94), rgba(13, 37, 56, 0.82)),
    url("assets/images/lokal-forankring.jpg") center / cover;
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 1rem;
  color: var(--color-white);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.legal-hero p:not(.eyebrow):not(.breadcrumb) {
  max-width: 68ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.03rem, 1.35vw, 1.18rem);
}

.legal-section {
  background: linear-gradient(180deg, var(--color-white), var(--color-gray-50));
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.legal-card {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin-top: 2rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  max-width: 72ch;
  color: var(--color-muted);
}

.form-header {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.form-header .eyebrow {
  margin-bottom: 0.45rem;
}

.form-header h3 {
  margin-bottom: 0.55rem;
}

.form-header p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

.form-row {
  display: grid;
  gap: 0.38rem;
}

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

label {
  color: var(--color-navy-dark);
  font-size: 0.94rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.88rem;
  color: var(--color-text);
  background: var(--color-gray-50);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-sm);
  font: inherit;
  transition: border-color 160ms ease, background 160ms ease;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #9eb1a7;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--color-white);
  border-color: var(--color-green);
}

textarea {
  resize: vertical;
}

.form-note {
  padding: 0.85rem 1rem;
  margin: 0;
  color: var(--color-navy-dark);
  background: #f8f3df;
  border: 1px solid #dfcd88;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
}

.site-footer {
  padding-block: 2.7rem;
  color: rgba(255, 255, 255, 0.76);
  background: var(--color-navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
}

.footer-company {
  max-width: 650px;
}

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

.footer-brand {
  margin-bottom: 1rem;
}

.footer-brand img {
  width: min(300px, 78vw);
  height: auto;
  filter: invert(1);
}

.site-footer p {
  margin-bottom: 0.85rem;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  min-width: 190px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: #a8d7bd;
}

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

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

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 1rem;
    padding-block: 0.85rem;
  }

  .brand {
    flex: 1 1 100%;
    justify-content: center;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .proof-band,
  .service-layout,
  .trust-grid,
  .about-grid,
  .area-grid,
  .contact-grid,
  .trust-facts,
  .intro-grid,
  .cta-panel,
  .section-heading,
  .value-grid,
  .process-grid,
  .fit-grid,
  .fit-list {
    grid-template-columns: 1fr;
  }

  .fit-copy {
    position: static;
  }

  .teaser-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .teaser-card-large {
    grid-row: auto;
  }

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

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

  .proof-band {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .proof-band div {
    border-right: 0;
    border-bottom: 1px solid var(--color-gray-200);
  }

  .proof-band div:last-child {
    border-bottom: 0;
  }

  .service-feature {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15.5px;
  }

  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    align-items: stretch;
    justify-content: space-between;
  }

  .brand {
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .brand-mark {
    width: min(205px, 56vw);
    max-height: 48px;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    gap: 0.45rem;
    padding-top: 0.7rem;
    border-top: 1px solid var(--color-gray-100);
  }

  .main-nav a {
    flex: 1 1 calc(50% - 0.45rem);
    min-width: min(12rem, 100%);
    padding: 0.46rem 0.62rem;
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: 999px;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.15;
  }

  .main-nav a.is-active {
    color: var(--color-white);
    background: var(--color-navy-dark);
    border-color: var(--color-navy-dark);
  }

  .main-nav a.is-active::after {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 600px;
  }

  .page-hero,
  .page-hero-compact {
    min-height: 440px;
  }

  .page-hero-content {
    padding-block: 3.8rem;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 2.95rem);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 24, 36, 0.94), rgba(7, 24, 36, 0.66)),
      linear-gradient(0deg, rgba(7, 24, 36, 0.74), transparent 46%);
  }

  .hero-image {
    object-position: 54% center;
  }

  .hero-actions,
  .contact-actions,
  .inline-actions,
  .cta-actions {
    display: grid;
  }

  .section {
    padding-block: clamp(3.2rem, 10vw, 4.35rem);
  }

  .section > .container[id] {
    scroll-margin-top: 12px;
  }

  .proof-band,
  .card-grid,
  .area-tags,
  .thanks-next,
  .fit-list {
    grid-template-columns: 1fr;
  }

  .teaser-card {
    min-height: 270px;
    padding: 1.05rem;
  }

  .service-detail-card {
    min-height: 0;
  }

  .proof-band div {
    min-height: 0;
    padding: 1rem 1.25rem;
  }

  .card-grid {
    gap: 0;
  }

  .service-card {
    min-height: 0;
    padding: 1.2rem;
    border-bottom: 1px solid var(--color-gray-200);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-feature,
  .local-photo,
  .about-photo,
  .contact-photo {
    height: 250px;
    min-height: 0;
  }

  .about-copy,
  .info-card,
  .contact-form,
  .trust-box,
  .value-card,
  .fit-copy,
  .fit-list article,
  .next-steps,
  .process-grid article,
  .contact-card {
    padding: 1.15rem;
  }

  .contact-card {
    padding: 0;
  }

  .about-highlights div {
    grid-template-columns: 1fr;
  }

  .form-row-split {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 330px;
  }

  .map-point {
    padding: 0.42rem 0.58rem;
    font-size: 0.76rem;
  }

  .point-storuman {
    left: 16%;
  }

  .point-lycksele {
    left: 36%;
  }

  .point-coast {
    right: 7%;
  }

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

  .footer-links {
    min-width: 0;
  }
}
