/* ─────────────────────────────────────────────────────────────────────
   Glem Mig Ej Begravelse — Design System
   Personlig afsked med tryghed og omsorg.
   Ink: dyb skovgrøn · Accent: dæmpet guld · Papir: varm elfenben
────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ─────────────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --paper:      #FAF6EE;
  --paper-2:    #F1EADA;
  --paper-3:    #E6DCC6;

  /* Ink (deep forest green, never flat black) */
  --ink:        #20291F;
  --ink-2:      #2B362A;
  --ink-3:      #384435;

  /* Accent: warm muted clay (softer than metallic gold) */
  --gold:       #B08A5E;
  --gold-hi:    #C4A57E;
  --gold-lo:    #86653F;
  --gold-bg:    rgba(176,138,94,.10);

  /* Text on paper */
  --text-0:     #23271F;
  --text-1:     #5B6155;
  --text-2:     #8B9084;

  /* Text on dark */
  --text-inv-0: #FAF6EE;
  --text-inv-1: #C9CFC2;
  --text-inv-2: #8E9788;

  /* Borders */
  --border:     #E3DAC5;
  --border-hi:  #D2C6A8;

  /* Typography */
  --f-display:  'Cormorant Garamond', Georgia, serif;
  --f-body:     'Inter', system-ui, sans-serif;

  /* Layout */
  --nav-h:  80px;
  --w:      1180px;
  --sv:     clamp(4.5rem, 9vw, 7rem);
  --r:      6px;
  --r-lg:   14px;
}

/* ── RESET & BASE ────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--text-0);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

/* ── LAYOUT ──────────────────────────────────────────────────────────── */
.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up[data-d="1"] { transition-delay: .1s; }
.fade-up[data-d="2"] { transition-delay: .2s; }
.fade-up[data-d="3"] { transition-delay: .3s; }

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────────────────── */
.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-lo);
  margin-bottom: .75rem;
}
.eyebrow--inv { color: var(--gold-hi); }

.h2 {
  font-family: var(--f-display);
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-0);
  letter-spacing: -.01em;
}
.h2 em { font-style: italic; color: var(--gold-lo); }
.h2--inv { color: var(--text-inv-0); }
.h2--inv em { color: var(--gold-hi); }

.section-head { max-width: 640px; margin-bottom: 3.5rem; }
.section-sub { margin-top: 1rem; font-size: 1.08rem; color: var(--text-1); }

/* ── WORDMARK LOGO ───────────────────────────────────────────────────── */
.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wordmark-forget { font-family: var(--f-body); font-size: .56rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--text-inv-1); transition: color .25s; margin-bottom: .25rem; }
.wordmark-main { font-family: var(--f-display); font-size: 1.55rem; font-weight: 600; letter-spacing: -.01em; color: var(--text-inv-0); transition: color .25s; }
.wordmark-main em { font-style: italic; color: var(--gold-hi); }
.nav.scrolled .wordmark-forget { color: var(--text-2); }
.nav.scrolled .wordmark-main { color: var(--text-0); }
.nav.scrolled .wordmark-main em { color: var(--gold-lo); }
.footer .wordmark-forget { color: var(--text-inv-2); }
.footer .wordmark-main { color: var(--text-inv-0); }
.footer .wordmark-main em { color: var(--gold-hi); }

