/* ============================================================
   Jakt & Hundetrening — Nordic field-sport editorial
   ============================================================ */

:root {
  --teal:        #1e5f6d;
  --teal-deep:   #123c45;
  --teal-darkest:#0c2a30;
  --gold:        #d4af82;
  --gold-deep:   #b8915f;
  --cream:       #f6f1e8;
  --paper:       #fbf8f2;
  --ink:         #14282d;
  --muted:       #5c7178;
  --line:        rgba(20, 40, 45, 0.12);
  --line-light:  rgba(246, 241, 232, 0.16);

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* subtle paper grain */
  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.025'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Typography helpers ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
em { font-style: italic; }

.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-deep);
}
.eyebrow-light { color: var(--gold); }

.section-label {
  font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600; color: var(--gold-deep); margin-bottom: 1.1rem;
  display: inline-block;
}
.section-label.light { color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem); color: var(--ink);
}
.section-title.light { color: var(--paper); }

.section-intro {
  font-size: 1.15rem; color: var(--muted); max-width: 56ch; margin-top: 1.2rem;
}
.section-intro.light { color: rgba(246, 241, 232, 0.78); }
.lead { font-size: 1.2rem; color: var(--ink); margin-bottom: 1.2rem; }

/* ---------- Layout ---------- */
.wrap { width: min(var(--maxw), 90vw); margin-inline: auto; }
.section { padding: clamp(5rem, 11vw, 9rem) 0; position: relative; }
.section-paper   { background: var(--paper); }
.section-cream   { background: var(--cream); }
.section-deep    { background: var(--teal-deep); color: var(--paper); }
.section-deep::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 80% 0%, rgba(212,175,130,0.10), transparent 55%);
}
.section-head { margin-bottom: 3.4rem; max-width: 58ch; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 0.95rem 1.8rem; border-radius: 2px; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.35s var(--ease), border-color 0.3s;
  letter-spacing: 0.01em; will-change: transform;
}
.btn-gold {
  background: var(--gold); color: var(--teal-darkest);
  box-shadow: 0 8px 22px -12px rgba(184,145,95,0.9);
}
.btn-gold:hover { background: #e0bf95; transform: translateY(-3px); box-shadow: 0 16px 30px -14px rgba(184,145,95,0.95); }
.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(246,241,232,0.45); }
.btn-ghost:hover { background: rgba(246,241,232,0.1); border-color: var(--paper); transform: translateY(-3px); }
.btn-pill { border-radius: 100px; padding: 0.7rem 1.4rem; }
.btn-block { width: 100%; margin-top: 0.5rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: 2rem;
  padding: 1rem clamp(1.2rem, 5vw, 3rem);
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.4s, background 0.4s;
}
.site-header.scrolled { box-shadow: 0 10px 30px -22px rgba(18,60,69,0.5); }

.brand { display: flex; align-items: center; gap: 0.6rem; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  background: var(--teal); color: var(--gold); border-radius: 50%;
}
.brand-wordmark { display: flex; flex-direction: column; line-height: 1; }
.brand-text {
  font-family: var(--font-display); font-weight: 500; font-size: 1.32rem;
  letter-spacing: -0.01em; color: var(--ink);
}
.brand-sub {
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep);
  margin-top: 0.25rem;
}
.brand-text .amp { color: var(--gold-deep); font-style: italic; }

.nav { display: flex; gap: 1.9rem; }
.nav a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink); position: relative; padding: 0.2rem 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold-deep); transition: width 0.35s var(--ease);
}
.nav a:hover { color: var(--teal); }
.nav a:hover::after { width: 100%; }
.nav-cta { flex-shrink: 0; }

/* mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 70px 0 auto 0; z-index: 55;
  background: var(--teal-deep); padding: 1.4rem clamp(1.2rem, 5vw, 3rem) 2rem;
  display: flex; flex-direction: column; gap: 0.3rem;
  transform: translateY(-120%); transition: transform 0.45s var(--ease);
  box-shadow: 0 24px 40px -24px rgba(0,0,0,0.6);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { color: var(--paper); padding: 0.85rem 0; border-bottom: 1px solid var(--line-light); font-size: 1.05rem; }
.mobile-menu a:last-child { border-bottom: 0; }
.mobile-cta { color: var(--gold) !important; font-weight: 600; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: 6rem clamp(1.2rem, 5vw, 3rem) 5rem; overflow: hidden;
  background: var(--teal-darkest);
}
.hero-media {
  position: absolute; inset: 0;
  background: var(--teal-darkest) url("../hero.webp") center 42% / cover no-repeat;
  transform: scale(1.04); filter: saturate(0.85);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(12,42,48,0.94) 0%, rgba(18,60,69,0.7) 45%, rgba(18,60,69,0.35) 100%),
    radial-gradient(80% 120% at 15% 100%, rgba(12,42,48,0.85), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; max-width: 800px; }
.hero-title {
  font-size: clamp(2.8rem, 8vw, 6rem); color: var(--paper); margin: 1.4rem 0 1.6rem;
  font-weight: 500;
}
.hero-title em { color: var(--gold); font-weight: 400; }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem); color: rgba(246,241,232,0.86);
  max-width: 52ch; margin-bottom: 2.6rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(246,241,232,0.7); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue svg { animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ============================================================
   Om meg (split)
   ============================================================ */
.split { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split-media { position: relative; }
.framed-img {
  aspect-ratio: 4/5; border-radius: 3px; background-size: cover; background-position: center;
  box-shadow: 0 30px 60px -34px rgba(18,60,69,0.6);
  position: relative;
}
.framed-img::after {
  content: ""; position: absolute; inset: 0; border-radius: 3px;
  background: linear-gradient(180deg, transparent 55%, rgba(18,60,69,0.45));
  mix-blend-mode: multiply;
}
.split-media::before {
  content: ""; position: absolute; inset: -14px -14px 28px 28px; z-index: -1;
  border: 1px solid var(--gold); border-radius: 4px;
}
.img-about { background-image: url("../profilbilde-stegavik.jpeg"); background-position: center 30%; }
.img-kunder { background-image: url("../kunder-p%C3%A5-fjellet.jpeg"); background-position: center 35%; }
.img-caption {
  display: block; margin-top: 1rem; font-size: 0.82rem; color: var(--muted);
  letter-spacing: 0.04em; font-style: italic; font-family: var(--font-display);
}
.img-caption.light { color: rgba(246, 241, 232, 0.72); }

.cred-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 2rem 2.5rem;
  margin-top: 2.4rem; padding-top: 2rem; border-top: 1px solid var(--line);
}
.cred-list li { display: flex; flex-direction: column; }
.cred-list strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--teal); font-weight: 600; }
.cred-list span { font-size: 0.88rem; color: var(--muted); }

/* ============================================================
   Hva er jaktdressur
   ============================================================ */
/* split: image + intro at top of the section */
.jakt-split {
  display: grid; grid-template-columns: 0.8fr 1fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center; margin-bottom: 4rem;
}
.jakt-media { position: relative; margin: 0; }
.jakt-media .framed-img { aspect-ratio: 4/5; }
.jakt-media::before {
  content: ""; position: absolute; inset: -14px -14px 28px 28px; z-index: 0;
  border: 1px solid var(--gold); border-radius: 4px;
}
.jakt-media .framed-img, .jakt-media figcaption { position: relative; z-index: 1; }
.jakt-intro { align-self: center; }
.jakt-intro .section-intro { margin-top: 1.4rem; }

.learn-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1rem;
}
.learn-card {
  padding: 2.2rem 2rem; border: 1px solid var(--line-light); border-radius: 4px;
  background: rgba(246,241,232,0.035); transition: transform 0.4s var(--ease), background 0.4s, border-color 0.4s;
}
.learn-card:hover { transform: translateY(-6px); background: rgba(246,241,232,0.07); border-color: rgba(212,175,130,0.4); }
.learn-num {
  font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--gold);
  display: block; margin-bottom: 0.8rem;
}
.learn-card h3 { font-size: 1.4rem; color: var(--paper); margin-bottom: 0.7rem; }
.learn-card p { color: rgba(246,241,232,0.74); font-size: 0.98rem; }

