:root {
  --white: #fff;
  --cream: #faf8f5;
  --sand: #eeebe6;
  --warm: #d4cfc8;
  --dark: #14201d;
  --body: #4a544f;
  --soft: #8e9893;
  --accent: #15403c;
  --accent-dark: #0d2e2c;
  --accent-bg: rgba(21, 64, 60, 0.07);
  --accent-bg-strong: rgba(21, 64, 60, 0.12);
  --sans: 'Outfit', system-ui, -apple-system, sans-serif;
  --top-h: 38px;
  --nav-h: 68px;
  --r: 4px;
  --max: 1300px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(3rem, 6vw, 5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--top-h) + var(--nav-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection {
  background: var(--accent-bg-strong);
  color: var(--dark);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.anim {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes rise { to { opacity: 1; transform: none; } }
.a1 { animation-delay: 0.15s; }
.a2 { animation-delay: 0.3s; }
.a3 { animation-delay: 0.5s; }
.a4 { animation-delay: 0.7s; }
.a5 { animation-delay: 0.95s; }

.reveal { opacity: 0; transform: translateY(28px); }
.reveal.show {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

section { overflow-x: clip; }

.pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 0.45rem 1.15rem;
  border-radius: 100px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.95rem 2rem;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  min-height: 48px;
}
.cta--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(21, 64, 60, 0.22);
}
.cta--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(21, 64, 60, 0.32);
}
.cta--white {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.cta--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.cta--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cta--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.cta--ghost-light {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(20, 32, 29, 0.25);
}
.cta--ghost-light:hover {
  background: var(--accent-bg);
  border-color: var(--accent);
  color: var(--accent-dark);
}
.psection:not(.psection--dark) .cta--ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(20, 32, 29, 0.24);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.psection:not(.psection--dark) .cta--ghost:hover {
  background: var(--accent-bg);
  border-color: var(--accent);
  color: var(--accent-dark);
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}
.header-fixed.hide-top {
  transform: translateY(calc(var(--top-h) * -1));
}

.topbar {
  height: var(--top-h);
  background: var(--dark);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.7);
}
.topbar__wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar__l, .topbar__r {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}
.topbar__link:hover { color: var(--white); }
.topbar__desk { display: none; }
@media (min-width: 768px) { .topbar__desk { display: inline-flex; } }

.topbar__social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.topbar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  transition: all 0.2s;
}
.topbar__icon:hover {
  color: var(--white);
  background: var(--accent);
}

.nav {
  height: var(--nav-h);
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-color: var(--sand);
}
.nav__bar {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
}

.nav__logo {
  margin-right: auto;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}
.nav.scrolled .nav__logo-img { filter: none; }

.nav__center {
  display: none;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 2.2rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 900px) { .nav__center { display: flex; } }
.nav__center > a,
.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
  position: relative;
  padding: 0.3rem 0;
}
.nav__center > a::after,
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__center > a:hover, .nav__link:hover { color: var(--white); }
.nav__center > a:hover::after, .nav__link:hover::after { transform: scaleX(1); }
.nav.scrolled .nav__center > a, .nav.scrolled .nav__link { color: var(--body); }
.nav.scrolled .nav__center > a:hover, .nav.scrolled .nav__link:hover { color: var(--dark); }
.nav__item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--nav-h);
}
.nav__link--services {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav__link--services::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  order: 2;
  opacity: 0.75;
  transform: translateY(1px);
}
.nav__dropdown {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  width: 310px;
  transform: translateX(-50%) translateY(10px);
  padding: 0.6rem;
  background: rgba(250, 248, 245, 0.98);
  border: 1px solid rgba(20, 32, 29, 0.1);
  border-radius: var(--r);
  box-shadow: 0 22px 55px rgba(20, 32, 29, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: var(--r);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
  transition: background 0.18s ease, color 0.18s ease;
}
.nav__dropdown a:hover,
.nav__dropdown a:focus {
  background: var(--accent-bg);
  color: var(--accent-dark);
}
.nav__dropdown-all {
  margin-top: 0.45rem;
  border-top: 1px solid rgba(20, 32, 29, 0.1);
  color: var(--accent-dark);
}

.nav__btn {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: var(--accent);
  padding: 0.65rem 1.3rem;
  border-radius: var(--r);
  transition: all 0.3s;
  min-height: 40px;
}
@media (min-width: 768px) { .nav__btn { display: inline-flex; } }
.nav__btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(21, 64, 60, 0.3);
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  z-index: 200;
  position: relative;
}
@media (min-width: 900px) { .nav__hamburger { display: none; } }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}
.nav.scrolled .nav__hamburger span { background: var(--dark); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.nav.menu-open { background: var(--dark); border-color: transparent; }
.nav.menu-open .nav__logo-img { filter: brightness(0) invert(1); }
.nav.menu-open .nav__hamburger span { background: var(--white); }
.nav.menu-open .nav__btn { background: var(--accent); color: var(--white); }

.mmenu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--dark);
  padding: calc(var(--top-h) + var(--nav-h) + 2rem) var(--pad) 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
}
.mmenu.open { opacity: 1; visibility: visible; }
.mmenu__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - var(--top-h) - var(--nav-h) - 4rem);
}
.mmenu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}
.mmenu__nav > a,
.mmenu__parent {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 44px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
}
.mmenu.open .mmenu__nav > a,
.mmenu.open .mmenu__parent,
.mmenu.open .mmenu__sub a {
  opacity: 1;
  transform: translateY(0);
}
.mmenu.open .mmenu__nav > a:nth-child(1) { transition-delay: 0.1s; }
.mmenu.open .mmenu__nav > a:nth-child(2) { transition-delay: 0.16s; }
.mmenu.open .mmenu__group { transition-delay: 0.22s; }
.mmenu.open .mmenu__nav > a:nth-child(4) { transition-delay: 0.28s; }
.mmenu.open .mmenu__nav > a:nth-child(5) { transition-delay: 0.34s; }
.mmenu__nav a:hover { color: var(--accent); }
.mmenu__group {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mmenu.open .mmenu__group {
  opacity: 1;
  transform: translateY(0);
}
.mmenu__parent {
  opacity: 1;
  transform: none;
}
.mmenu__sub {
  display: grid;
  gap: 0.05rem;
  padding: 0.35rem 0 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mmenu__sub a {
  min-height: 38px;
  padding: 0.42rem 0;
  border-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.74);
  opacity: 0;
  transform: translateY(12px);
}
.mmenu__sub .mmenu__all {
  margin-top: 0.4rem;
  color: var(--white);
}

.mmenu__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mmenu.open .mmenu__bottom { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

.mmenu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1.1rem 2rem;
  border-radius: var(--r);
  width: 100%;
  min-height: 52px;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(21, 64, 60, 0.3);
}
.mmenu__cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.mmenu__foot {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}
.mmenu__foot a {
  color: rgba(255, 255, 255, 0.75);
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.mmenu__foot a:hover { color: var(--accent); }

.mmenu__social {
  display: flex;
  gap: 0.6rem;
  padding-top: 1rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.mmenu__social .mmenu__sicon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  min-height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.mmenu__social .mmenu__sicon:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(100vh, 920px);
  min-height: 640px;
  padding-top: calc(var(--top-h) + var(--nav-h));
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: heroZoom 28s ease-out forwards;
  filter: saturate(1.05) contrast(1.04);
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
.hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 45%, transparent, rgba(13, 46, 44, 0.3) 80%),
    linear-gradient(to top, rgba(13, 46, 44, 0.6) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(13, 46, 44, 0.2) 0%, transparent 35%);
}
.hero__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--pad);
  max-width: 820px;
  margin: 0 auto;
}
.hero__h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(2.5rem, 6.2vw + 0.3rem, 5rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.6rem;
  max-width: 18ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.hero__sub {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  width: 100%;
}
@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .cta { width: 100%; }
}