/* ── BUTTONS ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.7rem;
  border-radius: var(--r);
  font-family: var(--f-body);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background .22s, color .22s, border-color .22s, transform .15s, box-shadow .22s;
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn:active { transform: scale(.97); }
.btn-lg { padding: .95rem 2.1rem; font-size: .9rem; }
.hero-phone-btn { font-size: 1.15rem; font-weight: 700; letter-spacing: .01em; }
.hero-phone-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-accent { background: var(--gold); color: var(--ink); }
.btn-accent:hover { background: var(--gold-hi); }

.btn-ghost { background: transparent; color: var(--text-0); border-color: var(--border-hi); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lo); }

.btn-ghost-accent { background: transparent; color: var(--text-inv-0); border-color: rgba(250,246,238,.28); }
.btn-ghost-accent:hover { border-color: var(--gold-hi); color: var(--gold-hi); }

.btn-outline { background: transparent; color: var(--ink-3); border-color: var(--ink-3); }
.btn-outline:hover { background: var(--ink-3); color: var(--text-inv-0); }

/* ── NAV ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, height .25s ease;
}
.nav.scrolled {
  background: rgba(250,246,238,.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
  height: calc(var(--nav-h) - 12px);
}

.nav-brand { display: flex; align-items: center; gap: .6rem; }

.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links > li > a {
  font-size: .87rem; font-weight: 500; color: var(--text-inv-1);
  transition: color .2s; padding: .5rem 0; position: relative;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--gold-hi); }
.nav.scrolled .nav-links > li > a { color: var(--text-1); }
.nav.scrolled .nav-links > li > a:hover, .nav.scrolled .nav-links > li > a.active { color: var(--gold-lo); }

.nav-phone { display: flex; align-items: center; gap: .5rem; font-size: 1.2rem; font-weight: 700; color: var(--text-inv-0); transition: color .25s; letter-spacing: .01em; }
.nav-phone-ring { display: flex; color: var(--gold-hi); }
.nav-phone-ring svg { width: 18px; height: 18px; }
.nav.scrolled .nav-phone { color: var(--text-0); }
.nav.scrolled .nav-phone-ring { color: var(--gold-lo); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; }
.hamburger span { display: block; height: 2px; background: var(--text-inv-0); border-radius: 2px; transition: transform .25s, opacity .25s, background .25s; }
.nav.scrolled .hamburger span { background: var(--text-0); }

/* ── MOBILE NAV ──────────────────────────────────────────────────────── */
.mob-nav {
  position: fixed; inset: 0; width: 100%; height: 100%; z-index: 200;
  background: var(--ink); color: var(--text-inv-0);
  transform: translateY(-100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 1.5rem 1.75rem 2rem;
  overflow-y: auto;
}
.mob-nav.open { transform: translateY(0); }
.mob-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; flex: none; }
.mob-head-title { font-family: var(--f-display); font-size: 1.2rem; font-weight: 600; }
.mob-close { position: relative; width: 28px; height: 28px; flex: none; }
.mob-close span { position: absolute; top: 50%; left: 0; width: 100%; height: 2px; background: var(--text-inv-0); }
.mob-close span:first-child { transform: rotate(45deg); }
.mob-close span:last-child { transform: rotate(-45deg); }

.mob-nav-links { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: .1rem; min-height: 0; }
.mob-nav-links a { display: block; padding: 1rem 0; font-family: var(--f-display); font-size: clamp(1.4rem, 6vw, 1.8rem); font-weight: 600; border-bottom: 1px solid rgba(250,246,238,.1); }
.mob-footer { flex: none; padding-top: 1.5rem; display: flex; flex-direction: column; gap: .9rem; }
.mob-footer-phone { display: flex; align-items: center; justify-content: center; gap: .6rem; font-weight: 700; font-size: 1.35rem; color: var(--ink); background: var(--gold-hi); border-radius: var(--r); padding: .85rem 1rem; }
.mob-footer-cta { justify-content: center; }

.mob-overlay { position: fixed; inset: 0; z-index: 150; background: rgba(32,41,31,.5); opacity: 0; visibility: hidden; transition: opacity .25s; }
.mob-overlay.visible { opacity: 1; visibility: visible; }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; padding-top: calc(var(--nav-h) + 2rem); padding-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; background: var(--ink); box-sizing: border-box; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.03); opacity: 0; transition: transform 1.8s ease, opacity 1.2s ease; }
.hero.loaded .hero-bg { transform: scale(1); opacity: .5; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(32,41,31,.5) 0%, rgba(32,41,31,.58) 40%, rgba(24,31,23,.88) 100%); }

