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

:root {
  --bg: #ffffff;
  --soft: #f4f5f7;
  --ink: #16181c;
  --ink-2: #20242a;
  --body: #4e535a;
  --muted: #838890;
  --line: #e4e6ea;
  --accent: #a3560c;
  --accent-soft: #f6ede2;
  --accent-pale: #e0a15c;
  --shadow: 0 1px 2px rgba(20, 22, 26, 0.04), 0 14px 32px rgba(20, 22, 26, 0.07);
  --r: 4px;
  --r-2: 8px;
  --r-3: 12px;
  --sec-y: 88px;
  --nav-h: 72px;
  --wrap: 1240px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: clip;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Schibsted Grotesk', 'Inter', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.016em;
  color: var(--ink);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.section { padding-top: var(--sec-y); padding-bottom: var(--sec-y); }
.section--soft { background: var(--soft); }
.section--ink { background: var(--ink); }

.skip {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border-radius: 0 0 var(--r) var(--r);
}

.skip:focus { top: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 28px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.9688rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ink:hover { background: #33383f; border-color: #33383f; }
.btn--accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--accent:hover { background: #8a480a; border-color: #8a480a; }
.btn--line { background: #fff; color: var(--ink); border-color: #d3d7dc; }
.btn--line:hover { border-color: var(--ink); }
.btn--paper { background: #fff; color: var(--ink); border-color: #fff; }
.btn--paper:hover { background: var(--soft); border-color: var(--soft); }
.btn--pale { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.btn--pale:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.wordmark {
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  width: 160px;
  aspect-ratio: 1030 / 252;
  overflow: hidden;
  vertical-align: middle;
  text-decoration: none;
}

.wordmark-logo {
  position: absolute;
  width: 109.029126%;
  max-width: none;
  height: auto;
  left: -4.07767%;
  top: -93.650794%;
}

.mobile-menu-header .wordmark { padding: 0; }

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8438rem;
  line-height: 1.4;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar-links { display: flex; gap: 22px; }
.topbar-links a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 500; text-decoration: none; white-space: nowrap; }
.topbar-links svg { width: 14px; height: 14px; color: rgba(255, 255, 255, 0.55); }
.topbar-links a:hover { color: rgba(255, 255, 255, 0.78); }

.nav {
  position: relative;
  top: 0;
  z-index: 120;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links > li > a {
  display: block;
  padding: 9px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  border-radius: var(--r);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-links > li > a:hover { color: var(--ink); background: var(--soft); }
.nav-links > li > a.is-active { color: var(--ink); font-weight: 600; background: var(--soft); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta { min-height: 44px; padding: 11px 22px; font-size: 0.9063rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--soft);
  border: none;
  border-radius: var(--r);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.14s ease 0.18s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transition: opacity 0.06s linear; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu-header, .mobile-menu-foot { display: none; }

.mobile-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 110;
  background: rgba(22, 24, 28, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.mobile-overlay.active { opacity: 1; visibility: visible; transition: opacity 0.25s ease, visibility 0s linear 0s; }

.hero { padding: 88px 0 80px; }
.hero-inner { max-width: 880px; }

.hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin-bottom: 22px;
}

.hero h1 em { font-style: normal; box-shadow: inset 0 -0.09em 0 var(--accent); }
.hero p { max-width: 660px; font-size: 1.125rem; line-height: 1.65; }
.hero-act { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.heroband { position: relative; height: 460px; overflow: hidden; background: var(--soft); }
.heroband img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 56%; }

.subhero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(58vh, 520px);
  padding: 108px 0 56px;
  overflow: clip;
  background: var(--ink);
}

.subhero-img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.subhero-scrim { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(180deg, rgba(22, 24, 28, 0.5) 0%, rgba(22, 24, 28, 0.62) 50%, rgba(22, 24, 28, 0.88) 100%); }
.subhero .wrap { position: relative; z-index: 1; }
.subhero h1 { max-width: 880px; font-size: clamp(2rem, 3.6vw, 3.25rem); line-height: 1.1; letter-spacing: -0.018em; color: #fff; margin-bottom: 16px; }
.subhero h1 em { font-style: normal; box-shadow: inset 0 -0.09em 0 var(--accent-pale); }
.subhero p { max-width: 660px; font-size: 1.0938rem; color: rgba(255, 255, 255, 0.86); }
.subhero .hero-act { margin-top: 30px; }

.sec-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.sec-head h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); letter-spacing: -0.012em; margin-bottom: 16px; }
.sec-head p { font-size: 1.0625rem; }
.section--ink .sec-head h2 { color: #fff; }
.section--ink .sec-head p { color: rgba(255, 255, 255, 0.74); }

.marks { margin-top: 20px; }

.marks li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 0.9688rem;
  color: var(--ink);
}

.marks li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 14px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.marks--two { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.section--ink .marks li { color: rgba(255, 255, 255, 0.86); }
.section--ink .marks li::before { border-color: var(--accent-pale); }

.hrows { display: flex; flex-direction: column; gap: 24px; }

.hrow {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 44px;
  align-items: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  box-shadow: var(--shadow);
}

.hrow-media { position: relative; align-self: stretch; min-height: 260px; overflow: hidden; border-radius: var(--r); background: var(--soft); }
.hrow-media img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.hrow-body { min-width: 0; padding: 8px 12px 8px 0; }
.hrow-body h3 { font-size: 1.375rem; margin-bottom: 12px; }
.hrow-body p { font-size: 1.0313rem; line-height: 1.65; }
.hrow-body .marks { margin-top: 16px; margin-bottom: 26px; }
.hrow-body .btn { min-height: 46px; padding: 12px 24px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { position: relative; align-self: stretch; min-height: 440px; overflow: hidden; border-radius: var(--r-2); background: var(--soft); }
.split-media img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.split-text { min-width: 0; }
.split-text h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); letter-spacing: -0.012em; margin-bottom: 16px; }
.split-text p { font-size: 1.0313rem; }
.split-text p + p { margin-top: 14px; }
.split-text .btn { margin-top: 28px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.step {
  min-width: 0;
  padding: 32px 30px 34px;
  background: rgba(255, 255, 255, 0.055);
  border-radius: var(--r-2);
}

.step-ico { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-bottom: 20px; border-radius: var(--r); background: rgba(224, 161, 92, 0.16); color: var(--accent-pale); }
.step-ico svg { width: 22px; height: 22px; }
.step h3 { font-size: 1.3125rem; color: #fff; margin-bottom: 12px; }
.step p { font-size: 0.9688rem; line-height: 1.65; color: rgba(255, 255, 255, 0.74); }

.steps--light .step { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.steps--light .step-ico { background: var(--accent-soft); color: var(--accent); }
.steps--light .step h3 { color: var(--ink); }
.steps--light .step p { color: var(--body); }

.refs { display: grid; grid-template-columns: 1.25fr 1fr; gap: 24px; }
.refs-side { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; min-width: 0; }
.ref { min-width: 0; display: flex; flex-direction: column; }
.ref-media { position: relative; flex: 1 1 auto; min-height: 200px; overflow: hidden; border-radius: var(--r-2); background: var(--soft); }
.ref--big .ref-media { min-height: 440px; }
.ref-media img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ref figcaption { display: flex; flex-direction: column; padding-top: 14px; }
.ref figcaption strong { font-size: 1.0313rem; font-weight: 600; color: var(--ink); }
.ref figcaption span { font-size: 0.9375rem; line-height: 1.55; }

.sec-foot { display: flex; justify-content: center; margin-top: 44px; }

.ctaband { position: relative; padding: 88px 0; overflow: clip; background: var(--ink); }
.ctaband > img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.ctaband-scrim { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(90deg, rgba(22, 24, 28, 0.9) 0%, rgba(22, 24, 28, 0.78) 52%, rgba(22, 24, 28, 0.52) 100%); }
.ctaband-text { position: relative; z-index: 1; max-width: 700px; }
.ctaband-text h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.012em; color: #fff; margin-bottom: 14px; }
.ctaband-text p { font-size: 1.0313rem; color: rgba(255, 255, 255, 0.82); }
.ctaband-text .hero-act { margin-top: 30px; }

.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.contact-form { min-width: 0; }
.contact-form h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.012em; margin-bottom: 12px; }
.contact-form > p { font-size: 1.0313rem; margin-bottom: 30px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; min-width: 0; }

.field label {
  display: block;
  font-size: 0.8438rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}

.field input, .field textarea, .field select {
  width: 100%;
  min-width: 0;
  padding: 13px 15px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.9375rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d3d7dc;
  border-radius: var(--r);
  transition: border-color 0.2s ease;
}

.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field input::placeholder, .field textarea::placeholder { color: #a1a6ad; }
.field textarea { resize: vertical; min-height: 140px; }
#contact-form { max-width: 100%; min-width: 0; }
.btn-send { width: 100%; margin-top: 8px; }
.ms-recaptcha-notice { text-align: center; }

.contact-side {
  min-width: 0;
  padding: 34px 34px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  box-shadow: var(--shadow);
}

.contact-side h3 { font-size: 1.3125rem; margin-bottom: 10px; }
.contact-lead { font-size: 0.9688rem; margin-bottom: 26px; }

.clist li { display: flex; align-items: flex-start; gap: 14px; }
.clist li + li { margin-top: 18px; }
.clist li > div { display: flex; flex-direction: column; min-width: 0; }
.clist strong { font-size: 0.9375rem; font-weight: 600; color: var(--ink); }
.clist a, .clist li > div > span { font-size: 0.9688rem; color: var(--body); text-decoration: none; }
.clist a:hover { color: var(--accent); }

.cico {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--r);
}

.cico svg { width: 19px; height: 19px; }

.contact-note { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-note h4 { font-family: 'Inter', Arial, sans-serif; font-size: 0.9375rem; font-weight: 600; letter-spacing: 0; margin-bottom: 4px; }
.contact-note .marks { margin-top: 8px; }

.map { border-radius: var(--r-2); overflow: hidden; background: var(--soft); line-height: 0; }
.map iframe { width: 100%; height: 420px; border: 0; display: block; }

.foot { background: var(--ink); padding: 84px 0 40px; color: rgba(255, 255, 255, 0.64); }
.foot-statement { max-width: 720px; }
.foot-statement h2 { font-size: clamp(1.625rem, 2.8vw, 2.375rem); letter-spacing: -0.012em; color: #fff; margin-bottom: 16px; }
.foot-statement p { font-size: 1.0313rem; line-height: 1.7; }
.foot-statement .hero-act { margin-top: 28px; }

.foot-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 56px;
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.foot-contact li { display: flex; align-items: center; gap: 13px; }
.foot-contact .cico { background: rgba(224, 161, 92, 0.16); color: var(--accent-pale); flex-basis: 38px; width: 38px; height: 38px; }
.foot-contact .cico svg { width: 17px; height: 17px; }
.foot-contact a, .foot-contact span:not(.cico) { font-size: 0.9688rem; color: rgba(255, 255, 255, 0.8); text-decoration: none; }
.foot-contact a:hover { color: #fff; }

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.foot-links a { font-size: 0.9375rem; font-weight: 500; color: rgba(255, 255, 255, 0.68); text-decoration: none; }
.foot-links a:hover { color: #fff; }

.foot-mark { margin-top: 46px; }
.foot-mark .wordmark { width: clamp(200px, 24vw, 260px); }
.foot-mark .wordmark-logo { filter: brightness(0) invert(1); }
.foot-copy { margin-top: 14px; font-size: 0.8438rem; color: rgba(255, 255, 255, 0.42); }

a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
a:focus:not(:focus-visible), button:focus:not(:focus-visible) { outline: none; }
.section--ink a:focus-visible, .foot a:focus-visible, .ctaband a:focus-visible, .subhero a:focus-visible { outline-color: var(--accent-pale); }

@media (min-width: 768px) {
  .nav { position: sticky; }
}

@media (max-width: 1120px) {
  .nav-links > li > a { padding: 9px 10px; font-size: 0.875rem; }
  .topbar-text { display: none; }
  .topbar-inner { justify-content: center; }
  .hrow { grid-template-columns: 340px 1fr; gap: 32px; }
}

@media (max-width: 980px) {
  :root { --sec-y: 68px; }

  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-actions { margin-left: auto; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, calc(100vw - 40px));
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 0 24px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0s linear 0.28s;
    z-index: 5;
    box-shadow: -20px 0 44px rgba(16, 18, 22, 0.18);
  }

  .nav-links.open { transform: translateX(0); visibility: visible; transition: transform 0.28s ease, visibility 0s linear 0s; }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    padding: 16px 0 14px;
    margin-bottom: 10px;
    background: #fff;
  }

  .mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--soft);
    border: none;
    border-radius: var(--r);
    color: var(--ink);
    cursor: pointer;
  }

  .mobile-menu-close svg { width: 19px; height: 19px; }

  .nav-links > li > a { padding: 14px 6px; font-size: 1.0625rem; font-weight: 600; }
  .mobile-menu-foot { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
  .nav-links > li.mobile-menu-foot > a.btn { color: #fff; }
  .nav-links > li.mobile-menu-foot > a.mobile-menu-tel { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 1rem; font-weight: 600; color: var(--ink); text-decoration: none; }
  .mobile-menu-tel svg { width: 17px; height: 17px; color: var(--accent); }

  .hero { padding: 60px 0 56px; }
  .heroband { height: 300px; }
  .subhero { min-height: 0; padding: 72px 0 44px; }
  .hrow { grid-template-columns: 1fr; gap: 22px; padding: 20px; }
  .hrow-media { min-height: 0; aspect-ratio: 16 / 10; align-self: auto; }
  .hrow-body { padding: 0 4px 8px; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split-media { min-height: 0; aspect-ratio: 16 / 10; align-self: auto; }
  .steps { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .refs { grid-template-columns: 1fr; }
  .refs-side { grid-template-rows: auto auto; }
  .ref-media, .ref--big .ref-media { min-height: 0; aspect-ratio: 4 / 3; }
  .ctaband { padding: 76px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .map iframe { height: 340px; }
  .foot { padding-top: 60px; }
  .foot-contact { gap: 20px 40px; margin-top: 40px; }
}

@media (max-width: 640px) {
  :root { --sec-y: 56px; }
  .wrap { padding-left: 20px; padding-right: 20px; }
  .hero { padding: 48px 0 44px; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.25rem); }
  .hero-act { flex-direction: column; align-items: stretch; }
  .heroband { height: 230px; }
  .marks--two { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hrow-body .btn, .split-text .btn { width: 100%; }
  .sec-foot .btn { width: 100%; }
  .ctaband { padding: 60px 0; }
  .contact-side { padding: 26px 24px 28px; }
  .foot-contact { flex-direction: column; gap: 16px; }
  .topbar-links { gap: 16px; }
}

@media (hover: none) {
  a, button { -webkit-tap-highlight-color: transparent; }
  .field input, .field textarea, .field select { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .btn, .nav-links { transition: none; }
}