.intro {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.intro__wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.intro__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}
@media (min-width: 900px) {
  .intro__split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.intro__copy { max-width: 540px; }
.intro__copy h2 {
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin: 1rem 0 1rem;
  text-wrap: balance;
}
.intro__copy .intro__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--body);
  line-height: 1.55;
  margin-bottom: 1rem;
  font-weight: 400;
}
.intro__copy p {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.intro__copy .intro__quote {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 500;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  margin: 1.5rem 0;
  line-height: 1.45;
}
.intro__cta { margin-top: 0.75rem; }
.intro__pic {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--sand);
  aspect-ratio: 4 / 5;
  max-height: 540px;
}
.intro__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
@media (max-width: 899px) {
  .intro__pic { aspect-ratio: 4 / 3; max-height: 400px; }
}
.intro__usps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2.5rem 0 2rem;
}
@media (min-width: 640px) { .intro__usps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .intro__usps { grid-template-columns: repeat(4, 1fr); } }
.intro__usp {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r);
  transition: all 0.3s;
}
.intro__usp:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(20, 32, 29, 0.06);
  transform: translateY(-2px);
}
.intro__usp svg { color: var(--accent); flex-shrink: 0; margin-top: 0.15rem; }
.intro__usp strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.intro__usp span {
  font-size: 0.84rem;
  color: var(--body);
  line-height: 1.45;
}

