/* Avans klipp — Three-in-one classic. Bone + emerald + amber. Cinzel + Sen. */
:root {
  --bg: #f3efe8;
  --bg-warm: #e8e1d2;
  --bg-card: #ffffff;
  --ink: #1c1c1f;
  --ink-soft: #4a4a4f;
  --ink-mute: #7a7a7f;
  --line: #d8d2c0;
  --line-strong: #b8b09a;
  --emerald: #2a5546;
  --emerald-deep: #1a3a30;
  --sage: #7a9a85;
  --amber: #bd844e;
  --amber-soft: #d6a070;
  --shadow-md: 0 12px 32px rgba(28, 28, 31, 0.1);
  --shadow-lg: 0 28px 70px rgba(28, 28, 31, 0.18);
  --font-display: 'Cinzel', Georgia, serif;
  --font-sans: 'Sen', -apple-system, sans-serif;
  --container: 1240px; --pad: clamp(1.25rem, 4vw, 2.5rem);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-sans); font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.skip { position: absolute; left: -9999px; }
.skip:focus { position: fixed; top: 12px; left: 12px; z-index: 100; background: var(--ink); color: var(--bg); padding: 10px 18px; border-radius: 0; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(243, 239, 232, 0.7); backdrop-filter: saturate(140%) blur(14px); border-bottom: 1px solid transparent; transition: background 0.3s, border-color 0.3s; }
.site-header.is-scrolled { background: rgba(243, 239, 232, 0.94); border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 0; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.brand-mark { display: inline-grid; place-items: center; width: 32px; height: 32px; background: var(--emerald); color: var(--bg); border: 2px solid var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; display: block; }
.hero-photo { display: block; width: 100%; max-width: 720px; margin: 2.5rem auto 0; aspect-ratio: 16 / 10; object-fit: cover; border: 2px solid var(--ink); box-shadow: var(--shadow-lg); }
.brand-text { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; letter-spacing: 0.04em; }
.nav { display: none; align-items: center; gap: 1.6rem; font-size: 0.94rem; }
.nav a { text-decoration: none; color: var(--ink-soft); transition: color 0.2s; }
.nav a:hover { color: var(--emerald); }
.nav-cta { padding: 0.6rem 1.2rem; border: 2px solid var(--ink); border-radius: 0; color: var(--ink) !important; background: transparent; font-weight: 700; transition: all 0.2s; }
.nav-cta:hover { background: var(--ink); color: var(--bg) !important; }
@media (min-width: 880px) { .nav { display: inline-flex; } }

.hero { position: relative; padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(3rem, 8vw, 5rem); text-align: center; overflow: hidden; background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--bg-warm), transparent 70%), var(--bg); }
.hero-inner { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 0.7rem; margin: 0 0 2rem; font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--emerald); }
.eye-line { width: 28px; height: 1px; background: var(--emerald); }
.eyebrow-cream { color: var(--amber-soft); }
.hero-title { margin: 0; font-family: var(--font-display); line-height: 0.92; color: var(--ink); }
.t-roman { display: block; font-size: clamp(4rem, 14vw, 9rem); letter-spacing: 0.04em; font-weight: 600; }
.t-sub { display: block; font-family: var(--font-sans); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 400; letter-spacing: 0.4em; text-transform: uppercase; color: var(--emerald); margin-top: 0.4rem; }
.hero-tag { margin: 1.5rem 0 0; display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem 0.7rem; }
.t-pill { padding: 0.4rem 1rem; background: var(--bg-card); border: 1px solid var(--line); border-radius: 0; font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; color: var(--emerald); letter-spacing: 0.06em; }
.t-sep { color: var(--amber); font-family: var(--font-display); }
.hero-lead { margin: 1.75rem auto 2.5rem; max-width: 540px; font-size: clamp(1.05rem, 1.4vw, 1.18rem); line-height: 1.7; color: var(--ink-soft); }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem; margin-bottom: 2rem; }
.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 1rem 1.7rem; font-family: var(--font-sans); font-size: 0.94rem; font-weight: 700; text-decoration: none; border-radius: 0; border: 2px solid transparent; cursor: pointer; transition: all 0.22s; white-space: nowrap; }
.btn-primary { background: var(--emerald-deep); color: var(--bg); box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--emerald); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.hero-strip { display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.5rem 0.8rem; font-size: 0.92rem; color: var(--ink-soft); padding: 0.7rem 1.4rem; background: var(--bg-card); border: 1px solid var(--line); }
.hs-stars { color: var(--amber); letter-spacing: 0.16em; }
.hs-strip strong { color: var(--ink); font-weight: 700; }
.hs-sep { color: var(--ink-mute); }
.hero-strip em { font-style: italic; color: var(--emerald); font-family: var(--font-display); }

.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.section-title { margin: 0.4rem 0 1.25rem; font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.05; letter-spacing: 0.01em; color: var(--ink); }
.section-title em { font-style: italic; color: var(--emerald); font-weight: 500; letter-spacing: 0.005em; }
.section-title.light { color: var(--bg); }
.section-title.light em { color: var(--amber-soft); }
.section-lead { margin: 0 auto; font-size: 1.06rem; line-height: 1.6; color: var(--ink-soft); max-width: 56ch; }
.prose-light { margin: 0 0 1.1rem; color: rgba(243, 239, 232, 0.85); font-size: 1.04rem; max-width: 52ch; }
.prose { margin: 0 0 1.1rem; color: var(--ink-soft); font-size: 1.04rem; max-width: 56ch; }