.progress-line {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 3.5rem;
  position: relative;
}
.progress-line::before {
  content: ""; position: absolute; top: 17px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, var(--gold-deep), rgba(212,175,130,0.25));
}
.progress-step { text-align: center; position: relative; }
.progress-step span {
  display: grid; place-items: center; width: 36px; height: 36px; margin: 0 auto 0.9rem;
  border-radius: 50%; background: var(--teal-deep); border: 1px solid var(--gold);
  color: var(--gold); font-family: var(--font-display); font-weight: 600; position: relative; z-index: 1;
}
.progress-step p { font-size: 0.9rem; color: rgba(246,241,232,0.82); font-weight: 500; }

/* ============================================================
   Tjenester
   ============================================================ */
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.service-card {
  padding: 2.4rem; border: 1px solid var(--line); border-radius: 4px; background: #fff;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -30px rgba(18,60,69,0.4); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-tag {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--gold-deep); margin-bottom: 0.9rem;
}
.service-card h3 { font-size: 1.7rem; color: var(--teal); margin-bottom: 0.7rem; }
.service-card > p { color: var(--muted); margin-bottom: 1.3rem; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.service-card li {
  font-size: 0.95rem; color: var(--ink); padding-left: 1.5rem; position: relative;
}
.service-card li::before {
  content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px;
  border: 1.5px solid var(--gold-deep); border-radius: 50%;
}
.service-card-feature {
  background: var(--teal); color: var(--paper); border-color: var(--teal);
}
.service-card-feature h3 { color: var(--gold); }
.service-card-feature > p { color: rgba(246,241,232,0.8); }
.service-card-feature li { color: rgba(246,241,232,0.92); }
.service-card-feature li::before { border-color: var(--gold); }
.service-card-feature::before { background: var(--gold); }

/* ============================================================
   Prosess
   ============================================================ */
.process-list { list-style: none; display: grid; gap: 0; max-width: 760px; margin-inline: auto; }
.process-list li {
  display: flex; gap: 2rem; align-items: flex-start; padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}
.process-list li:last-child { border-bottom: 0; }
.process-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; color: var(--gold-deep);
  font-style: italic; line-height: 1; flex-shrink: 0; min-width: 64px;
}
.process-list h3 { font-size: 1.5rem; color: var(--teal); margin-bottom: 0.35rem; }
.process-list p { color: var(--muted); }

/* ============================================================
   Feature band (lagsbilde)
   ============================================================ */
.feature-band {
  position: relative; min-height: clamp(340px, 52vh, 560px);
  display: flex; align-items: flex-end; overflow: hidden;
}
.feature-band-img {
  position: absolute; inset: 0;
  background: var(--teal-darkest) url("../lagsbilde-jaktlag.jpeg") center 62% / cover no-repeat;
  filter: saturate(0.92);
}
.feature-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,42,48,0.15) 0%, rgba(12,42,48,0.25) 55%, rgba(12,42,48,0.78) 100%);
}
.feature-band-caption {
  position: relative; z-index: 2;
  width: min(var(--maxw), 90vw); margin: 0 auto; padding-bottom: 2rem;
  font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--paper); letter-spacing: 0.01em;
}

/* ============================================================
   Resultater
   ============================================================ */
.case {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center; background: rgba(246,241,232,0.04); border: 1px solid var(--line-light);
  border-radius: 5px; padding: clamp(1.4rem, 3vw, 2.4rem); margin-bottom: 3rem;
}
.case-media {
  aspect-ratio: 5/4; border-radius: 4px; position: relative;
}

