:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --ink: #16202a;
  --muted: #5d6872;
  --line: #d9d6cc;
  --brand: #1d4f68;
  --brand-dark: #142f3e;
  --accent: #a63a18;
  --accent-dark: #842a12;
  --ok: #23745a;
  --shadow: 0 20px 55px rgba(22, 32, 42, 0.14);
  --shadow-soft: 0 14px 34px rgba(22, 32, 42, 0.08);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(200, 77, 34, 0.34);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  font-weight: 800;
}

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

[id] {
  scroll-margin-top: 92px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(246, 244, 239, 0.94);
  border-bottom: 1px solid rgba(217, 214, 204, 0.85);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.has-scrolled {
  background: rgba(246, 244, 239, 0.98);
  border-bottom-color: rgba(217, 214, 204, 0.98);
  box-shadow: 0 12px 28px rgba(22, 32, 42, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  transition: transform 160ms var(--ease);
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--brand-dark);
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #2d3842;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
  transition: color 160ms ease, border-color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--accent);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-width: max-content;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 3px;
}

.language-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 34px;
  border-radius: calc(var(--radius) - 3px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.language-switch a:hover,
.language-switch a:focus-visible {
  color: var(--ink);
}

.language-switch a[aria-current="page"] {
  background: var(--brand-dark);
  color: #fff;
}

.header-call {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48px;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 24px rgba(200, 77, 34, 0.24);
  transition: transform 160ms var(--ease), background 160ms ease, box-shadow 160ms ease;
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-1px);
  background: var(--accent-dark);
  box-shadow: 0 14px 30px rgba(200, 77, 34, 0.28);
}

.header-call span {
  font-size: 12px;
  line-height: 1;
  opacity: 0.9;
}

.header-call strong {
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms var(--ease);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: #fff;
  border-color: #c7c2b7;
  transform: translateY(-1px);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 180ms var(--ease), opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(22, 32, 42, 0.94) 0%, rgba(22, 32, 42, 0.78) 38%, rgba(22, 32, 42, 0.2) 74%),
    linear-gradient(0deg, rgba(22, 32, 42, 0.35), rgba(22, 32, 42, 0.05));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 96px);
  padding: 76px 0 110px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffbc8e;
}

h1,
h2,
h3 {
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

p {
  hyphens: auto;
  overflow-wrap: break-word;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions,
.hero-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  padding: 13px 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms var(--ease), background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(22, 32, 42, 0.12);
}

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
}

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

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.hero-points {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  padding: 0;
  list-style: none;
}

.hero-points li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms var(--ease);
}

.hero-points li:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  background: var(--surface);
  padding: 24px clamp(18px, 4vw, 48px);
}

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

.trust-strip span {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.step,
.faq-list details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(22, 32, 42, 0.05);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(166, 58, 24, 0.24);
  box-shadow: var(--shadow-soft);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background: #e8f0ed;
  color: var(--ok);
  font-weight: 900;
  transition: background 160ms ease, color 160ms ease, transform 160ms var(--ease);
}

.service-card:hover .card-icon,
.service-card:focus-within .card-icon {
  background: rgba(166, 58, 24, 0.1);
  color: var(--accent);
  transform: translateY(-1px);
}

.service-card p,
.step p,
.proof-list span,
.location-band p,
.contact-copy p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--accent);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
  transition: color 160ms ease, text-underline-offset 160ms ease;
}

.card-link:hover,
.card-link:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-dark);
}

.service-photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.service-photo-strip a {
  overflow: hidden;
  position: relative;
  display: grid;
  min-height: 178px;
  align-items: end;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 32px rgba(22, 32, 42, 0.08);
}

.service-photo-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.74;
  transition: transform 180ms ease, opacity 180ms ease;
}

.service-photo-strip a:focus-visible img,
.service-photo-strip a:hover img {
  transform: scale(1.035);
  opacity: 0.86;
}

.service-photo-strip span {
  position: relative;
  z-index: 1;
  display: block;
  padding: 16px;
  background: linear-gradient(0deg, rgba(22, 32, 42, 0.88), rgba(22, 32, 42, 0));
  font-weight: 900;
  line-height: 1.2;
}

.realizations-section {
  padding-top: 18px;
}

.realization-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.realization-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(22, 32, 42, 0.05);
  transition: transform 180ms var(--ease), box-shadow 180ms ease, border-color 180ms ease;
}

.realization-card:hover,
.realization-card:focus-within,
.case-card:hover,
.case-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(166, 58, 24, 0.24);
  box-shadow: var(--shadow-soft);
}

