:root {
  --bg: #faf6ef;
  --bg-alt: #d6c3aa;
  --card: #fffcf7;
  --border: #e0d2bd;
  --ink: #2c2620;
  --ink-muted: #746a5b;
  --accent: #e3871c;
  --accent-soft: #fbe8d3;
  --radius: 10px;
  --font-head: 'Fraunces', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--font-body); line-height: 1.65; -webkit-font-smoothing: antialiased; }
.container { width: 100%; max-width: 900px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 0.6rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow { color: var(--accent); font-family: var(--font-body); font-weight: 600; letter-spacing: 2.5px; font-size: 0.74rem; text-transform: uppercase; margin-bottom: 0.7rem; }

.section { padding: 100px 0; }

.ph-icon { width: 30px; height: 30px; border: 1.5px dashed var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--ink-muted); }
.ph-icon svg { width: 14px; height: 14px; }
.ph-label { font-size: 0.72rem; color: var(--ink-muted); }

.arch-frame {
  background: var(--accent-soft); color: var(--accent);
  border-radius: 999px 999px 12px 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 10px; padding: 30px; margin: 0 auto;
}
.arch-frame svg { width: 32px; height: 32px; opacity: 0.75; }
.arch-frame span { font-size: 0.84rem; max-width: 220px; }
.arch-frame.large { width: min(560px, 90%); aspect-ratio: 3/4; margin-top: 56px; }
.arch-frame.medium { width: min(360px, 80%); aspect-ratio: 3/4; margin-bottom: 40px; }
.arch-frame.small { width: 100%; aspect-ratio: 3/4; }

/* Arkad-avdelare mellan sektioner — en rad små valv i beige */
.arch-divider {
  height: 34px;
  background-image: radial-gradient(circle at 17px 0, transparent 17px, var(--bg-alt) 18px);
  background-repeat: repeat-x;
  background-size: 34px 34px;
  background-position: center top;
}

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

.btn { display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; padding: 13px 26px; border-radius: 6px; transition: transform 0.15s ease; }
.btn-primary { background: var(--accent); color: #fffcfb; border: none; cursor: pointer; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--border); color: var(--ink); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-full { width: 100%; text-align: center; border: none; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(247,242,240,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav-wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.logo-slot { display: flex; align-items: center; gap: 10px; }
.main-nav { display: flex; gap: 28px; }
.main-nav a { font-size: 0.9rem; font-weight: 500; color: var(--ink-muted); }
.main-nav a:hover { color: var(--ink); }
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; }
.burger span { display: block; height: 2px; width: 24px; background: var(--ink); margin: 0 auto; }

.hero { padding: 90px 0 70px; text-align: center; }
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); margin-bottom: 1.1rem; max-width: 680px; }
.hero-sub { color: var(--ink-muted); margin-bottom: 1.8rem; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.editorial { display: grid; gap: 46px; margin-top: 3rem; }
.editorial-block { text-align: center; max-width: 560px; margin: 0 auto; }
.index-num { display: block; font-family: var(--font-head); font-size: 0.95rem; color: var(--accent); margin-bottom: 0.5rem; }
.editorial-block h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.editorial-block p { color: var(--ink-muted); }

.om { background: var(--bg-alt); text-align: center; }
.om-inner { display: flex; flex-direction: column; align-items: center; }
.om-text { max-width: 500px; color: var(--ink-muted); }

.arch-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 2.6rem; }

.kontakt-inner { text-align: center; }
.kontakt-lead { color: var(--ink-muted); max-width: 440px; margin-bottom: 2.2rem; }
.kontakt-form { text-align: left; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; display: grid; gap: 16px; max-width: 480px; margin: 0 auto 2.4rem; }
.form-row { display: grid; gap: 6px; }
.form-row label { font-size: 0.85rem; color: var(--ink-muted); }
.form-row input, .form-row textarea { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 12px 14px; font-family: var(--font-body); font-size: 0.95rem; resize: vertical; }
.kontakt-list { list-style: none; display: grid; gap: 8px; color: var(--ink-muted); }
.kontakt-list strong { color: var(--ink); margin-right: 6px; }
.kontakt-list [data-fill] { color: var(--accent); font-style: italic; }

.site-footer { border-top: 1px solid var(--border); padding: 26px 0; }
.footer-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; color: var(--ink-muted); font-size: 0.85rem; flex-wrap: wrap; gap: 8px; }

@media (max-width: 720px) {
  .main-nav, .nav-cta { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 20px 24px; gap: 18px; }
  .burger { display: flex; }
  .arch-row { grid-template-columns: 1fr; }
}
