/* ==========================================================================
   Engliden Design System
   Trust & Authority pattern · Calm trade-professional system
   ========================================================================== */

:root {
  /* Brand */
  --blue: #1F4F82;
  --blue-deep: #132D48;
  --green: #08795B;
  --green-deep: #075F48;
  --accent: #A86435;
  --accent-deep: #824D29;
  --grad: linear-gradient(135deg, #1F4F82 0%, #08795B 100%);
  --grad-soft: linear-gradient(135deg, rgba(31,79,130,0.10) 0%, rgba(8,121,91,0.10) 100%);

  /* Neutrals */
  --ink: #122235;
  --ink-2: #102C42;
  --body: #344154;
  --muted: #667085;
  --bg: #FBFCFA;
  --bg-alt: #F3F6F2;
  --surface: #FFFFFF;
  --surface-muted: #EEF3EF;
  --border: #DCE5DF;
  --white: #FFFFFF;

  /* Footer (dark) */
  --footer-bg: #102235;
  --footer-muted: #AEBCC7;

  /* Type */
  --font-head: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Radii & shadow */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(18,34,53,0.06), 0 8px 24px rgba(18,34,53,0.05);
  --shadow-md: 0 16px 36px rgba(18,34,53,0.10);
  --shadow-lg: 0 28px 70px rgba(18,34,53,0.16);

  /* Layout */
  --container: 1200px;
  --header-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --focus: 0 0 0 3px rgba(8,121,91,0.20);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background:
    linear-gradient(180deg, var(--bg) 0%, #FFFFFF 46%, var(--bg) 100%);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.14;
  font-weight: 650;
  text-wrap: balance;
}

p, li { text-wrap: pretty; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

::selection { background: rgba(8,121,91,0.20); }

.container { max-width: var(--container); margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* Gradient text accent */
.grad-text {
  background: none;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: currentColor;
  color: #BFE9D8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 15px;
  min-height: 44px;
  padding: 13px 24px; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(8,121,91,0.20); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(8,121,91,0.26); }
.btn:active { transform: translateY(0) scale(.985); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }
.btn-sm { min-height: 40px; padding: 10px 18px; font-size: 14px; border-radius: 9px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: #0D1F31; color: var(--footer-muted);
  font-size: 13.5px;
}
.topbar-inner {
  max-width: var(--container); margin: 0 auto; padding: 8px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.topbar a { color: var(--footer-muted); transition: color .2s ease; }
.topbar a:hover { color: #fff; }
.topbar-contact { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar-contact span { display: inline-flex; align-items: center; gap: 7px; }
.topbar-contact svg { width: 15px; height: 15px; fill: #7CC9AD; flex: none; }
.topbar-socials { display: flex; align-items: center; gap: 12px; }
.topbar-socials a { display: inline-flex; }
.topbar-socials svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(251,252,250,0.94);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  max-width: var(--container); margin: 0 auto; height: var(--header-h);
  padding: 0 24px; display: flex; align-items: center; justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { height: 38px; width: auto; }
.brand-logo { height: 44px; width: auto; display: block; }
.brand-word { font-family: var(--font-head); font-weight: 700; font-size: 23px; color: var(--ink); letter-spacing: .2px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-head); font-weight: 500; font-size: 14.5px; color: var(--ink);
  padding: 10px 14px; border-radius: 9px; position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover { color: var(--green); background: rgba(8,121,91,0.06); }
.nav-link.active { color: var(--green-deep); }
.nav-link.active::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 4px;
  height: 2px; border-radius: 2px; background: var(--green);
}
.nav-link .chev { width: 14px; height: 14px; transition: transform .25s ease; }

/* ---------- Mega menu (services) ---------- */
.has-dropdown { position: relative; }
.has-dropdown:hover .chev,
.has-dropdown.open .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
  background: rgba(255,255,255,0.98); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 14px; width: 680px; max-width: 92vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s var(--ease);
}
.dropdown::before {
  content: ''; position: absolute; left: 0; right: 0; top: -18px; height: 18px;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-item { display: flex; align-items: center; gap: 13px; padding: 13px 12px; border-radius: 12px; transition: background .2s ease, transform .2s ease; }
.dropdown-item:hover { background: var(--bg-alt); transform: translateY(-1px); }
.dropdown-item .di-icon {
  width: 42px; height: 42px; border-radius: 10px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,121,91,0.09); transition: background .2s ease;
}
.dropdown-item:hover .di-icon { background: var(--green); }
.dropdown-item .di-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.8; transition: stroke .2s ease; }
.dropdown-item:hover .di-icon svg { stroke: #fff; }
.dropdown-item b { font-family: var(--font-head); font-size: 15px; color: var(--ink); font-weight: 600; display: block; }
.dropdown-item small { color: var(--muted); font-size: 12.5px; }

.header-cta { display: flex; align-items: center; gap: 10px; }

/* Language switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 40px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--surface-muted);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .02em;
}
.lang-switch a,
.lang-switch span {
  min-width: 36px;
  min-height: 32px;
  padding: 8px 10px;
  border-radius: 8px;
  line-height: 1;
  color: var(--muted);
  text-align: center;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.lang-switch a:hover { color: var(--ink); background: rgba(255,255,255,0.74); }
.lang-switch .is-active { background: var(--ink); color: #fff; box-shadow: 0 1px 2px rgba(18,34,53,0.14); }
.mobile-lang {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-muted);
}
.mobile-lang a,
.mobile-lang span {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}
.mobile-lang .is-active { background: var(--ink); color: #fff; }

/* Hamburger */
.hamburger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border); background: #fff;
  cursor: pointer; position: relative; border-radius: 10px;
}
.hamburger span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s ease; }
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 27px; }
.hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; background: var(--bg); z-index: 999;
  transform: translateX(100%); transition: transform .35s var(--ease);
  padding: 24px; overflow-y: auto; display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-head); font-weight: 500; font-size: 18px; color: var(--ink); padding: 15px 8px; border-bottom: 1px solid var(--border); }
