:root {
  --orange: #f28a22;
  --orange-dark: #d96f0f;
  --text: #20242a;
  --muted: #68707a;
  --line: #e8e9eb;
  --surface: #f7f7f5;
  --dark: #171a1f;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 12px 35px rgba(22, 27, 35, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 185px; height: 55px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.main-nav a:not(.nav-cta) { transition: color .2s ease; }
.main-nav a:not(.nav-cta):hover { color: var(--orange-dark); }
.nav-cta { background: var(--orange); color: white; padding: 12px 19px; border-radius: 10px; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: #111; margin: 6px 0; }

.hero { min-height: 640px; position: relative; display: flex; align-items: stretch; overflow: hidden; }
.hero-image {
  position: absolute; inset: 0;
  background-image: url('https://www.ekebygg.se/ws/media-library/faca64c79a19461a9acdf72537609edc/bkpam2181932_ekebyggab010.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,13,17,.86) 0%, rgba(10,13,17,.65) 42%, rgba(10,13,17,.16) 76%, rgba(10,13,17,.06) 100%); }
.hero-content { position: relative; z-index: 1; color: white; padding: 94px 0 38px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 14px; font-size: 12px; letter-spacing: .18em; font-weight: 800; color: var(--orange-dark); }
.eyebrow.light { color: #ffac55; }
.hero h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1.02; margin: 0; max-width: 780px; letter-spacing: -.045em; }
.hero-copy { max-width: 610px; font-size: 18px; color: rgba(255,255,255,.88); margin: 25px 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 10px; font-weight: 700; font-size: 14px; }
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-ghost { border: 1px solid rgba(255,255,255,.7); color: white; background: rgba(255,255,255,.06); }
.trust-row { margin-top: auto; padding-top: 65px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.trust-item { padding: 16px 0 0; border-top: 1px solid rgba(255,255,255,.22); }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { font-size: 14px; }
.trust-item span { font-size: 12px; margin-top: 3px; color: rgba(255,255,255,.68); }

.section { padding: 96px 0; }
.section h2, .contact-section h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.1; letter-spacing: -.04em; margin: 0; }
.section-intro { color: var(--muted); max-width: 680px; margin: 18px 0 0; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 42px; }
.service-card { min-height: 235px; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: white; box-shadow: 0 6px 24px rgba(0,0,0,.035); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-4px); border-color: #ffd1a2; box-shadow: var(--shadow); }
.service-card .icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: var(--orange-dark); background: #fff4e7; font-size: 24px; font-weight: 700; margin-bottom: 24px; }
.service-card h3 { margin: 0 0 9px; font-size: 18px; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }

.about { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.about-copy > p:not(.eyebrow) { color: var(--muted); max-width: 650px; }
.check-list { list-style: none; padding: 0; margin: 27px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 31px; font-weight: 600; font-size: 14px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: white; background: var(--orange); width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; }
.about-panel { background: var(--dark); color: white; border-radius: 24px; padding: 38px; display: grid; gap: 20px; box-shadow: var(--shadow); }
.stat { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border-bottom: 0; }
.stat span { display: block; font-size: 44px; line-height: 1; font-weight: 800; color: #ff9a36; }
.stat small { display: block; margin-top: 8px; color: rgba(255,255,255,.72); font-size: 13px; }

.contact-section { background: #20242a; color: white; padding: 88px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-section p:not(.eyebrow) { color: rgba(255,255,255,.72); max-width: 580px; }
.contact-card { background: white; color: var(--text); border-radius: 20px; padding: 10px 30px; }
.contact-card a, .contact-card > div { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-card > *:last-child { border-bottom: 0; }
.contact-card span { color: var(--muted); font-size: 13px; }
.contact-card strong { font-size: 14px; }
.contact-card a:hover strong { color: var(--orange-dark); }

.site-footer { background: #101216; color: rgba(255,255,255,.72); padding: 55px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }
.footer-logo { width: 170px; height: 62px; object-fit: contain; object-position: left center; background: white; border-radius: 8px; padding: 7px; }
.site-footer h4 { color: white; margin: 0 0 10px; }
.site-footer p { margin: 0; font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 18px; font-size: 12px; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 22px 20px 28px;
    background: white;
    border-top: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    box-shadow: 0 18px 30px rgba(0,0,0,.08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 6px; }
  .nav-cta { text-align: center; margin-top: 5px; }
  .hero { min-height: 720px; }
  .hero-image { background-position: 56% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(10,13,17,.9), rgba(10,13,17,.55)); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 620px) {
  body { background: #f6f4f0; }
  .container { width: calc(100% - 32px); }

  .site-header {
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #ece8e1;
  }
  .nav-wrap { min-height: 82px; }
  .brand img { width: 198px; height: 58px; }
  .menu-toggle { padding: 7px 0 7px 12px; }
  .menu-toggle span { width: 30px; height: 2px; margin: 7px 0; }
  .main-nav { top: 82px; border-radius: 0 0 22px 22px; }

  .hero {
    min-height: 730px;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 18px 45px rgba(14,17,20,.18);
  }
  .hero-image {
    background-position: 58% center;
    transform: scale(1.045);
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9,12,16,.12) 0%, rgba(9,12,16,.48) 31%, rgba(9,12,16,.90) 72%, rgba(9,12,16,.97) 100%),
      linear-gradient(90deg, rgba(9,12,16,.52), rgba(9,12,16,.08));
  }
  .hero-content {
    padding: 74px 0 24px;
    justify-content: flex-start;
  }
  .eyebrow.light {
    width: fit-content;
    padding: 7px 10px;
    margin-bottom: 18px;
    border: 1px solid rgba(255,172,85,.35);
    border-radius: 999px;
    background: rgba(242,138,34,.12);
    backdrop-filter: blur(8px);
    font-size: 10px;
    letter-spacing: .16em;
    color: #ffb76d;
  }
  .hero h1 {
    max-width: 340px;
    font-size: clamp(43px, 12.4vw, 51px);
    line-height: .96;
    letter-spacing: -.055em;
    text-wrap: balance;
  }
  .hero-copy {
    max-width: 345px;
    margin: 22px 0 25px;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255,255,255,.82);
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 10px;
  }
  .btn {
    min-height: 54px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 13px;
  }
  .btn-primary {
    box-shadow: 0 10px 28px rgba(242,138,34,.28);
  }
  .btn-ghost {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.38);
    backdrop-filter: blur(8px);
  }
  .trust-row {
    margin-top: auto;
    padding-top: 24px;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .trust-item {
    min-height: 98px;
    padding: 13px 10px 11px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 15px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
  }
  .trust-item strong {
    font-size: 11px;
    line-height: 1.25;
  }
  .trust-item span {
    font-size: 9.5px;
    line-height: 1.35;
    margin-top: 7px;
    color: rgba(255,255,255,.62);
  }

  .section { padding: 68px 0; }
  .services {
    margin-top: -1px;
    background: #f6f4f0;
  }
  .services .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
  }
  .section h2, .contact-section h2 {
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -.045em;
  }
  .section-intro {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.55;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
    margin-top: 30px;
  }
  .service-card {
    min-height: 180px;
    padding: 18px 16px;
    border: 1px solid #ebe6de;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(38,31,24,.055);
    background: linear-gradient(180deg, #ffffff 0%, #fcfbf9 100%);
  }
  .service-card:nth-child(3n+1) { transform: translateY(8px); }
  .service-card:hover { transform: none; }
  .service-card .icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 13px;
    font-size: 21px;
    background: #fff0df;
  }
  .service-card h3 {
    margin-bottom: 7px;
    font-size: 15px;
    line-height: 1.2;
  }
  .service-card p {
    font-size: 12px;
    line-height: 1.45;
  }

  .about {
    background: #fff;
    border-radius: 28px 28px 0 0;
  }
  .about-grid { gap: 30px; }
  .about-copy > p:not(.eyebrow) { font-size: 14px; }
  .check-list { gap: 13px; }
  .check-list li { font-size: 13px; line-height: 1.45; }
  .about-panel {
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px;
    padding: 10px;
    border-radius: 20px;
    background: #171a1f;
  }
  .stat {
    min-height: 108px;
    padding: 16px 10px;
    border: 0;
    border-radius: 14px;
    background: rgba(255,255,255,.055);
  }
  .stat span { font-size: 27px; }
  .stat small { margin-top: 8px; font-size: 10px; line-height: 1.35; }

  .contact-section {
    padding: 68px 0;
    background: linear-gradient(150deg, #191c21 0%, #24282f 58%, #352718 100%);
  }
  .contact-grid { gap: 26px; }
  .contact-card {
    padding: 8px 18px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
  }
  .contact-card a, .contact-card > div {
    grid-template-columns: 1fr;
    gap: 1px;
    padding: 16px 2px;
  }
  .contact-card strong { font-size: 15px; }

  .site-footer { padding: 44px 0 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-logo { width: 185px; }
}
