:root {
  --black: #080808;
  --black-soft: #121212;
  --black-panel: #1b1b1b;
  --black-light: #252525;
  --white: #fff;
  --white-soft: #f4f4f1;
  --muted: #b9b9b4;
  --line: rgba(255,255,255,.2);
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Fira Sans", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.topbar {
  background: var(--white);
  color: var(--black);
  font-size: .82rem;
}
.topbar-inner {
  width: min(1320px, 100%);
  margin: auto;
  padding: 9px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.topbar a { text-decoration: none; font-weight: 700; }
.topbar span { margin-left: auto; }
.nav {
  width: min(1320px, 100%);
  margin: auto;
  padding: 15px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img {
  display: block;
  width: 240px;
  height: 90px;
  object-fit: cover;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navlinks a {
  position: relative;
  padding: 12px 16px;
  color: var(--white);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 700;
}
.navlinks a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.navlinks a:hover::after,
.navlinks a.active::after { transform: scaleX(1); }
.navlinks .nav-cta {
  margin-left: 14px;
  background: var(--white);
  color: var(--black);
  padding-inline: 20px;
}
.navlinks .nav-cta::after { display: none; }
.mobile-menu { display: none; }
.mobile-menu summary { display: none; }

.hero {
  min-height: 660px;
  display: flex;
  align-items: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
  background:
    url('assets/vegard-hero-drenering.jpg?v=1') 88% center / 520px auto no-repeat,
    linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
}
.hero-inner {
  width: min(1320px, 100%);
  margin: auto;
  padding: 90px 28px;
}
.hero-brand {
  display: block;
  width: min(270px, 68vw);
  height: auto;
  margin: 0 0 38px;
  border: 1px solid rgba(255,255,255,.38);
}
.eyebrow {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 800;
}
.hero h1,
.page-hero h1 {
  max-width: 1050px;
  margin: 18px 0 20px;
  color: var(--white);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: .94;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.hero p {
  max-width: 650px;
  color: var(--white-soft);
  font-size: 1.16rem;
}
.buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--white);
  text-decoration: none;
  font-weight: 800;
  transition: background .2s ease, color .2s ease;
}
.btn-primary { background: var(--white); color: var(--black); }
.btn-light { background: transparent; color: var(--white); }
.btn:hover { background: var(--black-light); color: var(--white); }
.btn-primary:hover { background: var(--black-light); }

.section {
  width: min(1320px, 100%);
  margin: auto;
  padding: 104px 28px;
}
.section-head { max-width: 820px; margin-bottom: 48px; }
.section h1,
.section h2 {
  margin: 14px 0 20px;
  color: var(--white);
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.section-intro { color: var(--muted); font-size: 1.08rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.about-grid { grid-template-columns: repeat(4, 1fr); }
.service-list { display: grid; gap: 18px; }
.service-row { display: grid; grid-template-columns: minmax(260px, .8fr) 1.2fr; min-height: 220px; background: var(--black-panel); border: 1px solid var(--black-light); }
.service-row img { display: block; width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.service-copy { display: flex; flex-direction: column; justify-content: center; padding: 30px 34px; }
.service-copy h3 { margin: 0 0 12px; color: var(--white); font-size: 1.5rem; }
.service-copy p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.card {
  min-height: 180px;
  padding: 22px;
  background: var(--black-panel);
  border: 1px solid var(--black-light);
}
.card h3 { margin: 12px 0 10px; font-size: 1.25rem; }
.card p { margin: 0; color: var(--muted); }
.card ul { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.card li { margin: .45rem 0; padding-left: .15rem; }
.band { background: var(--black-panel); color: var(--white); }
.home-section-divider { border-bottom: 1px solid rgba(255,255,255,.12); }
.section.band { width: 100%; padding-block: 52px; padding-inline: 0; }
.section.band > .section-head { width: min(1320px, 100%); max-width: none; margin: 0 auto; padding-inline: 28px; }
.band > .section { padding-block: 52px; }
.band .eyebrow, .band h2, .band .section-intro { color: var(--white); }
.band .section-intro { opacity: .72; }
.contact-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.gallery figure { margin: 0; background: var(--black-panel); border: 1px solid var(--black-light); }
.gallery img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.gallery figcaption { padding: 14px 16px 16px; color: var(--muted); font-size: .92rem; }
.contact-details { display: grid; gap: 12px; margin-top: 30px; }
.contact-details a { font-weight: 800; text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

.page-hero {
  background: var(--black-soft);
  border-bottom: 1px solid var(--line);
  color: var(--white);
}
.page-hero-inner { width: min(1320px, 100%); margin: auto; padding: 24px 28px; }
.page-hero h1 { margin-bottom: 0; font-size: clamp(1.6rem, 2.7vw, 2.8rem); }
.reviews-intro h1 { margin: 14px 0 20px; color: var(--white); font-size: clamp(1.9rem, 3.4vw, 3.2rem); line-height: 1; letter-spacing: -.045em; }
.demo-note { margin: 18px 0 0; padding: 14px 16px; border-left: 3px solid var(--white); background: var(--black-panel); color: var(--muted); }
.review-slider { position: relative; overflow: hidden; background: var(--black-panel); border: 1px solid var(--black-light); }
.slider-track { position: relative; aspect-ratio: 16 / 8; }
.slide { position: absolute; inset: 0; display: none; margin: 0; }
.slide.is-active { display: block; }
.slide img { display: block; width: 100%; height: 100%; object-fit: cover; }
.slide figcaption { position: absolute; left: 18px; bottom: 18px; padding: 8px 12px; background: rgba(0,0,0,.75); color: var(--white); font-size: .85rem; }
.slider-dots { position: absolute; right: 18px; bottom: 18px; display: flex; gap: 7px; }
.slider-dots span { width: 9px; height: 9px; border: 1px solid var(--white); border-radius: 50%; }
.slider-dots span.is-active { background: var(--white); }
.rating-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 48px; align-items: start; }
.rating-summary { padding: 28px; background: var(--black-panel); border: 1px solid var(--black-light); text-align: center; }
.rating-score { margin: 12px 0 0; color: var(--white); font-size: 3.2rem; font-weight: 800; line-height: 1; }
.rating-score span { color: var(--muted); font-size: 1rem; font-weight: 400; }
.stars { color: var(--white); font-size: 1.35rem; letter-spacing: .12em; }
.review-form-card { padding: 30px; background: var(--black-panel); border: 1px solid var(--black-light); }
.review-form-card h2 { margin-top: 12px; }
.review-form { display: grid; gap: 12px; }
.review-form fieldset { margin: 0; padding: 0; border: 0; }
.review-form legend, .review-form > label { display: block; margin-bottom: 7px; font-weight: 800; }
.star-picker { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 3px; }
.star-picker input { position: absolute; opacity: 0; pointer-events: none; }
.star-picker label { margin: 0; color: #666; cursor: pointer; font-size: 2rem; line-height: 1; }
.star-picker label:hover, .star-picker label:hover ~ label, .star-picker input:checked ~ label { color: var(--white); }
.review-form textarea { border-color: var(--black-light); background: var(--black-soft); color: var(--white); }
.reviews-list { display: grid; gap: 14px; margin-top: 42px; }
.review-card { padding: 22px; background: var(--black-panel); border: 1px solid var(--black-light); }
.review-card-head { display: flex; align-items: center; justify-content: flex-start; gap: 18px; color: var(--white); }
.review-card-head strong { font-size: 1.5rem; line-height: 1; }
.review-card time { color: var(--muted); font-size: .9rem; }
.review-card p { margin: 10px 0 0; color: var(--muted); }
.form-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; }
.form-card {
  padding: 34px;
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
}
.form-note { display: grid; gap: 7px; margin-bottom: 26px; padding: 16px 18px; border: 1px solid #d9d9d3; border-left: 4px solid var(--black); background: #f6f6f2; color: var(--black); }
.form-note strong { font-size: 1.05rem; line-height: 1.35; }
.form-note span { color: #4f5759; font-size: .92rem; line-height: 1.55; }
.form-note a { color: inherit; font-weight: 700; text-underline-offset: 3px; }
.form-disabled-note { display: grid; gap: 4px; margin-bottom: 24px; padding: 14px 16px; border-left: 4px solid var(--black); background: #eeeeeb; color: var(--black); }
.form-disabled-note span { font-size: .92rem; }
.trap-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.legal-page .content-narrow { max-width: 760px; margin: 0 auto; }
.legal-page .content-narrow h2 { margin: 32px 0 10px; }
.legal-page .content-narrow p { max-width: 760px; }
.form-partial button:disabled { cursor: not-allowed; opacity: .62; }
label { display: block; margin: 0 0 7px; font-weight: 800; }
input, textarea, select {
  width: 100%;
  border: 1px solid #bdbdbd;
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  padding: 13px 14px;
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
.field { margin-bottom: 18px; }
.checks { display: grid; gap: 9px; margin: 10px 0 20px; }
.check { display: flex; gap: 9px; align-items: flex-start; color: #555; font-weight: 600; }
.check input { width: auto; margin-top: 6px; }
.small { color: var(--muted); font-size: .88rem; }
.success { max-width: 680px; margin: auto; padding: 130px 24px; text-align: center; }
.success h1 { font-size: clamp(1.9rem, 3.4vw, 3.2rem); line-height: 1; }
footer { background: #000; color: var(--muted); border-top: 1px solid var(--line); padding: 48px 28px; }
.footer-inner { width: min(1320px, 100%); margin: auto; display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 32px; align-items: start; font-size: .9rem; }
.footer-col { display: grid; gap: 8px; align-content: start; }
.footer-col strong { color: var(--white); font-size: 1.05rem; }
.footer-col a { color: var(--white); text-decoration: none; }
.footer-col a:hover { text-decoration: underline; }
.footer-social { justify-items: center; }
.facebook-link { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; }
.facebook-link:hover { text-decoration: none; }
.facebook-label { color: #fff; font-size: .82rem; font-weight: 800; letter-spacing: .08em; }
.facebook-icon { display: inline-flex; align-items: flex-end; justify-content: center; width: 32px; height: 32px; border: 1px solid #fff; border-radius: 7px; background: #000; color: #fff; font-family: Arial, sans-serif; font-size: 27px; font-weight: 700; line-height: 30px; }
.footer-credit { align-self: end; justify-self: stretch; grid-column: -1; text-align: right; }

@media (max-width: 760px) {
  .topbar-inner { padding: 8px 18px; gap: 14px; font-size: .72rem; }
  .topbar span { display: none; }
  .nav { padding: 12px 18px; flex-wrap: nowrap; position: relative; gap: 12px; }
  .brand img { width: 170px; height: 87px; }
  .mobile-menu { display: block; width: auto; margin-left: auto; position: relative; flex: 0 0 auto; }
  .desktop-nav { display: none; }
  .mobile-menu summary { display: block; min-width: 86px; padding: 11px 14px; border: 1px solid var(--white); color: var(--white); font-weight: 800; text-align: center; cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary::after { content: " +"; }
  .mobile-menu[open] summary::after { content: " −"; }
  .mobile-menu:not([open]) .navlinks { display: none; }
  .mobile-menu[open] .navlinks { display: grid; position: absolute; top: calc(100% + 8px); right: 0; z-index: 20; width: min(220px, calc(100vw - 36px)); margin-top: 0; padding: 8px; grid-template-columns: 1fr; gap: 2px; border: 1px solid rgba(255,255,255,.7); background: #000; box-shadow: 0 12px 30px rgba(0,0,0,.45); }
  .navlinks a:not(.nav-cta) { display: block; padding: 11px 12px; text-align: left; font-size: .86rem; }
  .navlinks .nav-cta { grid-column: auto; margin-left: 0; padding: 11px 12px; text-align: left; }
  .hero { min-height: 720px; background-size: 280px auto; background-position: 50% 100%; }

  .hero-inner { padding: 48px 20px 300px; }
  .hero-brand { width: min(220px, 68vw); margin-bottom: 28px; }
  .page-hero h1 { font-size: clamp(1.9rem, 3.4vw, 3.2rem); }
  .hero h1 { font-size: clamp(1.9rem, 3.4vw, 3.2rem); }
  .section { padding: 76px 20px; }
  .section h1, .section h2 { font-size: clamp(1.9rem, 3.4vw, 3.2rem); }
  .section.band > .section-head { padding-inline: 20px; }
  .section.band { padding-block: 38px; }
  .band > .section { padding-block: 38px; }

  .buttons .btn { width: 100%; }
  .form-card { padding: 22px; }
  .grid, .contact-strip, .form-layout, .gallery { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .service-row img { height: auto; min-height: 0; aspect-ratio: 16 / 9; }
  .service-copy { padding: 24px 22px; }
  .rating-section { grid-template-columns: 1fr; }
  .review-card-head { flex-direction: row; gap: 12px; }
  .page-hero-inner { padding: 16px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-credit { align-self: start; justify-self: start; }
  .footer-inner > * { margin: 0; }
}