.mobile-menu a.sub { font-size: 15.5px; padding-left: 22px; color: var(--body); font-weight: 400; }
.mobile-menu .btn { margin-top: 18px; }

/* ---------- Section primitives ---------- */
.section { padding: 92px 0 104px; }
.section.alt { background: var(--bg-alt); }
.section.dark { background: var(--ink); }
.section.tight { padding: 64px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 650; font-size: 12px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--green-deep); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--green); border-radius: 2px; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head .eyebrow { justify-content: center; }
.section-head.left .eyebrow { justify-content: flex-start; }
h2.title { font-size: clamp(28px, 4vw, 42px); letter-spacing: -.02em; }
.dark h2.title, .dark .lede, .dark h3, .dark p { color: #fff; }
.lede { font-size: 18px; color: var(--muted); margin-top: 16px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; padding-bottom: 72px; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg picture { display: block; width: 100%; height: 100%; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(16,34,53,0.92) 0%, rgba(16,34,53,0.76) 46%, rgba(16,34,53,0.36) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 90px 24px; width: 100%; }
.hero-content { max-width: 640px; }
.hero .eyebrow { color: #6ee7b7; }
.hero h1 {
  font-family: var(--font-head); color: #fff; font-weight: 650;
  font-size: clamp(34px, 5.2vw, 58px); line-height: 1.05; letter-spacing: -.03em; margin-bottom: 22px;
}
.hero h1 .grad-text { color: #BFE9D8; -webkit-text-fill-color: currentColor; }
.hero p { color: #D8E2EC; font-size: 19px; max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero trust strip */
.hero-trust {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: rgba(13,31,49,0.68); backdrop-filter: blur(4px);
}
.hero-trust-inner { max-width: var(--container); margin: 0 auto; padding: 20px 24px; display: flex; flex-wrap: wrap; gap: 14px 38px; justify-content: space-between; }
.hero-trust .item { display: flex; align-items: center; gap: 11px; color: #E5EEF5; font-size: 14.5px; font-family: var(--font-head); font-weight: 500; }
.hero-trust .item svg { width: 22px; height: 22px; stroke: #7CC9AD; fill: none; stroke-width: 1.8; flex: none; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { position: relative; min-height: 360px; overflow: hidden; background: var(--ink-2); }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg picture { display: block; width: 100%; height: 100%; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16,34,53,0.93) 0%, rgba(16,34,53,0.78) 48%, rgba(16,34,53,0.46) 100%),
    linear-gradient(180deg, rgba(16,34,53,0.10), rgba(16,34,53,0.34));
}
.page-hero-inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 96px 24px 88px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #B9C9D6; margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .55; }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); letter-spacing: -.03em; max-width: 760px; }
.page-hero p { color: #D8E2EC; font-size: 18px; max-width: 640px; margin-top: 18px; }

/* ---------- Trust badges row ---------- */
.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.badge {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 26px 22px; text-align: center; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s ease;
}
.badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(8,121,91,0.34); }
.badge .b-icon { width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 12px; background: rgba(8,121,91,0.09); display: flex; align-items: center; justify-content: center; }
.badge .b-icon svg { width: 28px; height: 28px; stroke: var(--green); fill: none; stroke-width: 1.7; }
.badge h3 { font-size: 17px; margin-bottom: 6px; }
.badge p { font-size: 14px; color: var(--muted); }

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(8,121,91,0.30); }
.service-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 20px; margin-bottom: 9px; line-height: 1.15; overflow-wrap: break-word; hyphens: auto; text-wrap: balance; }
.service-body p { font-size: 14.5px; color: var(--muted); margin-bottom: 18px; flex: 1; }
.service-link { font-family: var(--font-head); font-weight: 600; font-size: 14.5px; color: var(--green); display: inline-flex; align-items: center; gap: 7px; transition: gap .25s ease; }
.service-link svg { width: 17px; height: 17px; }
.service-card:hover .service-link { gap: 12px; }

/* ---------- Feature row ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.feature { text-align: center; }
.feature .f-icon { width: 76px; height: 76px; margin: 0 auto 18px; border-radius: 16px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; }
.feature .f-icon svg { width: 36px; height: 36px; stroke: #7CC9AD; fill: none; stroke-width: 1.6; }
.feature h3 { color: #fff; font-size: 17px; margin-bottom: 6px; }
.feature p { color: #AFC1D0; font-size: 14px; }

/* ---------- About / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.split-media .floater {
  position: absolute; bottom: -26px; right: -22px; background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg); padding: 20px 24px; display: flex; align-items: center; gap: 14px;
}
.split-media .floater .big { font-family: var(--font-head); font-weight: 700; font-size: 34px; color: var(--green-deep); line-height: 1; }
.split-media .floater small { color: var(--muted); font-size: 13px; display: block; max-width: 120px; }
.split-text h2 { font-size: clamp(26px, 3.4vw, 38px); letter-spacing: -.5px; margin-bottom: 18px; }
.split-text p { margin-bottom: 16px; }
.checklist { list-style: none; margin: 22px 0 28px; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15.5px; color: var(--body); }
.checklist li svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.checklist li svg circle { fill: rgba(8,121,91,0.12); }
.checklist li svg path { stroke: var(--green); stroke-width: 2; fill: none; }

/* ---------- Numbered process / sub-services ---------- */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.steps.cols-1 { grid-template-columns: 1fr; }
.step {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 32px 30px;
  position: relative; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(8,121,91,0.3); }
.step .num {
  font-family: var(--font-head); font-weight: 700; font-size: 18px; color: #fff;
  width: 46px; height: 46px; border-radius: 12px; background: var(--green);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(8,121,91,0.22);
}
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--muted); }
.step ul { margin: 14px 0 0; padding-left: 4px; list-style: none; display: grid; gap: 8px; }
.step ul li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--body); }
.step ul li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(34px,4vw,46px); color: #BFE9D8; }
.stat p { color: #AFC1D0; font-size: 15px; margin-top: 4px; }

/* ---------- Gallery ---------- */
.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: end;
  gap: 38px;
  margin-bottom: 34px;
}
.project-intro h2 {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.project-intro p { max-width: 66ch; color: var(--muted); font-size: 18px; }
.project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.project-stat {
  border-top: 2px solid var(--green);
  padding-top: 12px;
}
.project-stat strong {
  display: block;
  font-family: var(--font-head);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}
.project-stat span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.25;
}
.gallery-tabs {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-start;
  margin: 0 auto 42px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface-muted);
}
.gallery-tab {
  min-height: 42px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: var(--body);
  cursor: pointer;
  transition: background .22s ease, color .22s ease, transform .22s var(--ease), box-shadow .22s ease;
}
.gallery-tab:hover { background: rgba(255,255,255,0.70); color: var(--ink); }
.gallery-tab:active { transform: scale(.985); }
.gallery-tab.active { background: var(--ink); color: #fff; box-shadow: 0 1px 2px rgba(18,34,53,0.14); }
.gallery { columns: 3 260px; column-gap: 18px; }
.gallery .g-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid rgba(18,34,53,0.08);
  padding: 6px;
  box-shadow: none;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s ease;
}
.gallery .g-item img { width: 100%; border-radius: 8px; transition: transform .6s var(--ease); }
.gallery .g-item::after { content: ''; position: absolute; inset: 6px; border-radius: 8px; background: linear-gradient(180deg, transparent 54%, rgba(16,34,53,0.42)); opacity: 0; transition: opacity .3s ease; }
.gallery .g-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(8,121,91,0.25); }
.gallery .g-item:hover img { transform: scale(1.05); }
.gallery .g-item:hover::after { opacity: 1; }
.gallery .g-item.hide { display: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(8,20,30,0.92); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,0.12); border: none; color: #fff; font-size: 26px; cursor: pointer; transition: background .2s ease; }
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 12px; background: rgba(255,255,255,0.12); border: none; color: #fff; font-size: 26px; cursor: pointer; transition: background .2s ease; }
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav.prev { left: 22px; }
.lightbox-nav.next { right: 22px; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 760px; margin: 0 auto; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-md); padding: 32px; text-align: center; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-avatar { width: 96px; height: 96px; border-radius: 18px; margin: 0 auto 18px; background: var(--green); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 34px; color: #fff; }
.team-card h3 { font-size: 21px; margin-bottom: 4px; }
.team-role { color: var(--green); font-family: var(--font-head); font-weight: 600; font-size: 14px; margin-bottom: 16px; }
.team-contact { display: grid; gap: 8px; padding-top: 16px; border-top: 1px solid var(--border); }
.team-contact a { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 14.5px; color: var(--body); transition: color .2s ease; }
.team-contact a:hover { color: var(--green); }
.team-contact svg { width: 16px; height: 16px; fill: var(--green); }

/* ---------- Local service content ---------- */
.local-seo {
  background:
    linear-gradient(180deg, rgba(243,246,242,0.58), rgba(255,255,255,0.96));
}
.local-seo-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid rgba(8,121,91,0.14);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.local-seo-panel h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  margin: 10px 0 16px;
}
.local-seo-panel p {
  color: var(--body);
  font-size: 18px;
  line-height: 1.75;
}
.local-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
  list-style: none;
}
.local-list li,
.local-area-grid article {
  border: 1px solid rgba(8,121,91,0.13);
  border-radius: 8px;
  background: rgba(255,255,255,0.82);
}
.local-list li {
  padding: 14px 16px;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
}
.local-area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}
.local-area-grid article {
  padding: 22px;
}
.local-area-grid h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.local-area-grid p {
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--bg);
  border-top: 1px solid rgba(18,34,53,0.06);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.faq-item {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.faq-item p {
  color: var(--ink-2);
  line-height: 1.66;
}

/* ---------- Instagram ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ig-card { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--r-md); display: block; }
.ig-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.ig-card:hover img { transform: scale(1.08); }
.ig-card .ig-ov { position: absolute; inset: 0; background: rgba(8,121,91,0); display: flex; align-items: center; justify-content: center; transition: background .3s ease; }
.ig-card .ig-ov svg { width: 30px; height: 30px; fill: #fff; opacity: 0; transform: scale(.6); transition: all .3s var(--ease); }
.ig-card:hover .ig-ov { background: rgba(8,121,91,0.55); }
.ig-card:hover .ig-ov svg { opacity: 1; transform: scale(1); }

/* ---------- Aktuellt ---------- */
.news-lede {
  max-width: 880px;
  margin: 0 auto 42px;
  color: var(--muted);
  font-size: 18px;
  text-align: center;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.news-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-muted);
}
.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.news-card:hover .news-media img { transform: scale(1.045); }
.news-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.news-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8,121,91,0.09);
  color: var(--green-deep);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}
