:root {
  --bg: #0b0b0c;
  --bg-soft: #141416;
  --card: rgba(255,255,255,0.05);
  --card-border: rgba(255,255,255,0.1);
  --text: #f3f3f1;
  --muted: #b8b8b2;
 --yellow: #ffbf00;
  --yellow-soft: #ffbf00;
  --line: rgba(255,255,255,0.08);
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 22px;
  --max: 1240px;
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #090909 0%, #101012 100%);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(100% - 28px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffbf00;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.16);
}

.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.brand-logo,
.brand-text strong,
.brand-text span {
  transition: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  min-width: 0;
  position: relative;
  z-index: 2;
}

.brand-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text span {
  color: rgba(0,0,0,0.72);
  font-size: 0.78rem;
  font-weight: 600;
}

.header-brand {
  display: none;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--card-border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
  position: relative;
  transition: 0.25s ease;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.menu-toggle.active span {
  background: transparent;
}

.menu-toggle.active span::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: rgba(8,8,8,0.96);
  border-bottom: 1px solid var(--line);
  padding: 16px 14px 22px;
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-links {
  display: grid;
  gap: 10px;
}

.nav-links a {
  padding: 16px 18px;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  font-weight: 700;
  font-size: 1rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
  isolation: isolate;
  padding-top: var(--header-h);
}

.hero video,
.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-fallback {
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.38) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(18,18,20,0.18) 0%, rgba(18,18,20,0.28) 36%, rgba(18,18,20,0.62) 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, #0c0c0d);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-grid {
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  transform: translateY(-150px);
}

.hero-logo {
  width: min(90vw, 520px);
  height: auto;
  display: block;
  margin: 0 auto -40px;
  margin-top: -70px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.28));
}

.hero-copy h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(1.95rem, 5.2vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-copy p {
  margin: 8px auto 0;
  max-width: 28rem;
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.45;
  color: rgba(243,243,241,0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  min-height: 50px;
  padding: 14px 18px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow-soft), var(--yellow));
  color: #0a0a0a;
  box-shadow: 0 16px 34px rgba(255,191,0,0.2);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
}

.hero .btn {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 15px;
}

.hero .btn-primary {
  box-shadow: 0 10px 24px rgba(255,191,0,0.18);
}

.hero .btn-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: #f3f3f1;
  backdrop-filter: blur(8px);
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  max-width: 420px;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}

.hero-card h2 {
  margin: 0;
  font-size: 1rem;
}

.hero-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.badge {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: #ecece8;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

main {
  position: relative;
  z-index: 2;
}

section {
  padding: 72px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head .kicker {
  color: var(--yellow-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4.4vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.section-head p {
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 1rem;
}

.section-gap {
  margin-top: 16px;
}

.stat,
.card,
.service,
.location-card,
.contact-card,
.price-card,
.info-strip {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.03));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-grid,
.location-grid,
.contact-grid,
.footer-grid,
.price-grid {
  display: grid;
  gap: 16px;
}

.card,
.location-card,
.contact-card,
.price-card {
  padding: 22px;
}

.card h3,
.price-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.card p,
.service p,
.location-card p,
.contact-card p,
.footer p,
.footer a,
.price-card p {
  color: var(--muted);
}

.services-grid {
  display: grid;
  gap: 16px;
}

.service {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--card-border);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025));
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.service:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
}

.service::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--yellow-soft), rgba(255,191,0,0.18));
  z-index: 3;
}

.service-toggle {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.service-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service:hover .service-media img,
.service.is-open .service-media img {
  transform: scale(1.04);
}

.service-summary {
  padding: 18px 20px 18px;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service h3 {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.15;
  color: var(--text);
}

.service-summary p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.service-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow-soft);
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.service-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service.is-open .service-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s ease;
}

.service.is-open .service-details {
  max-height: 220px;
}

.service-details ul {
  margin: 0;
  padding: 0 20px 20px 20px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-details li {
  color: #e8e8e3;
  font-size: 0.95rem;
  line-height: 1.45;
}

.service-details li::before {
  content: "• ";
  color: var(--yellow-soft);
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  margin: 0 20px 20px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.service-cta:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}

#kontakt {
  scroll-margin-top: 96px;
}

#priser {
  scroll-margin-top: 96px;
}

.vision {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(255,191,0,0.15), transparent 28%),
    linear-gradient(180deg, #101011 0%, #0b0b0c 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.vision-head {
  margin-bottom: 20px;
}

.vision-quote {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 900px;
}

.vision-quote span {
  color: var(--yellow-soft);
}