.realization-card picture,
.realization-card img {
  display: block;
  width: 100%;
}

.realization-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  transition: transform 220ms var(--ease);
}

.realization-card:hover img,
.realization-card:focus-within img,
.case-card:hover img,
.case-card:focus-within img {
  transform: scale(1.025);
}

.realization-card figcaption,
.case-card figcaption {
  min-height: 62px;
  padding: 14px 16px 16px;
  color: #25313b;
  line-height: 1.25;
}

.realization-card figcaption strong,
.realization-card figcaption span,
.case-card figcaption strong,
.case-card figcaption span {
  display: block;
}

.realization-card figcaption strong,
.case-card figcaption strong {
  font-weight: 900;
}

.realization-card figcaption span,
.case-card figcaption span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.realization-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.realization-proof div {
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px 20px;
  box-shadow: 0 10px 32px rgba(22, 32, 42, 0.05);
}

.realization-proof strong,
.realization-proof span {
  display: block;
}

.realization-proof span {
  margin-top: 6px;
  color: var(--muted);
}

.realization-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  border-radius: var(--radius);
  background: var(--brand-dark);
  padding: 22px;
  color: #fff;
}

.realization-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.case-section {
  padding-top: 18px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 18px;
  margin-top: 30px;
}

.case-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(22, 32, 42, 0.05);
  transition: transform 180ms var(--ease), box-shadow 180ms ease, border-color 180ms ease;
}

.case-card picture,
.case-card img {
  display: block;
  width: 100%;
}

.case-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 58px;
  align-items: start;
}

.split-section p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
  transition: color 160ms ease;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.review-proof {
  margin: 24px 0 4px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px 22px;
  box-shadow: 0 10px 32px rgba(22, 32, 42, 0.05);
}

.review-proof > span {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-proof strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
}

.review-proof p {
  margin: 10px 0 0;
  font-size: 16px;
}

.proof-list div {
  border-left: 4px solid var(--accent);
  background: var(--surface);
  padding: 20px 22px;
  transition: transform 180ms var(--ease), box-shadow 180ms ease;
}

.proof-list div:hover {
  transform: translateX(3px);
  box-shadow: 0 10px 24px rgba(22, 32, 42, 0.05);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.source-proof-section {
  padding-top: 28px;
}

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

.source-proof-grid a {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(22, 32, 42, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 234, 0.92)),
    var(--surface);
  padding: 26px;
  box-shadow: 0 16px 36px rgba(22, 32, 42, 0.06);
  transition: transform 180ms var(--ease), border-color 180ms ease, box-shadow 180ms ease;
}

.source-proof-grid a::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(166, 58, 24, 0));
  transform: scaleX(0.38);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.source-proof-grid a:hover,
.source-proof-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(166, 58, 24, 0.28);
  box-shadow: 0 22px 44px rgba(22, 32, 42, 0.1);
}

.source-proof-grid a:hover::after,
.source-proof-grid a:focus-visible::after {
  transform: scaleX(1);
}

.source-proof-grid span,
.source-proof-grid strong,
.source-proof-grid small {
  display: block;
}

.source-proof-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-proof-grid strong {
  max-width: 320px;
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.04;
}

.source-proof-grid small {
  max-width: 360px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.location-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns:
    minmax(18px, 1fr)
    minmax(280px, 472px)
    minmax(320px, 660px)
    minmax(18px, 1fr);
  gap: 48px;
  padding: 76px 0;
  background: var(--brand-dark);
  color: #fff;
}

.location-band > div {
  grid-column: 2;
}

.location-band p {
  grid-column: 3;
  align-self: end;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.area-list {
  grid-column: 2 / 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px 0 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.area-list a {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.area-list a:hover,
.area-list a:focus-visible {
  color: #fff;
}

.keyword-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.keyword-grid li {
  display: flex;
  align-items: center;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 12px 14px;
  color: #25313b;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(22, 32, 42, 0.04);
  transition: transform 160ms var(--ease), border-color 160ms ease, box-shadow 160ms ease;
}

.keyword-grid li:hover,
.keyword-grid li:focus-within {
  transform: translateY(-2px);
  border-color: rgba(166, 58, 24, 0.22);
  box-shadow: 0 14px 28px rgba(22, 32, 42, 0.07);
}

.keyword-grid a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
}

.keyword-grid a:hover,
.keyword-grid a:focus-visible {
  color: var(--accent);
}

.related-services {
  padding-top: 22px;
}

.issue-section {
  padding-top: 20px;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.issue-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(22, 32, 42, 0.04);
  transition: transform 160ms var(--ease), box-shadow 160ms ease, border-color 160ms ease;
}

.issue-card:hover {
  transform: translateY(-2px);
  border-color: rgba(166, 58, 24, 0.2);
  box-shadow: 0 14px 28px rgba(22, 32, 42, 0.07);
}

.issue-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.issue-card p {
  margin: 0;
  color: var(--muted);
}

.old-url-redirect {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--bg);
}

.old-url-card {
  width: min(560px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 30px;
  box-shadow: var(--shadow);
}

.old-url-card p {
  color: var(--muted);
}

.old-url-card p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.old-url-card .btn-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.subpage-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0 62px;
}

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

.subpage-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.subpage-hero .btn-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 46px;
  align-items: start;
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
}