.siffror {
  background: var(--dark);
  color: var(--white);
  padding: 2rem 0;
}
.siffror__wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.35rem) clamp(1rem, 2.5vw, 2rem);
}
.pwrap .siffror__wrap {
  max-width: none;
  padding: 0;
}
.siffror__item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.siffror__num {
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.siffror__num sup {
  font-size: 0.7em;
  color: var(--accent);
  margin-left: 0.05em;
  vertical-align: 0.35em;
}
.siffror__label {
  max-width: 22ch;
  font-size: clamp(0.68rem, 0.9vw, 0.74rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.45;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.55);
}

.produkter {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.produkter__wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.produkter__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.produkter__head h2 {
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin: 1rem 0 0.75rem;
  text-wrap: balance;
}
.produkter__sub {
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.6;
}

.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products { grid-template-columns: repeat(4, 1fr); } }
.product {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--dark);
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20, 32, 29, 0.1);
  border-color: var(--accent);
}
.product__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
  position: relative;
}
.product__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: saturate(1.05);
}
.product:hover .product__img img {
  transform: scale(1.05);
  filter: saturate(1.15) brightness(1.03);
}
.product__body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product__body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin-bottom: 0.55rem;
}
.product__body p {
  font-size: 0.92rem;
  color: var(--body);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.1rem;
}
.product__body::before {
  content: '';
  display: block;
  height: 1px;
  background: var(--sand);
  margin: 0 -1.4rem 1rem;
  order: 5;
}
.product__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
  order: 6;
}
.product__link svg { transition: transform 0.3s ease; }
.product:hover .product__link svg { transform: translateX(4px); }

.stenkista {
  padding: clamp(3rem, 5vw, 4rem) 0;
  background: var(--sand);
  border-top: 1px solid rgba(20, 32, 29, 0.06);
  border-bottom: 1px solid rgba(20, 32, 29, 0.06);
}
.stenkista__wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.stenkista__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 900px) {
  .stenkista__split { grid-template-columns: 1fr 1.25fr; gap: 4rem; }
}
.stenkista__left h2 {
  font-weight: 600;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin: 1rem 0 0.75rem;
  text-wrap: balance;
}
.stenkista__lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--body);
  line-height: 1.55;
  font-weight: 400;
  max-width: 32ch;
}
.stenkista__right p {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 60ch;
}
.stenkista__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1rem 0 1.5rem;
  padding: 0;
}
.stenkista__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.5;
}
.stenkista__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.9rem;
  height: 1.5px;
  background: var(--accent);
}
.stenkista__list strong {
  color: var(--dark);
  font-weight: 600;
}