.section-tjanster { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cols { display: grid; gap: 1.25rem; grid-template-columns: 1fr; max-width: 1080px; margin: 0 auto; }
@media (min-width: 760px) { .cols { grid-template-columns: repeat(3, 1fr); } }
.col { background: var(--bg-card); border: 2px solid var(--line); padding: 2rem 1.85rem; transition: all 0.25s; }
.col:hover { border-color: var(--emerald); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.col-feat { background: var(--emerald-deep); color: var(--bg); border-color: var(--emerald-deep); }
.col-feat:hover { border-color: var(--amber); background: #225040; }
.col-roman { margin: 0 0 1rem; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--amber); letter-spacing: 0.04em; }
.col-feat .col-roman { color: var(--amber-soft); }
.col h3 { margin: 0 0 0.4rem; font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; line-height: 1.15; color: var(--ink); letter-spacing: 0.01em; }
.col-feat h3 { color: var(--bg); }
.col-sub { margin: 0 0 1.25rem; font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--emerald); }
.col-feat .col-sub { color: var(--amber-soft); }
.col-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.5rem; }
.col-list li { position: relative; padding-left: 1.4rem; font-size: 0.95rem; color: var(--ink-soft); }
.col-list li::before { content: '+'; position: absolute; left: 0; color: var(--emerald); font-weight: 700; }
.col-feat .col-list li { color: rgba(243, 239, 232, 0.78); }
.col-feat .col-list li::before { color: var(--amber-soft); }

.section-salongen { background: var(--ink); color: var(--bg); position: relative; overflow: hidden; }
.section-salongen::after { content: ''; position: absolute; top: -200px; left: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(42, 85, 70, 0.28) 0%, transparent 70%); }
.salongen-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; position: relative; z-index: 2; }
@media (min-width: 920px) { .salongen-grid { grid-template-columns: 1.1fr 0.9fr; } }
.salongen-stat { background: rgba(243, 239, 232, 0.06); border: 1px solid rgba(189, 132, 78, 0.4); padding: 2.5rem 2rem; text-align: center; }
.ss-row { display: flex; align-items: baseline; justify-content: center; gap: 0.3rem; }
.ss-num { margin: 0; font-family: var(--font-display); font-size: clamp(4.5rem, 9vw, 6.5rem); line-height: 1; color: var(--amber-soft); font-weight: 600; }
.ss-of { font-size: 1.4rem; color: var(--ink-mute); }
.ss-stars { margin: 0.5rem 0; font-size: 1.1rem; color: var(--amber); letter-spacing: 0.18em; }
.ss-text { margin: 0.5rem 0 0; font-family: var(--font-display); font-size: 1.05rem; line-height: 1.4; color: var(--bg); }
.ss-text strong { color: var(--amber-soft); font-weight: 600; }
.ss-divider { width: 60px; height: 1px; background: var(--amber); margin: 1.5rem auto; }
.ss-foot { margin: 0; font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--amber-soft); }

.section-hitta { background: var(--bg-warm); }
.hitta-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 920px) { .hitta-grid { grid-template-columns: 1.05fr 0.95fr; } }
.info-list { margin: 1.75rem 0 2rem; padding: 0; display: grid; gap: 0; }
.info-list .info-row { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line-strong); align-items: baseline; margin: 0; }
.info-list .info-row:last-child { border-bottom: 1px solid var(--line-strong); }
.info-list dt { margin: 0; font-family: var(--font-sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.info-list dd { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; color: var(--ink); letter-spacing: 0.005em; }
.info-list dd small { display: block; font-family: var(--font-sans); font-size: 0.85rem; color: var(--ink-mute); margin-top: 0.3rem; font-weight: 400; letter-spacing: 0; }
.link { color: var(--emerald); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.link:hover { border-bottom-color: var(--emerald); }
.hitta-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 0.5rem; }
.hf { background: var(--bg-card); border: 2px solid var(--ink); padding: 2rem 1.75rem 1.5rem; box-shadow: var(--shadow-md); display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.hf-eye { margin: 0; font-family: var(--font-sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-mute); }
.hf-svg { width: 100%; max-width: 260px; }
.hf-cap { margin: 0; font-family: var(--font-display); font-style: italic; color: var(--ink); font-size: 1.05rem; }

.site-footer { background: #14140f; color: rgba(243, 239, 232, 0.78); padding: clamp(2.5rem, 5vw, 4rem) 0; border-top: 4px solid var(--emerald); }
.footer-inner { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 740px) { .footer-inner { grid-template-columns: 1fr 1fr; align-items: start; } }
.footer-title { margin: 0 0 0.6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--bg); letter-spacing: 0.04em; }
.footer-sub { margin: 0.2rem 0; font-size: 0.95rem; }
.footer-sub.small { font-size: 0.84rem; line-height: 1.55; color: rgba(243, 239, 232, 0.55); margin-top: 0.6rem; }
.demo-tag { display: inline-block; margin: 0; padding: 0.4rem 0.85rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--amber-soft); border: 1px solid rgba(214, 160, 112, 0.5); border-radius: 0; }
.link-soft { color: var(--amber-soft); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.link-soft:hover { border-bottom-color: var(--amber-soft); }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
