/* Dark premium Scandinavian — solar / eco brand tokens */
:root {
  --bg: #0c0f0d;
  --bg-deep: #080a09;
  --surface: #141a16;
  --surface-alt: #1b231e;
  --surface-elevated: #222b26;
  --text: #e9efe9;
  --text-soft: #d2dbd2;
  --muted: #9aa89c;
  --primary: #6b9a78;
  --primary-hover: #7fad8b;
  --primary-deep: #3d5c46;
  --accent: #c9b06a;
  --accent-soft: rgba(201, 176, 106, 0.14);
  --border: rgba(233, 239, 233, 0.1);
  --border-strong: rgba(233, 239, 233, 0.18);
  --focus: #8fc49a;
  --danger: #d97878;
  --success: #6b9a78;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1240px;
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
  --header-h: 76px;
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --img-placeholder: linear-gradient(145deg, #1a231e 0%, #243028 45%, #1a211c 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  margin: 0;
  position: relative;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(107, 154, 120, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 0%, rgba(201, 176, 106, 0.06), transparent 50%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--primary-hover);
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  background: var(--primary);
  color: var(--bg-deep);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
  max-width: 100%;
}

.section--tight {
  padding: calc(var(--section-space) * 0.7) 0;
}

.section--surface {
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section--alt {
  background: linear-gradient(180deg, var(--surface-alt), var(--surface));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 680;
  margin: 0 0 1rem;
  color: var(--text);
}

.section-lead {
  max-width: 42rem;
  color: var(--muted);
  margin: 0 0 2.25rem;
  font-size: 1.08rem;
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-lead {
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.98rem;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.25s ease;
}

.btn .arrow {
  transition: transform 0.25s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--primary);
  color: #0b100d;
  box-shadow: 0 10px 28px rgba(107, 154, 120, 0.28);
}

.btn--primary:hover {
  background: var(--primary-hover);
  color: #0b100d;
  text-decoration: none;
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--text);
  text-decoration: none;
  background: rgba(107, 154, 120, 0.08);
}

.btn--accent {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(201, 176, 106, 0.35);
}

.btn--accent:hover {
  background: rgba(201, 176, 106, 0.22);
  color: #edd9a0;
  text-decoration: none;
}

.btn--full {
  width: 100%;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--img-placeholder);
  box-shadow: var(--shadow-md);
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.media-frame--hero {
  aspect-ratio: 16 / 11;
  min-height: 280px;
}

.media-frame--hero img {
  object-position: 78% center;
}

.media-frame--wide {
  aspect-ratio: 21 / 10;
  min-height: 220px;
}

.media-frame--square {
  aspect-ratio: 1 / 1;
}

.media-frame--card {
  aspect-ratio: 4 / 3;
}

.media-frame--person img {
  object-position: center 18%;
}

.media-frame--panels img {
  object-position: center 40%;
}

.media-frame--install img {
  object-position: center 28%;
}

.media-frame--service img {
  object-position: center center;
}

.media-frame--eco img {
  object-position: center center;
}

.media-frame__label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(8, 10, 9, 0.72);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.82rem;
  backdrop-filter: blur(8px);
}

.media-frame__shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, transparent 30%, rgba(107, 154, 120, 0.08) 48%, transparent 62%),
    radial-gradient(circle at 70% 20%, rgba(201, 176, 106, 0.12), transparent 40%);
  pointer-events: none;
}

.media-frame:has(img) .media-frame__shine {
  opacity: 0.35;
}

@media (max-width: 768px) {
  .media-frame--hero img {
    object-position: 62% center;
  }

  .media-frame--person img {
    object-position: center 12%;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.25s ease, box-shadow 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .card--lift:hover {
    transform: translateY(-4px);
    border-color: rgba(107, 154, 120, 0.35);
    box-shadow: var(--shadow-md);
  }
}

.card h3,
.card .card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(107, 154, 120, 0.12);
  color: var(--primary);
  border: 1px solid rgba(107, 154, 120, 0.22);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.85rem;
}

.price {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0.75rem 0 0.35rem;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0;
}

.disclaimer {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 176, 106, 0.25);
  background: var(--accent-soft);
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  max-width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.85rem;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li + li {
  margin-top: 0.55rem;
}

.footer-col a {
  color: var(--muted);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--primary-hover);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-prose {
  max-width: 780px;
}

.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 2.25rem 0 0.85rem;
}

.legal-prose h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.6rem;
}

.legal-prose p,
.legal-prose li {
  color: var(--muted);
}

.legal-prose ul {
  padding-left: 1.2rem;
}

.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3rem;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(ellipse 70% 80% at 85% 10%, rgba(107, 154, 120, 0.14), transparent 55%),
    var(--bg);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  max-width: 16ch;
}

.page-hero p {
  max-width: 40rem;
  color: var(--muted);
  margin: 0;
  font-size: 1.1rem;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(100% - 1.5rem, var(--container));
  }
}