.workshop {
  padding: var(--section-y) 0;
  background: var(--sand);
}
.workshop__wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.workshop__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.workshop__item {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(20, 32, 29, 0.09);
}
@media (min-width: 680px) {
  .workshop__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1040px) {
  .workshop__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.bygg {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  color: var(--white);
  overflow: hidden;
}
.bygg__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.08);
}
.bygg__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(21, 64, 60, 0.5) 0%, rgba(13, 46, 44, 0.65) 60%, rgba(21, 64, 60, 0.5) 100%);
}
.bygg__wrap {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}
.bygg__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  padding: 0.45rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.bygg__wrap h2 {
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1rem;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}
.bygg__wrap p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.bygg__ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.galleri {
  padding: var(--section-y) 0;
  background: var(--cream);
}
.galleri__wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.galleri__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.25rem;
}
.galleri__head h2 {
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin: 1rem 0 0;
}

.galleri__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}
@media (min-width: 768px) { .galleri__grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }
.galleri__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--sand);
  border-radius: var(--r);
  cursor: pointer;
}
.galleri__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: saturate(1.04);
}
.galleri__item:hover img {
  transform: scale(1.05);
  filter: saturate(1.12) brightness(1.04);
}
.galleri__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(20, 32, 29, 0.25) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.galleri__item:hover::after { opacity: 1; }
.galleri__item:focus-visible {
  outline: 3px solid rgba(202, 91, 49, 0.62);
  outline-offset: 4px;
}

.psection.psection--gallery {
  padding-top: clamp(5rem, 8vw, 7rem);
  padding-bottom: clamp(6rem, 10vw, 9rem);
}
.pwrap--gallery {
  max-width: 1160px;
}
.pwrap--gallery > p {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}
.pwrap--gallery .galleri__grid {
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.35rem);
}
.pwrap--gallery .galleri__item {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(20, 32, 29, 0.12);
}
@media (min-width: 760px) {
  .pwrap--gallery .galleri__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.galleri__more {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}
@media (max-width: 480px) {
  .galleri__more { flex-direction: column; align-items: stretch; }
  .galleri__more .cta { width: 100%; }
}

.showcase {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  color: var(--white);
  overflow: hidden;
}
.showcase__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.showcase__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(21, 64, 60, 0.35) 0%, rgba(13, 46, 44, 0.6) 100%);
}
.showcase__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}
.showcase__content p {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-wrap: balance;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
}
.showcase__attr {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(8, 18, 16, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox__inner {
  position: relative;
  width: min(1120px, 100%);
  max-height: 88vh;
  display: grid;
  gap: 0.75rem;
}
.lightbox__img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}
.lightbox__caption {
  min-height: 1.4rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  text-align: center;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.22);
}
.lightbox__close {
  top: -58px;
  right: 0;
}
.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__prev { left: -62px; }
.lightbox__next { right: -62px; }
@media (max-width: 760px) {
  .lightbox__close {
    top: 0.75rem;
    right: 0.75rem;
  }
  .lightbox__prev {
    left: 0.75rem;
  }
  .lightbox__next {
    right: 0.75rem;
  }
}

.ig {
  padding: var(--section-y) 0 calc(var(--section-y) * 0.6);
  background: var(--cream);
}
.ig__wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.ig__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.ig__head h2 {
  font-weight: 600;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-top: 1.25rem;
}
.ig__feed { min-height: 200px; }

