:root {
  --acc: #ffed00;
  --ink: #0e0f11;
  --ink-deep: #08090a;
  --ink-card: #17191c;
  --line: #25282d;
  --text: #f4f4f2;
  --text-soft: #d6d7da;
  --text-mute: #a9abb0;
  --paper: #f4f4f2;
  --paper-ink: #16181b;
  --paper-soft: #3b3e44;
  --gutter: clamp(20px, 4vw, 48px);
  --condensed: 'Barlow Condensed', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: 'Barlow', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap { max-width: 1280px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.display {
  font-family: var(--condensed);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}
.h-xl { font-size: clamp(40px, 5vw, 72px); }
.h-lg { font-size: clamp(38px, 4.2vw, 60px); }
.h-md { font-size: clamp(36px, 4vw, 56px); }

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border: 2px solid transparent;
  border-radius: 3px;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, filter 0.15s;
}
.btn-acc { background: var(--acc); color: var(--ink); }
.btn-acc:hover { filter: brightness(1.08); }
.btn-ghost { border-color: #fff; color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #fff; color: var(--ink); }
.btn-outline-dark { border-color: var(--ink); color: var(--ink); }
.btn-outline-dark:hover { background: #fff; }

/* Header */

.site-top { position: sticky; top: 0; z-index: 10; }

.topbar { background: var(--ink-deep); border-bottom: 1px solid #1f2125; font-size: 14px; color: #b9bbbf; }
.topbar .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 28px; padding-top: 10px; padding-bottom: 10px; }
.topbar span, .topbar a { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.topbar a { margin-left: auto; }
.topbar a:hover { color: #fff; }

.masthead { background: var(--ink); border-top: 5px solid var(--acc); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45); }
.masthead-row { max-width: 1280px; margin: 0 auto; padding-left: var(--gutter); display: flex; align-items: stretch; gap: 16px; min-height: clamp(68px, 10vw, 88px); }
.logo { display: flex; align-items: center; margin-right: auto; padding: 16px 0; min-width: 0; }
.logo img { height: clamp(30px, 5vw, 58px); width: auto; }

.call {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(8px, 2vw, 14px);
  padding: 0 clamp(16px, 4vw, 48px) 0 clamp(32px, 5vw, 44px);
  background: var(--acc);
  color: var(--ink);
  text-decoration: none;
  clip-path: polygon(28px 0, 100% 0, 100% 100%, 0 100%);
  font-family: var(--condensed);
  text-transform: uppercase;
}
.call:hover { filter: brightness(1.06); }
.call-text { display: flex; flex-direction: column; line-height: 1; }
.call-label { font-weight: 600; font-size: clamp(12px, 2vw, 14px); letter-spacing: 0.14em; }
.call-number { font-weight: 800; font-size: clamp(22px, 4vw, 28px); letter-spacing: 0.02em; white-space: nowrap; }

.navbar { border-top: 1px solid var(--line); background: var(--ink-deep); }
.nav {
  display: flex;
  align-items: stretch;
  gap: 0 clamp(20px, 3vw, 40px);
  min-height: 50px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav::-webkit-scrollbar { display: none; }
.nav a { display: flex; align-items: center; gap: 6px; text-decoration: none; color: var(--text); }
.nav a:hover { color: #fff; box-shadow: inset 0 -5px 0 var(--acc); }
.nav a[aria-current="page"] { color: var(--acc); box-shadow: inset 0 -5px 0 var(--acc); }
.nav a svg { opacity: 0.6; }

@media (max-width: 640px) {
  .topbar { display: none; }
}

/* Hero */

.hero { position: relative; display: flex; align-items: flex-end; min-height: 460px; overflow: hidden; background: #1a1c20; }
.hero-home { min-height: min(86vh, 760px); }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 9, 10, 0.94) 0%, rgba(8, 9, 10, 0.72) 50%, rgba(8, 9, 10, 0.2) 100%);
}
.hero-home::after { background: linear-gradient(90deg, rgba(8, 9, 10, 0.92) 0%, rgba(8, 9, 10, 0.7) 45%, rgba(8, 9, 10, 0.15) 100%); }
.hero-body { position: relative; z-index: 1; width: 100%; padding-top: 96px; padding-bottom: 64px; }
.hero-home .hero-body { padding-top: 120px; padding-bottom: 72px; }
.hero h1 {
  font-family: var(--condensed);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 18px 0 0;
  max-width: 12ch;
}
.hero-home h1 { font-size: clamp(52px, 8.4vw, 124px); letter-spacing: -0.01em; margin-top: 20px; max-width: 11ch; }
.hero-lead { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; max-width: 44ch; margin: 28px 0 0; color: var(--text-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-home .hero-actions { margin-top: 36px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--acc);
}
.eyebrow::before { content: ""; width: 32px; height: 3px; background: var(--acc); }

.tag {
  display: inline-block;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--acc);
  color: var(--paper-ink);
  padding: 3px 10px;
  border-radius: 2px;
}

/* USP strip */

.usps { background: var(--acc); color: var(--ink); }
.usps ul {
  list-style: none;
  margin: 0 auto;
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 32px;
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.usps li { display: flex; align-items: center; gap: 8px; }

/* Sections */

.section { padding-top: clamp(64px, 10vw, 104px); padding-bottom: clamp(64px, 10vw, 104px); }
.section-paper { background: var(--paper); color: var(--paper-ink); }
.section-white { background: #fff; color: var(--paper-ink); }

.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px 40px; margin-bottom: 40px; }
.section-head p { margin: 0; max-width: 40ch; color: var(--text-mute); font-size: 17px; line-height: 1.5; }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 48px 72px; align-items: center; }
.split-top { align-items: start; gap: 40px 72px; }

.intro p { font-size: 18px; line-height: 1.6; margin: 0; color: var(--text-soft); }
.intro p + p { margin-top: 16px; }

.prose p { font-size: 17px; line-height: 1.6; margin: 24px 0 0; color: var(--paper-soft); }
.prose p + p { margin-top: 14px; }

.media { aspect-ratio: 5 / 4; border-radius: 4px; overflow: hidden; background: #1a1c20; }
.media img { width: 100%; height: 100%; object-fit: cover; }

/* Service photo cards */

.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); gap: 16px; }

.service {
  position: relative;
  display: block;
  min-height: 340px;
  overflow: hidden;
  background: #1a1c20;
  color: #fff;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 44px, 100% 100%, 44px 100%, 0 calc(100% - 44px));
  transition: transform 0.2s;
}
.service:hover { transform: translateY(-4px); }
.service > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 9, 10, 0.1) 20%, rgba(8, 9, 10, 0.92) 100%);
}
.service::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 62px;
  height: 62px;
  background: var(--acc);
  clip-path: polygon(0 0, 18px 0, 62px 44px, 62px 62px);
}
.tread {
  position: absolute;
  top: -40%;
  right: 22%;
  width: 64px;
  height: 180%;
  z-index: 1;
  display: flex;
  gap: 4px;
  opacity: 0.22;
  transform: rotate(28deg);
  -webkit-mask-image: linear-gradient(180deg, transparent 5%, #000 35%, #000 60%, transparent 95%);
  mask-image: linear-gradient(180deg, transparent 5%, #000 35%, #000 60%, transparent 95%);
}
.tread::before, .tread::after { content: ""; flex: 1; }
.tread::before { background: repeating-linear-gradient(-50deg, #fff 0 7px, transparent 7px 17px); }
.tread::after { background: repeating-linear-gradient(50deg, #fff 0 7px, transparent 7px 17px); }
.service-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 8px; }
.service-num { font-family: var(--condensed); font-weight: 700; font-size: 16px; letter-spacing: 0.12em; color: var(--acc); }
.service-title { font-family: var(--condensed); font-weight: 800; font-size: 34px; line-height: 1; text-transform: uppercase; }
.service-text { font-size: 16px; line-height: 1.45; color: var(--text-soft); }
.service-cta { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-family: var(--condensed); font-weight: 700; font-size: 17px; letter-spacing: 0.06em; text-transform: uppercase; }

/* Numbered info cards */

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 24px; margin-top: 56px; }

.card {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 0 32px 36px;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
}
.card::before, .card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
}
.card::before {
  background: repeating-conic-gradient(from 0deg, rgba(22, 24, 27, 0.035) 0 6deg, transparent 6deg 15deg);
  -webkit-mask-image: radial-gradient(circle, transparent 42%, #000 44%, #000 70%, transparent 72%);
  mask-image: radial-gradient(circle, transparent 42%, #000 44%, #000 70%, transparent 72%);
}
.card::after { border: 2px solid rgba(22, 24, 27, 0.03); }

.rule { display: flex; align-items: center; margin: 0 -32px 26px 0; }
.rule::before {
  content: "";
  width: 84px;
  height: 7px;
  background: var(--acc);
  clip-path: polygon(0 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}
.rule span {
  width: 14px;
  height: 7px;
  margin-left: 2px;
  background: var(--paper-ink);
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}
.rule span:first-child { margin-left: 4px; }
.rule::after { content: ""; flex: 1; height: 2px; margin-left: 8px; background: var(--paper-ink); opacity: 0.18; }

.card-head { position: relative; display: flex; align-items: baseline; gap: 14px; }
.card-num { font-family: var(--condensed); font-weight: 700; font-size: 18px; background: var(--acc); color: var(--paper-ink); padding: 1px 7px; border-radius: 2px; }
.card h3 { font-family: var(--condensed); font-weight: 800; font-size: 30px; line-height: 1; text-transform: uppercase; margin: 0; }
.card p { position: relative; font-size: 16.5px; line-height: 1.6; margin: 16px 0 0; color: var(--paper-soft); }
.card .note { font-size: 14.5px; line-height: 1.5; margin-top: 12px; font-weight: 600; color: var(--paper-ink); }
.badge {
  position: relative;
  display: inline-block;
  margin-top: 14px;
  padding: 3px 10px;
  border: 2px solid var(--paper-ink);
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Logos */

.logos-section { padding-top: 56px; padding-bottom: 56px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); gap: 40px 72px; }
.logos-section h2 { font-size: 26px; letter-spacing: 0.02em; margin-bottom: 24px; }
.logos { display: flex; flex-wrap: wrap; align-items: center; gap: 24px 40px; }
.logos img { height: 40px; width: auto; max-width: 140px; object-fit: contain; }
.logos-partners img { height: 48px; }
.product-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; margin-top: 36px; }

/* Reviews */

.link-underline {
  font-family: var(--condensed);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--acc);
  padding-bottom: 4px;
}
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 16px; }
.review { margin: 0; padding: 28px; display: flex; flex-direction: column; gap: 16px; background: var(--ink-card); border: 1px solid var(--line); border-radius: 4px; }
.stars { color: var(--acc); letter-spacing: 3px; font-size: 18px; }
.review blockquote { margin: 0; flex: 1; font-size: 17px; line-height: 1.5; }
.review figcaption { font-family: var(--condensed); font-weight: 600; font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase; color: #8d9096; }

/* Om oss */

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); }
.timeline .year { font-family: var(--condensed); font-weight: 800; font-size: 34px; line-height: 1; color: var(--acc); }
.timeline .event { font-size: 17px; line-height: 1.5; color: var(--text-soft); }
.brands-note { font-size: 16px; line-height: 1.6; margin: 20px 0 0; color: var(--text-mute); }
.history p.lead { font-size: 18px; line-height: 1.6; margin: 28px 0 0; color: var(--text-soft); }

.find { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr)); gap: 40px 56px; align-items: stretch; }
.contact-list { display: flex; flex-direction: column; gap: 24px; }
.contact-list h2 { margin-bottom: 8px; }
.contact {
  background: #fff;
  padding: 0 28px 26px;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
}
.contact .rule { margin: 0 -28px 18px 0; }
.contact .rule::before { width: 64px; height: 6px; clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%); }
.contact h3 { font-family: var(--condensed); font-weight: 800; font-size: 24px; text-transform: uppercase; margin: 0; }
.contact p { font-size: 17px; line-height: 1.6; margin: 8px 0 0; color: var(--paper-soft); }
.contact a { text-decoration: none; }
.contact a:hover { text-decoration: underline; }
.map {
  min-height: 420px;
  background: #dcdcd8;
  clip-path: polygon(0 0, calc(100% - 44px) 0, 100% 44px, 100% 100%, 44px 100%, 0 calc(100% - 44px));
}
.map iframe { display: block; width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.4); }