.news-source {
  color: var(--muted);
  font-size: 13px;
}
.news-body h2 {
  margin-bottom: 12px;
  font-size: 21px;
}
.news-body p {
  color: var(--body);
  line-height: 1.72;
}
.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.news-tags span {
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
}
.news-cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink-2); }
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,121,91,0.22), transparent 48%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 72px);
}
.cta-band-inner { position: relative; max-width: var(--container); margin: 0 auto; padding: 76px 24px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(26px,3.4vw,38px); letter-spacing: -.5px; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 18px; margin-top: 8px; }
.cta-band .btn-light { color: var(--ink); font-weight: 700; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info-card { display: grid; gap: 18px; }
.ci-row { display: flex; gap: 16px; align-items: flex-start; }
.ci-row .ci-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(8,121,91,0.09); display: flex; align-items: center; justify-content: center; flex: none; }
.ci-row .ci-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.8; }
.ci-row h4 { font-size: 15px; margin-bottom: 3px; }
.ci-row a, .ci-row p { color: var(--muted); font-size: 15px; }
.ci-row a:hover { color: var(--green); }

.form { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-sm); }
.form-intro { margin-bottom: 24px; }
.form-intro h2 { font-size: 26px; margin-bottom: 8px; }
.form-intro p { color: var(--muted); line-height: 1.55; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label, .fieldset legend { display: block; font-family: var(--font-head); font-weight: 500; font-size: 13.5px; color: var(--ink); margin-bottom: 7px; }
.field label .req, .fieldset legend .req { color: var(--green); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field select { min-height: 50px; appearance: auto; }
.field input[type="file"] {
  padding: 10px 12px;
  color: var(--muted);
  background: var(--bg);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green); box-shadow: var(--focus); }
.field textarea { resize: vertical; min-height: 130px; }
.fieldset {
  border: 0;
  padding: 0;
}
.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.check-option {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  min-height: 48px;
  margin: 0 !important;
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--body) !important;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.check-option:hover { border-color: rgba(8,121,91,0.40); background: #fff; color: var(--ink) !important; }
.check-option input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--green);
  flex: none;
}
.field-help, .field-error { font-size: 13.5px; line-height: 1.45; margin-top: 7px; }
.field-help { color: var(--muted); }
.field-error { color: #B42318; display: none; }
.fieldset.has-error .field-error { display: block; }
.fieldset.has-error .check-option { border-color: rgba(180,35,24,0.42); }
.bot-field { display: none; }
.form .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 13.5px; color: var(--muted); margin-top: 14px; text-align: center; }

