:root {
  --ink: #111820;
  --ink-soft: #27313b;
  --paper: #f7f5f0;
  --surface: #fffefa;
  --surface-muted: #eeebe4;
  --accent: #a7854f;
  --accent-strong: #765a2f;
  --accent-soft: #e9ddc7;
  --muted: #657079;
  --line: rgba(17, 24, 32, .13);
  --line-light: rgba(255, 255, 255, .14);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 12px;
  --shadow: 0 24px 70px rgba(17, 24, 32, .08);
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button, input, select, textarea { font: inherit; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.shell { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 860px; }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 9999;
  padding: 12px 18px; color: #fff; background: var(--ink); border-radius: 8px; font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 245, 240, .92); border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.page-home .site-header { position: absolute; inset: 0 0 auto; background: transparent; border: 0; backdrop-filter: none; }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 86px; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; font-weight: 820; letter-spacing: -.025em; }
.brand-mark {
  display: grid; width: 42px; height: 42px; place-items: center;
  color: var(--accent-soft); background: var(--ink); border-radius: 50%;
}
.brand-mark svg { width: 25px; height: 25px; }
.brand-name { font-size: 18px; }
.brand-place {
  margin-left: 2px; padding-left: 12px; color: var(--muted); border-left: 1px solid var(--line);
  font-size: 11px; font-weight: 780; letter-spacing: .13em; text-transform: uppercase;
}
.desktop-nav ul { display: flex; align-items: center; gap: 25px; margin: 0; padding: 0; list-style: none; }
.desktop-nav a { position: relative; color: var(--muted); font-size: 13px; font-weight: 720; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--accent); transition: right .2s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-link { display: inline-grid; min-width: 38px; min-height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.language-link:hover { border-color: var(--ink); background: var(--surface); }
.nav-cta, .button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 23px;
  border: 1px solid transparent; border-radius: 999px; font-weight: 780; cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.nav-cta { min-height: 44px; padding-inline: 20px; color: #fff; background: var(--ink); font-size: 13px; }
.nav-cta:hover, .nav-cta.active, .button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--ink); }
.button-primary:hover { background: var(--ink-soft); }
.button-secondary { color: var(--ink); border-color: var(--line); background: rgba(255,255,255,.3); }
.button-secondary:hover { border-color: var(--ink); }

.mobile-nav { display: none; position: relative; }
.mobile-nav summary { display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.menu-label { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.menu-icon, .menu-icon::before, .menu-icon::after { display: block; width: 17px; height: 2px; background: currentColor; content: ""; }
.menu-icon { position: relative; }
.menu-icon::before { position: absolute; top: -5px; }
.menu-icon::after { position: absolute; top: 5px; }
.mobile-nav[open] .menu-icon { background: transparent; }
.mobile-nav[open] .menu-icon::before { top: 0; transform: rotate(45deg); }
.mobile-nav[open] .menu-icon::after { top: 0; transform: rotate(-45deg); }
.mobile-nav nav {
  position: absolute; top: calc(100% + 12px); right: 0; width: min(340px, calc(100vw - 28px));
  padding: 10px; color: var(--ink); background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow);
}
.mobile-nav ul { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }
.mobile-nav a { display: block; padding: 12px 14px; border-radius: 10px; font-weight: 720; }
.mobile-nav a:hover, .mobile-nav a.active { background: var(--surface-muted); }

main { overflow: hidden; }
.hero { position: relative; padding-top: 86px; background: linear-gradient(155deg, #f9f7f2 0%, #eeebe4 100%); border-bottom: 1px solid var(--line); }
.hero::before {
  content: ""; position: absolute; width: 460px; height: 460px; right: -140px; top: -160px;
  border: 1px solid rgba(167,133,79,.28); border-radius: 50%; box-shadow: 0 0 0 70px rgba(167,133,79,.035), 0 0 0 150px rgba(167,133,79,.025); pointer-events: none;
}
.hero-grid { position: relative; display: grid; gap: 34px; padding: 58px 0 56px; }
.hero-copy { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr); gap: 10px 60px; align-items: end; }
.hero-copy .eyebrow { grid-column: 1 / -1; }
.eyebrow, .section-kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  color: var(--accent-strong); font-size: 11px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.hero h1, .page-hero h1, .section-head h2, .split-copy h2, .cta-panel h2, .booking-widget-section h2 {
  margin: 0; font-family: var(--font-display); font-weight: 500; line-height: .98; letter-spacing: -.05em;
}
.hero h1 { max-width: 800px; font-size: clamp(48px, 6.2vw, 82px); }
.hero-copy > p { max-width: 430px; margin: 0 0 8px; color: var(--muted); font-size: 17px; }
.hero-actions { display: none; }
.hero-note { display: none; }
.route-panel.route-panel--booking {
  position: relative; min-height: 620px; width: 100%; overflow: hidden;
  background: #fff; border: 1px solid rgba(17,24,32,.1); border-radius: 20px; box-shadow: var(--shadow); scroll-margin-top: 100px;
}
.route-panel-iframe { display: block; width: 100%; height: 620px; border: 0; background: #fff; }

.trust-strip { background: var(--surface); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { padding: 28px 26px; border-left: 1px solid var(--line); }
.trust-grid > div:first-child { border-left: 0; }
.trust-grid strong { display: block; font-size: 14px; }
.trust-grid span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }

.section { padding: 104px 0; }
.section--muted { background: var(--surface-muted); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 48px; margin-bottom: 48px; }
.section-head--center { justify-content: center; text-align: center; }
.section-head h2, .split-copy h2, .booking-widget-section h2 { max-width: 720px; font-size: clamp(40px, 4.5vw, 62px); }
.section-head > p { max-width: 430px; margin: 0; color: var(--muted); }
.section-kicker { display: block; margin-bottom: 16px; }
.section-kicker--dark { color: var(--accent-soft); }
.section-lead { max-width: 690px; margin: 18px 0 0; color: var(--muted); font-size: 17px; }
.service-index { border-top: 1px solid var(--line); }
.service-row { display: grid; grid-template-columns: 54px minmax(0,1fr) auto; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.service-row-index { color: var(--accent-strong); font-size: 11px; font-weight: 850; letter-spacing: .13em; }
.service-row h3 { margin: 0; font-family: var(--font-display); font-size: clamp(31px, 4vw, 48px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.service-row h3 a:hover { color: var(--accent-strong); }
.service-row p { max-width: 680px; margin: 12px 0 0; color: var(--muted); }
.service-row-arrow { align-self: end; color: var(--accent); font-size: 27px; }
.split-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: start; }
.split-copy p { max-width: 540px; margin: 22px 0 0; color: var(--muted); }
.why-list { display: grid; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.why-list li { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.why-list li > span { color: var(--accent-strong); font-size: 11px; font-weight: 850; letter-spacing: .13em; }
.why-list h3 { margin: 0; font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.why-list p { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.text-link { display: inline-block; margin-top: 24px; color: var(--accent-strong); font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.text-link:hover { color: var(--ink); }

.journey-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.journey-card { display: flex; min-height: 280px; flex-direction: column; padding: 32px; background: var(--surface); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: transform .2s ease, background .2s ease; }
.journey-card:hover { transform: translateY(-3px); }
.journey-card--featured { color: #f8f5ef; background: var(--ink); }
.journey-card:nth-child(2) { background: var(--accent-soft); }
.journey-card span { color: var(--accent-strong); font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.journey-card--featured span, .journey-card--featured small { color: rgba(255,255,255,.65); }
.journey-card strong { max-width: 420px; margin-top: 34px; font-family: var(--font-display); font-size: clamp(29px, 3.5vw, 45px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.journey-card small { margin-top: auto; padding-top: 26px; color: var(--muted); font-size: 13px; }

.page-hero { background: linear-gradient(155deg, #f9f7f2, #eeebe4); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 52px; padding: 86px 0; }
.page-hero h1 { max-width: 920px; font-size: clamp(44px, 5.3vw, 70px); }
.page-hero-grid > div > p { max-width: 660px; margin: 25px 0 0; color: var(--muted); font-size: 18px; }
.page-om-oss .page-hero, .page-kontakt .page-hero, .page-vanliga-fragor .page-hero, .page-boka-taxi .page-hero, .page-integritetspolicy .page-hero, .page-404 .page-hero { color: #f8f5ef; background: var(--ink); border: 0; }
.page-om-oss .page-hero p, .page-kontakt .page-hero p, .page-vanliga-fragor .page-hero p, .page-boka-taxi .page-hero p, .page-integritetspolicy .page-hero p, .page-404 .page-hero p { color: rgba(255,255,255,.68); }
.page-om-oss .page-hero .eyebrow, .page-kontakt .page-hero .eyebrow, .page-vanliga-fragor .page-hero .eyebrow, .page-boka-taxi .page-hero .eyebrow, .page-integritetspolicy .page-hero .eyebrow, .page-404 .page-hero .eyebrow { color: var(--accent-soft); }
.breadcrumbs { padding-top: 24px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; }
.breadcrumbs li { display: inline-flex; align-items: center; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #a6adb2; }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 740; }

.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 78px; align-items: start; }
.prose { max-width: 740px; font-size: 17px; }
.prose .lead, .contact-main .lead { margin: 0 0 30px; color: var(--ink-soft); font-family: var(--font-display); font-size: 24px; line-height: 1.46; letter-spacing: -.02em; }
.prose h2 { margin: 42px 0 13px; font-family: var(--font-display); font-size: 30px; font-weight: 500; line-height: 1.12; letter-spacing: -.04em; }
.prose p { margin: 0 0 18px; color: #424d55; }
.prose ul { display: grid; gap: 10px; margin: 22px 0; padding-left: 22px; color: #424d55; }
.prose li::marker { color: var(--accent); }
.prose a { color: var(--accent-strong); text-decoration: underline; text-underline-offset: 3px; }
.info-stack { display: grid; gap: 15px; position: sticky; top: 112px; }
.info-card { padding: 25px; background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: var(--radius); }
.info-card h2, .contact-card h2, .booking-steps h2, .booking-notes h2, .faq-group h2 { margin: 0; font-family: var(--font-display); font-size: 23px; font-weight: 500; letter-spacing: -.03em; }
.info-card p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.link-list, .check-list { display: grid; gap: 10px; margin: 16px 0 0; padding: 0; list-style: none; }
.link-list a { color: var(--accent-strong); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.check-list li { position: relative; padding-left: 25px; color: #424d55; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-strong); font-weight: 900; }

.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.area-card { display: flex; min-height: 205px; flex-direction: column; padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.area-card span { color: var(--accent-strong); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.area-card strong { margin-top: 25px; font-family: var(--font-display); font-size: 24px; font-weight: 500; line-height: 1.1; }
.area-card small { margin-top: auto; padding-top: 22px; color: var(--muted); font-size: 13px; }
.destination-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.destination-list a { display: flex; justify-content: space-between; padding: 18px 20px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); font-weight: 790; }
.destination-list a::after { content: "→"; color: var(--accent-strong); }

.booking-widget-section { padding: 96px 0; background: var(--surface); border-block: 1px solid var(--line); }
.booking-widget-shell { min-height: 620px; margin-top: 34px; padding: 9px; background: var(--surface-muted); border: 1px solid var(--line); border-radius: 18px; }
.booking-widget { min-height: 600px; overflow: hidden; background: #fff; border-radius: 12px; }
.booking-widget--embed { padding: 0; border: 0; }
.booking-widget-iframe { display: block; width: 100%; height: 720px; border: 0; background: #fff; }
.booking-preparation { padding-top: 84px; }
.booking-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.booking-steps article { padding: 28px; background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--accent); border-radius: var(--radius); }
.booking-steps article > span { display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: var(--ink); border-radius: 50%; font-weight: 850; }
.booking-steps h2 { margin-top: 26px; }
.booking-steps p { margin: 8px 0 0; color: var(--muted); }
.booking-notes { padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }

.faq-list { margin-top: 34px; }
.faq-group { margin-top: 38px; }
.faq-group:first-child { margin-top: 0; }
.faq-group h2 { margin-bottom: 12px; }
.faq-list details, .faq-group details { padding: 22px 0; border-top: 1px solid var(--line); }
.faq-list details:last-of-type, .faq-group details:last-of-type { border-bottom: 1px solid var(--line); }
.faq-list summary, .faq-group summary { display: flex; justify-content: space-between; gap: 20px; list-style: none; font-size: 17px; font-weight: 760; cursor: pointer; }
.faq-list summary::-webkit-details-marker, .faq-group summary::-webkit-details-marker { display: none; }
.faq-list summary::after, .faq-group summary::after { content: "+"; color: var(--accent-strong); font-size: 24px; font-weight: 500; }
.faq-list details[open] summary::after, .faq-group details[open] summary::after { content: "–"; }
.faq-list p, .faq-group p { max-width: 720px; margin: 12px 0 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 60px; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { padding: 26px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card p { margin: 10px 0 0; color: var(--muted); }
.placeholder-value { color: var(--accent-strong); font-weight: 750; }
.contact-placeholder { color: rgba(255,255,255,.58); }

.cta-panel-shell { padding: 0 0 104px; }
.cta-panel { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 44px; padding: 52px; color: #f8f5ef; background: var(--ink); border-radius: 18px; }
.cta-panel h2 { font-size: clamp(38px, 4vw, 54px); }
.cta-panel p { max-width: 580px; margin: 14px 0 0; color: rgba(255,255,255,.66); }
.cta-panel .button-primary { color: var(--ink); background: var(--accent-soft); }

.site-footer { padding: 74px 0 26px; color: rgba(255,255,255,.63); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: minmax(260px, 1.45fr) repeat(3, minmax(150px,1fr)); gap: 48px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-mark { color: var(--ink); background: var(--accent-soft); }
.footer-brand .brand-place { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.2); }
.footer-brand > p { max-width: 340px; margin: 20px 0 0; font-size: 14px; }
.footer-contact { display: grid; gap: 6px; margin-top: 24px; font-size: 13px; }
.footer-contact p { margin: 0; }
.footer-col h2 { margin: 0 0 18px; color: #fff; font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid var(--line-light); font-size: 11px; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .header-actions { margin-left: auto; }
  .mobile-nav { display: block; }
  .hero-copy { grid-template-columns: 1fr; gap: 14px; }
  .hero-copy > p { max-width: 680px; }
  .split-panel, .article-layout, .contact-grid { grid-template-columns: 1fr; }
  .info-stack { position: static; }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2; }
}

@media (max-width: 760px) {
  .shell { width: min(var(--max), calc(100% - 28px)); }
  .page-home .site-header { position: sticky; inset: auto; top: 0; background: rgba(247,245,240,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
  .header-inner { min-height: 74px; gap: 10px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-name { font-size: 16px; }
  .brand-place { display: none; }
  .header-actions { display: none; }
  .hero { padding-top: 0; }
  .hero::before { display: none; }
  .hero-grid { gap: 24px; padding: 34px 0 48px; }
  .hero h1, .page-hero h1 { font-size: 44px; }
  .hero-copy > p, .page-hero-grid > div > p { font-size: 16px; }
  .route-panel.route-panel--booking { min-height: 420px; border-radius: 16px; }
  .route-panel-iframe { height: 420px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid > div { padding: 22px 18px; border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(odd) { border-left: 0; }
  .section { padding: 76px 0; }
  .section-head { display: block; }
  .section-head > p { margin-top: 18px; }
  .service-row { grid-template-columns: 38px minmax(0,1fr); gap: 14px; }
  .service-row-arrow { display: none; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-card { min-height: 245px; padding: 25px; }
  .page-hero-grid { grid-template-columns: 1fr; align-items: start; gap: 30px; padding: 68px 0; }
  .booking-steps, .area-grid { grid-template-columns: 1fr; }
  .booking-widget-section { padding: 72px 0; }
  .booking-widget-shell { min-height: 420px; padding: 4px; }
  .booking-widget { min-height: 410px; }
  .booking-widget-iframe { height: 520px; }
  .cta-panel-shell { padding-bottom: 76px; }
  .cta-panel { grid-template-columns: 1fr; gap: 28px; padding: 34px 24px; }
  .cta-panel .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

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