.content-panel p {
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  border-radius: var(--radius);
  background: var(--brand-dark);
  color: #fff;
  padding: 28px;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .btn-secondary {
  min-width: 190px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.step {
  padding: 26px;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, border-color 180ms ease;
}

.step:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 79, 104, 0.2);
  box-shadow: var(--shadow-soft);
}

.step span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.emergency {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 46px;
  padding-top: 26px;
}

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

.check-list li {
  position: relative;
  min-height: 44px;
  padding: 10px 10px 10px 42px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 15px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--ok);
  border-bottom: 3px solid var(--ok);
  transform: rotate(-45deg);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.faq-list details {
  padding: 18px 22px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-list details[open] {
  border-color: rgba(166, 58, 24, 0.22);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef3f1;
  color: var(--brand-dark);
  font-weight: 900;
  transition: transform 180ms var(--ease), background 160ms ease, color 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
  background: rgba(166, 58, 24, 0.12);
  color: var(--accent);
}

.faq-list p {
  padding-top: 14px;
}

.faq-list details[open] p {
  animation: detailsIn 180ms var(--ease);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 28px 32px;
  align-items: stretch;
}

.contact-copy {
  grid-column: 1 / -1;
}

.contact-copy p {
  margin-top: 18px;
  font-size: 18px;
  max-width: 880px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 160ms var(--ease), box-shadow 160ms ease, border-color 160ms ease;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(166, 58, 24, 0.24);
  box-shadow: var(--shadow-soft);
}

.contact-methods span {
  color: var(--muted);
  font-size: 14px;
}

.contact-methods strong {
  color: var(--brand-dark);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.25;
}

.contact-map-panel {
  display: grid;
  grid-template-rows: minmax(360px, 1fr) auto;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(22, 32, 42, 0.08);
  transition: box-shadow 180ms ease, transform 180ms var(--ease);
}

.contact-map-panel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-map-panel h3 {
  margin: 4px 0 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
}

.contact-map-panel p:not(.eyebrow) {
  margin: 12px 0 18px;
  color: var(--muted);
}

.contact-map-panel .btn {
  width: 100%;
}

.contact-map {
  display: block;
  width: 100%;
  min-height: 320px;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  color: #33404b;
  font-weight: 800;
}

.form-heading {
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
}

.form-heading h3 {
  margin: 0 0 4px;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
}

.contact-form .wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9c6bd;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(29, 79, 104, 0.18);
  border-color: var(--brand);
}

.form-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(660px, calc(100% - 36px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 18px;
}

.cookie-consent strong,
.cookie-consent p {
  display: block;
  margin: 0;
}

.cookie-consent p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.cookie-consent a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-consent .btn-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  background: #111920;
  color: #fff;
}

.footer-main {
  max-width: 760px;
}

.site-footer span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 18px 0 0;
}

.footer-contact div {
  display: grid;
  gap: 3px;
}

.footer-contact dt,
.footer-contact dd {
  margin: 0;
}

