:root {
  --ink: #17171a;
  --muted: #5f6068;
  --paper: #f5f6f4;
  --surface: #ffffff;
  --line: #d9dbd6;
  --accent: #60467b;
  --accent-dark: #463259;
  --header: #211e25;
  --max: 1180px;
  --radius: 6px;
  --shadow: 0 18px 45px rgba(30, 25, 35, 0.09);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent-dark);
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #b99fd2;
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: #fff;
  background: var(--header);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 220px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
}

.main-nav a {
  padding-block: 10px;
  color: rgba(255,255,255,.86);
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] { color: #fff; }

.lang-switch {
  display: flex;
  border-left: 1px solid rgba(255,255,255,.22);
  padding-left: 20px;
  gap: 12px;
}

.lang-switch a {
  min-width: 35px;
  text-align: center;
}

.lang-switch .active {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.menu-toggle {
  display: none;
  padding: 9px 12px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: var(--radius);
}

.hero {
  color: #fff;
  background: var(--accent-dark);
}

.hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 1.05fr);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(64px, 7vw, 92px) clamp(40px, 4vw, 72px) clamp(64px, 7vw, 92px) max(20px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 22px;
  color: #d8cbe4;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

h1, h2, h3 { margin-top: 0; line-height: 1.14; text-wrap: balance; }

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 4.6vw, 68px);
  letter-spacing: -.035em;
}