.kontakt {
  padding: var(--section-y) 0;
  background: var(--white);
}
.kontakt__wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) { .kontakt__wrap { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.kontakt__left h2 {
  font-weight: 600;
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin: 1rem 0 0.75rem;
  text-wrap: balance;
}
.kontakt__left > p {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.kontakt__cards {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.kontakt__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--r);
  transition: all 0.3s;
  position: relative;
}
a.kontakt__card:hover {
  background: var(--white);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 32, 29, 0.06);
}
.kontakt__card svg {
  color: var(--accent);
  flex-shrink: 0;
}
.kontakt__card > div { flex: 1; min-width: 0; }
.kontakt__card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.15rem;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.kontakt__card span {
  font-size: 0.82rem;
  color: var(--body);
}
.kontakt__card-arrow {
  font-size: 1.1rem;
  color: var(--soft);
  margin-left: auto;
  transition: transform 0.25s, color 0.25s;
  flex-shrink: 0;
}
a.kontakt__card:hover .kontakt__card-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

.kontakt__form {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--r);
  padding: clamp(1.85rem, 3vw, 2.5rem);
  max-width: 100%;
  overflow: hidden;
}
.form__title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 480px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__row .form__group { margin-bottom: 0; }
.form__group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.005em;
}
.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(20, 32, 29, 0.15);
  border-radius: var(--r);
  background: var(--white);
  color: var(--dark);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.25s;
  min-height: 48px;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--soft);
}
.form__group textarea { resize: vertical; min-height: 110px; }
.form__group select {
  cursor: pointer;
}
.kontakt__form .cta { margin-top: 0.5rem; width: 100%; }

#contact-form { max-width: 100%; overflow: hidden; }
#contact-form .g-recaptcha {
  transform-origin: left center;
  max-width: 100%;
}
@media (max-width: 400px) {
  #contact-form .g-recaptcha { transform: scale(0.85); }
}
@media (max-width: 340px) {
  #contact-form .g-recaptcha { transform: scale(0.75); }
}

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}
.footer__cta {
  background: var(--accent);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.footer__cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1);
}
.footer__cta-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(13, 46, 44, 0.55) 0%, rgba(21, 64, 60, 0.7) 100%);
}
.footer__cta-wrap {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--pad);
  text-align: center;
}
.footer__cta h3 {
  font-weight: 600;
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}
.footer__cta p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.4rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.footer__cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}
@media (max-width: 480px) {
  .footer__cta-btns { flex-direction: column; align-items: stretch; }
  .footer__cta-btns .cta { width: 100%; }
}
.footer__cta .cta--white { color: var(--accent-dark); }
.footer__cta .cta--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.footer__cta .cta--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.footer__top { padding: clamp(2.5rem, 5vw, 4rem) 0 2rem; }
.footer__wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) { .footer__wrap { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__wrap { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2rem; } }

.footer__brand { max-width: 320px; }
.footer__logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.1rem;
}
.footer__logo-img {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.75rem;
}
.footer__brand-foot {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}
.footer__social {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.4rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.footer__social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__col h4 {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: #6e9a95; }
.footer__col p strong { color: var(--white); font-weight: 600; }
.footer__addr {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.4rem;
}
.footer__map {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.85rem var(--pad);
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 640px) {
  .kontakt__wrap > div, .products > a, .galleri__grid > div, .footer__wrap > div {
    min-width: 0;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s;
    transition-duration: 0.001s;
  }
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJuktqQ4E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/outfit/v15/QGYvz_MVcBeNP4NJtEtq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.phero { position: relative; min-height: 58vh; display: flex; align-items: flex-end; padding: calc(var(--top-h) + var(--nav-h) + 4rem) var(--pad) clamp(2.5rem, 5vw, 4rem); overflow: clip; isolation: isolate; }
.phero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.phero__veil { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,24,22,0.32) 0%, rgba(10,24,22,0.5) 55%, rgba(10,24,22,0.8) 100%); }
.phero__inner { width: 100%; max-width: var(--max); margin: 0 auto; color: var(--white); }
.phero .pill { color: var(--white); background: rgba(255,255,255,0.16); }
.phero h1 { font-size: clamp(2.1rem, 5.4vw, 3.5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin: 1rem 0 0; max-width: 18ch; }
.phero__lead { margin-top: 1.1rem; font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(255,255,255,0.92); max-width: 56ch; }
.phero__ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.82rem; margin-bottom: 0.5rem; }
.crumbs a { color: rgba(255,255,255,0.7); }
.crumbs a:hover { color: var(--white); }
.crumbs span { color: rgba(255,255,255,0.5); }
.psection { padding: var(--section-y) var(--pad); }
.psection--sand { background: var(--sand); }
.psection--dark {
  background: linear-gradient(135deg, #0d2e2c 0%, #15403c 48%, #1d5751 100%);
  color: var(--cream);
  position: relative;
  overflow: clip;
}
.psection--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent 42%, rgba(255,255,255,0.05));
  pointer-events: none;
}
.psection--dark .pnarrow {
  position: relative;
  max-width: 980px;
  padding-left: clamp(1.25rem, 3vw, 2.25rem);
  border-left: 3px solid rgba(255,255,255,0.34);
}
.psection--dark .pill {
  color: var(--white);
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
}
.psection--dark h2 { color: var(--white); max-width: 18ch; }
.psection--dark p {
  color: rgba(255,255,255,0.9);
  max-width: 68ch;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}