.hero-body { position: relative; z-index: 2; }
.hero-content { max-width: 720px; }
.hero-eyebrow { font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-hi); margin-bottom: 1.25rem; }
.hero-h1 { font-family: var(--f-display); font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-weight: 600; line-height: 1.12; color: var(--text-inv-0); letter-spacing: -.01em; }
.hero-h1 em { font-style: italic; color: var(--gold-hi); }
.hero-sub { margin-top: 1.5rem; font-size: 1.15rem; color: var(--text-inv-1); max-width: 560px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; font-size: .84rem; color: var(--text-inv-1); }
.hero-trust .dot { color: rgba(250,246,238,.3); }

/* ── PAGE HERO (inner pages) ─────────────────────────────────────────── */
.page-hero { position: relative; background: var(--ink); padding: calc(var(--nav-h) + 3.5rem) 0 4rem; overflow: hidden; }
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero-crumb { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--text-inv-2); margin-bottom: 1.5rem; flex-wrap: wrap; }
.page-hero-crumb a { color: var(--text-inv-1); }
.page-hero-crumb a:hover { color: var(--gold-hi); }
.page-h1 { font-family: var(--f-display); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; line-height: 1.15; color: var(--text-inv-0); margin-top: .25rem; }
.page-h1 em { font-style: italic; color: var(--gold-hi); }
.page-hero-sub { margin-top: 1.25rem; font-size: 1.05rem; color: var(--text-inv-1); max-width: 600px; }

/* ── ANSWER BLOCK ────────────────────────────────────────────────────── */
.answer-block { padding: 2rem 0 0; }
.answer-block-inner { max-width: 760px; padding: 1.5rem 1.75rem; background: var(--paper-2); border-radius: var(--r); border-left: 3px solid var(--gold); }
.answer-block-label { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-lo); margin-bottom: .5rem; }
.answer-block-text { font-size: .98rem; color: var(--text-0); line-height: 1.65; }

/* ── SUB-NAV ─────────────────────────────────────────────────────────── */
.subnav { padding: 1.75rem 0 0; }
.subnav-list { display: flex; flex-wrap: wrap; gap: .75rem; }
.subnav-link { display: inline-flex; align-items: center; gap: .5rem; padding: .65rem 1.1rem; background: var(--paper-2); border: 1px solid var(--border); border-radius: 30px; font-size: .84rem; font-weight: 500; color: var(--text-1); transition: border-color .2s, color .2s, background .2s; }
.subnav-link:hover { border-color: var(--gold); color: var(--gold-lo); background: var(--gold-bg); }

/* ── SERVICES GRID ───────────────────────────────────────────────────── */
.services { padding: var(--sv) 0; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.svc-card { display: block; background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color .25s, box-shadow .25s; }
.svc-card:hover { border-color: var(--gold); box-shadow: 0 12px 28px -18px rgba(32,41,31,.14); }
.svc-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.svc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; transform: translateZ(0); backface-visibility: hidden; }
.svc-card:hover .svc-img-wrap img { transform: scale(1.06); }
.svc-body { padding: 1.6rem; }
.svc-tag { font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-lo); margin-bottom: .5rem; }
.svc-name { font-family: var(--f-display); font-size: 1.55rem; font-weight: 600; color: var(--text-0); margin-bottom: .6rem; }
.svc-desc { font-size: .92rem; color: var(--text-1); margin-bottom: 1rem; }
.svc-bullets { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.2rem; }
.svc-bullets li { font-size: .84rem; color: var(--text-1); padding-left: 1.1rem; position: relative; }
.svc-bullets li::before { content: ''; position: absolute; left: 0; top: .5em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.svc-link { font-size: .84rem; font-weight: 600; color: var(--gold-lo); }
.services-cta { text-align: center; margin-top: 3rem; }

/* ── WHY / FEATURES ──────────────────────────────────────────────────── */
.why { padding: var(--sv) 0; background: var(--ink); color: var(--text-inv-0); }
.why .eyebrow { color: var(--gold-hi); }
.why-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 4rem; align-items: start; }
.why-sub { margin-top: 1.25rem; font-size: 1.05rem; color: var(--text-inv-1); }
.why-right { display: flex; flex-direction: column; gap: 1.75rem; }
.why-feat { display: flex; gap: 1.1rem; }
.why-feat-icon { flex: none; width: 46px; height: 46px; border-radius: 50%; background: rgba(176,138,94,.14); color: var(--gold-hi); display: flex; align-items: center; justify-content: center; }
.why-feat-title { font-weight: 600; margin-bottom: .3rem; color: var(--text-inv-0); font-family: var(--f-display); font-size: 1.15rem; }
.why-feat-desc { font-size: .92rem; color: var(--text-inv-1); }