/* Booking band + footer */

.book { background: var(--acc); color: var(--ink); }
.book .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 32px 48px; padding-top: 72px; padding-bottom: 72px; }
.book h2 { font-size: clamp(44px, 6vw, 88px); line-height: 0.9; }
.book p { font-size: 18px; font-weight: 500; margin: 16px 0 0; }
.book .btn { font-size: 22px; padding: 18px 30px; }

.footer { background: var(--ink-deep); color: #b9bbbf; }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 40px; padding-top: 64px; padding-bottom: 40px; }
.footer-cols img { height: 40px; width: auto; }
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 16px; }
.footer-col h2 { font-family: var(--condensed); font-weight: 700; font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; margin: 0 0 6px; }
.footer-col a { text-decoration: none; }
.footer-col a:hover { color: #fff; }
.copyright { border-top: 1px solid #1f2125; padding-top: 20px; padding-bottom: 32px; font-size: 14px; color: #7d8086; }

/* Mobile menu */

.menu-toggle { display: none; }

@media (max-width: 640px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    margin-right: 4px;
    padding: 0;
    background: none;
    border: 0;
    color: var(--text);
    cursor: pointer;
  }
  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    display: block;
    width: 26px;
    height: 3px;
    background: currentColor;
    transition: transform 0.2s, background 0.2s;
  }
  .menu-toggle span { position: relative; }
  .menu-toggle span::before,
  .menu-toggle span::after { content: ""; position: absolute; left: 0; }
  .menu-toggle span::before { top: -8px; }
  .menu-toggle span::after { top: 8px; }
  .menu-open .menu-toggle span { background: transparent; }
  .menu-open .menu-toggle span::before { transform: translateY(8px) rotate(45deg); }
  .menu-open .menu-toggle span::after { transform: translateY(-8px) rotate(-45deg); }

  .navbar { display: none; }
  .menu-open .navbar { display: block; }
  .nav { flex-direction: column; overflow: visible; padding-top: 8px; padding-bottom: 16px; font-size: 24px; }
  .nav a { padding: 14px 0 14px 16px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav a:hover,
  .nav a[aria-current="page"] { box-shadow: inset 5px 0 0 var(--acc); }
}
