:root {
  --green-900: #0a2e21;
  --green-800: #0f3a2a;
  --green-700: #16533c;
  --green-600: #1c6b4c;
  --brass: #c9a961;
  --brass-bright: #ddc488;
  --brass-deep: #8a6a30;
  --cream: #f5efe3;
  --cream-2: #efe6d2;
  --cream-card: #fbf7ee;
  --ink: #171411;
  --ink-soft: #4a3f33;
  --ink-faint: #8a7d6e;
  --line: rgba(10,46,33,0.14);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  /* Subtil papperskornighet */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brass-deep);
}
.eyebrow.on-dark { color: var(--brass); }

/* ---------- Top bar ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,239,227,0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brandmark { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brandmark img { width: 42px; height: 42px; }
.brandmark span {
  font-family: var(--mono); font-weight: 600; font-size: 14px;
  letter-spacing: 2px; color: var(--green-900);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none; color: var(--ink-soft);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--green-700); }
.nav-cta {
  padding: 9px 16px; background: var(--green-900); color: var(--cream) !important;
  border-radius: 8px; font-family: var(--sans) !important; font-size: 13px !important;
  letter-spacing: 0 !important; text-transform: none !important; font-weight: 600;
}
@media (max-width: 720px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--green-900); color: var(--cream);
  overflow: hidden; isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(201,169,97,0.16), transparent 55%),
    radial-gradient(90% 70% at 4% 100%, rgba(28,107,76,0.40), transparent 60%);
}
/* Hårfin scorekortsruta i bakgrunden */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image:
    linear-gradient(rgba(245,239,227,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,239,227,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
  padding: 92px 0 96px;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-family: var(--serif); font-weight: 700; color: #fff;
  font-size: clamp(44px, 6.4vw, 78px); line-height: 1.02; letter-spacing: -1.5px;
  margin: 20px 0 22px;
}
.hero h1 .accent { color: var(--brass); font-style: italic; font-weight: 600; }
.hero p.lede {
  font-size: 18.5px; color: rgba(245,239,227,0.82); max-width: 480px; margin-bottom: 34px;
}
.cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-store {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 15px 26px; border-radius: 12px;
  background: var(--brass); color: var(--green-900); text-decoration: none;
  font-weight: 700; font-size: 16px; letter-spacing: .2px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.28);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn-store:hover { background: var(--brass-bright); transform: translateY(-2px); box-shadow: 0 18px 38px rgba(0,0,0,0.34); }
.btn-store svg { width: 19px; height: 23px; margin-bottom: 2px; }
.btn-store .b-sub { display: block; font-family: var(--mono); font-size: 10px; font-weight: 500; letter-spacing: .5px; opacity: .7; line-height: 1; }
.btn-store .b-main { display: block; font-size: 16px; line-height: 1.15; }
.cta-note { font-family: var(--mono); font-size: 12px; color: rgba(245,239,227,0.55); letter-spacing: .5px; }

/* Telefon i hero */
.hero-phone { position: relative; justify-self: center; }
.hero-phone img {
  width: clamp(230px, 30vw, 320px); height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
  transform: rotate(2.5deg);
}
.hero-stamp {
  position: absolute; left: -22px; bottom: 34px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 1px;
  color: var(--green-900); background: var(--brass);
  padding: 7px 12px; border-radius: 6px; transform: rotate(-4deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3); font-weight: 600;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 8px; padding: 64px 0 72px; text-align: center; }
  .hero-copy { max-width: 100%; margin: 0 auto; }
  .hero p.lede { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .hero-phone { margin-top: 38px; }
  .hero-phone img { transform: rotate(0deg); }
  .hero-stamp { left: 50%; transform: translateX(-120px) rotate(-4deg); }
}

/* ---------- Scorekorts-remsa (hål 1-18) ---------- */
.holestrip {
  background: var(--green-800); border-top: 1px solid rgba(201,169,97,0.25);
  border-bottom: 1px solid rgba(201,169,97,0.25);
}
.holestrip-inner { display: flex; justify-content: space-between; padding: 12px 0; overflow: hidden; }
.holestrip span {
  font-family: var(--mono); font-size: 12px; color: rgba(201,169,97,0.55);
  letter-spacing: 1px;
}
@media (max-width: 720px) { .holestrip span:nth-child(n+10) { display: none; } }

/* ---------- Stats ---------- */
.stats { padding: 70px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat { padding: 34px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num {
  font-family: var(--serif); font-weight: 700; font-size: 60px; line-height: 1;
  color: var(--green-800); letter-spacing: -1px;
}
.stat .num.brass { color: var(--brass-deep); }
.stat .label { margin-top: 12px; font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 680px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .stat .num { font-size: 48px; }
}

/* ---------- Sektioner / features ---------- */
.feature { padding: 64px 0; }
.feature-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature:nth-child(even) .feature-text { order: 2; }
.feature-text h2 {
  font-family: var(--serif); font-weight: 700; font-size: clamp(30px, 4vw, 42px);
  color: var(--green-900); line-height: 1.08; letter-spacing: -.8px; margin: 14px 0 16px;
}
.feature-text p { font-size: 17px; color: var(--ink-soft); max-width: 460px; }
.feature-shot { display: flex; justify-content: center; }
.feature-shot img {
  width: clamp(240px, 32vw, 320px); height: auto;
  filter: drop-shadow(0 24px 48px rgba(10,46,33,0.22));
}
@media (max-width: 820px) {
  .feature { padding: 44px 0; }
  .feature-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .feature:nth-child(even) .feature-text { order: 0; }
  .feature-text p { margin: 0 auto; }
  .feature-shot { order: -1; }
}

/* ---------- Spelformer ---------- */
.formats { background: var(--green-900); color: var(--cream); padding: 84px 0; }
.formats .head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.formats h2 {
  font-family: var(--serif); font-weight: 700; color: #fff;
  font-size: clamp(32px, 4.5vw, 46px); letter-spacing: -.8px; margin: 14px 0 14px;
}
.formats .head p { color: rgba(245,239,227,0.72); font-size: 17px; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.fcard {
  background: rgba(245,239,227,0.04); border: 1px solid rgba(201,169,97,0.22);
  border-radius: 14px; padding: 22px 20px 24px;
}
.fcard .ftitle {
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--brass); margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.fcard .ftitle::before { content: ""; width: 16px; height: 1px; background: var(--brass); opacity: .6; }
.fcard ul { list-style: none; }
.fcard li {
  font-family: var(--serif); font-size: 18px; color: var(--cream);
  padding: 7px 0; border-bottom: 1px solid rgba(245,239,227,0.08);
}
.fcard li:last-child { border-bottom: none; }
.fcard li a { text-decoration: none; transition: color .18s ease; }
.fcard li a:hover { color: var(--brass-bright); }
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------- Closing CTA ---------- */
.closing { padding: 96px 0; text-align: center; }
.closing h2 {
  font-family: var(--serif); font-weight: 700; font-size: clamp(34px, 5vw, 56px);
  color: var(--green-900); letter-spacing: -1.2px; line-height: 1.05; max-width: 720px; margin: 0 auto 14px;
}
.closing h2 .accent { color: var(--brass-deep); font-style: italic; font-weight: 600; }
.closing p { color: var(--ink-soft); font-size: 17px; margin-bottom: 32px; }
.closing .btn-store { background: var(--green-900); color: var(--cream); }
.closing .btn-store:hover { background: var(--green-700); }
.closing .btn-store .b-sub { opacity: .6; }

/* ---------- Footer ---------- */
footer { background: var(--green-900); color: rgba(245,239,227,0.7); padding: 54px 0 60px; }
.foot-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 22px; padding-bottom: 28px; border-bottom: 1px solid rgba(245,239,227,0.12); }
.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand img { width: 34px; height: 34px; }
.foot-brand span { font-family: var(--serif); font-size: 22px; color: #fff; }
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .6px; text-transform: uppercase;
  text-decoration: none; color: rgba(245,239,227,0.7); transition: color .2s ease;
}
.foot-links a:hover { color: var(--brass); }
.foot-bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-family: var(--mono); font-size: 12px; color: rgba(245,239,227,0.45); letter-spacing: .5px; }

/* ---------- Reveal (no-JS = synligt) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
/* Hero load-animation */
.hero-copy > * { animation: rise .8s cubic-bezier(.2,.7,.2,1) both; }
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .14s; }
.hero-copy > *:nth-child(3) { animation-delay: .23s; }
.hero-copy > *:nth-child(4) { animation-delay: .32s; }
.hero-phone { animation: rise 1s cubic-bezier(.2,.7,.2,1) .25s both; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .hero-copy > *, .hero-phone { animation: none; } }

/* ---------- Så funkar det (steg) ---------- */
.steps { padding: 8px 0 56px; }
.steps .head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.steps h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(30px,4.5vw,44px); color: var(--green-900); letter-spacing: -.8px; margin: 14px 0 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step { padding: 30px 26px 32px; background: var(--cream-card); border: 1px solid var(--line); border-radius: 16px; }
.step-num { font-family: var(--serif); font-weight: 700; font-size: 34px; line-height: 1; color: var(--brass-deep); }
.step h3 { font-family: var(--serif); font-weight: 700; font-size: 23px; color: var(--green-900); margin: 14px 0 8px; letter-spacing: -.4px; }
.step p { font-size: 15.5px; color: var(--ink-soft); }
@media (max-width: 780px) { .steps-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ---------- Innehållsnav / guider ---------- */
.subhero { background: var(--green-900); color: var(--cream); padding: 60px 0 52px; }
.subhero-inner { max-width: 820px; margin: 0 auto; padding: 0 28px; }
.subhero .eyebrow { color: var(--brass); }
.subhero h1 { font-family: var(--serif); font-weight: 700; color: #fff; font-size: clamp(34px,5.2vw,58px); letter-spacing: -1.4px; line-height: 1.05; margin: 16px 0 16px; }
.subhero h1 .accent { color: var(--brass); font-style: italic; font-weight: 600; }
.subhero p { font-size: 18px; color: rgba(245,239,227,0.82); max-width: 640px; }
.breadcrumb { font-family: var(--mono); font-size: 12px; letter-spacing: .6px; text-transform: uppercase; }
.breadcrumb a { color: rgba(245,239,227,0.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--brass); }
.breadcrumb .sep { color: rgba(245,239,227,0.35); margin: 0 8px; }

.hub-section { padding: 52px 0 12px; }
.hub-cat { font-family: var(--mono); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brass-deep); margin: 0 0 18px; }
.hub-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-bottom: 40px; }
.hub-card { display: block; padding: 22px 24px; background: var(--cream-card); border: 1px solid var(--line); border-radius: 14px; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.hub-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(10,46,33,0.1); border-color: rgba(201,169,97,0.5); }
.hub-card h3 { font-family: var(--serif); font-weight: 700; font-size: 22px; color: var(--green-900); margin: 0 0 6px; }
.hub-card p { font-size: 14.5px; color: var(--ink-soft); }
.hub-card .meta { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--ink-faint); margin-top: 12px; }
@media (max-width: 680px) { .hub-grid { grid-template-columns: 1fr; } }