.psection--dark .cta--white { color: var(--accent-dark); }
.psection--dark .cta--ghost-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.46);
  background: rgba(255,255,255,0.08);
}
.psection--dark .cta--ghost-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.16);
}
.pwrap { max-width: var(--max); margin: 0 auto; }
.pnarrow { max-width: 760px; margin: 0 auto; }
.psection h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; color: var(--dark); }
.psection h3 { font-size: 1.15rem; font-weight: 600; color: var(--dark); margin-top: 1.5rem; }
.psection p { color: var(--body); margin-top: 1rem; }
.psection .pill + h2 { margin-top: 1rem; }
.pgrid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.pmedia { aspect-ratio: 4 / 3; border-radius: 10px; overflow: hidden; }
.pmedia img { width: 100%; height: 100%; object-fit: cover; }
.pgrid--rev .pmedia { order: -1; }
.plist { margin-top: 1.5rem; display: grid; gap: 0.75rem; }
.plist li { position: relative; padding-left: 1.6rem; color: var(--body); }
.plist li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.service-tile {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r);
  overflow: hidden;
  color: var(--dark);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.service-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 64, 60, 0.35);
  box-shadow: 0 16px 34px rgba(20, 32, 29, 0.1);
}
.service-tile__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}
.service-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-tile__body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.service-tile__body h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}
.service-tile__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}
.service-tile__link {
  margin-top: 0.35rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.step {
  border-top: 2px solid var(--accent);
  padding-top: 1rem;
}
.step span {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}
.step h3 {
  margin-top: 0;
}
.faq-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}
.faq-head h2 {
  margin-top: 1rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.faq-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(21, 64, 60, 0.12);
  border-top: 3px solid var(--accent);
  border-radius: var(--r);
  padding: clamp(1.2rem, 2vw, 1.6rem);
  box-shadow: 0 12px 30px rgba(20, 32, 29, 0.07);
}
.faq-card h3 {
  margin-top: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}
.faq-card p {
  margin-top: 0.8rem;
  font-size: 0.96rem;
  line-height: 1.65;
}
@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .service-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) { .pgrid { grid-template-columns: 1fr; } .pgrid--rev .pmedia { order: 0; } }

.psection--dark .pill {
  color: var(--white);
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
}
.psection--dark h2,
.psection--dark h3 {
  color: var(--white);
}
.psection--dark p {
  color: rgba(255,255,255,0.9);
}
.psection--dark .cta--white {
  color: var(--accent-dark);
}
.psection--dark .cta--ghost-light {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}
.psection--dark .cta--ghost-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.16);
}