/* image / video carousel */
.media-carousel { position: absolute; inset: 0; border-radius: 4px; overflow: hidden; background: var(--teal-darkest); }
.media-slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.media-slide.is-active { opacity: 1; pointer-events: auto; }
.slide-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.img-case { background-image: url("../eryx-hund.jpeg"); background-position: center 40%; }
.slide-video {
  width: 100%; height: 100%; object-fit: contain; display: block;
  background: var(--teal-darkest);
}
.carousel-next {
  position: absolute; top: 0.9rem; right: 0.9rem; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--teal-darkest); background: var(--gold); border: 0; cursor: pointer;
  padding: 0.55rem 0.95rem; border-radius: 100px;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.6);
  transition: transform 0.3s var(--ease), background 0.3s;
}
.carousel-next:hover { background: #e0bf95; transform: translateY(-2px); }
.carousel-next svg { transition: transform 0.3s var(--ease); }
.carousel-next:hover svg { transform: translateX(3px); }
.carousel-dots {
  position: absolute; top: 1.55rem; left: 1rem; z-index: 3; display: flex; gap: 0.45rem;
}
.carousel-dots .dot {
  width: 7px; height: 7px; border-radius: 50%; background: rgba(246,241,232,0.45);
  transition: background 0.3s, transform 0.3s;
}
.carousel-dots .dot.is-active { background: var(--gold); transform: scale(1.15); }
.case-kicker {
  font-family: var(--font-display); font-style: italic; font-size: 1.05rem; color: var(--gold);
  margin-bottom: 1.4rem;
}
.case-state { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-bottom: 1.6rem; }
.state-label {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 100px; margin-bottom: 0.6rem;
}
.state-before { background: rgba(246,241,232,0.12); color: rgba(246,241,232,0.7); }
.state-after { background: var(--gold); color: var(--teal-darkest); }
.case-state p { font-size: 0.96rem; color: rgba(246,241,232,0.82); }
.case-quote {
  font-family: var(--font-display); font-size: 1.25rem; font-style: italic; line-height: 1.5;
  color: var(--paper); padding-top: 1.4rem; border-top: 1px solid var(--line-light);
}
.case-quote span { display: block; font-style: normal; font-family: var(--font-body); font-size: 0.85rem; color: var(--gold); margin-top: 0.6rem; letter-spacing: 0.05em; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gallery-item {
  aspect-ratio: 1; border-radius: 4px; background-size: cover; background-position: center;
  filter: saturate(0.9); transition: transform 0.5s var(--ease), filter 0.5s;
}
.gallery-item:hover { transform: scale(1.03); filter: saturate(1.05); }
.g1 { background-image: url("../tia-hund.jpeg"); background-position: center 35%; }
.g2 { background-image: url("../karma-hund.jpeg"); }
.g3 { background-image: url("../Robin-pelle-hund.jpeg"); background-position: center 30%; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.faq-head { position: sticky; top: 110px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.4rem 0; display: flex;
  align-items: center; justify-content: space-between; gap: 1.5rem;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--ink);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--teal); }
.faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--gold-deep); transition: transform 0.35s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-answer { overflow: hidden; }
.faq-answer p { color: var(--muted); padding-bottom: 1.5rem; max-width: 60ch; }
.faq-item[open] summary { color: var(--teal); }

/* ============================================================
   Kontakt
   ============================================================ */
.section-contact { background: var(--teal-darkest); color: var(--paper); position: relative; overflow: hidden; }
.section-contact::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(90% 80% at 100% 0%, rgba(212,175,130,0.12), transparent 55%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); position: relative; z-index: 1; align-items: start; }
.contact-details { list-style: none; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.4rem; }
.contact-details li { display: flex; flex-direction: column; gap: 0.2rem; }
.cd-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.contact-details a, .contact-details span:not(.cd-label) { font-size: 1.1rem; color: var(--paper); transition: color 0.3s; }
.contact-details a:hover { color: var(--gold); }

.contact-form {
  background: rgba(246,241,232,0.04); border: 1px solid var(--line-light);
  border-radius: 5px; padding: clamp(1.6rem, 3vw, 2.6rem); display: flex; flex-direction: column; gap: 1.1rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--gold); font-weight: 600; }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--paper);
  background: rgba(12,42,48,0.5); border: 1px solid var(--line-light); border-radius: 3px;
  padding: 0.85rem 1rem; transition: border-color 0.3s, background 0.3s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(246,241,232,0.4); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(12,42,48,0.8); }
.form-note { font-size: 0.82rem; color: rgba(246,241,232,0.6); text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--teal-darkest); color: var(--paper); padding: 4rem 0 2rem; border-top: 1px solid var(--line-light); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--line-light); }
.footer-brand .brand-text { color: var(--paper); font-size: 1.3rem; }
.footer-brand p { color: rgba(246,241,232,0.6); margin-top: 0.7rem; max-width: 32ch; font-size: 0.95rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a, .footer-contact a { color: rgba(246,241,232,0.78); font-size: 0.95rem; transition: color 0.3s; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: 0.85rem; color: rgba(246,241,232,0.55); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split-media { max-width: 460px; }
  .jakt-split { grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
  .jakt-media { max-width: 440px; }
  .learn-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .case { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .progress-line { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .progress-line::before { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .case-state { grid-template-columns: 1fr; gap: 1.1rem; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { flex: 1; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