/* ── SERVICE AREA ────────────────────────────────────────────────────── */
.area { padding: var(--sv) 0; background: var(--paper-2); }
.area-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.area-sub { margin-top: 1.25rem; font-size: 1.05rem; color: var(--text-1); }
.area-places { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.5rem; }
.area-place { display: flex; align-items: center; gap: .7rem; padding: .9rem 1.1rem; background: var(--paper); border: 1px solid var(--border); border-radius: var(--r); font-weight: 500; }
.area-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; }
.area-dot--muted { background: var(--text-2); }
.area-place-more { color: var(--text-1); font-weight: 400; }

/* ── PROCESS / TIMELINE ──────────────────────────────────────────────── */
.process { padding: var(--sv) 0; background: var(--paper-2); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; }
.process-step { position: relative; padding-top: .5rem; }
.process-num { font-family: var(--f-display); font-size: 2.6rem; color: var(--gold); font-weight: 600; margin-bottom: .5rem; font-style: italic; }
.process-title { font-weight: 600; font-size: 1.05rem; margin-bottom: .5rem; font-family: var(--f-display); }
.process-desc { font-size: .88rem; color: var(--text-1); }

/* ── SERVICE DETAIL SECTION ─────────────────────────────────────────── */
.svc-section { padding: var(--sv) 0; border-bottom: 1px solid var(--border); }
.svc-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.svc-section-img img { border-radius: var(--r-lg); }
.svc-section-img > img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.svc-h2 { font-family: var(--f-display); font-size: clamp(1.9rem, 3.8vw, 2.7rem); font-weight: 600; line-height: 1.2; color: var(--text-0); margin: .5rem 0 1.25rem; }
.svc-h2 em { font-style: italic; color: var(--gold-lo); }
.svc-body-text { font-size: 1rem; color: var(--text-1); margin-bottom: 1rem; }
.svc-feats { display: grid; grid-template-columns: 1fr; gap: .65rem; margin: 1.5rem 0 1.75rem; }
.svc-feat { font-size: .92rem; color: var(--text-0); padding-left: 1.4rem; position: relative; font-weight: 450; }
.svc-feat::before { content: ''; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.svc-section--rev .svc-section-inner { direction: rtl; }
.svc-section--rev .svc-section-inner > * { direction: ltr; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */
.faq { padding: var(--sv) 0; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; margin-top: 1rem; }
.faq-item { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.faq-q { font-weight: 600; font-size: 1.05rem; margin-bottom: .6rem; color: var(--text-0); font-family: var(--f-display); }
.faq-a { font-size: .92rem; color: var(--text-1); }

/* ── RELATED ─────────────────────────────────────────────────────────── */
.related { padding: var(--sv) 0; background: var(--paper-2); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.related-card { display: block; background: var(--paper); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.75rem; transition: border-color .25s; }
.related-card:hover { border-color: var(--gold); }
.related-tag { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-2); margin-bottom: .4rem; }
.related-name { font-family: var(--f-display); font-size: 1.3rem; font-weight: 600; margin-bottom: .5rem; }
.related-desc { font-size: .86rem; color: var(--text-1); margin-bottom: 1rem; }
.related-link { font-size: .82rem; font-weight: 600; color: var(--gold-lo); }

/* ── CTA BAND ────────────────────────────────────────────────────────── */
.cta-band { position: relative; padding: 4.5rem 0; background: var(--ink); overflow: hidden; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-h2 { font-family: var(--f-display); font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 600; color: var(--text-inv-0); }
.cta-sub { margin-top: .6rem; color: var(--text-inv-1); font-size: 1rem; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-phone { font-family: var(--f-body); }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.footer { position: relative; background: var(--ink-2); color: var(--text-inv-1); padding: 4.5rem 0 2rem; overflow: hidden; }
.footer-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(250,246,238,.1); }
.footer-logo { display: inline-flex; margin-bottom: 1.1rem; }
.footer-tagline { font-size: .88rem; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .6rem; margin-bottom: 1.5rem; }
.footer-social-link { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(250,246,238,.08); color: var(--text-inv-1); transition: background .2s, color .2s; }
.footer-social-link:hover { background: var(--gold-hi); color: var(--ink); }
.footer-social-link svg { width: 16px; height: 16px; }
.footer-nav-h { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-inv-0); margin-bottom: 1.1rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-nav a { font-size: .88rem; }
.footer-nav a:hover { color: var(--gold-hi); }
.footer-contact-phone { display: block; font-size: 1.2rem; font-weight: 600; color: var(--text-inv-0); margin-bottom: .9rem; }
.footer-contact-email { display: block; font-size: .88rem; margin-bottom: .9rem; }
.footer-contact-area { font-size: .86rem; margin-bottom: .5rem; }
.footer-cvr { font-size: .78rem; color: var(--text-inv-2); }
.footer-bottom { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; padding-top: 1.75rem; font-size: .8rem; }
.footer-sep { opacity: .4; }
.footer-made-by { display: inline-flex; align-items: center; gap: .4rem; color: var(--text-inv-2); }
.footer-made-by:hover { color: var(--gold-hi); }
.footer-made-by-icon { color: var(--gold-hi); }
.footer-bottom-right { display: flex; align-items: center; gap: 1.5rem; }
.footer-legal-link { color: var(--text-inv-2); }
.footer-legal-link:hover { color: var(--gold-hi); }

/* ── LEGAL / POLICY PAGE ─────────────────────────────────────────────── */
.legal-highlights { padding: var(--sv) 0 0; }
.legal-highlights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.legal-highlight { background: var(--paper-2); border-radius: var(--r-lg); padding: 2rem 1.75rem; text-align: center; }
.legal-highlight-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-bg); color: var(--gold-lo); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; }
.legal-highlight-title { font-family: var(--f-display); font-weight: 600; font-size: 1.15rem; margin-bottom: .5rem; color: var(--text-0); }
.legal-highlight-desc { font-size: .9rem; color: var(--text-1); }

.legal-prose { max-width: 720px; margin: 0 auto; }
.legal-prose h2 { font-family: var(--f-display); font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 600; color: var(--text-0); margin: 3rem 0 1.25rem; }
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p { font-size: .98rem; color: var(--text-1); line-height: 1.75; margin-bottom: 1.1rem; }
.legal-address { font-style: normal; }

/* ── CONTACT FORM ────────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info-item { display: flex; gap: 1.1rem; margin-bottom: 1.75rem; }
.contact-info-icon { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--gold-bg); color: var(--gold-lo); display: flex; align-items: center; justify-content: center; }
.contact-info-title { font-weight: 600; margin-bottom: .3rem; font-family: var(--f-display); font-size: 1.1rem; }
.contact-info-text { font-size: .92rem; color: var(--text-1); }
.contact-location-block { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.contact-location-name { font-family: var(--f-display); font-weight: 600; font-size: 1.15rem; color: var(--text-0); margin-bottom: .4rem; }

.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-size: .84rem; font-weight: 600; margin-bottom: .5rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--border-hi); border-radius: var(--r);
  font-family: var(--f-body); font-size: .95rem; background: var(--paper); color: var(--text-0);
  transition: border-color .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input.field-error, .form-field textarea.field-error, .form-field select.field-error { border-color: #B24545; }
.form-submit { width: 100%; justify-content: center; }
.form-feedback { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--r); font-size: .88rem; font-weight: 500; display: none; }
.form-feedback:not(:empty) { display: block; }
.form-feedback--success { background: rgba(147,118,47,.12); color: #6B5424; }
.form-feedback--error { background: rgba(178,69,69,.1); color: #8F3535; }

/* ── PRICING ─────────────────────────────────────────────────────────── */
.pricing { padding: var(--sv) 0; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.price-card { background: var(--paper); border: 1.5px solid var(--border); border-radius: var(--r-lg); padding: 2.25rem; display: flex; flex-direction: column; }
.price-card--featured { border-color: var(--gold); }
.price-name { font-family: var(--f-display); font-size: 1.4rem; font-weight: 600; }
.price-desc { font-size: .88rem; color: var(--text-1); margin-top: .4rem; }
.price-amount { font-family: var(--f-display); font-size: 1.85rem; color: var(--gold-lo); margin-top: 1.4rem; font-weight: 600; }
.price-amount span { font-size: 1rem; font-family: var(--f-body); color: var(--text-1); font-weight: 400; }
.price-feats { display: flex; flex-direction: column; gap: .6rem; margin: 1.5rem 0 1.75rem; }
.price-feats li { font-size: .88rem; color: var(--text-1); padding-left: 1.2rem; position: relative; }
.price-feats li::before { content: ''; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-note { margin-top: 3rem; text-align: center; font-size: .92rem; color: var(--text-1); padding: 1.25rem; background: var(--gold-bg); border-radius: var(--r); }
.price-alacarte { margin-top: 4rem; }
.price-alacarte-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 3rem; margin-top: 1.5rem; }
.price-alacarte-item { display: flex; justify-content: space-between; gap: 1rem; padding: .9rem 0; border-bottom: 1px solid var(--border); font-size: .94rem; }
.price-alacarte-item strong { color: var(--gold-lo); white-space: nowrap; }

/* ── CHECKLIST (huskeliste) ──────────────────────────────────────────── */
.checklist { padding: var(--sv) 0; }
.checklist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 1rem; }
.checklist-group { background: var(--paper-2); border-radius: var(--r-lg); padding: 1.75rem 2rem; }
.checklist-group-title { font-family: var(--f-display); font-weight: 600; font-size: 1.25rem; margin-bottom: 1rem; color: var(--text-0); }
.checklist-group ul { display: flex; flex-direction: column; gap: .6rem; }
.checklist-group li { font-size: .92rem; color: var(--text-1); padding-left: 1.3rem; position: relative; }
.checklist-group li::before { content: ''; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ── QUOTE BLOCK ─────────────────────────────────────────────────────── */
.quote-block { padding: var(--sv) 0; background: var(--paper-2); text-align: center; }
.quote-text { font-family: var(--f-display); font-style: italic; font-size: clamp(1.5rem, 3.2vw, 2.2rem); color: var(--text-0); max-width: 780px; margin: 0 auto; line-height: 1.5; }
.quote-attr { margin-top: 1.5rem; font-size: .9rem; color: var(--gold-lo); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ── ABOUT / PORTRAIT ────────────────────────────────────────────────── */
.about-portrait { border-radius: var(--r-lg); overflow: hidden; }
.about-portrait img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* ── UTILITIES ───────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-lg { margin-top: 2rem; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 980px) {
  .svc-grid, .related-grid, .price-grid, .price-alacarte-grid, .checklist-grid, .legal-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .why-layout, .area-inner, .svc-section-inner, .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-section--rev .svc-section-inner { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .svc-grid, .related-grid, .price-grid, .area-places, .process-grid, .price-alacarte-grid, .checklist-grid, .legal-highlights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 1.5rem); padding-bottom: 3rem; }
}