/* ---------- Map ---------- */
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--footer-bg); color: var(--footer-muted); padding: 72px 0 0; }
.footer-grid { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; }
.footer .brand-word { color: #fff; }
.footer-about p { margin: 18px 0; font-size: 14.5px; line-height: 1.8; max-width: 320px; }
.footer-title { color: #fff; font-family: var(--font-head); font-size: 14px; font-weight: 650; line-height: 1.14; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a, .footer-contact a, .footer-contact p { font-size: 14.5px; color: var(--footer-muted); transition: color .2s ease; }
.footer ul a:hover, .footer-contact a:hover { color: #7CC9AD; }
.footer-contact { display: grid; gap: 13px; }
.footer-contact .fc-row { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; fill: #7CC9AD; flex: none; margin-top: 3px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; transition: background .25s ease, transform .25s ease; }
.footer-socials a:hover { background: var(--green); transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom { max-width: var(--container); margin: 56px auto 0; padding: 22px 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #7E91A3; }
.footer-bottom a { color: #B6C5D0; font-weight: 600; transition: color .2s ease; }
.footer-bottom a:hover { color: #7CC9AD; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Rich text (long-form SEO content) ---------- */
.richtext { max-width: 920px; margin: 0 auto; }
.richtext h2 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 32px); color: var(--ink); margin-bottom: 18px; }
.richtext h3 { font-family: var(--font-head); font-size: 20px; color: var(--ink); margin: 26px 0 10px; }
.richtext p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.richtext ul { margin: 0 0 16px; padding-left: 20px; color: var(--muted); line-height: 1.8; }
.richtext ul li { margin-bottom: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .badges, .services-grid, .features-grid, .stats { grid-template-columns: repeat(2, 1fr); }
  .local-area-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .project-intro { grid-template-columns: 1fr; align-items: start; }
  .project-stats { max-width: 420px; }
}
@media (max-width: 860px) {
  .nav, .header-cta .btn { display: none; }
  .hamburger { display: block; }
  .topbar-contact .email-item { display: none; }
  .header-inner { gap: 14px; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero {
    display: block;
    min-height: auto;
    padding-bottom: 0;
  }
  .hero-inner {
    padding: 92px 24px 28px;
  }
  .hero-content {
    max-width: none;
  }
  .hero p {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 46px;
  }
  .hero-trust {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
  }
  .hero-trust-inner {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 13px;
    padding: 18px 24px 22px;
  }
  .hero-trust .item {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.35;
  }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .floater { right: 16px; bottom: -20px; }
  .steps, .team-grid, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; align-items: center; padding: 60px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery { columns: 1; }
  .gallery-tabs { width: 100%; }
  .gallery-tab { flex: 1 1 calc(50% - 6px); }
  .topbar-inner { justify-content: center; }
  .topbar-socials { display: none; }
  .brand-logo { height: 38px; }
  .page-hero { min-height: 320px; }
  .page-hero-inner { padding: 72px 24px 68px; }
  .local-seo-panel { padding: 28px; }
  .local-list, .local-area-grid, .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .badges, .services-grid, .features-grid, .stats, .news-grid, .ig-grid { grid-template-columns: 1fr; }
  .header-inner { height: 72px; padding-left: 20px; padding-right: 20px; gap: 10px; }
  .header-cta { gap: 8px; }
  .brand-logo { height: 34px; }
  .lang-switch { min-height: 38px; }
  .lang-switch a, .lang-switch span { min-width: 33px; padding-left: 8px; padding-right: 8px; }
  .hamburger { width: 42px; height: 42px; }
  .hamburger span { left: 9px; right: 9px; }
  .project-stats { grid-template-columns: 1fr; }
  .gallery-tab { flex-basis: 100%; }
  .form { padding: 26px 20px; }
  .option-grid { grid-template-columns: 1fr; }
  .local-seo-panel, .local-area-grid article, .faq-item { padding: 22px; }
}

@media (max-width: 360px) {
  .header-inner { padding-left: 16px; padding-right: 16px; }
  .brand-logo { height: 31px; }
  .lang-switch a, .lang-switch span { min-width: 31px; padding-left: 7px; padding-right: 7px; }
  .hamburger { width: 40px; height: 40px; }
  .hero-inner { padding-left: 20px; padding-right: 20px; }
  .hero-trust-inner { padding-left: 20px; padding-right: 20px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