.hero-lead {
  max-width: 58ch;
  margin: 0 0 34px;
  color: rgba(255,255,255,.86);
  font-size: 20px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.button:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.button:active { transform: translateY(1px); }

.button-light {
  color: var(--accent-dark);
  background: #fff;
  border-color: #fff;
}

.button-light:hover { color: #fff; background: transparent; border-color: rgba(255,255,255,.7); }

.button-outline {
  color: #fff;
  background: transparent;
  border-color: rgba(255,255,255,.65);
}

.button-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.hero-media {
  min-height: 470px;
  background-image: linear-gradient(rgba(25,20,30,.08), rgba(25,20,30,.08)), url("images/hero-studio.jpg");
  background-position: center 46%;
  background-size: cover;
}

.quick-facts {
  color: #fff;
  background: var(--header);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.fact {
  min-height: 108px;
  padding: 23px 28px;
  border-left: 1px solid rgba(255,255,255,.14);
}

.fact:last-child { border-right: 1px solid rgba(255,255,255,.14); }
.fact-label { display: block; margin-bottom: 4px; color: #bcb8c0; font-size: 13px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.fact a { text-decoration-thickness: 1px; text-underline-offset: 4px; }

.section { padding: 100px 0; }
.section-white { background: var(--surface); }
.section-dark { color: #fff; background: var(--header); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  gap: 60px;
  align-items: start;
  margin-bottom: 54px;
}

.kicker {
  margin: 0 0 13px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-dark .kicker { color: #c5addb; }

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -.035em;
}

.section-intro {
  max-width: 720px;
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 20px;
}

.section-dark .section-intro { color: #c7c3ca; }

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.service {
  min-height: 210px;
  padding: 32px 34px 34px 0;
  border-bottom: 1px solid var(--line);
}

.service:nth-child(odd) { padding-right: 60px; border-right: 1px solid var(--line); }
.service:nth-child(even) { padding-left: 60px; }
.service-number { display: block; margin-bottom: 28px; color: var(--accent); font-size: 14px; font-weight: 900; }
.service h3 { margin-bottom: 10px; font-size: 24px; letter-spacing: -.02em; }
.service p { margin: 0; color: var(--muted); }

.price-tools {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.search-label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 800; }
.price-search {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c8cac5;
  border-radius: var(--radius);
}

.price-search:focus { border-color: var(--accent); }

.price-note {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.price-groups {
  background: var(--surface);
  border: 1px solid var(--line);
  border-bottom: 0;
}

.price-group { border-bottom: 1px solid var(--line); }
.price-group[hidden] { display: none; }

.price-group-header {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 24px;
  background: #f8f7fa;
}

.price-icon {
  width: 58px;
  height: 72px;
  flex: 0 0 58px;
  object-fit: contain;
}

.price-group-header h3 { margin: 0 0 2px; font-size: 23px; letter-spacing: -.02em; }
.group-count { display: block; color: var(--muted); font-size: 13px; font-weight: 700; }

.price-table { width: 100%; border-collapse: collapse; }
.price-table th { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.price-table td { padding: 15px 24px; border-top: 1px solid #eceeea; vertical-align: top; }
.price-table td:last-child { width: 120px; color: var(--accent-dark); font-weight: 900; text-align: right; white-space: nowrap; }
.price-row[hidden] { display: none; }
.no-results { display: none; padding: 24px; background: #fff; border: 1px solid var(--line); }
.no-results.show { display: block; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 90px;
  align-items: start;
}

.about-copy p { max-width: 710px; margin: 0 0 20px; font-size: 19px; }
.principles { border-top: 1px solid rgba(255,255,255,.2); }
.principle { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.principle strong { display: block; margin-bottom: 2px; }
.principle span { color: #aaa4af; }
.principle-index { color: #c5addb; font-weight: 900; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 22px 54px 22px 0; cursor: pointer; font-size: 20px; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; color: var(--accent); font-size: 26px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 760px; margin: -4px 0 24px; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 70px;
  align-items: stretch;
}

.contact-copy { padding: 58px; color: #fff; background: var(--accent-dark); border-radius: var(--radius); }
.contact-copy h2 { margin-bottom: 20px; }
.contact-copy > p { margin: 0 0 30px; color: #ded7e4; }
.contact-list { margin: 0 0 34px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.22); }
.contact-list li { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.contact-list strong { color: #cfc2da; }
.contact-list a { text-underline-offset: 4px; }

.map-link {
  position: relative;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(33,30,37,.82), rgba(70,50,89,.62)),
    url("images/contact-studio.jpg") center 48% / cover;
  border-radius: var(--radius);
  text-decoration: none;
}

.map-link > * { position: relative; z-index: 1; }
.map-pin { width: 34px; height: 34px; margin-bottom: auto; border: 10px solid #fff; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.map-link small { margin-bottom: 8px; color: #d5c9df; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.map-link strong { max-width: 400px; font-size: 28px; line-height: 1.25; }
.map-link span { margin-top: 14px; text-decoration: underline; text-underline-offset: 5px; }

.site-footer { padding: 38px 0 90px; color: #cbc8ce; background: var(--header); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; }
.footer-logo { width: min(280px, 100%); height: auto; object-fit: contain; margin-bottom: 18px; }
.footer-grid p { margin: 0; font-size: 14px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; font-size: 14px; }
.footer-links a { text-underline-offset: 4px; }

.mobile-contact { display: none; }

@media (max-width: 940px) {
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 22px;
    color: #fff;
    background: var(--header);
    border-top: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 8px; }
  .lang-switch { margin-top: 8px; padding: 8px 0 0; border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 70px max(20px, calc((100vw - var(--max)) / 2)); }
  .hero-media { min-height: 360px; order: -1; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .price-tools { grid-template-columns: 1fr; }
  .price-note { text-align: left; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 30px), var(--max)); }
  .brand img { width: 180px; }
  .header-inner { min-height: 70px; }
  .main-nav { top: 70px; }
  .hero-copy { padding: 52px 20px 58px; }
  .hero-media { min-height: 260px; }
  h1 { font-size: clamp(40px, 12vw, 56px); }
  .hero-lead { font-size: 18px; }
  .hero-actions .button { width: 100%; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact, .fact:last-child { min-height: auto; padding: 17px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 36px; }
  .section-intro { font-size: 18px; }
  .service-list { grid-template-columns: 1fr; }
  .service, .service:nth-child(odd), .service:nth-child(even) { min-height: auto; padding: 25px 0; border-right: 0; }
  .service-number { margin-bottom: 14px; }
  .price-group-header { min-height: 82px; gap: 15px; padding: 12px 15px; }
  .price-icon { width: 44px; height: 58px; flex-basis: 44px; }
  .price-group-header h3 { font-size: 19px; }
  .price-table td { padding: 13px 15px; }
  .price-table td:last-child { width: 84px; }
  .contact-copy { padding: 34px 24px; }
  .contact-list li { grid-template-columns: 1fr; gap: 2px; }
  .map-link { min-height: 350px; padding: 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .site-footer { padding-bottom: 100px; }
  .mobile-contact {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 8px;
    background: rgba(33,30,37,.97);
    box-shadow: 0 -8px 24px rgba(20,17,23,.18);
  }
  .mobile-contact a { min-height: 47px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .hero, .quick-facts, .price-tools, .section:not(#hinnad):not(#ceni), .mobile-contact, .site-footer { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .section { padding: 0; }
  .container { width: 100%; }
  .price-group { break-inside: avoid; }
  .price-group > * { display: block !important; }
  .price-table td { padding: 5pt 0; }
}
