:root {
  --blue: #0b3480;
  --blue-deep: #071c4a;
  --blue-mid: #1547a3;
  --yellow: #f3d000;
  --red: #e10600;
  --paper: #eef2f6;
  --ink: #141820;
  --muted: #4b5563;
  --line: #cfd6df;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(7, 28, 74, 0.16);
  --display: "Teko", "Arial Narrow", sans-serif;
  --body: "Schibsted Grotesk", "Segoe UI", sans-serif;
  --max: 1120px;
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 1.05rem;
}

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

a {
  color: var(--blue);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 80;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.6rem 1rem;
  font-weight: 700;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--blue);
  font-weight: 600;
}

.kicker::before {
  content: "";
  width: 2.2rem;
  height: 0.42rem;
  background: var(--yellow);
  transform: skewX(-18deg);
  box-shadow: 2px 2px 0 var(--blue);
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin: 0;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h3 {
  font-size: 1.7rem;
}

.lede {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 40rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 4px solid var(--blue);
  box-shadow: 0 8px 24px rgba(7, 28, 74, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 0.86;
}

.brand-name b {
  font-family: var(--display);
  font-size: 1.85rem;
  color: var(--blue);
  letter-spacing: 0.03em;
  font-weight: 700;
}

.brand-name small {
  font-family: var(--display);
  letter-spacing: 0.16em;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.nav-call {
  background: var(--yellow);
  color: var(--ink) !important;
  padding: 0.45rem 0.8rem;
  font-weight: 800;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--blue);
}

.nav-toggle {
  display: none;
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 0.35rem 0.55rem;
  font-weight: 700;
}

.hero {
  position: relative;
  color: var(--white);
  isolation: isolate;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 28, 74, 0.88) 0%, rgba(7, 28, 74, 0.55) 48%, rgba(7, 28, 74, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 28, 74, 0.15), rgba(7, 28, 74, 0.55));
}

.hero-inner {
  padding: 5.5rem 0 3.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.7fr);
  gap: 2rem;
  align-items: end;
}

.hero .kicker {
  color: var(--yellow);
}

.hero .kicker::before {
  box-shadow: none;
}

.hero p {
  max-width: 38rem;
  font-size: 1.12rem;
  color: #e8edf5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  padding: 0.85rem 1.2rem;
  border: 2px solid transparent;
  min-height: 3rem;
  cursor: pointer;
  font-family: var(--body);
  font-size: 1rem;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 #000;
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.waybill {
  background: var(--white);
  color: var(--ink);
  padding: 1rem 1.1rem 1.15rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  position: relative;
}

.waybill::after {
  content: "";
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
  width: 54px;
  height: 54px;
  background: url("img/shield.svg") center / contain no-repeat;
  opacity: 0.95;
  transform: rotate(8deg);
}

.waybill h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
  padding-right: 3.2rem;
}

.waybill dl {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 0.35rem 0.6rem;
  margin: 0;
  font-size: 0.95rem;
}

.waybill dt {
  font-family: var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  font-size: 1rem;
}

.waybill dd {
  margin: 0;
  border-bottom: 1px dotted var(--line);
  padding-bottom: 0.15rem;
}

.stripe {
  background: var(--blue);
  color: var(--yellow);
  font-family: var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.proof {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.6rem 0;
}

.proof-item strong {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--blue);
}

.proof-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 4.2rem 0;
}

.section-head {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 2rem;
  max-width: 42rem;
}

.services {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.service {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.3rem 1.3rem 1.4rem;
  position: relative;
  overflow: hidden;
}

.service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: repeating-linear-gradient(
    180deg,
    var(--yellow) 0 12px,
    var(--ink) 12px 18px
  );
}

.service h3 {
  padding-left: 0.6rem;
  margin-bottom: 0.45rem;
}

.service p {
  margin: 0;
  padding-left: 0.6rem;
  color: var(--muted);
}

.area {
  background:
    linear-gradient(180deg, var(--blue-deep), var(--blue));
  color: var(--white);
}

.area .kicker {
  color: var(--yellow);
}

.area .kicker::before {
  box-shadow: none;
}

.area .lede {
  color: #d5deec;
}

.area-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.routes {
  display: grid;
  gap: 0.8rem;
}

.route {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.8rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--yellow);
}

.route b {
  font-family: var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--yellow);
}

.norway {
  width: 100%;
  max-width: 360px;
  justify-self: center;
}

.reviews {
  background: var(--paper);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.review {
  background: var(--white);
  padding: 1.25rem 1.3rem 1.15rem;
  border-top: 6px solid var(--yellow);
  box-shadow: 0 10px 24px rgba(20, 24, 32, 0.06);
}

.review p {
  margin: 0 0 0.9rem;
  font-size: 1.02rem;
}

.review footer {
  font-weight: 700;
  color: var(--blue);
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
}

.about-copy p {
  color: var(--muted);
}

.photo-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.7rem;
}

.photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
}

.photo-stack .tall {
  grid-row: span 2;
  min-height: 280px;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.4rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.3rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.contact-list span {
  display: block;
  font-family: var(--display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  font-size: 1rem;
}

.placeholder {
  background: #fff6c8;
  color: #5a4a00;
  display: inline-block;
  padding: 0.05rem 0.35rem;
  font-weight: 700;
}

form {
  display: grid;
  gap: 0.75rem;
}

label {
  display: grid;
  gap: 0.28rem;
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  font: inherit;
  padding: 0.7rem 0.75rem;
  border: 1.5px solid var(--line);
  background: var(--white);
  width: 100%;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-note {
  margin: 0;
  background: #fff6c8;
  border: 1px solid #e2c200;
  padding: 0.75rem 0.85rem;
  font-weight: 600;
}

.form-note[hidden] {
  display: none;
}

.site-footer {
  background: var(--blue-deep);
  color: #d7deea;
  padding: 1.6rem 0 2rem;
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.mobile-call {
  display: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    right: 1rem;
    top: 4.4rem;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 2px solid var(--ink);
    min-width: 220px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .hero-inner,
  .proof-grid,
  .service-grid,
  .area-grid,
  .review-grid,
  .about-grid,
  .contact-grid,
  .row-2,
  .photo-stack {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-inner {
    padding-top: 4.2rem;
  }

  .waybill {
    max-width: 22rem;
  }

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

  .photo-stack .tall {
    grid-row: auto;
    min-height: 220px;
  }

  .mobile-call {
    display: block;
    position: sticky;
    bottom: 0;
    z-index: 30;
    background: var(--yellow);
    color: var(--ink);
    text-align: center;
    padding: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    border-top: 3px solid var(--ink);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
