/* ═══ DESIGN-TOKENS ═══ */
:root {
  --sand: #f5f3ee;
  --white: #ffffff;
  --green-dark: #223520;
  --green: #3d6b45;
  --green-hover: #2d5235;
  --green-light: #d4e6d5;
  --sage: #7fa882;
  --sage-hover: #96bd99;
  --body-text: #576855;
  --nav-text: #3a4a38;
  --border: #e6e2d8;
  --border-soft: #dedad2;
  --muted: #9a978c;
  --on-dark: #bfcfc0;
  --on-dark-dim: #4d6350;

  --font-serif: 'Spectral', Georgia, serif;
  --font-sans: 'Karla', system-ui, sans-serif;

  --radius-pill: 999px;
  --radius-card: 18px;
}

/* ═══ BASE ═══ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand);
  font-family: var(--font-sans);
  color: var(--green-dark);
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ═══ LAYOUT ═══ */
.container { max-width: 1100px; margin: 0 auto; }
.section { padding: 88px 32px; }
.section-white { background: var(--white); }
.section-sand { background: var(--sand); }
.section-dark { background: var(--green-dark); }

.section-head { text-align: center; margin-bottom: 60px; }
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--green-dark);
  margin: 0 0 16px;
  line-height: 1.2;
}
.section-lead {
  font-size: 17px;
  color: var(--body-text);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ═══ KNAPPER ═══ */
.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  transition: background .15s, color .15s;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-hover); }

.btn-outline {
  border: 1.5px solid var(--green);
  color: var(--green);
  font-weight: 600;
}
.btn-outline:hover { background: rgba(61, 107, 69, .09); }

.btn-sm { padding: 11px 26px; font-size: 15px; font-weight: 600; }
.btn-block { display: block; text-align: center; padding: 16px 32px; }

/* ═══ NAVIGASJON ═══ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 238, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo img { height: 80px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--nav-text);
  transition: color .15s;
}
.nav-link:hover { color: var(--green); }

/* ═══ HERO ═══ */
.hero { background: var(--sand); padding: 88px 32px 80px; }
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--green-dark);
  margin: 0 0 22px;
}
.hero-title em { color: var(--green); }
.hero-text {
  font-size: 18px;
  line-height: 1.68;
  color: var(--body-text);
  margin: 0 0 38px;
  max-width: 490px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-facts {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  flex-wrap: wrap;
}
.hero-fact-key {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--green);
}
.hero-fact-label {
  font-size: 13.5px;
  color: var(--body-text);
  margin-top: 3px;
  font-weight: 500;
}
.hero-img { position: relative; }
.hero-img-frame {
  aspect-ratio: 3/4;
  border-radius: 44% 56% 58% 42% / 42% 42% 58% 58%;
  overflow: hidden;
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Dekorative prikkeflater */
.dots {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background-image: radial-gradient(var(--green) 1.5px, transparent 1.5px);
}
.dots-bottom-right {
  bottom: -18px;
  right: -18px;
  width: 110px;
  height: 110px;
  background-size: 12px 12px;
  opacity: .18;
}
.dots-top-left {
  top: -16px;
  left: -16px;
  width: 72px;
  height: 72px;
  background-size: 10px 10px;
  opacity: .14;
}

/* ═══ BEHANDLINGER ═══ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-card {
  background: var(--sand);
  border-radius: var(--radius-card);
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(30, 45, 28, .04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(30, 45, 28, .11);
}
.svc-icon {
  width: 46px;
  height: 46px;
  background: var(--green-light);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.svc-icon svg { stroke: var(--green); }
.svc-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--green-dark);
  margin: 0 0 10px;
}
.svc-text {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.62;
  margin: 0 0 20px;
}
/* Prisene er skjult inntil videre – de vedlikeholdes i bookingportalen.
   Sett display: inline-block for å vise dem på kortene igjen. */
.price-tag {
  display: none;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
}
.svc-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 28px;
  font-style: italic;
}

/* ═══ BOOKING ═══ */
.booking-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.booking .eyebrow { margin-bottom: 18px; }
.booking-title {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 400;
  color: var(--sand);
  margin: 0 0 20px;
  line-height: 1.2;
}
.booking-text {
  font-size: 18px;
  line-height: 1.65;
  color: var(--on-dark);
  margin: 0 0 44px;
}
.booking-embed {
  max-width: 940px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .18);
}
.booking-frame { display: block; width: 100%; height: 1000px; border: 0; }
.booking-note {
  font-size: 18px;
  color: var(--on-dark);
  margin: 22px auto 0;
  text-align: center;
}
.booking-note a { color: var(--sage); font-weight: 600; }

/* ═══ OM AINA ═══ */
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}
.about .eyebrow { margin-bottom: 16px; }
.about-img { position: relative; }
.about-img-frame { aspect-ratio: 4/5; border-radius: 28px; overflow: hidden; }
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -14px;
  left: -14px;
  width: 76px;
  height: 76px;
  background: var(--green-light);
  border-radius: 16px;
  z-index: -1;
}
.about-name {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--green-dark);
  margin: 0 0 6px;
  line-height: 1.1;
}
.about-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 28px;
  letter-spacing: .02em;
}
.about-quote {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.75;
  color: var(--body-text);
  margin: 0 0 20px;
  font-style: italic;
  border-left: 3px solid var(--green-light);
  padding-left: 20px;
}
.about-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
  margin: 0 0 22px;
}
.about-text:last-of-type { margin-bottom: 34px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  background: var(--green-light);
  color: var(--green-hover);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
}

/* ═══ KONTAKT ═══ */
.contact .section-title { margin-bottom: 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-col { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  background: var(--sand);
  border-radius: var(--radius-card);
  padding: 52px 30px;
}
.contact-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.contact-address {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--green-dark);
}
.contact-postal { font-size: 16px; color: var(--body-text); margin-top: 2px; }
.contact-links { display: flex; flex-direction: column; gap: 10px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
}
.contact-link svg { stroke: var(--sage); }
.contact-hours { font-size: 15px; color: var(--muted); font-style: italic; }

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30, 45, 28, .09);
  min-height: 440px;
}
.map-frame iframe { border: 0; display: block; }

/* ═══ FOOTER ═══ */
.site-footer { background: var(--green-dark); padding: 44px 32px; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-logo-link img { height: 80px; width: auto; }
.footer-logo ellipse { fill: rgba(212, 230, 213, .15); }
.footer-logo path, .footer-logo line { stroke: var(--sage); }
.footer-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--sand);
}
.footer-role {
  font-size: 11px;
  color: var(--on-dark-dim);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-meta { font-size: 13px; color: var(--on-dark-dim); }
.footer-mail { font-size: 13.5px; font-weight: 500; color: var(--sage); }

/* ═══ ANIMASJONER ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.a1 { animation: fadeUp .75s .08s ease both; }
.a2 { animation: fadeUp .75s .22s ease both; }
.a3 { animation: fadeUp .75s .36s ease both; }
.a4 { animation: fadeUp .75s .50s ease both; }
.a5 { animation: fadeUp .75s .64s ease both; }

/* ═══ RESPONSIVT ═══ */
@media (max-width: 860px) {
  .hero-grid    { grid-template-columns: 1fr; }
  .hero-img     { max-width: 320px; margin: 4px auto 0; }
  .svc-grid     { grid-template-columns: 1fr 1fr; }
  .about-grid   { grid-template-columns: 1fr; }
  .about-img    { max-width: 280px; margin: 0 auto 8px; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links    { display: none; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
}