.location-card strong,
.contact-card strong,
.price-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.location-meta,
.contact-meta {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.location-meta div,
.contact-meta div {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: #e8e8e2;
  font-weight: 600;
}

.price-list {
  display: grid;
  gap: 0;
  margin-top: 14px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: #e8e8e2;
}

.price-row:first-child {
  border-top: 1px solid var(--line);
}

.price-row span {
  color: var(--muted);
  font-weight: 600;
}

.price-row strong {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  text-align: right;
}

.info-strip {
  margin-top: 18px;
  padding: 18px 20px;
}

.info-strip p {
  margin: 0;
  color: var(--muted);
}

.info-strip strong {
  color: var(--text);
}

.footer-brand {
  display: inline-flex;
}

.footer-brand:hover {
  opacity: 0.95;
}

.footer {
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  background: #090909;
}

.footer-grid {
  gap: 24px;
}

.footer h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.footer small {
  color: #8f8f89;
  display: block;
  margin-top: 16px;
}

.footer-intro {
  margin: 14px 0 0;
  max-width: 32rem;
}

.desktop-nav {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  color: #111;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: rgba(0,0,0,0.7);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.desktop-nav a:hover {
  color: var(--yellow-soft);
}

.desktop-nav a.is-active {
  color: #111;
}

.desktop-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 850px) {
  .container {
    width: min(100% - 40px, var(--max));
  }

  .menu-toggle,
  .nav {
    display: none;
  }

  .desktop-nav,
  .desktop-cta {
    display: flex;
    align-items: center;
  }

  .desktop-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    gap: 34px;
  }

  .desktop-cta {
    position: relative;
    z-index: 2;
  }

  .desktop-cta .btn {
    min-height: 44px;
    padding: 11px 16px;
  }

  .hero-content {
    padding-bottom: 52px;
  }

  .about-grid,
  .location-grid,
  .contact-grid,
  .footer-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  section {
    padding: 96px 0;
  }

  .about-grid {
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.site-header .brand-text strong,
.site-header .desktop-nav a {
  color: #111;
}

.site-header .brand-text span {
  color: rgba(0,0,0,0.72);
}

.site-header .desktop-nav a:hover {
  color: #000;
}

.site-header .btn-primary {
  background: #111;
  color: #f3f3f1;
  box-shadow: none;
}

.site-header .btn-primary:hover {
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-book-desktop {
  display: none;
}

@media (min-width: 850px) {
  .desktop-cta {
    display: none !important;
  }

  .hero-call-mobile {
    display: none;
  }

  .hero-book-desktop {
    display: inline-flex;
  }
}

.section-image {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.section-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-image-wrap {
  margin-top: 22px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

.service-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-layout {
  display: grid;
  gap: 18px;
}

.about-head {
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  gap: 16px;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-head p {
  max-width: 58ch;
  line-height: 1.6;
}

.about-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: none;
}

.about-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.about-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #c9c9c2;
}

@media (min-width: 1024px) {
  .about-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.9fr);
    grid-template-areas:
      "head image"
      "cards image";
    align-items: start;
    column-gap: 28px;
    row-gap: 22px;
  }

  .about-head {
    grid-area: head;
    max-width: 760px;
  }

  .about-grid {
    grid-area: cards;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .about-grid .card {
    min-height: 100%;
  }

  .section-image {
    grid-area: image;
    height: 100%;
    min-height: 620px;
    align-self: stretch;
  }

  .section-image img {
    height: 100%;
    object-position: center top;
  }

  .service-image-wrap {
    margin-top: 28px;
    height: 320px;
  }

  .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.footer small a {
  color: var(--yellow-soft);
  text-decoration: none;
}

.footer small a:hover {
  text-decoration: underline;
}

.contact-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  box-shadow: none;
  padding: 24px 26px;
}

.contact-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 18px;
  color: var(--text);
}

.contact-meta {
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.contact-meta div {
  padding-top: 0;
  border-top: 0;
  color: #e8e8e2;
  font-weight: 500;
}

.contact-meta a {
  color: inherit;
  text-decoration: none;
}

.contact-meta a:hover {
  color: var(--yellow-soft);
}

.subpage-main {
  padding-top: var(--header-h);
  min-height: calc(100svh - 220px);
  display: flex;
  flex-direction: column;
}

.subpage-main section:first-child {
  padding-top: 110px;
  padding-bottom: 120px;
  flex: 1;
}

.nav-links a.is-active {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}

body.subpage .header-brand {
  display: inline-flex;
}