.footer-contact dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-contact dd {
  color: #fff;
  font-weight: 800;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  max-width: 520px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    row-gap: 10px;
  }

  .language-switch {
    justify-self: end;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    inset: 128px 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    padding: 12px 18px 18px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms var(--ease), visibility 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-call {
    grid-column: 1 / -1;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    width: 100%;
    padding: 9px 14px;
    box-shadow: 0 8px 18px rgba(200, 77, 34, 0.2);
  }

  .header-call span,
  .header-call strong {
    line-height: 1;
  }

  .hero {
    min-height: 640px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(22, 32, 42, 0.96), rgba(22, 32, 42, 0.68));
  }

  .trust-strip,
  .section-heading,
  .split-section,
  .location-band,
  .emergency,
  .contact-section,
  .content-grid,
  .cta-band,
  .realization-cta {
    grid-template-columns: 1fr;
  }

  .location-band > div,
  .location-band > p,
  .location-band .area-list {
    grid-column: auto;
  }

  .service-grid,
  .steps,
  .keyword-grid,
  .realization-grid,
  .issue-grid,
  .service-photo-strip,
  .realization-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-copy {
    position: static;
  }

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

  .contact-map-panel {
    grid-template-rows: minmax(300px, 360px) auto;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 68px;
    grid-template-columns: auto minmax(78px, 1fr) auto auto;
    gap: 8px;
    padding: 10px 12px 12px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .language-switch {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex;
    padding: 2px;
  }

  .nav-toggle {
    grid-column: 4;
    grid-row: 1;
    width: 42px;
    height: 42px;
  }

  .language-switch a {
    min-width: 34px;
    min-height: 34px;
    font-size: 12px;
  }

  .language-switch a[aria-current="page"] {
    display: none;
  }

  .header-call {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: auto;
    min-height: 40px;
    padding: 8px 10px;
    box-shadow: none;
  }

  .header-call span {
    display: none;
  }

  .header-call strong {
    font-size: 14px;
    white-space: nowrap;
  }

  .main-nav {
    inset: 68px 0 auto;
    max-height: calc(100dvh - 68px);
  }

  .cookie-consent {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  [id] {
    scroll-margin-top: 82px;
  }

  .cookie-consent__actions,
  .cookie-consent .btn {
    width: 100%;
  }

  .hero {
    min-height: 650px;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-inner {
    width: min(calc(100% - 32px), 620px);
    margin: 0 auto;
    padding: 58px 0 86px;
  }

  h1 {
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .steps,
  .keyword-grid,
  .realization-grid,
  .issue-grid,
  .service-photo-strip,
  .realization-proof,
  .contact-methods,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section {
    width: min(calc(100% - 32px), 1180px);
    padding: 68px 0;
  }

  .subpage-hero {
    width: min(calc(100% - 32px), 1180px);
    padding: 62px 0 28px;
  }

  .subpage-hero p {
    font-size: 18px;
  }

  .location-band {
    width: 100%;
    padding: 62px 18px;
  }

  .contact-form .wide {
    grid-column: auto;
  }

  .contact-map-panel {
    padding: 18px;
    grid-template-rows: minmax(280px, 320px) auto;
  }

  .site-footer {
    display: grid;
  }

}

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

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

  .btn {
    transition: none;
  }
}

@keyframes detailsIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

/* Premium industrial visual refresh for the primary marketing experience. */
:root {
  --bg: #f2f0ea;
  --surface: #ffffff;
  --ink: #11161b;
  --muted: #606972;
  --line: #d7d2c8;
  --brand: #2d3941;
  --brand-dark: #101820;
  --accent: #b86937;
  --accent-dark: #8f4522;
  --ok: #2c6b5b;
  --shadow: 0 28px 70px rgba(10, 16, 22, 0.2);
  --shadow-soft: 0 18px 42px rgba(10, 16, 22, 0.12);
}

body {
  background:
    linear-gradient(180deg, #f7f5ef 0, var(--bg) 460px),
    var(--bg);
}

.site-header {
  min-height: 82px;
  background: rgba(16, 24, 32, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(10, 16, 22, 0.16);
}

.site-header.has-scrolled {
  background: rgba(16, 24, 32, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 42px rgba(10, 16, 22, 0.22);
}

.brand,
.main-nav,
.main-nav a:hover,
.main-nav a:focus-visible {
  color: #f7f2ea;
}

.brand-mark {
  background: #f7f2ea;
  color: var(--brand-dark);
}

.brand small {
  color: rgba(247, 242, 234, 0.66);
}

.main-nav a {
  border-bottom-color: transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--accent);
}

.language-switch {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.language-switch a {
  color: rgba(255, 255, 255, 0.72);
}

.language-switch a:hover,
.language-switch a:focus-visible {
  color: #fff;
}

.language-switch a[aria-current="page"] {
  background: #f7f2ea;
  color: var(--brand-dark);
}

.header-call,
.btn-primary {
  background: linear-gradient(180deg, #c9824e, var(--accent-dark));
  color: #fff;
}

.header-call:hover,
.header-call:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(180deg, #d28a56, #78381b);
}

.hero {
  min-height: min(830px, calc(100dvh - 20px));
  background: var(--brand-dark);
  isolation: isolate;
}

.hero-media img {
  filter: saturate(0.9) contrast(1.04);
  object-position: center center;
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 13, 18, 0.96) 0%, rgba(8, 13, 18, 0.86) 34%, rgba(8, 13, 18, 0.36) 70%, rgba(8, 13, 18, 0.58) 100%),
    linear-gradient(0deg, rgba(8, 13, 18, 0.78) 0%, rgba(8, 13, 18, 0.06) 42%, rgba(8, 13, 18, 0.32) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(18px, 8vw, 96px) 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 105, 55, 0.9), rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  z-index: 1;
}

.hero-inner {
  width: min(920px, calc(100% - 36px));
  padding: clamp(96px, 14vh, 150px) 0 clamp(110px, 16vh, 170px);
}

.hero .eyebrow {
  color: #d99a67;
}

h1 {
  max-width: 900px;
  font-size: clamp(46px, 7.6vw, 96px);
  line-height: 0.94;
}

.hero-lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.btn {
  min-height: 56px;
  padding: 14px 24px;
  text-transform: none;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.15);
}

.hero-points {
  gap: 0;
  margin-top: 28px;
}

.hero-points li {
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
  padding: 4px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-transform: uppercase;
}

.hero-points li:first-child {
  padding-left: 0;
}

.hero-points li:last-child {
  border-right: 0;
}

.trust-strip {
  background: #0d141a;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.trust-strip div {
  background: #101820;
  color: #f7f2ea;
  padding-top: 28px;
  padding-bottom: 28px;
}

.trust-strip strong {
  font-size: 17px;
}

.trust-strip span {
  color: rgba(247, 242, 234, 0.64);
}

.section {
  padding: 112px 0;
}

.section-heading {
  margin-bottom: 46px;
}

.section-heading p:not(.eyebrow) {
  font-size: 19px;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 300px;
  border-color: rgba(17, 22, 27, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 244, 239, 0.9));
  padding: 30px;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(184, 105, 55, 0.42);
}

.card-icon {
  width: auto;
  height: auto;
  place-items: start;
  margin-bottom: 38px;
  background: transparent;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card:hover .card-icon,
.service-card:focus-within .card-icon {
  background: transparent;
  color: var(--accent-dark);
}

.service-card h3 {
  font-size: 25px;
}

.service-card p {
  font-size: 16px;
}

.service-photo-strip {
  gap: 18px;
  margin-top: 26px;
}

.service-photo-strip a {
  min-height: 260px;
  box-shadow: var(--shadow-soft);
}

.service-photo-strip img {
  opacity: 0.68;
  filter: saturate(0.92) contrast(1.05);
}

.service-photo-strip span {
  padding: 22px;
  font-size: 17px;
}

.realizations-section {
  width: min(1320px, calc(100% - 36px));
}

.realization-grid {
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  grid-auto-flow: dense;
}

.realization-card {
  grid-column: span 4;
  border-color: rgba(17, 22, 27, 0.12);
  background: #101820;
}

.realization-card:nth-child(1),
.realization-card:nth-child(4) {
  grid-column: span 8;
}

.realization-card:nth-child(1) img,
.realization-card:nth-child(4) img {
  aspect-ratio: 16 / 10;
}

.realization-card figcaption {
  min-height: 78px;
  background: #101820;
  color: #f7f2ea;
}

.realization-card figcaption span {
  color: rgba(247, 242, 234, 0.66);
}

.realization-card img {
  aspect-ratio: 4 / 3;
  filter: saturate(0.92) contrast(1.04);
}

.split-section,
.contact-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.location-band {
  background:
    linear-gradient(135deg, #101820 0%, #1b262d 54%, #101820 100%);
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .main-nav {
    background: #101820;
    color: #f7f2ea;
  }

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

  .realization-card,
  .realization-card:nth-child(1),
  .realization-card:nth-child(4) {
    grid-column: span 6;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 13, 18, 0.96), rgba(8, 13, 18, 0.68)),
      linear-gradient(0deg, rgba(8, 13, 18, 0.82), rgba(8, 13, 18, 0.06));
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .site-header {
    background: rgba(16, 24, 32, 0.98);
  }

  .hero {
    min-height: 720px;
  }

  .hero-media img {
    object-position: 52% center;
  }

  .hero-inner {
    padding: 74px 0 110px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 0.96;
  }

  .hero-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hero-points li {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 10px 11px;
    background: rgba(255, 255, 255, 0.07);
  }

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

  .realization-card,
  .realization-card:nth-child(1),
  .realization-card:nth-child(4) {
    grid-column: auto;
  }

  .service-card {
    min-height: auto;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    background: rgba(16, 24, 32, 0.94);
    padding: 8px;
    box-shadow: 0 20px 48px rgba(10, 16, 22, 0.3);
    backdrop-filter: blur(18px);
  }

  .mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 8px;
    color: #fff;
    font-weight: 900;
  }

  .mobile-cta a:first-child {
    background: rgba(255, 255, 255, 0.12);
  }

  .mobile-cta a:last-child {
    background: linear-gradient(180deg, #c9824e, var(--accent-dark));
  }

  .cookie-consent {
    bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    width: auto;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
  }

  .cookie-consent strong {
    font-size: 15px;
  }

  .cookie-consent p {
    margin-top: 4px;
    font-size: 12.5px;
    line-height: 1.35;
  }

  .cookie-consent a {
    margin-top: 6px;
    font-size: 13px;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .cookie-consent .btn {
    width: auto;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .site-header {
    grid-template-columns: auto minmax(112px, 1fr) auto auto;
  }

  .brand {
    gap: 0;
  }

  .brand > span:last-child {
    display: none;
  }

  .cookie-consent {
    padding: 12px;
  }

  .cookie-consent strong {
    font-size: 14px;
  }

  .cookie-consent p {
    font-size: 11.8px;
  }

  .cookie-consent .btn {
    min-height: 42px;
    font-size: 13px;
  }
}

.section.location-band {
  width: 100%;
  max-width: none;
  padding: 76px 0;
}

@media (max-width: 980px) {
  .section.location-band {
    padding: 76px 18px;
  }
}

@media (max-width: 680px) {
  .section.location-band {
    padding: 62px 18px;
  }
}

/* Master conversion polish */
.hero-proof-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero-proof-panel div {
  min-height: 136px;
  padding: 18px 18px;
  background: rgba(16, 24, 32, 0.56);
}

.hero-proof-panel span,
.case-label {
  display: block;
  color: #d99a67;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-proof-panel strong,
.hero-proof-panel small {
  display: block;
}

.hero-proof-panel strong {
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
}

.hero-proof-panel small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .hero-proof-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 740px;
  }
}

.featured-cases {
  display: grid;
  gap: 22px;
  margin-bottom: 24px;
}

.featured-case {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: #101820;
  color: #f7f2ea;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms var(--ease), box-shadow 180ms ease;
}

.featured-case:nth-child(even) {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.92fr);
}

.featured-case:nth-child(even) picture {
  order: 2;
}

.featured-case:hover,
.featured-case:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.featured-case picture,
.featured-case img {
  width: 100%;
  height: 100%;
}

.featured-case img {
  min-height: 360px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.featured-case__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}

.featured-case__body h3 {
  max-width: 520px;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.featured-case dl {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.featured-case dt,
.featured-case dd {
  margin: 0;
}

.featured-case dt {
  color: #d99a67;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-case dd {
  margin-top: 4px;
  color: rgba(247, 242, 234, 0.72);
}

.realization-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: start;
  gap: 18px;
  margin-top: 22px;
}

.realization-preview .realization-card,
.realization-preview .realization-card:nth-child(1),
.realization-preview .realization-card:nth-child(4) {
  grid-column: auto;
}

.realization-preview .realization-card {
  display: grid;
  align-self: start;
  min-height: 0;
  background: #101820;
}

.realization-preview .realization-card:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}

.realization-preview .realization-card:nth-child(2) {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.realization-preview .realization-card:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.realization-preview .realization-card img,
.realization-preview .realization-card:nth-child(1) img,
.realization-preview .realization-card:nth-child(4) img {
  aspect-ratio: 4 / 3;
}

.realization-preview .realization-card:nth-child(2) img {
  aspect-ratio: 3 / 2;
}

.realization-preview .realization-card figcaption {
  min-height: auto;
}

.lead-magnet {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #101820 0%, #17232b 60%, #101820 100%);
  color: #fff;
  box-shadow: var(--shadow-soft);
  padding: 0;
}

.lead-magnet__content {
  padding: clamp(32px, 5vw, 58px);
}

.lead-magnet__content h2 {
  max-width: 720px;
  color: #fff;
}

.lead-magnet__content p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.lead-magnet__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.lead-magnet__points {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.lead-magnet__points div {
  display: grid;
  align-content: center;
  min-height: 142px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.06);
}

.lead-magnet__points strong,
.lead-magnet__points span {
  display: block;
}

.lead-magnet__points strong {
  color: #fff;
  font-size: 18px;
}

.lead-magnet__points span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
}

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

.form-trust span {
  display: grid;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6f4ef;
  color: var(--muted);
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.review-section {
  padding-top: 76px;
}

.review-grid,
.price-factor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.review-card,
.price-factor-grid article,
.contact-assurance {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(22, 32, 42, 0.08);
}

.review-card,
.price-factor-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.review-card span,
.price-factor-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card strong {
  color: var(--brand-dark);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.08;
}

.review-card p,
.price-factor-grid p,
.contact-assurance span {
  margin: 0;
  color: var(--muted);
}

.case-specs {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 14px;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6f4ef;
}

.case-specs li {
  color: #394651;
  font-size: 14px;
  font-weight: 800;
}

.price-factor-grid h3 {
  margin: 0;
  font-size: clamp(20px, 1.7vw, 25px);
}

.contact-assurance {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 18px;
}

.contact-assurance strong {
  color: var(--brand-dark);
  font-size: 17px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 35;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(16, 24, 32, 0.94);
  box-shadow: 0 18px 44px rgba(16, 24, 32, 0.28);
  backdrop-filter: blur(12px);
}

.mobile-sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: calc(var(--radius) - 4px);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.mobile-sticky-cta a:first-child {
  background: var(--accent);
}

.mobile-sticky-cta a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 981px) {
  .section.location-band {
    display: grid;
    grid-template-columns: minmax(24px, 1fr) minmax(280px, 472px) minmax(320px, 660px) minmax(24px, 1fr);
    gap: 48px;
    width: 100%;
    max-width: none;
    padding: 76px 0;
  }

  .section.location-band > div {
    grid-column: 2;
  }

  .section.location-band > p {
    grid-column: 3;
  }

  .section.location-band .area-list {
    grid-column: 2 / 4;
  }
}

@media (max-width: 980px) {
  .hero-proof-panel,
  .featured-case,
  .featured-case:nth-child(even),
  .lead-magnet {
    grid-template-columns: 1fr;
  }

  .featured-case:nth-child(even) picture {
    order: 0;
  }

  .featured-case img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .realization-preview,
  .form-trust,
  .review-grid,
  .price-factor-grid {
    grid-template-columns: 1fr;
  }

  .realization-preview .realization-card,
  .realization-preview .realization-card:nth-child(1),
  .realization-preview .realization-card:nth-child(2),
  .realization-preview .realization-card:nth-child(3),
  .realization-preview .realization-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 84px;
  }

  .mobile-sticky-cta {
    display: grid;
  }

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

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    padding-top: 118px;
  }

  .hero-proof-panel {
    display: none;
  }

  .featured-case__body {
    padding: 24px;
  }

  .featured-case__body h3 {
    font-size: 27px;
  }

  .lead-magnet {
    width: min(calc(100% - 32px), 1180px);
    margin-bottom: 68px;
  }

  .lead-magnet__content,
  .lead-magnet__points div {
    padding: 24px;
  }

  .lead-magnet__actions .btn {
    width: 100%;
  }

  .mobile-cta {
    display: none;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-list details {
    overflow: hidden;
    padding: 0;
    border-radius: 10px;
  }

  .faq-list summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 20px 18px;
    font-size: clamp(20px, 5.8vw, 24px);
    line-height: 1.18;
  }

  .faq-list summary::after {
    justify-self: end;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .faq-list p {
    margin: 0;
    padding: 0 18px 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .cookie-consent {
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  [id] {
    scroll-margin-top: 84px;
  }
}

/* Master final production polish */
.review-proof + .review-proof {
  margin-top: 14px;
}

.realization-preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
}

.realization-preview .realization-card,
.realization-preview .realization-card:nth-child(1),
.realization-preview .realization-card:nth-child(2),
.realization-preview .realization-card:nth-child(3),
.realization-preview .realization-card:nth-child(4) {
  grid-column: auto;
  grid-row: auto;
  align-self: stretch;
}

.realization-preview .realization-card {
  grid-template-rows: auto 1fr;
}

.realization-preview .realization-card img,
.realization-preview .realization-card:nth-child(1) img,
.realization-preview .realization-card:nth-child(2) img,
.realization-preview .realization-card:nth-child(3) img,
.realization-preview .realization-card:nth-child(4) img {
  aspect-ratio: 4 / 3;
}

.service-card p,
.issue-card p,
.proof-list span,
.realization-card figcaption span,
.case-card figcaption span,
.lead-magnet__points span {
  hyphens: none;
}

@media (max-width: 980px) {
  .realization-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .faq-list summary {
    min-height: 66px;
    padding: 16px;
    font-size: clamp(18px, 4.8vw, 20px);
    line-height: 1.22;
  }

  .faq-list summary::after {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .faq-list p {
    padding: 0 16px 18px;
  }
}

/* Reko Haas inspired: more human guidance, kept in Vrata Snabl premium style */
.decision-path {
  padding-top: clamp(54px, 7vw, 92px);
}

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

.decision-path__card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 210px;
  border: 1px solid rgba(22, 32, 42, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 234, 0.92)),
    var(--surface);
  padding: 24px;
  box-shadow: 0 16px 36px rgba(22, 32, 42, 0.06);
  transition: transform 180ms var(--ease), border-color 180ms ease, box-shadow 180ms ease;
}

.decision-path__card::after {
  content: "";
  position: absolute;
  inset: auto 24px 20px 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(166, 58, 24, 0));
  transform: scaleX(0.42);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.decision-path__card:hover,
.decision-path__card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(166, 58, 24, 0.28);
  box-shadow: 0 22px 44px rgba(22, 32, 42, 0.1);
}

.decision-path__card:hover::after,
.decision-path__card:focus-visible::after {
  transform: scaleX(1);
}

.decision-path__card span,
.decision-path__card strong,
.decision-path__card small {
  display: block;
}

.decision-path__card span {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-path__card strong {
  max-width: 260px;
  color: var(--ink);
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.08;
}

.decision-path__card small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.principle-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #101820;
  color: #fff;
  box-shadow: var(--shadow);
  padding: 0;
}

.principle-section__media,
.principle-section__media picture,
.principle-section__media img {
  min-height: 100%;
}

.principle-section__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08);
}