/* Guide-artikel */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 50px 28px 8px; }
.article { font-size: 17.5px; color: var(--ink-soft); line-height: 1.72; }
.article h2 { font-family: var(--serif); font-weight: 700; font-size: clamp(26px,3.4vw,33px); color: var(--green-900); letter-spacing: -.5px; margin: 42px 0 14px; }
.article h3 { font-family: var(--serif); font-weight: 700; font-size: 21px; color: var(--green-900); margin: 28px 0 10px; }
.article p { margin: 0 0 16px; }
.article ul, .article ol { margin: 0 0 16px; padding-left: 22px; }
.article li { margin: 0 0 8px; }
.article strong { color: var(--ink); }
.article a { color: var(--green-700); text-decoration: underline; text-underline-offset: 2px; }

.guide-meta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.guide-chip { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--green-900); background: var(--brass); padding: 7px 13px; border-radius: 7px; font-weight: 600; }
.guide-chip.outline { background: transparent; color: var(--brass); border: 1px solid rgba(201,169,97,0.5); }

/* FAQ */
.faq { max-width: 760px; margin: 8px auto 0; padding: 24px 28px 8px; }
.faq h2 { font-family: var(--serif); font-weight: 700; font-size: 28px; color: var(--green-900); margin: 0 0 6px; }
.faq-item { border-top: 1px solid var(--line); padding: 18px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { font-family: var(--serif); font-weight: 700; font-size: 19px; color: var(--green-900); margin: 0 0 8px; }
.faq-a { font-size: 16px; color: var(--ink-soft); }

/* Guide-CTA + related */
.guide-cta { max-width: 760px; margin: 40px auto 0; padding: 34px 32px; background: var(--green-900); color: var(--cream); border-radius: 18px; text-align: center; }
.guide-cta h2 { font-family: var(--serif); font-weight: 700; color: #fff; font-size: 27px; letter-spacing: -.4px; margin: 0 0 10px; }
.guide-cta p { color: rgba(245,239,227,0.8); font-size: 16px; margin: 0 auto 22px; max-width: 480px; }
.guide-cta .btn-store { background: var(--brass); color: var(--green-900); }
.related { max-width: 760px; margin: 38px auto 0; padding: 0 28px 8px; }
.related h2 { font-family: var(--mono); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brass-deep); margin: 0 0 14px; }
.related-links { display: flex; gap: 12px; flex-wrap: wrap; }
.related-links a { font-family: var(--sans); font-size: 15px; color: var(--green-800); text-decoration: none; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; transition: border-color .15s ease, color .15s ease; }
.related-links a:hover { border-color: var(--brass); color: var(--green-900); }

/* Guide-bild (app-skärmdump i artikel) */
.article .guide-figure { margin: 34px auto; max-width: 240px; text-align: center; }
.article .guide-figure img { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 18px 40px rgba(10,46,33,0.18); }
.article .guide-figure figcaption { margin: 12px 0 0; font-family: var(--mono); font-size: 12px; line-height: 1.55; letter-spacing: .3px; color: var(--ink-faint); }
