:root {
  color-scheme: light;
  --ink: #121212;
  --muted: #626262;
  --line: #dedbd5;
  --paper: #f7f5f1;
  --white: #ffffff;
  --stone: #8b8a84;
  --brick: #9f4f37;
  --brick-dark: #6f3428;
  --charcoal: #1d1d1b;
  --shadow: 0 24px 70px rgba(18, 18, 18, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 42px);
  background: rgba(247, 245, 241, 0.88);
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 172px;
}

.brand img {
  width: 184px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a,
.header-call {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

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

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  font-weight: 700;
  font-size: 0.94rem;
}

.header-call {
  padding: 0 18px;
  border: 1px solid var(--charcoal);
}

.header-call:hover {
  background: var(--charcoal);
  color: var(--white);
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(44px, 7vw, 88px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brick-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 8vw, 7.3rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 4.5vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.copy-email {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 8px 0 14px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.1;
}

.email-text {
  user-select: text;
}

.copy-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: var(--white);
  border: 1px solid rgba(18, 18, 18, 0.14);
  color: var(--charcoal);
  cursor: pointer;
}

.copy-button span {
  width: 13px;
  height: 13px;
  border: 1.5px solid currentColor;
  font-size: 0;
}

.copy-button span::before {
  position: absolute;
  width: 13px;
  height: 13px;
  margin: -5px 0 0 -5px;
  border: 1.5px solid currentColor;
  background: inherit;
  content: "";
}

.copy-button:hover {
  border-color: var(--charcoal);
}

.copy-email:hover {
  border-color: rgba(18, 18, 18, 0.32);
}

.copy-email.copied::after {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 2;
  padding: 5px 8px;
  background: var(--charcoal);
  color: var(--white);
  content: "Kopieret";
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.copy-email.compact {
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--charcoal);
  font-weight: 800;
}

.button.primary {
  background: var(--charcoal);
  color: var(--white);
}

.button.secondary {
  background: transparent;
  color: var(--charcoal);
}

.button.social {
  gap: 10px;
  border-color: #1877f2;
  background: #1877f2;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(24, 119, 242, 0.2);
}

.button.social:hover {
  background: #0f65d8;
  border-color: #0f65d8;
}

.fb-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--white);
  color: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1;
  border-radius: 50%;
}

.hero-media {
  position: relative;
  margin: 0;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-media span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-media strong {
  font-size: 1.08rem;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip div {
  min-height: 118px;
  padding: 28px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.intro-strip div:last-child {
  border-right: 0;
}

.intro-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
}

.intro-strip strong {
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.services,
.cases {
  padding: clamp(76px, 10vw, 128px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 28px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-list article {
  min-height: 238px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.42);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-list span {
  display: block;
  margin-bottom: 34px;
  color: var(--brick);
  font-weight: 900;
}

.service-list p,
.about-copy p,
.quality-grid p,
.contact p {
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  padding-bottom: clamp(76px, 10vw, 128px);
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 620px;
}

.about-copy p {
  font-size: 1.04rem;
}

.facebook-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 420px);
  gap: clamp(30px, 7vw, 88px);
  align-items: center;
  padding-bottom: clamp(76px, 10vw, 128px);
}

.facebook-copy {
  max-width: 680px;
}

.facebook-copy p {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.reels-viewer {
  position: relative;
  width: min(100%, 390px);
  margin-left: auto;
  padding: 12px;
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.reels-topbar {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 10px 8px;
  font-size: 0.86rem;
}

.reels-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #1877f2;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(24, 119, 242, 0.18);
}

.reel-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #0b0b0b;
  border-radius: 22px;
}

.reel-frame iframe {
  width: 100%;
  height: 100%;
}

.quality {
  background: var(--charcoal);
  color: var(--white);
}

.quality-inner {
  padding: clamp(72px, 9vw, 118px) 0;
}

.quality .eyebrow {
  color: #d29a80;
}

.quality h2 {
  max-width: 940px;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 6vw, 82px);
  max-width: 960px;
}

.quality-grid p {
  color: #cbc8c2;
  font-size: 1.08rem;
}

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

.gallery figure {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  background: #ddd8cf;
}

.gallery figure.wide {
  grid-column: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.gallery figure:hover img {
  transform: scale(1.035);
}

.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 800;
}

.trustpilot-test {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(30px, 5vw, 48px);
  background: #eef6df;
  border-left: 4px solid #00b67a;
}

.trustpilot-test h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
}

.trustpilot-test p {
  max-width: 720px;
  margin-bottom: 0;
  color: #53604f;
}

.trustpilot-widget-shell {
  display: grid;
  gap: 8px;
  min-width: min(100%, 560px);
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 182, 122, 0.24);
}

.trustpilot-widget-shell.carousel {
  min-height: 164px;
}

.trustpilot-widget {
  min-height: 130px;
}

.trustpilot-widget a {
  color: #00b67a;
  font-weight: 900;
}

.trustpilot-widget-shell span {
  color: #53604f;
  font-size: 0.78rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 18px;
  padding: clamp(42px, 6vw, 64px);
  background: var(--white);
  border-top: 4px solid var(--brick);
}

.contact h2 {
  margin-bottom: 12px;
}

.contact p {
  max-width: 650px;
  margin-bottom: 0;
}

.contact-actions {
  display: grid;
  gap: 10px;
  min-width: min(100%, 260px);
}

.contact-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  font-weight: 900;
  white-space: nowrap;
}

.contact-number {
  background: var(--charcoal);
  color: var(--white);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
}

.contact-email {
  justify-content: space-between;
  min-height: 58px;
  padding: 0 12px 0 20px;
  background: var(--paper);
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 900;
}

.contact-email:hover {
  border-color: var(--charcoal);
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer a:hover {
  color: var(--ink);
}

.developer-credit {
  color: #8a8a8a;
}

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

  .site-nav {
    display: none;
  }

  .hero,
  .about,
  .facebook-feature {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-media img {
    aspect-ratio: 16 / 12;
  }

  .intro-strip,
  .service-list,
  .quality-grid,
  .trustpilot-test,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-strip div:last-child {
    border-bottom: 0;
  }

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

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

  .reels-viewer {
    width: min(100%, 390px);
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .header-contact {
    align-items: flex-end;
    flex-direction: column;
    gap: 6px;
  }

  .copy-email.compact {
    font-size: 0.74rem;
  }

  .copy-email.compact .copy-button {
    width: 24px;
    height: 24px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 142px;
  }

  .header-call {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .section-shell,
  .intro-strip,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-media figcaption {
    right: 12px;
    bottom: 12px;
    min-width: 150px;
    padding: 12px 14px;
  }

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

  .gallery figure.wide {
    grid-column: span 1;
  }

  .gallery figure,
  .gallery img {
    min-height: 280px;
  }

  .contact {
    padding: 28px 22px;
  }

  .contact-number {
    width: 100%;
  }

  .contact-email {
    width: 100%;
  }

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