.principle-section__content {
  display: grid;
  align-content: center;
  padding: clamp(32px, 5vw, 64px);
}

.principle-section__content h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 0.98;
}

.principle-section__content p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.principle-section__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.principle-section__points span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.principle-section__content .btn {
  justify-self: start;
  margin-top: 30px;
}

.advice-hub {
  padding-top: clamp(42px, 5vw, 72px);
}

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

.advice-hub__grid a {
  display: grid;
  align-content: start;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  box-shadow: 0 12px 28px rgba(22, 32, 42, 0.05);
  transition: transform 160ms var(--ease), border-color 160ms ease, box-shadow 160ms ease;
}

.advice-hub__grid a:hover,
.advice-hub__grid a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(166, 58, 24, 0.24);
  box-shadow: 0 18px 36px rgba(22, 32, 42, 0.08);
}

.advice-hub__grid span,
.advice-hub__grid strong,
.advice-hub__grid small {
  display: block;
}

.advice-hub__grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advice-hub__grid strong {
  margin-top: 14px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.12;
}

.advice-hub__grid small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.decision-path__card small,
.principle-section__content p,
.advice-hub__grid small {
  hyphens: none;
}

@media (max-width: 980px) {
  .decision-path__grid,
  .source-proof-grid,
  .advice-hub__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .principle-section {
    grid-template-columns: 1fr;
  }

  .principle-section__media img {
    min-height: 300px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  .decision-path__grid,
  .source-proof-grid,
  .advice-hub__grid {
    grid-template-columns: 1fr;
  }

  .source-proof-section {
    padding-top: 8px;
  }

  .decision-path__card,
  .source-proof-grid a,
  .advice-hub__grid a {
    min-height: auto;
    padding: 20px;
  }

  .principle-section {
    width: min(calc(100% - 32px), 1180px);
  }

  .principle-section__media img {
    min-height: 220px;
  }

  .principle-section__content {
    padding: 26px 22px 28px;
  }

  .principle-section__content h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .principle-section__content p:not(.eyebrow) {
    font-size: 16px;
  }

  .principle-section__points {
    display: grid;
  }

  .principle-section__points span {
    width: 100%;
  }

  .hero .hero-points {
    align-items: stretch;
  }

  .hero .hero-points li,
  .hero .hero-points li:first-child,
  .hero .hero-points li:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 12px;
    text-align: center;
    line-height: 1.15;
  }
}

.subpage-hero .subpage-trust {
  margin-top: 24px;
}

.subpage-hero .subpage-trust li,
.subpage-hero .subpage-trust li:first-child,
.subpage-hero .subpage-trust li:last-child {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
}
